QAccessiblePlugin Class

The QAccessiblePlugin class provides an abstract base for accessibility plugins. More...

Header: #include <QAccessiblePlugin>
Inherits: QObject and QAccessible

Public Functions

QAccessiblePlugin(QObject * parent = 0)
~QAccessiblePlugin()

Reimplemented Public Functions

virtual QAccessibleInterface * create(const QString & key, QObject * object) = 0
virtual QStringList keys() const = 0
  • 29 public functions inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 7 static public members inherited from QObject
  • 7 static public members inherited from QAccessible
  • 8 protected functions inherited from QObject

Detailed Description

The QAccessiblePlugin class provides an abstract base for accessibility plugins.

Writing an accessibility plugin is achieved by subclassing this base class, reimplementing the pure virtual functions keys() and create(), and exporting the class with the Q_EXPORT_PLUGIN2() macro.

See also QAccessibleBridgePlugin and How to Create Qt Plugins.

Member Function Documentation

QAccessiblePlugin::QAccessiblePlugin(QObject * parent = 0)

Constructs an accessibility plugin with the given parent. This is invoked automatically by the Q_EXPORT_PLUGIN2() macro.

QAccessiblePlugin::~QAccessiblePlugin()

Destroys the accessibility plugin.

You never have to call this explicitly. Qt destroys a plugin automatically when it is no longer used.

[pure virtual] QAccessibleInterface * QAccessiblePlugin::create(const QString & key, QObject * object)

Creates and returns a QAccessibleInterface implementation for the class key and the object object. Keys are case sensitive.

See also keys().

[pure virtual] QStringList QAccessiblePlugin::keys() const

Returns the list of keys this plugin supports.

These keys must be the class names that this plugin provides an accessibility implementation for.

See also create().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.