1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 07:35:07 +00:00
serenity/Libraries/LibGUI/GTabWidget.h
Andreas Kling a599317624 LibCore: Introduce a C_OBJECT macro.
This macro goes at the top of every CObject-derived class like so:

class SomeClass : public CObject {
    C_OBJECT(SomeClass)
public:
    ...

At the moment, all it does is create an override for the class_name() getter
but in the future this will be used to automatically insert member functions
into these classes.
2019-07-25 19:49:28 +02:00

43 lines
1.2 KiB
C++

#pragma once
#include <LibGUI/GWidget.h>
class GTabWidget : public GWidget {
C_OBJECT(GTabWidget)
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 StringView&, GWidget*);
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 };
};