#include <qaccessiblecompat.h>
Inheritance diagram for Q3AccessibleScrollView:


Definition at line 36 of file qaccessiblecompat.h.
Public Member Functions | |
| Q3AccessibleScrollView (QWidget *w, Role role) | |
| virtual int | itemAt (int x, int y) const |
| virtual QRect | itemRect (int item) const |
| virtual int | itemCount () const |
Constructs a Q3AccessibleScrollView object for a widget. The role is propagated to the QAccessibleWidget constructor.
Definition at line 38 of file qaccessiblecompat.cpp.
00039 : QAccessibleWidget(w, role) 00040 { 00041 }
| int Q3AccessibleScrollView::itemAt | ( | int | x, | |
| int | y | |||
| ) | const [virtual] |
Returns the ID of the item at viewport position x, y.
Definition at line 46 of file qaccessiblecompat.cpp.
| QRect Q3AccessibleScrollView::itemRect | ( | int | item | ) | const [virtual] |
Returns the location in viewport coordinates of the item with ID item.
Definition at line 55 of file qaccessiblecompat.cpp.
00056 { 00057 return QRect(); 00058 }
| int Q3AccessibleScrollView::itemCount | ( | ) | const [virtual] |
Returns the number of items in the scroll view.
Definition at line 63 of file qaccessiblecompat.cpp.
1.5.1