2011-10-11 09:04:59 +00:00
|
|
|
/****************************************************************************
|
2012-01-24 07:03:14 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-01-24 07:03:14 +00:00
|
|
|
**
|
|
|
|
** This file is part of the tools applications of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-01-24 07:03:14 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-01-24 07:03:14 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
2011-10-11 09:04:59 +00:00
|
|
|
|
|
|
|
#include "accessibilityinspector.h"
|
|
|
|
|
|
|
|
#include "screenreader.h"
|
|
|
|
#include "optionswidget.h"
|
|
|
|
#include "accessibilityscenemanager.h"
|
|
|
|
|
|
|
|
#include <QtDeclarative/QtDeclarative>
|
|
|
|
|
|
|
|
void MouseInterceptingGraphicsScene::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
emit mousePressed(event->scenePos().toPoint());
|
|
|
|
QGraphicsScene::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MouseInterceptingGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
emit mouseDobleClicked();
|
|
|
|
QGraphicsScene::mouseDoubleClickEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessibilitySceneManager *sceneManager = 0;
|
|
|
|
QAccessible::UpdateHandler previousUpdateHandler = 0;
|
|
|
|
bool updateHandlerRecursion = false;
|
2013-04-16 11:34:18 +00:00
|
|
|
void accessibilityUpdateHandler(QAccessibleEvent *event)
|
2011-10-11 09:04:59 +00:00
|
|
|
{
|
|
|
|
if (updateHandlerRecursion)
|
|
|
|
return;
|
|
|
|
|
|
|
|
updateHandlerRecursion = true;
|
|
|
|
|
|
|
|
if (sceneManager) {
|
2013-04-16 11:34:18 +00:00
|
|
|
sceneManager->handleUpdate(event);
|
2011-10-11 09:04:59 +00:00
|
|
|
|
|
|
|
//qDebug() << "update";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (previousUpdateHandler) // call prev just to be sure.
|
2013-04-16 11:34:18 +00:00
|
|
|
previousUpdateHandler(event);
|
2011-10-11 09:04:59 +00:00
|
|
|
|
|
|
|
updateHandlerRecursion = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessibilityInspector::AccessibilityInspector(QObject *parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessibilityInspector::~AccessibilityInspector()
|
|
|
|
{
|
|
|
|
delete optionsWidget;
|
|
|
|
delete accessibilityScene;
|
|
|
|
delete accessibilityView;
|
|
|
|
delete accessibilityTreeScene;
|
|
|
|
delete accessibilityTreeView;
|
|
|
|
delete screenReader;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AccessibilityInspector::inspectWindow(QWindow *window)
|
|
|
|
{
|
|
|
|
qDebug() << "AccessibilityInspector::inspectWindow()" << window;
|
2013-04-16 15:03:22 +00:00
|
|
|
if (window->parent() || window->transientParent())
|
|
|
|
return;
|
2011-10-11 09:04:59 +00:00
|
|
|
|
|
|
|
optionsWidget = new OptionsWidget();
|
|
|
|
|
|
|
|
accessibilityScene = new MouseInterceptingGraphicsScene();
|
|
|
|
|
|
|
|
accessibilityView = new QGraphicsView();
|
|
|
|
accessibilityView->setScene(accessibilityScene);
|
2011-12-20 12:20:13 +00:00
|
|
|
accessibilityView->resize(640, 480);
|
2011-10-11 09:04:59 +00:00
|
|
|
accessibilityView->scale(1.3, 1.3);
|
|
|
|
|
|
|
|
accessibilityTreeScene = new QGraphicsScene();
|
|
|
|
|
|
|
|
accessibilityTreeView = new QGraphicsView();
|
|
|
|
accessibilityTreeView->setScene(accessibilityTreeScene);
|
2011-12-20 12:20:13 +00:00
|
|
|
accessibilityTreeView->resize(640, 480);
|
2011-10-11 09:04:59 +00:00
|
|
|
|
|
|
|
sceneManager = new AccessibilitySceneManager();
|
|
|
|
QObject::connect(optionsWidget, SIGNAL(optionsChanged()), sceneManager, SLOT(updateAccessibilitySceneItemFlags()));
|
|
|
|
QObject::connect(optionsWidget, SIGNAL(refreshClicked()), sceneManager, SLOT(populateAccessibilityScene()));
|
|
|
|
QObject::connect(optionsWidget, SIGNAL(refreshClicked()), sceneManager, SLOT(populateAccessibilityTreeScene()));
|
|
|
|
QObject::connect(optionsWidget, SIGNAL(scaleChanged(int)), sceneManager, SLOT(changeScale(int)));
|
|
|
|
|
|
|
|
sceneManager->setOptionsWidget(optionsWidget);
|
|
|
|
sceneManager->setRootWindow(window);
|
|
|
|
sceneManager->setScene(accessibilityScene);
|
|
|
|
sceneManager->setView(accessibilityView);
|
|
|
|
sceneManager->setTreeScene(accessibilityTreeScene);
|
|
|
|
sceneManager->setTreeView(accessibilityTreeView);
|
|
|
|
|
|
|
|
screenReader = new ScreenReader;
|
|
|
|
QObject::connect(accessibilityScene, SIGNAL(mousePressed(QPoint)), screenReader, SLOT(touchPoint(QPoint)));
|
|
|
|
QObject::connect(accessibilityScene, SIGNAL(mouseDobleClicked()), screenReader, SLOT(activate()));
|
|
|
|
QObject::connect(screenReader, SIGNAL(selected(QObject*)), sceneManager, SLOT(setSelected(QObject*)));
|
|
|
|
screenReader->setRootObject(window);
|
|
|
|
screenReader->setOptionsWidget(optionsWidget);
|
|
|
|
|
|
|
|
previousUpdateHandler = QAccessible::installUpdateHandler(accessibilityUpdateHandler);
|
|
|
|
|
|
|
|
QTimer::singleShot(100, sceneManager, SLOT(populateAccessibilityScene()));
|
|
|
|
QTimer::singleShot(100, sceneManager, SLOT(populateAccessibilityTreeScene()));
|
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
accessibilityView->restoreGeometry(settings.value("accessiblityGeometry").toByteArray());
|
|
|
|
accessibilityView->setObjectName(QLatin1String("accessibilityInspectorView"));
|
|
|
|
accessibilityView->show();
|
|
|
|
|
|
|
|
|
|
|
|
accessibilityTreeView->restoreGeometry(settings.value("treeGeometry").toByteArray());
|
|
|
|
accessibilityTreeView->setObjectName(QLatin1String("accessibilityInspectorTreeView"));
|
|
|
|
accessibilityTreeView->show();
|
|
|
|
optionsWidget->restoreGeometry(settings.value("optionsGeometry").toByteArray());
|
|
|
|
optionsWidget->setObjectName(QLatin1String("accessibilityInspectorOptions"));
|
|
|
|
optionsWidget->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AccessibilityInspector::saveWindowGeometry()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
settings.setValue("accessiblityGeometry", accessibilityView->saveGeometry());
|
|
|
|
settings.setValue("treeGeometry", accessibilityTreeView->saveGeometry());
|
|
|
|
settings.setValue("optionsGeometry", optionsWidget->saveGeometry());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString translateRole(QAccessible::Role role)
|
|
|
|
{
|
2013-04-16 14:30:51 +00:00
|
|
|
return qAccessibleRoleString(role);
|
2011-10-11 09:04:59 +00:00
|
|
|
}
|
|
|
|
|