diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-07 21:27:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-08 13:23:04 +0200 |
commit | 396dfdd2164d095e4ec182956b31aca8c3908655 (patch) | |
tree | cce590ec29f535896d09203b051f79883c808618 /include/toolkit/helper/vclunohelper.hxx | |
parent | f4c66a2272d890eaa7a6d7429e5bfa7bdb1f7162 (diff) |
move set/get Pointer to VCLUnoHelper
Change-Id: I7dadc7bc881e0b892720b3eb89fdc60c8d87c541
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113776
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/toolkit/helper/vclunohelper.hxx')
-rw-r--r-- | include/toolkit/helper/vclunohelper.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/toolkit/helper/vclunohelper.hxx b/include/toolkit/helper/vclunohelper.hxx index 75af557dc801..a4e1a061ee80 100644 --- a/include/toolkit/helper/vclunohelper.hxx +++ b/include/toolkit/helper/vclunohelper.hxx @@ -60,13 +60,13 @@ namespace com::sun::star::awt { } +enum class PointerStyle; + class FontMetric; class OutputDevice; class MouseEvent; class KeyEvent; - - class TOOLKIT_DLLPUBLIC VCLUnoHelper { public: @@ -148,8 +148,10 @@ public: ); static ::KeyEvent createVCLKeyEvent( const css::awt::KeyEvent& _rAwtEvent ); -}; + static ::PointerStyle getMousePointer(const css::uno::Reference<css::awt::XWindowPeer>& rWindowPeer); + static void setMousePointer(const css::uno::Reference<css::awt::XWindowPeer>& rWindowPeer, ::PointerStyle mousepointer); +}; #endif // INCLUDED_TOOLKIT_HELPER_VCLUNOHELPER_HXX |