ttx 0.1.0
Loading...
Searching...
No Matches
tab.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/container/string/prelude.h"
4#include "di/reflect/prelude.h"
5#include "ttx/layout.h"
6#include "ttx/pane.h"
7
8namespace ttx {
9class RenderThread;
10
17
18constexpr auto tag_invoke(di::Tag<di::reflect>, di::InPlaceType<NavigateDirection>) {
19 using enum NavigateDirection;
20 return di::make_enumerators<"NavigateDirection">(di::enumerator<"Left", Left>, di::enumerator<"Right", Right>,
21 di::enumerator<"Up", Up>, di::enumerator<"Down", Down>);
22}
23
24// Corresponds to tmux window.
25struct Tab {
26public:
27 explicit Tab(di::String name) : m_name(di::move(name)) {}
28
29 void layout(dius::tty::WindowSize const& size, u32 row, u32 col);
30 void invalidate_all();
31
32 // Returns the removed pane, if found.
33 auto remove_pane(Pane* pane) -> di::Box<Pane>;
34
35 auto add_pane(dius::tty::WindowSize const& size, u32 row, u32 col, CreatePaneArgs args, Direction direction,
36 RenderThread& render_thread) -> di::Result<>;
37
38 void navigate(NavigateDirection direction);
39
40 // Returns true if active pane has changed.
41 auto set_active(Pane* pane) -> bool;
42
43 auto name() const -> di::StringView { return m_name; }
44 auto empty() const -> bool { return m_layout_root.empty(); }
45
46 auto layout_group() -> LayoutGroup& { return m_layout_root; }
47 auto layout_tree() const -> di::Optional<LayoutNode&> {
48 if (!m_layout_tree) {
49 return {};
50 }
51 return *m_layout_tree;
52 }
53
54 auto active() const -> di::Optional<Pane&> {
55 if (!m_active) {
56 return {};
57 }
58 return *m_active;
59 }
60
61 auto panes() const -> di::Ring<Pane*> const& { return m_panes_ordered_by_recency; }
62
63 auto set_is_active(bool b) -> bool;
64 auto is_active() -> bool { return m_is_active; }
65
66private:
67 dius::tty::WindowSize m_size;
68 di::String m_name;
69 LayoutGroup m_layout_root {};
70 di::Box<LayoutNode> m_layout_tree {};
71 di::Ring<Pane*> m_panes_ordered_by_recency {};
72 bool m_is_active { false };
73 Pane* m_active { nullptr };
74};
75}
Definition layout.h:85
Definition pane.h:29
Definition render.h:31
Definition test_layout.cpp:6
Definition cursor_style.h:5
NavigateDirection
Definition tab.h:11
Direction
Definition direction.h:7
@ Down
Definition key.h:72
@ Up
Definition key.h:71
@ Right
Definition key.h:70
@ Left
Definition key.h:69
constexpr auto tag_invoke(di::Tag< di::reflect >, di::InPlaceType< CursorStyle >)
Definition cursor_style.h:16
Definition pane.h:22
Definition layout.h:35
auto name() const -> di::StringView
Definition tab.h:43
void invalidate_all()
Definition tab.cpp:14
Tab(di::String name)
Definition tab.h:27
auto set_active(Pane *pane) -> bool
Definition tab.cpp:131
void navigate(NavigateDirection direction)
Definition tab.cpp:76
auto add_pane(dius::tty::WindowSize const &size, u32 row, u32 col, CreatePaneArgs args, Direction direction, RenderThread &render_thread) -> di::Result<>
Definition tab.cpp:35
auto is_active() -> bool
Definition tab.h:64
auto set_is_active(bool b) -> bool
Definition tab.cpp:151
auto empty() const -> bool
Definition tab.h:44
auto layout_group() -> LayoutGroup &
Definition tab.h:46
auto remove_pane(Pane *pane) -> di::Box< Pane >
Definition tab.cpp:20
auto layout_tree() const -> di::Optional< LayoutNode & >
Definition tab.h:47
auto panes() const -> di::Ring< Pane * > const &
Definition tab.h:61
auto active() const -> di::Optional< Pane & >
Definition tab.h:54