summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxmouseregion.cpp
blob: 2bf7aa7b68cbae51f844c4bed6974f91f027bbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the either Technology Preview License Agreement or the
** Beta Release License Agreement.
**
** 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, Nokia gives you certain
** additional rights. These rights are described in the Nokia Qt LGPL
** Exception version 1.0, 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qfxmouseregion.h"
#include "qfxmouseregion_p.h"
#include <QGraphicsSceneMouseEvent>


QT_BEGIN_NAMESPACE
static const int DragThreshold = 5;
static const int PressAndHoldDelay = 800;

QML_DEFINE_TYPE(QFxDrag,Drag);
QFxDrag::QFxDrag(QObject *parent)
: QObject(parent), _target(0), _xmin(0), _xmax(0), _ymin(0), _ymax(0)
{
}

QFxDrag::~QFxDrag()
{
}

QFxItem *QFxDrag::target() const
{
    return _target;
}

void QFxDrag::setTarget(QFxItem *t)
{
    _target = t;
}

QString QFxDrag::axis() const
{
    return _axis;
}

void QFxDrag::setAxis(const QString &a)
{
    _axis = a;
}

/*!
    \property QFxDrag::xmin
    \brief the minimum x position for the target

    If x-axis dragging is enabled, xmin limits how far to the left the target can be dragged. If x-axis dragging is not enabled, this property has no effect.
*/
int QFxDrag::xmin() const
{
    return _xmin;
}

void QFxDrag::setXmin(int m)
{
    _xmin = m;
}

/*!
    \property QFxDrag::xmax
    \brief the maximum x position for the target

    If x-axis dragging is enabled, xmax limits how far to the right the target can be dragged. If x-axis dragging is not enabled, this property has no effect.
*/
int QFxDrag::xmax() const
{
    return _xmax;
}

void QFxDrag::setXmax(int m)
{
    _xmax = m;
}

/*!
    \property QFxDrag::ymin
    \brief the minimum y position for the target

    If y-axis dragging is enabled, ymin limits how far up the target can be dragged. If y-axis dragging is not enabled, this property has no effect.
*/
int QFxDrag::ymin() const
{
    return _ymin;
}

void QFxDrag::setYmin(int m)
{
    _ymin = m;
}

/*!
    \property QFxDrag::ymax
    \brief the maximum y position for the target

    If y-axis dragging is enabled, ymax limits how far down the target can be dragged. If y-axis dragging is not enabled, this property has no effect.
*/
int QFxDrag::ymax() const
{
    return _ymax;
}

void QFxDrag::setYmax(int m)
{
    _ymax = m;
}

/*!
    \qmlclass MouseRegion
    \brief The MouseRegion element enables simple mouse handling.
    \inherits Item

    A MouseRegion is typically used in conjunction with a visible element, where the MouseRegion effectively 'proxies' mouse handling for that element. For example, we can put a MouseRegion in a Rect that changes the Rect color to red when clicked:
    \code
    <Rect width="100" height="100">
        <MouseRegion anchors.fill="{parent}" onClick="parent.color = 'red';"/>
    </Rect>
    \endcode

    For the mouse handlers the variable mouseButton is set to be one of 'Left', 'Right', 'Middle',
    or 'None'. This allows you to distinguish left and right clicking. Below we have the previous 
    example extended so as to give a different color when you right click.
    \code
    <Rect width="100" height="100">
        <MouseRegion anchors.fill="{parent}" onClick="if(mouseButton=='Right') { parent.color='blue';} else { parent.color = 'red';}"/>
    </Rect>
    \endcode

    For basic key handling, see \l KeyActions.

    MouseRegion is an invisible element: it is never painted.
*/

/*!
    \qmlsignal MouseRegion::onEntered

    This handler is called when the mouse enters the mouse region.

    \warning This handler is not yet implemented.
*/

/*!
    \qmlsignal MouseRegion::onExited

    This handler is called when the mouse exists the mouse region.

    \warning This handler is not yet implemented.
*/

/*!
    \qmlsignal MouseRegion::onReenteredWhilePressed

    This handler is called when the mouse reenters the mouse region while pressed.
*/

/*!
    \qmlsignal MouseRegion::onExitedWhilePressed

    This handler is called when the mouse exists the mouse region while pressed.
*/

/*!
    \qmlsignal MouseRegion::onClicked

    This handler is called when there is a click. A click is defined as a press followed by a release,
    both inside the MouseRegion (pressing, moving outside the MouseRegion, and then moving back inside and
    releasing is also considered a click).
    The x and y parameters tell you the position of the release of the click. The followsPressAndHold parameter tells
    you whether or not the release portion of the click followed a long press.
*/

/*!
    \qmlsignal MouseRegion::onPressed

    This handler is called when there is a press.
    The x and y parameters tell you the position of the press.
*/

/*!
    \qmlsignal MouseRegion::onReleased

    This handler is called when there is a release.
    The x and y parameters tell you the position of the release. The isClick parameter tells you whether
    or not the release is part of a click. The followsPressAndHold parameter tells you whether or not the
    release followed a long press.
*/

/*!
    \qmlsignal MouseRegion::onPressAndHold

    This handler is called when there is a long press (currently 800ms).
    The x and y parameters tell you the position of the long press.
*/

/*!
    \qmlsignal MouseRegion::onDoubleClicked

    This handler is called when there is a double-click (a press followed by a release followed by a press).
    The x and y parameters tell you the position of the double-click.
*/

QML_DEFINE_TYPE(QFxMouseRegion,MouseRegion);
/*!
    \internal
    \class QFxMouseRegion
    \brief The QFxMouseRegion class provides a simple mouse handling abstraction for use within Qml.

    \ingroup coreitems

    All QFxItem derived classes can do mouse handling but the QFxMouseRegion class exposes mouse
    handling data as properties and tracks flicking and dragging of the mouse.

    A QFxMouseRegion object can be instantiated in Qml using the tag \l MouseRegion.
 */
QFxMouseRegion::QFxMouseRegion(QFxItem *parent)
  : QFxItem(*(new QFxMouseRegionPrivate), parent)
{
    Q_D(QFxMouseRegion);
    d->init();
}

QFxMouseRegion::QFxMouseRegion(QFxMouseRegionPrivate &dd, QFxItem *parent)
  : QFxItem(dd, parent)
{
    Q_D(QFxMouseRegion);
    d->init();
}

QFxMouseRegion::~QFxMouseRegion()
{
}

/*!
    \qmlproperty int MouseRegion::mouseX
    \qmlproperty int MouseRegion::mouseY

    The coordinates of the mouse while pressed. The coordinates are relative to the item that was pressed.
*/
int QFxMouseRegion::mouseX() const
{
    Q_D(const QFxMouseRegion);
    return int(d->lastPos.x());
}

int QFxMouseRegion::mouseY() const
{
    Q_D(const QFxMouseRegion);
    return int(d->lastPos.y());
}

/*!
    \qmlproperty bool MouseRegion::enabled
    This property holds whether the item accepts mouse events.
*/
bool QFxMouseRegion::isEnabled() const
{
    Q_D(const QFxMouseRegion);
    return d->absorb;
}

void QFxMouseRegion::setEnabled(bool a)
{
    Q_D(QFxMouseRegion);
    d->absorb = a;
}

void QFxMouseRegionPrivate::bindButtonValue(Qt::MouseButton b)
{
    Q_Q(QFxMouseRegion);
    QString bString;
    switch(b){
        case Qt::LeftButton:
            bString = QLatin1String("Left"); break;
        case Qt::RightButton:
            bString = QLatin1String("Right"); break;
        case Qt::MidButton:
            bString = QLatin1String("Middle"); break;
        default:
            bString = QLatin1String("None"); break;
    }
    q->itemContext()->setContextProperty(QLatin1String("mouseButton"), bString);
}

void QFxMouseRegion::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
    Q_D(QFxMouseRegion);
    d->moved = false;
    if(!d->absorb)
        QFxItem::mousePressEvent(event);
    else {
        if (!d->inside) {
            d->inside = true;
            emit hoveredChanged();
        }
        d->longPress = false;
        d->lastPos = event->pos();
        d->dragX = drag()->axis().contains(QLatin1String("x"));
        d->dragY = drag()->axis().contains(QLatin1String("y"));
        d->dragged = false;
        d->start = event->pos();
        d->startScene = event->scenePos();
        // ### we should only start timer if pressAndHold is connected to (but connectNotify doesn't work)
        d->pressAndHoldTimer.start(PressAndHoldDelay, this);
        setKeepMouseGrab(false);
        d->bindButtonValue(event->button());
        setPressed(true);
        emit positionChanged();
        event->accept();
    }
}

void QFxMouseRegion::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
    Q_D(QFxMouseRegion);
    if(!d->absorb) {
        QFxItem::mouseMoveEvent(event);
        return;
    }

    d->lastPos = event->pos();

    // ### we should skip this if these signals aren't used
    const QRect &bounds = itemBoundingRect();
    bool contains = bounds.contains(d->lastPos.toPoint());
    if (d->inside && !contains) {
        d->inside = false;
        emit hoveredChanged();
        emit exitedWhilePressed();
    } else if (!d->inside && contains) {
        d->inside = true;
        emit hoveredChanged();
        emit reenteredWhilePressed();
    }

    if(drag()->target()) {
        if(!d->moved) {
            if(d->dragX) d->startX = int(drag()->target()->x());   //### change startX and startY to qreal?
            if(d->dragY) d->startY = int(drag()->target()->y());
        }

        QPointF startLocalPos;
        QPointF curLocalPos;
        if (drag()->target()->parent()) {
            startLocalPos = drag()->target()->parent()->mapFromScene(d->startScene);
            curLocalPos = drag()->target()->parent()->mapFromScene(event->scenePos());
        } else {
            startLocalPos = d->startScene;
            curLocalPos = event->scenePos();
        }

        int dx = int(qAbs(curLocalPos.x() - startLocalPos.x()));
        int dy = int(qAbs(curLocalPos.y() - startLocalPos.y()));
        if ((d->dragX && !(dx < DragThreshold)) || (d->dragY && !(dy < DragThreshold)))
            d->dragged = true;
        if (!keepMouseGrab()) {
            if ((!d->dragY && dy < DragThreshold && d->dragX && dx > DragThreshold)
                || (!d->dragX && dx < DragThreshold && d->dragY && dy > DragThreshold)
                || (d->dragX && d->dragY)) {
                setKeepMouseGrab(true);
            }
        }

        if(d->dragX) {
            qreal x = (curLocalPos.x() - startLocalPos.x()) + d->startX;
            if (x < drag()->xmin())
                x = drag()->xmin();
            else if (x > drag()->xmax())
                x = drag()->xmax();
            drag()->target()->setX(x);
        }
        if(d->dragY) {
            qreal y = (curLocalPos.y() - startLocalPos.y()) + d->startY;
            if (y < drag()->ymin())
                y = drag()->ymin();
            else if (y > drag()->ymax())
                y = drag()->ymax();
            drag()->target()->setY(y);
        }
    }
    d->moved = true;
    emit positionChanged();
    event->accept();
}


void QFxMouseRegion::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
    Q_D(QFxMouseRegion);
    if(!d->absorb)
        QFxItem::mouseReleaseEvent(event);
    else {
        setPressed(false);
        //d->inside = false;
        //emit hoveredChanged();
        event->accept();
    }
}

void QFxMouseRegion::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
{
    Q_D(QFxMouseRegion);
    if(!d->absorb)
        QFxItem::mouseDoubleClickEvent(event);
    else {
        //d->inside = true;
        //emit hoveredChanged();
        setPressed(true);
        emit this->doubleClicked(d->lastPos.x(), d->lastPos.y());
        event->accept();
    }
}

void QFxMouseRegion::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
    Q_D(QFxMouseRegion);
    if(!d->absorb)
        QFxItem::hoverEnterEvent(event);
    else {
        setHovered(true);
        emit entered();
    }
}

void QFxMouseRegion::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
    Q_D(QFxMouseRegion);
    if(!d->absorb)
        QFxItem::hoverLeaveEvent(event);
    else {
        setHovered(false);
        emit exited();
    }
}

void QFxMouseRegion::mouseUngrabEvent()
{
    Q_D(QFxMouseRegion);
    if (d->pressed) {
        // if our mouse grab has been removed (probably by Flickable), fix our 
        // state
        d->pressed = false;
        //d->inside = false;
        setKeepMouseGrab(false);
        emit pressedChanged();
        //emit hoveredChanged();
    }
}

void QFxMouseRegion::timerEvent(QTimerEvent *event)
{
    Q_D(QFxMouseRegion);
    if (event->timerId() == d->pressAndHoldTimer.timerId()) {
        d->pressAndHoldTimer.stop();
        if (d->pressed && d->dragged == false && d->inside == true) {
            d->longPress = true;
            emit pressAndHold(d->lastPos.x(), d->lastPos.y());
        }
    }
}

/*!
    \qmlproperty bool MouseRegion::containsMouse
    This property holds whether the mouse is currently inside the mouse region.

    \warning This property is only partially implemented -- it is only valid when the mouse is pressed, and not for hover events.
*/
bool QFxMouseRegion::hovered()
{
    Q_D(QFxMouseRegion);
    return d->hovered || d->inside;
}

/*!
    \qmlproperty bool MouseRegion::pressed
    This property holds whether the mouse region is currently pressed.
*/
bool QFxMouseRegion::pressed()
{
    Q_D(QFxMouseRegion);
    return d->pressed;
}

void QFxMouseRegion::setHovered(bool h)
{
    Q_D(QFxMouseRegion);
    if(d->hovered != h) {
        d->hovered = h;
        emit hoveredChanged();
    }
}

void QFxMouseRegion::setPressed(bool p)
{
    Q_D(QFxMouseRegion);
    bool isclick = d->pressed == true && p == false && d->dragged == false && d->inside == true;

    if(d->pressed != p) {
        d->pressed = p;
        if(d->pressed)
            emit pressed(d->lastPos.x(), d->lastPos.y());
        else {
            emit released(d->lastPos.x(), d->lastPos.y(), isclick, d->longPress);
            if (isclick)
                emit clicked(d->lastPos.x(), d->lastPos.y(), d->longPress);
        }

        emit pressedChanged();
    }
}

/*!
    \property QFxMouseRegion::drag
    \brief The current drag being performed on the Mouse Region.
*/
QFxDrag *QFxMouseRegion::drag()
{
    Q_D(QFxMouseRegion);
    return &(d->drag);
}

/*!
    \qmlproperty Item MouseRegion::drag.target
    \qmlproperty string MouseRegion::drag.axis
    \qmlproperty int MouseRegion::drag.xmin
    \qmlproperty int MouseRegion::drag.xmax
    \qmlproperty int MouseRegion::drag.ymin
    \qmlproperty int MouseRegion::drag.ymax

    drag provides a convenient way to make an item draggable.

    \list
    \i \c target specifies the item to drag.
    \i \c axis specifies whether dragging can be done horizontally (x), vertically (y), or both (x,y)
    \i the min and max properties limit how far the target can be dragged along the corresponding axes.
    \endlist

    The following example uses drag to blur an image as it moves to the right:
    \code
    <Item id="blurtest" width="600" height="200">
        <Image id="pic" file="pic.png" anchors.verticalCenter="{parent.verticalCenter}" >
            <filter><Blur radius="{pic.x/10}"/></filter>
            <MouseRegion anchors.fill="{parent}"
                        drag.target="{pic}"
                        drag.axis="x"
                        drag.xmin="0"
                        drag.xmax="{blurtest.width-pic.width}" />
        </Image>
    </Item>
    \endcode
*/

QT_END_NAMESPACE