/**************************************************************************** ** ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the plugins of the Qt Toolkit. ** ** This file may be used under the terms of the GNU General Public ** License version 2.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of ** this file. Please review the following information to ensure GNU ** General Public Licensing requirements will be met: ** http://trolltech.com/products/qt/licenses/licensing/opensource/ ** ** If you are unsure which license is appropriate for your use, please ** review the following information: ** http://trolltech.com/products/qt/licenses/licensing/licensingoverview ** or contact the sales department at sales@trolltech.com. ** ** In addition, as a special exception, Trolltech gives you certain ** additional rights. These rights are described in the Trolltech GPL ** Exception version 1.0, which can be found at ** http://www.trolltech.com/products/qt/gplexception/ and in the file ** GPL_EXCEPTION.txt in this package. ** ** In addition, as a special exception, Trolltech, as the sole copyright ** holder for Qt Designer, grants users of the Qt/Eclipse Integration ** plug-in the right for the Qt/Eclipse Integration to link to ** functionality provided by Qt Designer and its related libraries. ** ** Trolltech reserves all rights not expressly granted herein. ** ** Trolltech ASA (c) 2007 ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ****************************************************************************/ #ifndef COMPLEXWIDGETS_H #define COMPLEXWIDGETS_H #include #include #include #include #ifndef QT_NO_ACCESSIBILITY class QAbstractButton; class QHeaderView; class QTabBar; class QComboBox; class QTitleBar; class QAbstractScrollArea; class QScrollArea; #ifndef QT_NO_SCROLLAREA class QAccessibleAbstractScrollArea : public QAccessibleWidgetEx { public: explicit QAccessibleAbstractScrollArea(QWidget *widget); enum AbstractScrollAreaElement { Self = 0, Viewport, HorizontalContainer, VerticalContainer, CornerWidget, Undefined }; QString text(Text textType, int child) const; void setText(Text textType, int child, const QString &text); State state(int child) const; QVariant invokeMethodEx(QAccessible::Method method, int child, const QVariantList ¶ms); int childCount() const; int indexOfChild(const QAccessibleInterface *child) const; int navigate(RelationFlag relation, int entry, QAccessibleInterface **target) const; QRect rect(int child) const; int childAt(int x, int y) const; protected: QAbstractScrollArea *abstractScrollArea() const; private: QWidgetList accessibleChildren() const; AbstractScrollAreaElement elementType(QWidget *widget) const; bool isLeftToRight() const; }; class QAccessibleScrollArea : public QAccessibleAbstractScrollArea { public: explicit QAccessibleScrollArea(QWidget *widget); }; #endif // QT_NO_SCROLLAREA #ifndef QT_NO_ITEMVIEWS class QAccessibleHeader : public QAccessibleWidgetEx { Q_ACCESSIBLE_OBJECT public: explicit QAccessibleHeader(QWidget *w); int childCount() const; QRect rect(int child) const; QString text(Text t, int child) const; Role role(int child) const; State state(int child) const; protected: QHeaderView *header() const; }; class QAccessibleItemRow: public QAccessibleInterface { friend class QAccessibleItemView; public: QAccessibleItemRow(QAbstractItemView *view, const QModelIndex &index); QRect rect(int child) const; QString text(Text t, int child) const; void setText(Text t, int child, const QString &text); bool isValid() const; QObject *object() const; Role role(int child) const; State state(int child) const; int childCount() const; int indexOfChild(const QAccessibleInterface *) const; QList children() const; Relation relationTo(int child, const QAccessibleInterface *other, int otherChild) const; int childAt(int x, int y) const; int navigate(RelationFlag relation, int index, QAccessibleInterface **iface) const; int userActionCount(int child) const; QString actionText(int action, Text t, int child) const; bool doAction(int action, int child, const QVariantList ¶ms = QVariantList()); QModelIndex childIndex(int child) const; private: static QAbstractItemView::CursorAction toCursorAction(Relation rel); int treeLevel() const; QPersistentModelIndex row; QPointer view; }; class QAccessibleItemView: public QAccessibleAbstractScrollArea, public QAccessibleTableInterface { Q_ACCESSIBLE_OBJECT public: explicit QAccessibleItemView(QWidget *w); QObject *object() const; Role role(int child) const; State state(int child) const; QRect rect(int child) const; int childAt(int x, int y) const; int childCount() const; QString text(Text t, int child) const; void setText(Text t, int child, const QString &text); int indexOfChild(const QAccessibleInterface *iface) const; QModelIndex childIndex(int child) const; int entryFromIndex(const QModelIndex &index) const; int navigate(RelationFlag relation, int index, QAccessibleInterface **iface) const; QAccessibleInterface *accessibleAt(int row, int column); QAccessibleInterface *caption(); int childIndex(int rowIndex, int columnIndex); QString columnDescription(int column); int columnSpan(int row, int column); QAccessibleInterface *columnHeader(); int columnIndex(int childIndex); int columnCount(); int rowCount(); int selectedColumnCount(); int selectedRowCount(); QString rowDescription(int row); int rowSpan(int row, int column); QAccessibleInterface *rowHeader(); int rowIndex(int childIndex); int selectedRows(int maxRows, QList *rows); int selectedColumns(int maxColumns, QList *columns); QAccessibleInterface *summary(); bool isColumnSelected(int column); bool isRowSelected(int row); bool isSelected(int row, int column); void selectRow(int row); void selectColumn(int column); void unselectRow(int row); void unselectColumn(int column); void cellAtIndex(int index, int *row, int *column, int *rowSpan, int *columnSpan, bool *isSelected); protected: QAbstractItemView *itemView() const; QModelIndex index(int row, int column) const; private: inline bool atViewport() const { return atVP; }; QAccessible::Role expectedRoleOfChildren() const; bool atVP; }; #endif #ifndef QT_NO_TABBAR class QAccessibleTabBar : public QAccessibleWidgetEx { Q_ACCESSIBLE_OBJECT public: explicit QAccessibleTabBar(QWidget *w); int childCount() const; QRect rect(int child) const; QString text(Text t, int child) const; Role role(int child) const; State state(int child) const; bool doAction(int action, int child, const QVariantList ¶ms); bool setSelected(int child, bool on, bool extend); QVector selection() const; protected: QTabBar *tabBar() const; private: QAbstractButton *button(int child) const; }; #endif // QT_NO_TABBAR #ifndef QT_NO_COMBOBOX class QAccessibleComboBox : public QAccessibleWidgetEx { Q_ACCESSIBLE_OBJECT public: explicit QAccessibleComboBox(QWidget *w); enum ComboBoxElements { ComboBoxSelf = 0, CurrentText, OpenList, PopupList }; int childCount() const; int childAt(int x, int y) const; int indexOfChild(const QAccessibleInterface *child) const; int navigate(RelationFlag rel, int entry, QAccessibleInterface **target) const; QString text(Text t, int child) const; QRect rect(int child) const; Role role(int child) const; State state(int child) const; bool doAction(int action, int child, const QVariantList ¶ms); QString actionText(int action, Text t, int child) const; protected: QComboBox *comboBox() const; }; #endif // QT_NO_COMBOBOX #endif // QT_NO_ACCESSIBILITY #endif // COMPLEXWIDGETS_H