2020-05-21 20:22:34 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-05-21 20:22:34 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-21 20:22:34 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
#include <LibLine/Style.h>
|
|
|
|
|
|
|
|
|
|
namespace Line {
|
|
|
|
|
namespace VT {
|
|
|
|
|
|
2021-07-19 15:42:28 -03:00
|
|
|
void save_cursor(OutputStream&);
|
|
|
|
|
void restore_cursor(OutputStream&);
|
|
|
|
|
void clear_to_end_of_line(OutputStream&);
|
|
|
|
|
void clear_lines(size_t count_above, size_t count_below, OutputStream&);
|
|
|
|
|
void move_relative(int x, int y, OutputStream&);
|
|
|
|
|
void move_absolute(u32 x, u32 y, OutputStream&);
|
|
|
|
|
void apply_style(const Style&, OutputStream&, bool is_starting = true);
|
2020-05-21 20:22:34 -03:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|