summaryrefslogtreecommitdiffstats
path: root/examples/widgets/gestures/imagegestures/imagewidget.h
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@digia.com>2014-04-02 07:36:48 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-02 07:36:48 +0200
commitd6f58e5e17d58c640fc7779652008fda0d66f41d (patch)
treed50d27e260c9eaf4bc2bcb4480b8a069a3aed857 /examples/widgets/gestures/imagegestures/imagewidget.h
parent83de197a57ff6c3e5bbad26bd871981285384fcb (diff)
parent0ab63b035a649dc1982c867cd37d466d249004b9 (diff)
Merge "Merge remote-tracking branch 'origin/stable' into dev" into refs/staging/dev
Diffstat (limited to 'examples/widgets/gestures/imagegestures/imagewidget.h')
-rw-r--r--examples/widgets/gestures/imagegestures/imagewidget.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/examples/widgets/gestures/imagegestures/imagewidget.h b/examples/widgets/gestures/imagegestures/imagewidget.h
index 7aaf554117..d061935fe0 100644
--- a/examples/widgets/gestures/imagegestures/imagewidget.h
+++ b/examples/widgets/gestures/imagegestures/imagewidget.h
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
@@ -52,6 +52,8 @@ class QPinchGesture;
class QSwipeGesture;
QT_END_NAMESPACE
+Q_DECLARE_LOGGING_CATEGORY(lcExample)
+
//! [class definition begin]
class ImageWidget : public QWidget
{
@@ -60,6 +62,7 @@ class ImageWidget : public QWidget
public:
ImageWidget(QWidget *parent = 0);
void openDirectory(const QString &path);
+ void grabGestures(const QList<Qt::GestureType> &gestures);
protected:
bool event(QEvent *event);
@@ -88,11 +91,11 @@ private:
QImage prevImage, nextImage;
QImage currentImage;
- float horizontalOffset;
- float verticalOffset;
- float rotationAngle;
- float scaleFactor;
- float currentStepScaleFactor;
+ qreal horizontalOffset;
+ qreal verticalOffset;
+ qreal rotationAngle;
+ qreal scaleFactor;
+ qreal currentStepScaleFactor;
//! [class definition end]
};
//! [class definition end]