diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-07-21 21:12:05 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-07-22 01:40:52 +0200 |
commit | d6c665387233e894a27c0b33e4b49e5d1d229aeb (patch) | |
tree | 0e22463970ba5e08d5dbf5e1f2403b0a98f03a1d /application/groupview/AccessibleGroupView.h | |
parent | 3b32730526512be8d672931afe860e0baff76a28 (diff) | |
download | MultiMC-d6c665387233e894a27c0b33e4b49e5d1d229aeb.tar MultiMC-d6c665387233e894a27c0b33e4b49e5d1d229aeb.tar.gz MultiMC-d6c665387233e894a27c0b33e4b49e5d1d229aeb.tar.lz MultiMC-d6c665387233e894a27c0b33e4b49e5d1d229aeb.tar.xz MultiMC-d6c665387233e894a27c0b33e4b49e5d1d229aeb.zip |
NOISSUE Add basic accessibility support to GroupView
Diffstat (limited to 'application/groupview/AccessibleGroupView.h')
-rw-r--r-- | application/groupview/AccessibleGroupView.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/application/groupview/AccessibleGroupView.h b/application/groupview/AccessibleGroupView.h new file mode 100644 index 00000000..9bfd1745 --- /dev/null +++ b/application/groupview/AccessibleGroupView.h @@ -0,0 +1,6 @@ +#pragma once + +#include <QString> +class QAccessibleInterface; + +QAccessibleInterface *groupViewAccessibleFactory(const QString &classname, QObject *object); |