48e0c4df23
Change-Id: Ic804938fc352291d011800d21e549c10acac66fb Reviewed-by: Lars Knoll <lars.knoll@digia.com>
231 lines
7.6 KiB
C++
231 lines
7.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** 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
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3.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 the GNU General Public License version 3.0 requirements will be
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include <QtWidgets>
|
|
|
|
#include "imageitem.h"
|
|
#include "gestures.h"
|
|
#include "mousepangesturerecognizer.h"
|
|
|
|
class GraphicsView : public QGraphicsView
|
|
{
|
|
public:
|
|
GraphicsView(QGraphicsScene *scene, QWidget *parent = 0)
|
|
: QGraphicsView(scene, parent)
|
|
{
|
|
}
|
|
protected:
|
|
bool viewportEvent(QEvent *event)
|
|
{
|
|
if (event->type() == QEvent::Gesture) {
|
|
QGestureEvent *ge = static_cast<QGestureEvent *>(event);
|
|
if (QPanGesture *pan = static_cast<QPanGesture *>(ge->gesture(Qt::PanGesture))) {
|
|
switch (pan->state()) {
|
|
case Qt::GestureStarted: qDebug("view: Pan: started"); break;
|
|
case Qt::GestureFinished: qDebug("view: Pan: finished"); break;
|
|
case Qt::GestureCanceled: qDebug("view: Pan: canceled"); break;
|
|
case Qt::GestureUpdated: break;
|
|
default: qDebug("view: Pan: <unknown state>"); break;
|
|
}
|
|
|
|
const QPointF delta = pan->delta();
|
|
QScrollBar *vbar = verticalScrollBar();
|
|
QScrollBar *hbar = horizontalScrollBar();
|
|
vbar->setValue(vbar->value() - delta.y());
|
|
hbar->setValue(hbar->value() - delta.x());
|
|
ge->accept(pan);
|
|
return true;
|
|
}
|
|
}
|
|
return QGraphicsView::viewportEvent(event);
|
|
}
|
|
};
|
|
|
|
class StandardGestures : public QWidget
|
|
{
|
|
public:
|
|
StandardGestures(QWidget *parent = 0)
|
|
: QWidget(parent)
|
|
{
|
|
scene = new QGraphicsScene(this);
|
|
scene->setSceneRect(-2000, -2000, 4000, 4000);
|
|
view = new QGraphicsView(scene, 0);
|
|
QVBoxLayout *l = new QVBoxLayout(this);
|
|
l->addWidget(view);
|
|
}
|
|
|
|
QGraphicsScene *scene;
|
|
QGraphicsView *view;
|
|
};
|
|
|
|
class GlobalViewGestures : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GlobalViewGestures(QWidget *parent = 0)
|
|
: QWidget(parent)
|
|
{
|
|
scene = new QGraphicsScene(this);
|
|
scene->setSceneRect(-2000, -2000, 4000, 4000);
|
|
view = new GraphicsView(scene, 0);
|
|
view->viewport()->grabGesture(Qt::PanGesture);
|
|
view->viewport()->grabGesture(ThreeFingerSlideGesture::Type);
|
|
QVBoxLayout *l = new QVBoxLayout(this);
|
|
l->addWidget(view);
|
|
}
|
|
|
|
QGraphicsScene *scene;
|
|
QGraphicsView *view;
|
|
};
|
|
|
|
class GraphicsItemGestures : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GraphicsItemGestures(QWidget *parent = 0)
|
|
: QWidget(parent)
|
|
{
|
|
scene = new QGraphicsScene(this);
|
|
scene->setSceneRect(-2000, -2000, 4000, 4000);
|
|
view = new QGraphicsView(scene, 0);
|
|
view->viewport()->grabGesture(Qt::PanGesture);
|
|
view->viewport()->grabGesture(ThreeFingerSlideGesture::Type);
|
|
QVBoxLayout *l = new QVBoxLayout(this);
|
|
l->addWidget(view);
|
|
}
|
|
|
|
QGraphicsScene *scene;
|
|
QGraphicsView *view;
|
|
};
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
public:
|
|
MainWindow();
|
|
|
|
void setDirectory(const QString &path);
|
|
|
|
private:
|
|
QTabWidget *tabWidget;
|
|
StandardGestures *standardGestures;
|
|
GlobalViewGestures *globalViewGestures;
|
|
GraphicsItemGestures *graphicsItemGestures;
|
|
};
|
|
|
|
MainWindow::MainWindow()
|
|
{
|
|
(void)QGestureRecognizer::registerRecognizer(new MousePanGestureRecognizer);
|
|
ThreeFingerSlideGesture::Type = QGestureRecognizer::registerRecognizer(new ThreeFingerSlideGestureRecognizer);
|
|
|
|
tabWidget = new QTabWidget;
|
|
|
|
standardGestures = new StandardGestures;
|
|
tabWidget->addTab(standardGestures, "Standard gestures");
|
|
|
|
globalViewGestures = new GlobalViewGestures;
|
|
tabWidget->addTab(globalViewGestures , "Global gestures");
|
|
|
|
graphicsItemGestures = new GraphicsItemGestures;
|
|
tabWidget->addTab(graphicsItemGestures, "Graphics item gestures");
|
|
|
|
setCentralWidget(tabWidget);
|
|
}
|
|
|
|
void MainWindow::setDirectory(const QString &path)
|
|
{
|
|
QDir dir(path);
|
|
QStringList files = dir.entryList(QDir::Files | QDir::Readable | QDir::NoDotAndDotDot);
|
|
foreach(const QString &file, files) {
|
|
QImageReader img(path + QLatin1String("/")+file);
|
|
QImage image = img.read();
|
|
if (!image.isNull()) {
|
|
{
|
|
ImageItem *item = new ImageItem(image);
|
|
item->setPos(0, 0);
|
|
item->setFlags(QGraphicsItem::ItemIsMovable);
|
|
standardGestures->scene->addItem(item);
|
|
}
|
|
{
|
|
ImageItem *item = new ImageItem(image);
|
|
item->setPos(0, 0);
|
|
item->setFlags(QGraphicsItem::ItemIsMovable);
|
|
globalViewGestures->scene->addItem(item);
|
|
}
|
|
{
|
|
GestureImageItem *item = new GestureImageItem(image);
|
|
item->setPos(0, 0);
|
|
item->setFlags(QGraphicsItem::ItemIsMovable);
|
|
graphicsItemGestures->scene->addItem(item);
|
|
}
|
|
}
|
|
}
|
|
|
|
{
|
|
QList<QGraphicsItem*> items = standardGestures->scene->items();
|
|
if (!items.isEmpty())
|
|
standardGestures->view->ensureVisible(items.at(0));
|
|
}
|
|
{
|
|
QList<QGraphicsItem*> items = globalViewGestures->scene->items();
|
|
if (!items.isEmpty())
|
|
globalViewGestures->view->ensureVisible(items.at(0));
|
|
}
|
|
{
|
|
QList<QGraphicsItem*> items = graphicsItemGestures->scene->items();
|
|
if (!items.isEmpty())
|
|
graphicsItemGestures->view->ensureVisible(items.at(0));
|
|
}
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
MainWindow window;
|
|
if (QApplication::arguments().size() > 1)
|
|
window.setDirectory(QApplication::arguments().at(1));
|
|
else
|
|
window.setDirectory(QFileDialog::getExistingDirectory(0, "Select image folder"));
|
|
window.show();
|
|
return app.exec();
|
|
}
|
|
|
|
#include "main.moc"
|