~paulliu/unity8/noninteractive20140804

« back to all changes in this revision

Viewing changes to libs/UbuntuGestures/TouchOwnershipEvent.h

  • Committer: Ying-Chun Liu
  • Date: 2014-10-14 14:37:20 UTC
  • mfrom: (1109.60.129 unity8)
  • Revision ID: paul.liu@canonical.com-20141014143720-xnqhcgv8xq9aj8lz
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifndef UBUNTU_TOUCHOWNERSHIPEVENT_H
 
18
#define UBUNTU_TOUCHOWNERSHIPEVENT_H
 
19
 
 
20
#include <QEvent>
 
21
#include "UbuntuGesturesGlobal.h"
 
22
 
 
23
/*
 
24
   When an item get an ownership event for a touch it can grab/steal that touch
 
25
   with a clean conscience.
 
26
 */
 
27
class UBUNTUGESTURES_EXPORT TouchOwnershipEvent : public QEvent
 
28
{
 
29
public:
 
30
    TouchOwnershipEvent(int touchId, bool gained);
 
31
 
 
32
    static Type touchOwnershipEventType();
 
33
 
 
34
    /*
 
35
      Whether ownership was gained (true) or lost (false)
 
36
     */
 
37
    bool gained() const { return m_gained; }
 
38
 
 
39
    /*
 
40
        Id of the touch whose ownership was granted.
 
41
     */
 
42
    int touchId() const { return m_touchId; }
 
43
 
 
44
private:
 
45
    static Type m_touchOwnershipType;
 
46
    int m_touchId;
 
47
    bool m_gained;
 
48
};
 
49
 
 
50
#endif // UBUNTU_TOUCHOWNERSHIPEVENT_H