ladybird/Widgets/Widget.h

55 lines
1.4 KiB
C
Raw Normal View History

2018-10-10 16:12:38 +03:00
#pragma once
#include "Event.h"
#include "Object.h"
2018-10-10 17:49:36 +03:00
#include "Rect.h"
2018-10-11 02:48:09 +03:00
#include "Color.h"
2018-10-10 16:12:38 +03:00
class Widget : public Object {
public:
explicit Widget(Widget* parent = nullptr);
virtual ~Widget();
virtual void event(Event&);
virtual void onPaint(PaintEvent&);
virtual void onShow(ShowEvent&);
virtual void onHide(HideEvent&);
virtual void onKeyDown(KeyEvent&);
virtual void onKeyUp(KeyEvent&);
virtual void onMouseMove(MouseEvent&);
virtual void onMouseDown(MouseEvent&);
virtual void onMouseUp(MouseEvent&);
2018-10-10 17:49:36 +03:00
Rect rect() const { return m_rect; }
int x() const { return rect().x(); }
int y() const { return rect().y(); }
int width() const { return rect().width(); }
int height() const { return rect().height(); }
2018-10-10 16:12:38 +03:00
void update();
2018-10-10 17:49:36 +03:00
struct HitTestResult {
Widget* widget { nullptr };
int localX { 0 };
int localY { 0 };
};
HitTestResult hitTest(int x, int y);
virtual const char* className() const override { return "Widget"; }
void setRect(const Rect&);
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; }
2018-10-10 16:12:38 +03:00
private:
2018-10-10 17:49:36 +03:00
Rect m_rect;
2018-10-11 02:48:09 +03:00
Color m_backgroundColor;
Color m_foregroundColor;
bool m_hasPendingPaintEvent { false };
2018-10-10 16:12:38 +03:00
};