2018-10-10 15:12:38 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
#include "GEvent.h"
|
|
|
|
#include "GObject.h"
|
2019-01-19 23:49:56 +01:00
|
|
|
#include <SharedGraphics/Rect.h>
|
|
|
|
#include <SharedGraphics/Color.h>
|
|
|
|
#include <SharedGraphics/Font.h>
|
2019-02-10 11:07:13 +01:00
|
|
|
#include <AK/Badge.h>
|
2018-12-21 02:18:16 +01:00
|
|
|
#include <AK/AKString.h>
|
2018-10-10 15:12:38 +02:00
|
|
|
|
2019-01-09 02:06:04 +01:00
|
|
|
class GraphicsBitmap;
|
2019-02-10 11:07:13 +01:00
|
|
|
class GLayout;
|
2019-01-20 04:49:48 +01:00
|
|
|
class GWindow;
|
2018-10-12 01:03:22 +02:00
|
|
|
|
2019-02-10 11:07:13 +01:00
|
|
|
enum class SizePolicy { Fixed, Fill };
|
|
|
|
enum class Orientation { Horizontal, Vertical };
|
2019-03-06 14:06:40 +01:00
|
|
|
enum class HorizontalDirection { Left, Right };
|
|
|
|
enum class VerticalDirection { Up, Down };
|
2019-02-10 11:07:13 +01:00
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
class GWidget : public GObject {
|
2018-10-10 15:12:38 +02:00
|
|
|
public:
|
2019-01-20 04:49:48 +01:00
|
|
|
explicit GWidget(GWidget* parent = nullptr);
|
2019-01-21 00:46:08 +01:00
|
|
|
virtual ~GWidget() override;
|
2019-01-20 04:49:48 +01:00
|
|
|
|
2019-02-10 11:07:13 +01:00
|
|
|
GLayout* layout() { return m_layout.ptr(); }
|
|
|
|
void set_layout(OwnPtr<GLayout>&&);
|
|
|
|
|
|
|
|
SizePolicy horizontal_size_policy() const { return m_horizontal_size_policy; }
|
|
|
|
SizePolicy vertical_size_policy() const { return m_vertical_size_policy; }
|
|
|
|
SizePolicy size_policy(Orientation orientation) { return orientation == Orientation::Horizontal ? m_horizontal_size_policy : m_vertical_size_policy; }
|
|
|
|
void set_size_policy(SizePolicy horizontal_policy, SizePolicy vertical_policy);
|
|
|
|
|
|
|
|
Size preferred_size() const { return m_preferred_size; }
|
|
|
|
void set_preferred_size(const Size&);
|
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
virtual void event(GEvent&) override;
|
2019-01-21 00:46:08 +01:00
|
|
|
virtual void paint_event(GPaintEvent&);
|
2019-02-09 11:19:38 +01:00
|
|
|
virtual void resize_event(GResizeEvent&);
|
2019-01-21 00:46:08 +01:00
|
|
|
virtual void show_event(GShowEvent&);
|
|
|
|
virtual void hide_event(GHideEvent&);
|
|
|
|
virtual void keydown_event(GKeyEvent&);
|
|
|
|
virtual void keyup_event(GKeyEvent&);
|
|
|
|
virtual void mousemove_event(GMouseEvent&);
|
|
|
|
virtual void mousedown_event(GMouseEvent&);
|
|
|
|
virtual void mouseup_event(GMouseEvent&);
|
2019-01-26 11:24:16 +01:00
|
|
|
virtual void focusin_event(GEvent&);
|
|
|
|
virtual void focusout_event(GEvent&);
|
2019-02-20 10:12:19 +01:00
|
|
|
virtual void enter_event(GEvent&);
|
|
|
|
virtual void leave_event(GEvent&);
|
2019-03-15 23:24:40 +01:00
|
|
|
virtual void child_event(GChildEvent&) override;
|
2019-01-21 00:46:08 +01:00
|
|
|
|
|
|
|
Rect relative_rect() const { return m_relative_rect; }
|
|
|
|
Point relative_position() const { return m_relative_rect.location(); }
|
|
|
|
|
2019-02-09 14:30:05 +01:00
|
|
|
Rect window_relative_rect() const;
|
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
int x() const { return m_relative_rect.x(); }
|
|
|
|
int y() const { return m_relative_rect.y(); }
|
|
|
|
int width() const { return m_relative_rect.width(); }
|
|
|
|
int height() const { return m_relative_rect.height(); }
|
2018-10-12 14:15:14 +02:00
|
|
|
|
|
|
|
Rect rect() const { return { 0, 0, width(), height() }; }
|
2019-01-21 00:46:08 +01:00
|
|
|
Size size() const { return m_relative_rect.size(); }
|
2018-10-10 16:49:36 +02:00
|
|
|
|
2018-10-10 15:12:38 +02:00
|
|
|
void update();
|
2019-02-10 14:28:39 +01:00
|
|
|
void update(const Rect&);
|
2018-10-10 15:12:38 +02:00
|
|
|
|
2019-01-26 11:24:16 +01:00
|
|
|
virtual bool accepts_focus() const { return false; }
|
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
bool is_focused() const;
|
|
|
|
void set_focus(bool);
|
2018-10-13 17:52:47 +02:00
|
|
|
|
2018-10-10 16:49:36 +02:00
|
|
|
struct HitTestResult {
|
2019-01-20 04:49:48 +01:00
|
|
|
GWidget* widget { nullptr };
|
2018-10-10 16:49:36 +02:00
|
|
|
int localX { 0 };
|
|
|
|
int localY { 0 };
|
|
|
|
};
|
2019-01-21 00:46:08 +01:00
|
|
|
HitTestResult hit_test(int x, int y);
|
2018-10-10 16:49:36 +02:00
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
virtual const char* class_name() const override { return "GWidget"; }
|
2018-10-10 16:49:36 +02:00
|
|
|
|
2019-01-24 23:40:12 +01:00
|
|
|
void set_relative_rect(const Rect&);
|
2019-02-09 11:19:38 +01:00
|
|
|
void set_relative_rect(int x, int y, int width, int height) { set_relative_rect({ x, y, width, height }); }
|
2019-02-08 00:14:37 +01:00
|
|
|
|
2019-02-02 08:05:14 +01:00
|
|
|
void move_to(const Point& point) { set_relative_rect({ point, relative_rect().size() }); }
|
2019-02-08 00:14:37 +01:00
|
|
|
void move_to(int x, int y) { move_to({ x, y }); }
|
|
|
|
void resize(const Size& size) { set_relative_rect({ relative_rect().location(), size }); }
|
|
|
|
void resize(int width, int height) { resize({ width, height }); }
|
2018-10-10 16:49:36 +02:00
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
Color background_color() const { return m_background_color; }
|
|
|
|
Color foreground_color() const { return m_foreground_color; }
|
2018-10-11 01:48:09 +02:00
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
void set_background_color(Color color) { m_background_color = color; }
|
|
|
|
void set_foreground_color(Color color) { m_foreground_color = color; }
|
2018-10-11 01:48:09 +02:00
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
GWindow* window()
|
2018-10-12 01:03:22 +02:00
|
|
|
{
|
2019-01-21 00:46:08 +01:00
|
|
|
if (auto* pw = parent_widget())
|
2018-10-12 01:03:22 +02:00
|
|
|
return pw->window();
|
|
|
|
return m_window;
|
|
|
|
}
|
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
const GWindow* window() const
|
2018-10-12 01:03:22 +02:00
|
|
|
{
|
2019-01-21 00:46:08 +01:00
|
|
|
if (auto* pw = parent_widget())
|
2018-10-12 01:03:22 +02:00
|
|
|
return pw->window();
|
|
|
|
return m_window;
|
|
|
|
}
|
2018-10-11 16:52:40 +02:00
|
|
|
|
2019-01-20 07:03:38 +01:00
|
|
|
void set_window(GWindow*);
|
2018-10-12 02:41:27 +02:00
|
|
|
|
2019-03-19 02:20:00 +01:00
|
|
|
GWidget* parent_widget()
|
|
|
|
{
|
|
|
|
if (parent() && parent()->is_widget())
|
|
|
|
return static_cast<GWidget*>(parent());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
const GWidget* parent_widget() const
|
|
|
|
{
|
|
|
|
if (parent() && parent()->is_widget())
|
|
|
|
return static_cast<const GWidget*>(parent());
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-10-11 16:52:40 +02:00
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
void set_fill_with_background_color(bool b) { m_fill_with_background_color = b; }
|
|
|
|
bool fill_with_background_color() const { return m_fill_with_background_color; }
|
2018-10-14 00:21:42 +02:00
|
|
|
|
2018-10-14 13:06:05 +02:00
|
|
|
const Font& font() const { return *m_font; }
|
2019-01-21 00:46:08 +01:00
|
|
|
void set_font(RetainPtr<Font>&&);
|
2018-10-14 13:06:05 +02:00
|
|
|
|
2019-01-27 08:48:34 +01:00
|
|
|
void set_global_cursor_tracking(bool);
|
|
|
|
bool global_cursor_tracking() const;
|
|
|
|
|
2019-02-10 11:07:13 +01:00
|
|
|
void notify_layout_changed(Badge<GLayout>);
|
|
|
|
|
2019-03-15 16:12:06 +01:00
|
|
|
bool is_visible() const { return m_visible; }
|
|
|
|
void set_visible(bool);
|
|
|
|
|
2018-10-10 15:12:38 +02:00
|
|
|
private:
|
2019-03-15 16:12:06 +01:00
|
|
|
virtual bool is_widget() const final { return true; }
|
|
|
|
|
2019-02-09 11:19:38 +01:00
|
|
|
void handle_paint_event(GPaintEvent&);
|
2019-02-10 11:07:13 +01:00
|
|
|
void handle_resize_event(GResizeEvent&);
|
|
|
|
void do_layout();
|
|
|
|
void invalidate_layout();
|
2019-02-09 11:19:38 +01:00
|
|
|
|
2019-01-20 04:49:48 +01:00
|
|
|
GWindow* m_window { nullptr };
|
2019-02-10 11:07:13 +01:00
|
|
|
OwnPtr<GLayout> m_layout;
|
2018-10-12 01:03:22 +02:00
|
|
|
|
2019-01-21 00:46:08 +01:00
|
|
|
Rect m_relative_rect;
|
2019-02-19 01:42:53 +01:00
|
|
|
Color m_background_color;
|
|
|
|
Color m_foreground_color;
|
2018-10-14 13:06:05 +02:00
|
|
|
RetainPtr<Font> m_font;
|
2018-10-11 12:33:03 +02:00
|
|
|
|
2019-02-10 11:07:13 +01:00
|
|
|
SizePolicy m_horizontal_size_policy { SizePolicy::Fill };
|
|
|
|
SizePolicy m_vertical_size_policy { SizePolicy::Fill };
|
|
|
|
Size m_preferred_size;
|
|
|
|
|
2019-03-10 13:16:36 +01:00
|
|
|
bool m_fill_with_background_color { false };
|
2019-03-15 16:12:06 +01:00
|
|
|
bool m_visible { true };
|
2018-10-10 15:12:38 +02:00
|
|
|
};
|