diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-22 15:59:00 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-24 18:19:29 +0100 |
commit | f920e86fbf3968104e1dfc0e9934e80652ed0837 (patch) | |
tree | 01f8ed9c445821739b9709c5fee6e51eab0ae24d /include/vcl | |
parent | da881f38c088c439f034e340bbbb4ca53e67389f (diff) |
weld SvxSearchDialog
I have to use the other way to specify an a11y role, both are implemented in
the vcl parser, but in my gtk3-3.24.7 the role tag crashes the gtk parser,
while the other route works fine.
The CONTENT_FLOWS_TO accessibility relation is another additional complexity
over the norm
Change-Id: Ia096bcbe9f00f9944e4e4d5ad9bb1a52d19c7b3f
Reviewed-on: https://gerrit.libreoffice.org/69569
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/weld.hxx | 5 | ||||
-rw-r--r-- | include/vcl/window.hxx | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 96f292c4d695..a180243019df 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -141,6 +141,11 @@ public: virtual void set_accessible_relation_labeled_by(weld::Widget* pLabel) = 0; virtual void set_accessible_relation_label_for(weld::Widget* pLabeled) = 0; + virtual void + add_extra_accessible_relation(const css::accessibility::AccessibleRelation& rRelation) + = 0; + virtual void clear_extra_accessible_relations() = 0; + virtual void set_tooltip_text(const OUString& rTip) = 0; virtual OUString get_tooltip_text() const = 0; diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index fff03ed1ffb5..c109e80d982d 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -67,6 +67,7 @@ enum class PointerStyle; namespace com { namespace sun { namespace star { namespace accessibility { + struct AccessibleRelation; class XAccessible; } @@ -1252,6 +1253,9 @@ public: void SetAccessibleRelationMemberOf( vcl::Window* pMemberOf ); vcl::Window* GetAccessibleRelationMemberOf() const; + void AddExtraAccessibleRelation(const css::accessibility::AccessibleRelation &rRelation); + const std::vector<css::accessibility::AccessibleRelation>& GetExtraAccessibleRelations() const; + void ClearExtraAccessibleRelations(); // to avoid sending accessibility events in cases like closing dialogs // by default checks complete parent path |