diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-03-16 09:50:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-03-16 14:02:44 +0000 |
commit | dffde8403e0bb81d7eb3b7853cece187e1d36c62 (patch) | |
tree | 29b557823aea3d221559bc74864c7b4e28ba2ea0 /vcl/inc/salvtables.hxx | |
parent | 85d23f8ce86a71c8d7d2cb34e8b790dcfc8df654 (diff) |
allow more than DrawingArea to report style updates
Change-Id: I791e4ad45daeeb77ca25e36ae6520168b2ece044
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148980
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc/salvtables.hxx')
-rw-r--r-- | vcl/inc/salvtables.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/inc/salvtables.hxx b/vcl/inc/salvtables.hxx index 19f6b0adf91d..1bbf37b4f7fb 100644 --- a/vcl/inc/salvtables.hxx +++ b/vcl/inc/salvtables.hxx @@ -188,6 +188,7 @@ private: DECL_LINK(EventListener, VclWindowEvent&, void); DECL_LINK(KeyEventListener, VclWindowEvent&, bool); DECL_LINK(MouseEventListener, VclWindowEvent&, void); + DECL_LINK(SettingsChangedHdl, VclWindowEvent&, void); DECL_LINK(MnemonicActivateHdl, vcl::Window&, bool); static void DoRecursivePaint(vcl::Window* pWindow, const Point& rPos, OutputDevice& rOutput); @@ -333,6 +334,8 @@ public: virtual void connect_key_release(const Link<const KeyEvent&, bool>& rLink) override; + virtual void connect_style_updated(const Link<Widget&, void>& rLink) override; + virtual bool get_extents_relative_to(const Widget& rRelative, int& x, int& y, int& width, int& height) const override; @@ -1311,6 +1314,8 @@ public: virtual void connect_key_release(const Link<const KeyEvent&, bool>& rLink) override; + virtual void connect_style_updated(const Link<Widget&, void>& rLink) override; + virtual void set_cursor(PointerStyle ePointerStyle) override; virtual Point get_pointer_position() const override; |