FTXUI/include/ftxui/screen/screen.hpp

81 lines
1.6 KiB
C++
Raw Normal View History

#ifndef FTXUI_SCREEN_SCREEN
#define FTXUI_SCREEN_SCREEN
#include <string>
#include <vector>
#include <memory>
#include "ftxui/screen/color.hpp"
2019-01-20 05:06:05 +08:00
#include "ftxui/screen/box.hpp"
2018-10-12 15:23:37 +08:00
namespace ftxui {
class Node;
}
namespace ftxui {
struct Pixel {
wchar_t character = U' ';
2018-10-21 20:18:11 +08:00
bool blink = false;
bool bold = false;
2018-10-21 20:18:11 +08:00
bool dim = false;
bool inverted = false;
bool underlined = false;
2018-10-12 15:23:37 +08:00
Color background_color = Color::Default;
Color foreground_color = Color::Default;
};
2019-01-27 04:52:55 +08:00
struct Dimension {
static Dimension Fixed(int);
static Dimension Fit(std::unique_ptr<Node>&);
static Dimension Full();
int dimx;
int dimy;
};
class Screen {
public:
// Constructor.
2019-01-27 04:52:55 +08:00
Screen(int dimx, int dimy);
static Screen Create(Dimension dimension);
static Screen Create(Dimension width, Dimension height);
// Node write into the screen using Screen::at.
2019-01-27 04:52:55 +08:00
wchar_t& at(int x, int y);
Pixel& PixelAt(int x, int y);
// Convert the screen into a printable string in the terminal.
std::string ToString();
// Get screen dimensions.
2019-01-27 04:52:55 +08:00
int dimx() { return dimx_;}
int dimy() { return dimy_;}
// Move the terminal cursor n-lines up with n = dimy().
std::string ResetPosition();
// Fill with space.
void Clear();
2019-01-19 07:20:29 +08:00
void ApplyShader();
2019-01-20 05:06:05 +08:00
Box stencil;
2019-01-19 07:20:29 +08:00
struct Cursor {
2019-07-01 06:43:00 +08:00
int x = 0;
int y = 0;
};
Cursor cursor() const { return cursor_; }
void SetCursor(Cursor cursor) { cursor_ = cursor; }
protected:
2019-01-27 04:52:55 +08:00
int dimx_;
int dimy_;
std::vector<std::vector<Pixel>> pixels_;
Cursor cursor_;
};
2020-02-12 04:44:55 +08:00
} // namespace ftxui
#endif /* end of include guard: FTXUI_SCREEN_SCREEN */