diff options
Diffstat (limited to 'Libraries/LibGUI/Window.h')
-rw-r--r-- | Libraries/LibGUI/Window.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Window.h b/Libraries/LibGUI/Window.h index 2b505b6b02..b6e8688978 100644 --- a/Libraries/LibGUI/Window.h +++ b/Libraries/LibGUI/Window.h @@ -209,6 +209,18 @@ protected: private: virtual bool is_window() const override final { return true; } + void handle_drop_event(DropEvent&); + void handle_mouse_event(MouseEvent&); + void handle_multi_paint_event(MultiPaintEvent&); + void handle_key_event(KeyEvent&); + void handle_resize_event(ResizeEvent&); + void handle_input_entered_or_left_event(Core::Event&); + void handle_became_active_or_inactive_event(Core::Event&); + void handle_close_request(); + void handle_theme_change_event(ThemeChangeEvent&); + void handle_drag_move_event(DragEvent&); + void handle_left_event(); + void server_did_destroy(); RefPtr<Gfx::Bitmap> create_backing_bitmap(const Gfx::IntSize&); |