diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-08-27 10:34:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-08-27 14:33:23 +0200 |
commit | 7d0279121f099aa36fcee3f0df207bdbcee75ad4 (patch) | |
tree | 5a92caf52cb323b0a1584fe4d9142b97b8be7089 /include/vcl/menu.hxx | |
parent | 5f2c138bf67b19ba5cfa696afda7087d6879f074 (diff) |
tdf#136162 implement applying atk properties to gen menus
Change-Id: I77dbc21910b01524d281869a83d9d12efd419bf6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101446
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/menu.hxx')
-rw-r--r-- | include/vcl/menu.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx index bea9e2a39268..9522204de0b6 100644 --- a/include/vcl/menu.hxx +++ b/include/vcl/menu.hxx @@ -372,8 +372,12 @@ public: vcl::Window* GetWindow() const { return pWindow; } + void SetAccessibleName( sal_uInt16 nItemId, const OUString& rStr ); OUString GetAccessibleName( sal_uInt16 nItemId ) const; + void SetAccessibleDescription( sal_uInt16 nItemId, const OUString& rStr ); + OUString GetAccessibleDescription( sal_uInt16 nItemId ) const; + // returns whether the item a position nItemPos is highlighted or not. bool IsHighlighted( sal_uInt16 nItemPos ) const; |