blob: 7452c81da868ee6f14d5004bf39457cb3acfc14c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#pragma once
#include <LibGUI/GWidget.h>
class GTabWidget : public GWidget {
public:
explicit GTabWidget(GWidget* parent);
virtual ~GTabWidget() override;
GWidget* active_widget() const { return m_active_widget; }
void set_active_widget(GWidget*);
int bar_height() const { return 21; }
int container_padding() const { return 2; }
void add_widget(const String&, GWidget*);
virtual const char* class_name() const override { return "GTabWidget"; }
protected:
virtual void paint_event(GPaintEvent&) override;
virtual void child_event(CChildEvent&) override;
virtual void resize_event(GResizeEvent&) override;
virtual void mousedown_event(GMouseEvent&) override;
virtual void mousemove_event(GMouseEvent&) override;
virtual void leave_event(CEvent&) override;
private:
Rect child_rect_for_size(const Size&) const;
Rect button_rect(int index) const;
Rect bar_rect() const;
void update_bar();
GWidget* m_active_widget { nullptr };
struct TabData {
Rect rect(const Font&) const;
int width(const Font&) const;
String title;
GWidget* widget { nullptr };
};
Vector<TabData> m_tabs;
int m_hovered_tab_index { -1 };
};
|