about summary refs log tree commit diff stats
path: root/include/tui.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/tui.hpp')
-rw-r--r--include/tui.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/tui.hpp b/include/tui.hpp
new file mode 100644
index 0000000..112135c
--- /dev/null
+++ b/include/tui.hpp
@@ -0,0 +1,23 @@
+#ifndef TUI_H
+#define TUI_H
+#include <string>
+#include "ftxui/component/captured_mouse.hpp"  // for ftxui
+#include "ftxui/component/component.hpp"       // for Input, Renderer, Vertical
+#include "ftxui/component/component_base.hpp"  // for ComponentBase
+#include "ftxui/component/component_options.hpp"  // for InputOption
+#include "ftxui/component/screen_interactive.hpp"  // for Component, ScreenInteractive
+#include "ftxui/dom/elements.hpp"  // for text, hbox, separator, Element, operator|, vbox, border
+#include "ftxui/util/ref.hpp"  // for Ref
+
+class Tui {
+    public:
+        bool renderSearchBar(std::string&, int&);
+        bool isCancelled();
+    private:
+        ftxui::Closure cancelAndExit(ftxui::ScreenInteractive&);
+        bool cancel{false};
+
+};
+
+
+#endif
\ No newline at end of file