ladybird/LibGUI/GWidget.h

100 lines
2.8 KiB
C
Raw Normal View History

2018-10-10 16:12:38 +03:00
#pragma once
#include "GEvent.h"
#include "GObject.h"
2019-01-20 01:49:56 +03:00
#include <SharedGraphics/Rect.h>
#include <SharedGraphics/Color.h>
#include <SharedGraphics/Font.h>
#include <AK/AKString.h>
2018-10-10 16:12:38 +03:00
class GraphicsBitmap;
class GWindow;
2018-10-12 02:03:22 +03:00
class GWidget : public GObject {
2018-10-10 16:12:38 +03:00
public:
explicit GWidget(GWidget* parent = nullptr);
virtual ~GWidget();
virtual void event(GEvent&) override;
virtual void paintEvent(GPaintEvent&);
virtual void showEvent(GShowEvent&);
virtual void hideEvent(GHideEvent&);
virtual void keyDownEvent(GKeyEvent&);
virtual void keyUpEvent(GKeyEvent&);
virtual void mouseMoveEvent(GMouseEvent&);
virtual void mouseDownEvent(GMouseEvent&);
virtual void mouseUpEvent(GMouseEvent&);
2018-10-10 16:12:38 +03:00
2018-10-12 15:15:14 +03:00
Rect relativeRect() const { return m_relativeRect; }
Point relativePosition() const { return m_relativeRect.location(); }
2018-10-12 11:06:50 +03:00
2018-10-12 15:15:14 +03:00
int x() const { return m_relativeRect.x(); }
int y() const { return m_relativeRect.y(); }
int width() const { return m_relativeRect.width(); }
int height() const { return m_relativeRect.height(); }
Rect rect() const { return { 0, 0, width(), height() }; }
Size size() const { return m_relativeRect.size(); }
2018-10-10 17:49:36 +03:00
2018-10-10 16:12:38 +03:00
void update();
void repaint(const Rect&);
2018-10-10 16:12:38 +03:00
2018-10-13 18:52:47 +03:00
bool isFocused() const;
void setFocus(bool);
2018-10-10 17:49:36 +03:00
struct HitTestResult {
GWidget* widget { nullptr };
2018-10-10 17:49:36 +03:00
int localX { 0 };
int localY { 0 };
};
HitTestResult hitTest(int x, int y);
virtual const char* class_name() const override { return "GWidget"; }
2018-10-10 17:49:36 +03:00
void setWindowRelativeRect(const Rect&, bool should_update = true);
2018-10-10 17:49:36 +03:00
2018-10-11 02:48:09 +03:00
Color backgroundColor() const { return m_backgroundColor; }
Color foregroundColor() const { return m_foregroundColor; }
void setBackgroundColor(Color color) { m_backgroundColor = color; }
void setForegroundColor(Color color) { m_foregroundColor = color; }
GWindow* window()
2018-10-12 02:03:22 +03:00
{
if (auto* pw = parentWidget())
return pw->window();
return m_window;
}
const GWindow* window() const
2018-10-12 02:03:22 +03:00
{
if (auto* pw = parentWidget())
return pw->window();
return m_window;
}
2018-10-11 17:52:40 +03:00
void setWindow(GWindow*);
GWidget* parentWidget() { return static_cast<GWidget*>(parent()); }
const GWidget* parentWidget() const { return static_cast<const GWidget*>(parent()); }
2018-10-11 17:52:40 +03:00
2018-10-14 01:21:42 +03:00
void setFillWithBackgroundColor(bool b) { m_fillWithBackgroundColor = b; }
bool fillWithBackgroundColor() const { return m_fillWithBackgroundColor; }
const Font& font() const { return *m_font; }
void setFont(RetainPtr<Font>&&);
virtual GraphicsBitmap* backing();
2018-10-10 16:12:38 +03:00
private:
GWindow* m_window { nullptr };
2018-10-12 02:03:22 +03:00
2018-10-12 15:15:14 +03:00
Rect m_relativeRect;
Color m_backgroundColor { 0xffffff };
Color m_foregroundColor { 0x000000 };
RetainPtr<Font> m_font;
bool m_hasPendingPaintEvent { false };
bool m_fillWithBackgroundColor { true };
2018-10-10 16:12:38 +03:00
};