QAccessiblePlugin Class Reference

#include <qaccessibleplugin.h>

Inheritance diagram for QAccessiblePlugin:

Inheritance graph
[legend]
Collaboration diagram for QAccessiblePlugin:

Collaboration graph
[legend]
List of all members.

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, {How to Create Qt Plugins}

Definition at line 49 of file qaccessibleplugin.h.

Public Member Functions

 QAccessiblePlugin (QObject *parent=0)
 ~QAccessiblePlugin ()
virtual QStringList keys () const=0
virtual QAccessibleInterfacecreate (const QString &key, QObject *object)=0


Constructor & Destructor Documentation

QAccessiblePlugin::QAccessiblePlugin ( QObject parent = 0  )  [explicit]

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

Definition at line 50 of file qaccessibleplugin.cpp.

00051     : QObject(parent)
00052 {
00053 }

QAccessiblePlugin::~QAccessiblePlugin (  ) 

Destroys the accessibility plugin.

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

Definition at line 61 of file qaccessibleplugin.cpp.

00062 {
00063 }


Member Function Documentation

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

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()

Implements QFactoryInterface.

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

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

See also:
keys()

Implements QAccessibleFactoryInterface.


The documentation for this class was generated from the following files:
Generated on Thu Mar 15 16:47:39 2007 for Qt 4.2 User's Guide by  doxygen 1.5.1