mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Flatten the namespaces.
Remove: * ftxui::screen * ftxui::dom * ftxui::component Keep: * ftxui
This commit is contained in:
parent
cf63aefa02
commit
21644eea6b
@ -7,8 +7,7 @@
|
|||||||
#include "ftxui/component/screen_interactive.hpp"
|
#include "ftxui/component/screen_interactive.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
class MyComponent : ComponentVertical {
|
class MyComponent : ComponentVertical {
|
||||||
public:
|
public:
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
#include "ftxui/component/screen_interactive.hpp"
|
#include "ftxui/component/screen_interactive.hpp"
|
||||||
|
|
||||||
int main(int argc, const char* argv[]) {
|
int main(int argc, const char* argv[]) {
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::screen;
|
|
||||||
auto screen = ScreenInteractive::FixedSize(30, 3);
|
auto screen = ScreenInteractive::FixedSize(30, 3);
|
||||||
Menu menu(screen.delegate());
|
Menu menu(screen.delegate());
|
||||||
menu.entries = {L"entry 1", L"entry 2", L"entry 3"};
|
menu.entries = {L"entry 1", L"entry 2", L"entry 3"};
|
||||||
|
@ -8,8 +8,7 @@
|
|||||||
#include "ftxui/component/screen_interactive.hpp"
|
#include "ftxui/component/screen_interactive.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
class MyComponent : ComponentHorizontal {
|
class MyComponent : ComponentHorizontal {
|
||||||
public:
|
public:
|
||||||
|
@ -6,8 +6,7 @@
|
|||||||
#include "ftxui/component/screen_interactive.hpp"
|
#include "ftxui/component/screen_interactive.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
class MyComponent : ComponentHorizontal {
|
class MyComponent : ComponentHorizontal {
|
||||||
public:
|
public:
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
#include "ftxui/component/toggle.hpp"
|
#include "ftxui/component/toggle.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
class MyComponent : ComponentVertical {
|
class MyComponent : ComponentVertical {
|
||||||
public:
|
public:
|
||||||
|
@ -8,8 +8,7 @@
|
|||||||
#include "ftxui/component/toggle.hpp"
|
#include "ftxui/component/toggle.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
class MyComponent : ComponentVertical {
|
class MyComponent : ComponentVertical {
|
||||||
public:
|
public:
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"This text is "),
|
text(L"This text is "),
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"This text is "),
|
text(L"This text is "),
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
vbox(
|
vbox(
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
using namespace ftxui::screen;
|
|
||||||
auto document =
|
auto document =
|
||||||
dbox(
|
dbox(
|
||||||
frame(
|
frame(
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"This text is "),
|
text(L"This text is "),
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
using namespace ftxui::screen;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
window(text(L" main frame ") | hcenter,
|
window(text(L" main frame ") | hcenter,
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
using namespace ftxui::screen;
|
|
||||||
using namespace std::chrono_literals;
|
using namespace std::chrono_literals;
|
||||||
|
|
||||||
std::string reset_position;
|
std::string reset_position;
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"This text is "),
|
text(L"This text is "),
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
|
|
||||||
struct Task {
|
struct Task {
|
||||||
std::wstring name;
|
std::wstring name;
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
using namespace ftxui::screen;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"left-column"),
|
text(L"left-column"),
|
||||||
|
@ -9,8 +9,6 @@
|
|||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
using namespace ftxui::screen;
|
|
||||||
using namespace std::chrono_literals;
|
using namespace std::chrono_literals;
|
||||||
|
|
||||||
std::string reset_position;
|
std::string reset_position;
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"normal") , text(L" ") ,
|
text(L"normal") , text(L" ") ,
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
hbox(
|
hbox(
|
||||||
text(L"This text is "),
|
text(L"This text is "),
|
||||||
|
@ -5,8 +5,7 @@
|
|||||||
|
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
|
||||||
auto document =
|
auto document =
|
||||||
vbox(
|
vbox(
|
||||||
hbox(
|
hbox(
|
||||||
|
@ -6,15 +6,14 @@
|
|||||||
#include "ftxui/component/screen_interactive.hpp"
|
#include "ftxui/component/screen_interactive.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
using namespace ftxui::component;
|
using namespace ftxui;
|
||||||
|
|
||||||
class DrawKey : public Component {
|
class DrawKey : public Component {
|
||||||
public:
|
public:
|
||||||
DrawKey(Delegate* delegate)
|
DrawKey(Component::Delegate* delegate)
|
||||||
: Component(delegate) {}
|
: Component(delegate) {}
|
||||||
|
|
||||||
ftxui::dom::Element Render() override {
|
Element Render() override {
|
||||||
using namespace ftxui::dom;
|
|
||||||
Children children;
|
Children children;
|
||||||
for (size_t i = std::max(0, (int)keys.size() - 10); i < keys.size(); ++i) {
|
for (size_t i = std::max(0, (int)keys.size() - 10); i < keys.size(); ++i) {
|
||||||
std::string code = "";
|
std::string code = "";
|
||||||
|
@ -1,27 +1,11 @@
|
|||||||
cmake_minimum_required(VERSION 3.0)
|
cmake_minimum_required(VERSION 3.0)
|
||||||
|
|
||||||
####################
|
|
||||||
# ftxui::screen
|
|
||||||
####################
|
|
||||||
add_library(screen
|
add_library(screen
|
||||||
src/ftxui/screen/screen.cpp
|
src/ftxui/screen/screen.cpp
|
||||||
src/ftxui/terminal.cpp
|
src/ftxui/screen/terminal.cpp
|
||||||
src/ftxui/util/string.cpp
|
src/ftxui/screen/string.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(screen
|
|
||||||
PUBLIC
|
|
||||||
$<INSTALL_INTERFACE:include>
|
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
||||||
PRIVATE src
|
|
||||||
)
|
|
||||||
|
|
||||||
target_compile_features(screen PUBLIC cxx_std_17)
|
|
||||||
target_compile_options(screen PRIVATE -Wall)
|
|
||||||
|
|
||||||
####################
|
|
||||||
# ftxui::dom
|
|
||||||
####################
|
|
||||||
add_library(dom
|
add_library(dom
|
||||||
src/ftxui/dom/blink.cpp
|
src/ftxui/dom/blink.cpp
|
||||||
src/ftxui/dom/bold.cpp
|
src/ftxui/dom/bold.cpp
|
||||||
@ -45,23 +29,6 @@ add_library(dom
|
|||||||
src/ftxui/dom/vbox.cpp
|
src/ftxui/dom/vbox.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(dom
|
|
||||||
PUBLIC
|
|
||||||
$<INSTALL_INTERFACE:include>
|
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
||||||
PRIVATE src
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(dom
|
|
||||||
PUBLIC screen
|
|
||||||
)
|
|
||||||
|
|
||||||
target_compile_features(dom PUBLIC cxx_std_17)
|
|
||||||
target_compile_options(dom PRIVATE -Wall)
|
|
||||||
|
|
||||||
####################
|
|
||||||
# ftxui::component
|
|
||||||
####################
|
|
||||||
add_library(component
|
add_library(component
|
||||||
src/ftxui/component/component.cpp
|
src/ftxui/component/component.cpp
|
||||||
src/ftxui/component/component_direction.cpp
|
src/ftxui/component/component_direction.cpp
|
||||||
@ -74,19 +41,20 @@ add_library(component
|
|||||||
src/ftxui/component/toggle.cpp
|
src/ftxui/component/toggle.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(component
|
target_link_libraries(dom PUBLIC screen)
|
||||||
PUBLIC
|
target_link_libraries(component PUBLIC dom)
|
||||||
$<INSTALL_INTERFACE:include>
|
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
||||||
PRIVATE src
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(component
|
|
||||||
PUBLIC dom
|
|
||||||
)
|
|
||||||
|
|
||||||
target_compile_features(component PUBLIC cxx_std_17)
|
foreach(lib screen dom component)
|
||||||
target_compile_options(component PRIVATE -Wall)
|
target_include_directories(${lib}
|
||||||
|
PUBLIC
|
||||||
|
$<INSTALL_INTERFACE:include>
|
||||||
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
||||||
|
PRIVATE src
|
||||||
|
)
|
||||||
|
target_compile_features(${lib} PUBLIC cxx_std_17)
|
||||||
|
target_compile_options(${lib} PRIVATE -Wall)
|
||||||
|
endforeach()
|
||||||
|
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
install(TARGETS screen dom component
|
install(TARGETS screen dom component
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#
|
#
|
||||||
* Level 0: terminal output.
|
* Level 0: terminal output.
|
||||||
* Level 1: ftxui::Screen
|
* Level 1: ftxui::Screen
|
||||||
* Level 2: ftxui::dom::Node
|
* Level 2: ftxui::Node
|
||||||
* Level 3: ftxui::component::Component
|
* Level 3: ftxui::Component
|
||||||
|
|
||||||
## Level 0: terminal output.
|
## Level 0: terminal output.
|
||||||
The terminal you know, you can append text on it. It is represented by
|
The terminal you know, you can append text on it. It is represented by
|
||||||
@ -12,16 +12,16 @@
|
|||||||
A rectangular grid of characters.
|
A rectangular grid of characters.
|
||||||
Use Terminal::ToString() to append its content into the console.
|
Use Terminal::ToString() to append its content into the console.
|
||||||
|
|
||||||
## Level 2: ftxui::dom::Node
|
## Level 2: ftxui::Node
|
||||||
A hierarchical set of element.
|
A hierarchical set of element.
|
||||||
They handle layout and Render themself on the screen.
|
They handle layout and Render themself on the screen.
|
||||||
See ftxui/dom/elements.hpp
|
See ftxui/dom/elements.hpp
|
||||||
|
|
||||||
You can make implement your own.
|
You can make implement your own.
|
||||||
|
|
||||||
## Level 3: ftxui::component::Component
|
## Level 3: ftxui::Component
|
||||||
A hierarchical set of component. A component render itself by producing
|
A hierarchical set of component. A component render itself by producing
|
||||||
ftxui::dom::Node in Component::Render().
|
ftxui::Node in Component::Render().
|
||||||
|
|
||||||
Some component can handle events:
|
Some component can handle events:
|
||||||
* keyboard
|
* keyboard
|
||||||
|
@ -5,19 +5,40 @@
|
|||||||
#include "ftxui/component/event.hpp"
|
#include "ftxui/component/event.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Delegate;
|
class Delegate;
|
||||||
class Focus;
|
class Focus;
|
||||||
|
|
||||||
class Component {
|
class Component {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
class Delegate {
|
||||||
|
public:
|
||||||
|
Delegate() {}
|
||||||
|
virtual ~Delegate() {}
|
||||||
|
|
||||||
|
// A Delegate shadows a component.
|
||||||
|
virtual void Register(Component* component) = 0;
|
||||||
|
virtual Component* component() = 0;
|
||||||
|
|
||||||
|
// Create new children.
|
||||||
|
virtual Delegate* NewChild() = 0;
|
||||||
|
virtual std::vector<Delegate*> children() = 0;
|
||||||
|
|
||||||
|
// Navigate in the tree.
|
||||||
|
virtual Delegate* PreviousSibling() = 0;
|
||||||
|
virtual Delegate* NextSibling() = 0;
|
||||||
|
virtual Delegate* Parent() = 0;
|
||||||
|
virtual Delegate* Root() = 0;
|
||||||
|
};
|
||||||
|
|
||||||
// Constructor/Destructor.
|
// Constructor/Destructor.
|
||||||
Component(Delegate* delegate);
|
Component(Delegate* delegate);
|
||||||
virtual ~Component();
|
virtual ~Component();
|
||||||
|
|
||||||
// Render the component.
|
// Render the component.
|
||||||
virtual dom::Element Render();
|
virtual Element Render();
|
||||||
|
|
||||||
// Handle an event. By default, it calls this function on each children.
|
// Handle an event. By default, it calls this function on each children.
|
||||||
virtual bool OnEvent(Event even);
|
virtual bool OnEvent(Event even);
|
||||||
@ -38,6 +59,6 @@ class Component {
|
|||||||
Delegate* delegate_;
|
Delegate* delegate_;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_HPP */
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_HPP */
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
#include "ftxui/component/component.hpp"
|
#include "ftxui/component/component.hpp"
|
||||||
|
|
||||||
namespace ftxui {
|
namespace ftxui {
|
||||||
namespace component {
|
|
||||||
|
|
||||||
// A component where focus and events are automatically handled for you.
|
// A component where focus and events are automatically handled for you.
|
||||||
// Please use ComponentVertical or ComponentHorizontal.
|
// Please use ComponentVertical or ComponentHorizontal.
|
||||||
@ -20,7 +19,6 @@ class ComponentDirection : public Component {
|
|||||||
Component* active_child_;
|
Component* active_child_;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace component
|
|
||||||
} // namespace ftxui
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_DIRECTION_H_ */
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_DIRECTION_H_ */
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include "ftxui/component/component_direction.hpp"
|
#include "ftxui/component/component_direction.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
// A component where focus and events are automatically handled for you.
|
// A component where focus and events are automatically handled for you.
|
||||||
// It assumes its children are put in the horizontal direction.
|
// It assumes its children are put in the horizontal direction.
|
||||||
@ -13,6 +13,6 @@ class ComponentHorizontal : public ComponentDirection {
|
|||||||
bool HandleDirection(Event) override;
|
bool HandleDirection(Event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_HORIZONTAL_H_ */
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_HORIZONTAL_H_ */
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include "ftxui/component/component_direction.hpp"
|
#include "ftxui/component/component_direction.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
// A component where focus and events are automatically handled for you.
|
// A component where focus and events are automatically handled for you.
|
||||||
// It assumes its children are put in the vertical direction.
|
// It assumes its children are put in the vertical direction.
|
||||||
@ -13,6 +13,6 @@ class ComponentVertical : public ComponentDirection {
|
|||||||
bool HandleDirection(Event) override;
|
bool HandleDirection(Event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_VERTICAL_H_ */
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_VERTICAL_H_ */
|
||||||
|
@ -3,30 +3,11 @@
|
|||||||
|
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Component;
|
class Component;
|
||||||
|
|
||||||
class Delegate {
|
|
||||||
public:
|
|
||||||
Delegate() {}
|
|
||||||
virtual ~Delegate() {}
|
|
||||||
|
|
||||||
// A Delegate shadows a component.
|
} // namespace ftxui
|
||||||
virtual void Register(Component* component) = 0;
|
|
||||||
virtual Component* component() = 0;
|
|
||||||
|
|
||||||
// Create new children.
|
|
||||||
virtual Delegate* NewChild() = 0;
|
|
||||||
virtual std::vector<Delegate*> children() = 0;
|
|
||||||
|
|
||||||
// Navigate in the tree.
|
|
||||||
virtual Delegate* PreviousSibling() = 0;
|
|
||||||
virtual Delegate* NextSibling() = 0;
|
|
||||||
virtual Delegate* Parent() = 0;
|
|
||||||
virtual Delegate* Root() = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace ftxui::component
|
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_DELEGATE_HPP */
|
#endif /* end of include guard: FTXUI_COMPONENT_DELEGATE_HPP */
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
struct Event{
|
struct Event{
|
||||||
public:
|
public:
|
||||||
@ -31,7 +31,7 @@ struct Event{
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_EVENT_HPP */
|
#endif /* end of include guard: FTXUI_COMPONENT_EVENT_HPP */
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#include "ftxui/component/component.hpp"
|
#include "ftxui/component/component.hpp"
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Input : public Component {
|
class Input : public Component {
|
||||||
public:
|
public:
|
||||||
@ -21,13 +21,13 @@ class Input : public Component {
|
|||||||
std::function<void()> on_enter = [](){};
|
std::function<void()> on_enter = [](){};
|
||||||
|
|
||||||
// Component implementation.
|
// Component implementation.
|
||||||
dom::Element Render() override;
|
Element Render() override;
|
||||||
bool OnEvent(Event) override;
|
bool OnEvent(Event) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int cursor_position = 0;
|
int cursor_position = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */
|
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Menu : public Component {
|
class Menu : public Component {
|
||||||
public:
|
public:
|
||||||
@ -16,16 +16,16 @@ class Menu : public Component {
|
|||||||
std::vector<std::wstring> entries = {};
|
std::vector<std::wstring> entries = {};
|
||||||
int selected = 0;
|
int selected = 0;
|
||||||
|
|
||||||
dom::Decorator active_style = dom::inverted;
|
Decorator active_style = inverted;
|
||||||
dom::Decorator selected_style = dom::bold;
|
Decorator selected_style = bold;
|
||||||
dom::Decorator normal_style = dom::nothing;
|
Decorator normal_style = nothing;
|
||||||
|
|
||||||
// State update callback.
|
// State update callback.
|
||||||
std::function<void()> on_change = [](){};
|
std::function<void()> on_change = [](){};
|
||||||
std::function<void()> on_enter = [](){};
|
std::function<void()> on_enter = [](){};
|
||||||
|
|
||||||
// Component implementation.
|
// Component implementation.
|
||||||
dom::Element Render() override;
|
Element Render() override;
|
||||||
bool OnEvent(Event) override;
|
bool OnEvent(Event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,26 +1,26 @@
|
|||||||
#ifndef FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP
|
#ifndef FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP
|
||||||
#define FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP
|
#define FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP
|
||||||
|
|
||||||
|
#include "ftxui/component/component.hpp"
|
||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Delegate;
|
|
||||||
class Component;
|
|
||||||
|
|
||||||
class ScreenInteractive : public ftxui::screen::Screen {
|
class ScreenInteractive : public ftxui::Screen {
|
||||||
public:
|
public:
|
||||||
static ScreenInteractive FixedSize(size_t dimx, size_t dimy);
|
static ScreenInteractive FixedSize(size_t dimx, size_t dimy);
|
||||||
static ScreenInteractive Fullscreen();
|
static ScreenInteractive Fullscreen();
|
||||||
static ScreenInteractive TerminalOutput();
|
static ScreenInteractive TerminalOutput();
|
||||||
|
|
||||||
~ScreenInteractive();
|
~ScreenInteractive();
|
||||||
component::Delegate* delegate();
|
|
||||||
void Loop();
|
void Loop();
|
||||||
std::function<void()> ExitLoopClosure();
|
std::function<void()> ExitLoopClosure();
|
||||||
|
|
||||||
|
Component::Delegate* delegate();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class Delegate;
|
class Delegate;
|
||||||
std::unique_ptr<Delegate> delegate_;
|
std::unique_ptr<Delegate> delegate_;
|
||||||
@ -38,6 +38,6 @@ class ScreenInteractive : public ftxui::screen::Screen {
|
|||||||
ScreenInteractive(size_t dimx, size_t dimy, Dimension dimension);
|
ScreenInteractive(size_t dimx, size_t dimy, Dimension dimension);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP */
|
#endif /* end of include guard: FTXUI_COMPONENT_SCREEN_INTERACTIVE_HPP */
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include <functional>
|
#include <functional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
class Toggle : public Component {
|
class Toggle : public Component {
|
||||||
public:
|
public:
|
||||||
@ -20,7 +20,7 @@ class Toggle : public Component {
|
|||||||
std::function<void()> on_change = [](){};
|
std::function<void()> on_change = [](){};
|
||||||
|
|
||||||
// Component implementation.
|
// Component implementation.
|
||||||
dom::Element Render() override;
|
Element Render() override;
|
||||||
bool OnEvent(Event) override;
|
bool OnEvent(Event) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef FTXUI_DOM_BOX_HPP
|
#ifndef FTXUI_DOM_BOX_HPP
|
||||||
#define FTXUI_DOM_BOX_HPP
|
#define FTXUI_DOM_BOX_HPP
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
struct Box {
|
struct Box {
|
||||||
int left;
|
int left;
|
||||||
@ -10,6 +10,6 @@ struct Box {
|
|||||||
int bottom;
|
int bottom;
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_DOM_BOX_HPP */
|
#endif /* end of include guard: FTXUI_DOM_BOX_HPP */
|
||||||
|
@ -6,13 +6,13 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/screen/color.hpp"
|
#include "ftxui/screen/color.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using Element = std::unique_ptr<Node>;
|
using Element = std::unique_ptr<Node>;
|
||||||
using Decorator = std::function<Element(Element)>;
|
using Decorator = std::function<Element(Element)>;
|
||||||
using Child = std::unique_ptr<Node>;
|
using Child = std::unique_ptr<Node>;
|
||||||
using Children = std::vector<Child>;
|
using Children = std::vector<Child>;
|
||||||
using Color = ftxui::screen::Color;
|
using Color = ftxui::Color;
|
||||||
|
|
||||||
// --- Layout ----
|
// --- Layout ----
|
||||||
Element vbox(Children);
|
Element vbox(Children);
|
||||||
@ -64,6 +64,6 @@ TAKE_ANY_ARGS(vbox)
|
|||||||
TAKE_ANY_ARGS(hbox)
|
TAKE_ANY_ARGS(hbox)
|
||||||
TAKE_ANY_ARGS(dbox)
|
TAKE_ANY_ARGS(dbox)
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_DOM_ELEMENTS_HPP */
|
#endif /* end of include guard: FTXUI_DOM_ELEMENTS_HPP */
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include "ftxui/dom/requirement.hpp"
|
#include "ftxui/dom/requirement.hpp"
|
||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class Node {
|
class Node {
|
||||||
public:
|
public:
|
||||||
@ -27,7 +27,7 @@ class Node {
|
|||||||
virtual void SetBox(Box box);
|
virtual void SetBox(Box box);
|
||||||
|
|
||||||
// Step 3: Draw this element.
|
// Step 3: Draw this element.
|
||||||
virtual void Render(screen::Screen& screen);
|
virtual void Render(Screen& screen);
|
||||||
|
|
||||||
std::vector<std::unique_ptr<Node>> children;
|
std::vector<std::unique_ptr<Node>> children;
|
||||||
protected:
|
protected:
|
||||||
@ -35,8 +35,8 @@ class Node {
|
|||||||
Box box_;
|
Box box_;
|
||||||
};
|
};
|
||||||
|
|
||||||
void Render(screen::Screen& screen, Node* node);
|
void Render(Screen& screen, Node* node);
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_DOM_NODE_HPP */
|
#endif /* end of include guard: FTXUI_DOM_NODE_HPP */
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef FTXUI_DOM_REQUIREMENT_HPP
|
#ifndef FTXUI_DOM_REQUIREMENT_HPP
|
||||||
#define FTXUI_DOM_REQUIREMENT_HPP
|
#define FTXUI_DOM_REQUIREMENT_HPP
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
struct Requirement {
|
struct Requirement {
|
||||||
// The required size to fully draw the element.
|
// The required size to fully draw the element.
|
||||||
@ -11,6 +11,6 @@ struct Requirement {
|
|||||||
struct { int x = 0; int y = 0; } flex;
|
struct { int x = 0; int y = 0; } flex;
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_REQUIREMENT_HPP */
|
#endif /* end of include guard: FTXUI_REQUIREMENT_HPP */
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
namespace ftxui::screen {
|
namespace ftxui {
|
||||||
|
|
||||||
enum class Color : uint8_t {
|
enum class Color : uint8_t {
|
||||||
// --- Transparent -----
|
// --- Transparent -----
|
||||||
@ -35,6 +35,6 @@ enum class Color : uint8_t {
|
|||||||
YellowLight = 93,
|
YellowLight = 93,
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace ftxui::screen
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_COLOR_H_ */
|
#endif /* end of include guard: FTXUI_COLOR_H_ */
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
|
|
||||||
#include "ftxui/screen/color.hpp"
|
#include "ftxui/screen/color.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
class Node;
|
class Node;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace ftxui::screen {
|
namespace ftxui {
|
||||||
|
|
||||||
struct Pixel {
|
struct Pixel {
|
||||||
wchar_t character = U' ';
|
wchar_t character = U' ';
|
||||||
@ -31,9 +31,9 @@ class Screen {
|
|||||||
|
|
||||||
// Constructor using the terminal.
|
// Constructor using the terminal.
|
||||||
static Screen TerminalFullscreen();
|
static Screen TerminalFullscreen();
|
||||||
static Screen TerminalOutput(std::unique_ptr<dom::Node>& element);
|
static Screen TerminalOutput(std::unique_ptr<Node>& element);
|
||||||
|
|
||||||
// dom::Node write into the screen using Screen::at.
|
// Node write into the screen using Screen::at.
|
||||||
wchar_t& at(size_t x, size_t y);
|
wchar_t& at(size_t x, size_t y);
|
||||||
Pixel& PixelAt(size_t x, size_t y);
|
Pixel& PixelAt(size_t x, size_t y);
|
||||||
|
|
||||||
@ -56,6 +56,6 @@ class Screen {
|
|||||||
std::vector<std::vector<Pixel>> pixels_;
|
std::vector<std::vector<Pixel>> pixels_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace ftxui::screen
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_SCREEN_SCREEN */
|
#endif /* end of include guard: FTXUI_SCREEN_SCREEN */
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include "ftxui/component/delegate.hpp"
|
#include "ftxui/component/delegate.hpp"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
Component::Component(Delegate* delegate) {
|
Component::Component(Delegate* delegate) {
|
||||||
delegate_ = delegate;
|
delegate_ = delegate;
|
||||||
@ -11,8 +11,8 @@ Component::Component(Delegate* delegate) {
|
|||||||
|
|
||||||
Component::~Component() {}
|
Component::~Component() {}
|
||||||
|
|
||||||
dom::Element Component::Render() {
|
Element Component::Render() {
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
return text(L"Not implemented component");
|
return text(L"Not implemented component");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,4 +54,4 @@ Component* Component::Parent() {
|
|||||||
return parent_delegate->component();
|
return parent_delegate->component();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/component/component_direction.hpp"
|
#include "ftxui/component/component_direction.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
ComponentDirection::ComponentDirection(Delegate* delegate)
|
ComponentDirection::ComponentDirection(Delegate* delegate)
|
||||||
: Component(delegate), active_child_(nullptr) {}
|
: Component(delegate), active_child_(nullptr) {}
|
||||||
@ -16,6 +16,7 @@ bool ComponentDirection::OnEvent(Event event) {
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
return HandleDirection(event);
|
return HandleDirection(event);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Component* ComponentDirection::GetActiveChild() {
|
Component* ComponentDirection::GetActiveChild() {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/component/component_horizontal.hpp"
|
#include "ftxui/component/component_horizontal.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
ComponentHorizontal::ComponentHorizontal(Delegate* delegate)
|
ComponentHorizontal::ComponentHorizontal(Delegate* delegate)
|
||||||
: ComponentDirection(delegate) {}
|
: ComponentDirection(delegate) {}
|
||||||
@ -27,4 +27,4 @@ bool ComponentHorizontal::HandleDirection(Event event) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/component/component_vertical.hpp"
|
#include "ftxui/component/component_vertical.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
ComponentVertical::ComponentVertical(Delegate* delegate)
|
ComponentVertical::ComponentVertical(Delegate* delegate)
|
||||||
: ComponentDirection(delegate) {}
|
: ComponentDirection(delegate) {}
|
||||||
@ -27,4 +27,4 @@ bool ComponentVertical::HandleDirection(Event event) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/component/event.hpp"
|
#include "ftxui/component/event.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
constexpr int ESC = int(27);
|
constexpr int ESC = int(27);
|
||||||
|
|
||||||
@ -34,4 +34,4 @@ Event Event::F10{ESC, '[', '2', '1', '~'};
|
|||||||
Event Event::F11{ESC, '[', '2', '1', '~'}; // Same as F10 ?
|
Event Event::F11{ESC, '[', '2', '1', '~'}; // Same as F10 ?
|
||||||
Event Event::F12{ESC, '[', '2', '4', '~'};
|
Event Event::F12{ESC, '[', '2', '4', '~'};
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
#include "ftxui/component/input.hpp"
|
#include "ftxui/component/input.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/util/string.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
Input::Input(Delegate* delegate): Component(delegate) {}
|
Input::Input(Delegate* delegate): Component(delegate) {}
|
||||||
Input::~Input() {}
|
Input::~Input() {}
|
||||||
|
|
||||||
// Component implementation.
|
// Component implementation.
|
||||||
dom::Element Input::Render() {
|
Element Input::Render() {
|
||||||
using namespace dom;
|
|
||||||
bool is_focused = Focused();
|
bool is_focused = Focused();
|
||||||
|
|
||||||
// Placeholder.
|
// Placeholder.
|
||||||
@ -75,4 +74,4 @@ bool Input::OnEvent(Event event) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -2,12 +2,11 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
Menu::Menu(Delegate* delegate) : Component(delegate) {}
|
Menu::Menu(Delegate* delegate) : Component(delegate) {}
|
||||||
|
|
||||||
dom::Element Menu::Render() {
|
Element Menu::Render() {
|
||||||
using namespace dom;
|
|
||||||
std::vector<Element> elements;
|
std::vector<Element> elements;
|
||||||
bool focused = Focused();
|
bool focused = Focused();
|
||||||
for (size_t i = 0; i < entries.size(); ++i) {
|
for (size_t i = 0; i < entries.size(); ++i) {
|
||||||
@ -49,4 +48,4 @@ bool Menu::OnEvent(Event event) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "ftxui/component/component.hpp"
|
#include "ftxui/component/component.hpp"
|
||||||
#include "ftxui/component/delegate.hpp"
|
#include "ftxui/component/delegate.hpp"
|
||||||
#include "ftxui/terminal.hpp"
|
#include "ftxui/screen/terminal.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
constexpr int ESC = 27;
|
constexpr int ESC = 27;
|
||||||
@ -42,13 +42,14 @@ Event GetEvent() {
|
|||||||
|
|
||||||
return Event{v1};
|
return Event{v1};
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace
|
}; // namespace
|
||||||
|
|
||||||
class ScreenInteractive::Delegate : public component::Delegate {
|
class ScreenInteractive::Delegate : public Component::Delegate {
|
||||||
public:
|
public:
|
||||||
Delegate() : root_(this) {}
|
Delegate() : root_(this) {}
|
||||||
|
|
||||||
void Register(component::Component* c) override { component_ = c; }
|
void Register(Component* c) override { component_ = c; }
|
||||||
|
|
||||||
std::vector<std::unique_ptr<Delegate>> child_;
|
std::vector<std::unique_ptr<Delegate>> child_;
|
||||||
Delegate* NewChild() override {
|
Delegate* NewChild() override {
|
||||||
@ -67,24 +68,24 @@ class ScreenInteractive::Delegate : public component::Delegate {
|
|||||||
|
|
||||||
void OnEvent(Event event) { component_->OnEvent(event); }
|
void OnEvent(Event event) { component_->OnEvent(event); }
|
||||||
|
|
||||||
std::vector<component::Delegate*> children() override {
|
std::vector<Component::Delegate*> children() override {
|
||||||
std::vector<component::Delegate*> ret;
|
std::vector<Component::Delegate*> ret;
|
||||||
for (auto& it : child_)
|
for (auto& it : child_)
|
||||||
ret.push_back(it.get());
|
ret.push_back(it.get());
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
Delegate* root_;
|
Component::Delegate* root_;
|
||||||
Delegate* parent_ = nullptr;
|
Component::Delegate* parent_ = nullptr;
|
||||||
Delegate* previous_sibling_ = nullptr;
|
Component::Delegate* previous_sibling_ = nullptr;
|
||||||
Delegate* next_sibling_ = nullptr;
|
Component::Delegate* next_sibling_ = nullptr;
|
||||||
component::Component* component_;
|
Component* component_;
|
||||||
|
|
||||||
Delegate* Root() override { return root_; }
|
Component::Delegate* Root() override { return root_; }
|
||||||
Delegate* Parent() override { return parent_; }
|
Component::Delegate* Parent() override { return parent_; }
|
||||||
Delegate* PreviousSibling() override { return previous_sibling_; }
|
Component::Delegate* PreviousSibling() override { return previous_sibling_; }
|
||||||
Delegate* NextSibling() override { return next_sibling_; }
|
Component::Delegate* NextSibling() override { return next_sibling_; }
|
||||||
component::Component* component() override { return component_; }
|
Component* component() override { return component_; }
|
||||||
};
|
};
|
||||||
|
|
||||||
ScreenInteractive::ScreenInteractive(size_t dimx,
|
ScreenInteractive::ScreenInteractive(size_t dimx,
|
||||||
@ -162,14 +163,14 @@ void ScreenInteractive::PrepareDraw() {
|
|||||||
if (dimx != dimx_ || dimy != dimy_) {
|
if (dimx != dimx_ || dimy != dimy_) {
|
||||||
dimx_ = dimx;
|
dimx_ = dimx;
|
||||||
dimy_ = dimy;
|
dimy_ = dimy;
|
||||||
pixels_ = std::vector<std::vector<screen::Pixel>>(
|
pixels_ = std::vector<std::vector<Pixel>>(
|
||||||
dimy, std::vector<screen::Pixel>(dimx));
|
dimy, std::vector<Pixel>(dimx));
|
||||||
}
|
}
|
||||||
|
|
||||||
Render(*this, document.get());
|
Render(*this, document.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
component::Delegate* ScreenInteractive::delegate() {
|
Component::Delegate* ScreenInteractive::delegate() {
|
||||||
return delegate_.get();
|
return delegate_.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -177,4 +178,4 @@ std::function<void()> ScreenInteractive::ExitLoopClosure() {
|
|||||||
return [this]() { quit_ = true; };
|
return [this]() { quit_ = true; };
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component.
|
} // namespace ftxui.
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
#include "ftxui/component/toggle.hpp"
|
#include "ftxui/component/toggle.hpp"
|
||||||
|
|
||||||
namespace ftxui::component {
|
namespace ftxui {
|
||||||
|
|
||||||
Toggle::Toggle(Delegate* delegate) : Component(delegate) {}
|
Toggle::Toggle(Delegate* delegate) : Component(delegate) {}
|
||||||
|
|
||||||
dom::Element Toggle::Render() {
|
Element Toggle::Render() {
|
||||||
using namespace dom;
|
|
||||||
auto highlight = Focused() ? inverted : bold;
|
auto highlight = Focused() ? inverted : bold;
|
||||||
|
|
||||||
Children children;
|
Children children;
|
||||||
@ -40,4 +39,4 @@ bool Toggle::OnEvent(Event event) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::component
|
} // namespace ftxui
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class Blink : public NodeDecorator {
|
class Blink : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
Blink(Children children) : NodeDecorator(std::move(children)) {}
|
Blink(Children children) : NodeDecorator(std::move(children)) {}
|
||||||
~Blink() override {}
|
~Blink() override {}
|
||||||
|
|
||||||
void Render(screen::Screen& screen) override {
|
void Render(Screen& screen) override {
|
||||||
Node::Render(screen);
|
Node::Render(screen);
|
||||||
for (int y = box_.top; y <= box_.bottom; ++y) {
|
for (int y = box_.top; y <= box_.bottom; ++y) {
|
||||||
for (int x = box_.left; x <= box_.right; ++x) {
|
for (int x = box_.left; x <= box_.right; ++x) {
|
||||||
@ -22,4 +22,4 @@ std::unique_ptr<Node> blink(Child child) {
|
|||||||
return std::make_unique<Blink>(unpack(std::move(child)));
|
return std::make_unique<Blink>(unpack(std::move(child)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class Bold : public NodeDecorator {
|
class Bold : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
Bold(Children children) : NodeDecorator(std::move(children)) {}
|
Bold(Children children) : NodeDecorator(std::move(children)) {}
|
||||||
~Bold() override {}
|
~Bold() override {}
|
||||||
|
|
||||||
void Render(screen::Screen& screen) override {
|
void Render(Screen& screen) override {
|
||||||
for (int y = box_.top; y <= box_.bottom; ++y) {
|
for (int y = box_.top; y <= box_.bottom; ++y) {
|
||||||
for (int x = box_.left; x <= box_.right; ++x) {
|
for (int x = box_.left; x <= box_.right; ++x) {
|
||||||
screen.PixelAt(x,y).bold = true;
|
screen.PixelAt(x,y).bold = true;
|
||||||
@ -22,4 +22,4 @@ std::unique_ptr<Node> bold(Child child) {
|
|||||||
return std::make_unique<Bold>(unpack(std::move(child)));
|
return std::make_unique<Bold>(unpack(std::move(child)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class BgColor : public NodeDecorator {
|
class BgColor : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
BgColor(Children children, Color color)
|
BgColor(Children children, Color color)
|
||||||
: NodeDecorator(std::move(children)), color_(color) {}
|
: NodeDecorator(std::move(children)), color_(color) {}
|
||||||
|
|
||||||
void Render(screen::Screen& screen) override {
|
void Render(Screen& screen) override {
|
||||||
for (int y = box_.top; y <= box_.bottom; ++y) {
|
for (int y = box_.top; y <= box_.bottom; ++y) {
|
||||||
for (int x = box_.left; x <= box_.right; ++x) {
|
for (int x = box_.left; x <= box_.right; ++x) {
|
||||||
screen.PixelAt(x, y).background_color = color_;
|
screen.PixelAt(x, y).background_color = color_;
|
||||||
@ -26,7 +26,7 @@ class FgColor : public NodeDecorator {
|
|||||||
: NodeDecorator(std::move(children)), color_(color) {}
|
: NodeDecorator(std::move(children)), color_(color) {}
|
||||||
~FgColor() override {}
|
~FgColor() override {}
|
||||||
|
|
||||||
void Render(screen::Screen& screen) override {
|
void Render(Screen& screen) override {
|
||||||
for (int y = box_.top; y <= box_.bottom; ++y) {
|
for (int y = box_.top; y <= box_.bottom; ++y) {
|
||||||
for (int x = box_.left; x <= box_.right; ++x) {
|
for (int x = box_.left; x <= box_.right; ++x) {
|
||||||
screen.PixelAt(x, y).foreground_color = color_;
|
screen.PixelAt(x, y).foreground_color = color_;
|
||||||
@ -58,4 +58,4 @@ Decorator bgcolor(Color c) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
std::unique_ptr<Node> hcenter(Element child) {
|
std::unique_ptr<Node> hcenter(Element child) {
|
||||||
return hbox(filler(), std::move(child), filler());
|
return hbox(filler(), std::move(child), filler());
|
||||||
@ -19,4 +19,4 @@ std::unique_ptr<Node> align_right(Element child) {
|
|||||||
return hbox(filler(), std::move(child));
|
return hbox(filler(), std::move(child));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::dom
|
} // namespace ftxui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class DBox : public Node {
|
class DBox : public Node {
|
||||||
public:
|
public:
|
||||||
@ -32,4 +32,4 @@ std::unique_ptr<Node> dbox(Children children) {
|
|||||||
return std::make_unique<DBox>(std::move(children));
|
return std::make_unique<DBox>(std::move(children));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
class Dim : public NodeDecorator {
|
class Dim : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
@ -24,4 +24,4 @@ std::unique_ptr<Node> dim(Child child) {
|
|||||||
return std::make_unique<Dim>(unpack(std::move(child)));
|
return std::make_unique<Dim>(unpack(std::move(child)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class Flex : public Node {
|
class Flex : public Node {
|
||||||
public:
|
public:
|
||||||
@ -34,4 +34,4 @@ std::unique_ptr<Node> flex(Element child) {
|
|||||||
return std::make_unique<Flex>(std::move(child));
|
return std::make_unique<Flex>(std::move(child));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
|
|
||||||
static wchar_t charset[] = L"┌┐└┘─│┬┴┤├";
|
static wchar_t charset[] = L"┌┐└┘─│┬┴┤├";
|
||||||
|
|
||||||
@ -95,4 +95,4 @@ Decorator boxed() {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
|
|
||||||
static wchar_t charset[] = L" ▏▎▍▌▋▊▉█";
|
static wchar_t charset[] = L" ▏▎▍▌▋▊▉█";
|
||||||
|
|
||||||
@ -36,4 +36,4 @@ std::unique_ptr<Node> gauge(float progress) {
|
|||||||
return std::make_unique<Gauge>(progress);
|
return std::make_unique<Gauge>(progress);
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
|
|
||||||
TEST(GaugeTest, zero) {
|
TEST(GaugeTest, zero) {
|
||||||
auto root = gauge(0);
|
auto root = gauge(0);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class HBox : public Node {
|
class HBox : public Node {
|
||||||
public:
|
public:
|
||||||
@ -63,4 +63,4 @@ std::unique_ptr<Node> hbox(Children children) {
|
|||||||
return std::make_unique<HBox>(std::move(children));
|
return std::make_unique<HBox>(std::move(children));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
|
|
||||||
TEST(HBoxTest, ScreenSmaller1) {
|
TEST(HBoxTest, ScreenSmaller1) {
|
||||||
auto root = hbox(
|
auto root = hbox(
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
class Inverted : public NodeDecorator {
|
class Inverted : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
@ -24,4 +24,4 @@ std::unique_ptr<Node> inverted(Child child) {
|
|||||||
return std::make_unique<Inverted>(unpack(std::move(child)));
|
return std::make_unique<Inverted>(unpack(std::move(child)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
Node::Node() {}
|
Node::Node() {}
|
||||||
Node::Node(std::vector<std::unique_ptr<Node>> children)
|
Node::Node(std::vector<std::unique_ptr<Node>> children)
|
||||||
@ -40,4 +40,4 @@ void Render(Screen& screen, Node* node) {
|
|||||||
node->Render(screen);
|
node->Render(screen);
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
void NodeDecorator::ComputeRequirement() {
|
void NodeDecorator::ComputeRequirement() {
|
||||||
Node::ComputeRequirement();
|
Node::ComputeRequirement();
|
||||||
@ -12,4 +12,4 @@ void NodeDecorator::SetBox(Box box) {
|
|||||||
children[0]->SetBox(box);
|
children[0]->SetBox(box);
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
// Helper class.
|
// Helper class.
|
||||||
class NodeDecorator : public Node {
|
class NodeDecorator : public Node {
|
||||||
@ -15,6 +15,6 @@ class NodeDecorator : public Node {
|
|||||||
void SetBox(Box box) override;
|
void SetBox(Box box) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
|
||||||
#endif /* end of include guard: FTXUI_DOM_NODE_DECORATOR_H_ */
|
#endif /* end of include guard: FTXUI_DOM_NODE_DECORATOR_H_ */
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
class Separator : public Node {
|
class Separator : public Node {
|
||||||
public:
|
public:
|
||||||
@ -35,4 +35,4 @@ std::unique_ptr<Node> separator() {
|
|||||||
return std::make_unique<Separator>();
|
return std::make_unique<Separator>();
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class Size : public Node {
|
class Size : public Node {
|
||||||
public:
|
public:
|
||||||
@ -32,4 +32,4 @@ Decorator size(size_t width, size_t height) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
|
|
||||||
static const std::vector<std::vector<std::vector<std::wstring>>> elements = {
|
static const std::vector<std::vector<std::vector<std::wstring>>> elements = {
|
||||||
{
|
{
|
||||||
@ -276,4 +276,4 @@ std::unique_ptr<Node> spinner(int c, size_t index) {
|
|||||||
return vbox(std::move(lines));
|
return vbox(std::move(lines));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
class Text : public Node {
|
class Text : public Node {
|
||||||
public:
|
public:
|
||||||
@ -34,4 +34,4 @@ std::unique_ptr<Node> text(std::wstring text) {
|
|||||||
return std::make_unique<Text>(text);
|
return std::make_unique<Text>(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
|
|
||||||
TEST(TextTest, ScreenHeightSmaller) {
|
TEST(TextTest, ScreenHeightSmaller) {
|
||||||
auto element = text(L"test");
|
auto element = text(L"test");
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#include "ftxui/dom/node_decorator.hpp"
|
#include "ftxui/dom/node_decorator.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
using ftxui::screen::Screen;
|
using ftxui::Screen;
|
||||||
|
|
||||||
class Underlined : public NodeDecorator {
|
class Underlined : public NodeDecorator {
|
||||||
public:
|
public:
|
||||||
@ -24,4 +24,4 @@ std::unique_ptr<Node> underlined(Child child) {
|
|||||||
return std::make_unique<Underlined>(unpack(std::move(child)));
|
return std::make_unique<Underlined>(unpack(std::move(child)));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
Element nothing(Element element) {
|
Element nothing(Element element) {
|
||||||
return std::move(element);
|
return std::move(element);
|
||||||
@ -23,4 +23,4 @@ Element operator|(Element e, Decorator d) {
|
|||||||
return d(std::move(e));
|
return d(std::move(e));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ftxui::dom
|
} // namespace ftxui
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/dom/elements.hpp"
|
#include "ftxui/dom/elements.hpp"
|
||||||
|
|
||||||
namespace ftxui::dom {
|
namespace ftxui {
|
||||||
|
|
||||||
class VBox : public Node {
|
class VBox : public Node {
|
||||||
public:
|
public:
|
||||||
@ -63,4 +63,4 @@ std::unique_ptr<Node> vbox(Children children) {
|
|||||||
return std::make_unique<VBox>(std::move(children));
|
return std::make_unique<VBox>(std::move(children));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::dom
|
}; // namespace ftxui
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
#include "ftxui/screen/screen.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
using namespace ftxui::screen;
|
using namespace ftxui;
|
||||||
using namespace ftxui::dom;
|
using namespace ftxui;
|
||||||
|
|
||||||
TEST(VBoxTest, ScreenSmaller1) {
|
TEST(VBoxTest, ScreenSmaller1) {
|
||||||
auto root = vbox(text(L"text_1"), text(L"text_2"));
|
auto root = vbox(text(L"text_1"), text(L"text_2"));
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
#include "ftxui/screen/screen.hpp"
|
|
||||||
#include "ftxui/dom/node.hpp"
|
#include "ftxui/dom/node.hpp"
|
||||||
#include "ftxui/terminal.hpp"
|
#include "ftxui/screen/screen.hpp"
|
||||||
#include "ftxui/util/string.hpp"
|
#include "ftxui/screen/string.hpp"
|
||||||
|
#include "ftxui/screen/terminal.hpp"
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
namespace ftxui::screen {
|
namespace ftxui {
|
||||||
|
|
||||||
static const wchar_t* BOLD_SET = L"\e[1m";
|
static const wchar_t* BOLD_SET = L"\e[1m";
|
||||||
static const wchar_t* BOLD_RESET = L"\e[22m"; // Can't use 21 here.
|
static const wchar_t* BOLD_RESET = L"\e[22m"; // Can't use 21 here.
|
||||||
@ -86,7 +86,7 @@ Screen Screen::TerminalFullscreen() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
Screen Screen::TerminalOutput(std::unique_ptr<dom::Node>& element) {
|
Screen Screen::TerminalOutput(std::unique_ptr<Node>& element) {
|
||||||
element->ComputeRequirement();
|
element->ComputeRequirement();
|
||||||
Terminal::Dimensions size = Terminal::Size();
|
Terminal::Dimensions size = Terminal::Size();
|
||||||
return Screen(size.dimx, element->requirement().min.y);
|
return Screen(size.dimx, element->requirement().min.y);
|
||||||
@ -106,4 +106,4 @@ void Screen::Clear() {
|
|||||||
std::vector<Pixel>(dimx_, Pixel()));
|
std::vector<Pixel>(dimx_, Pixel()));
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // namespace ftxui::screen
|
}; // namespace ftxui
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "ftxui/terminal.hpp"
|
#include "ftxui/screen/terminal.hpp"
|
||||||
|
|
||||||
namespace ftxui {
|
namespace ftxui {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user