Say hello to QWindow::accessibleRoot()
Change-Id: I1efa71f01f8af46c9addf2aae21e4b6fc086ad2e Reviewed-on: http://codereview.qt-project.org/5087 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
This commit is contained in:
parent
76d0d19264
commit
df5111165e
@ -495,6 +495,15 @@ void QWindow::setScreen(QScreen *newScreen)
|
|||||||
create();
|
create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
Returns the accessibility interface for the object that the window represents
|
||||||
|
*/
|
||||||
|
QAccessibleInterface *QWindow::accessibleRoot() const
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void QWindow::showMinimized()
|
void QWindow::showMinimized()
|
||||||
{
|
{
|
||||||
qDebug() << "unimplemented:" << __FILE__ << __LINE__;
|
qDebug() << "unimplemented:" << __FILE__ << __LINE__;
|
||||||
|
@ -74,6 +74,7 @@ class QPlatformSurface;
|
|||||||
class QPlatformWindow;
|
class QPlatformWindow;
|
||||||
class QBackingStore;
|
class QBackingStore;
|
||||||
class QScreen;
|
class QScreen;
|
||||||
|
class QAccessibleInterface;
|
||||||
|
|
||||||
class Q_GUI_EXPORT QWindow : public QObject, public QSurface
|
class Q_GUI_EXPORT QWindow : public QObject, public QSurface
|
||||||
{
|
{
|
||||||
@ -168,6 +169,8 @@ public:
|
|||||||
QScreen *screen() const;
|
QScreen *screen() const;
|
||||||
void setScreen(QScreen *screen);
|
void setScreen(QScreen *screen);
|
||||||
|
|
||||||
|
virtual QAccessibleInterface *accessibleRoot() const;
|
||||||
|
|
||||||
QPoint mapToGlobal(const QPoint &pos) const;
|
QPoint mapToGlobal(const QPoint &pos) const;
|
||||||
QPoint mapFromGlobal(const QPoint &pos) const;
|
QPoint mapFromGlobal(const QPoint &pos) const;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user