2022-03-31 08:17:43 +08:00
|
|
|
#ifndef FTXUI_SCREEN_TERMINAL_HPP
|
|
|
|
#define FTXUI_SCREEN_TERMINAL_HPP
|
2018-09-18 14:48:40 +08:00
|
|
|
|
|
|
|
namespace ftxui {
|
2021-08-03 05:19:29 +08:00
|
|
|
struct Dimensions {
|
|
|
|
int dimx;
|
|
|
|
int dimy;
|
|
|
|
};
|
2018-09-18 14:48:40 +08:00
|
|
|
|
2021-08-03 05:19:29 +08:00
|
|
|
namespace Terminal {
|
|
|
|
Dimensions Size();
|
2021-10-13 19:44:30 +08:00
|
|
|
void SetFallbackSize(const Dimensions& fallbackSize);
|
2020-10-17 04:31:24 +08:00
|
|
|
|
2021-08-03 05:19:29 +08:00
|
|
|
enum Color {
|
|
|
|
Palette1,
|
|
|
|
Palette16,
|
|
|
|
Palette256,
|
|
|
|
TrueColor,
|
2018-09-18 14:48:40 +08:00
|
|
|
};
|
2021-08-03 05:19:29 +08:00
|
|
|
Color ColorSupport();
|
2022-04-26 23:04:34 +08:00
|
|
|
void SetColorSupport(Color color);
|
|
|
|
|
2021-08-03 05:19:29 +08:00
|
|
|
} // namespace Terminal
|
2018-09-18 14:48:40 +08:00
|
|
|
|
|
|
|
} // namespace ftxui
|
|
|
|
|
2022-03-31 08:17:43 +08:00
|
|
|
#endif // FTXUI_SCREEN_TERMINAL_HPP
|
2020-08-16 06:24:18 +08:00
|
|
|
|
|
|
|
// Copyright 2020 Arthur Sonzogni. All rights reserved.
|
|
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
|
|
// the LICENSE file.
|