~paulliu/unity8/noninteractive20140804

« back to all changes in this revision

Viewing changes to libs/UbuntuGestures/CandidateInactivityTimer.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 UBUNTUGESTURES_CANDIDATE_INACTIVITY_TIMER_H
 
18
#define UBUNTUGESTURES_CANDIDATE_INACTIVITY_TIMER_H
 
19
 
 
20
#include <QObject>
 
21
 
 
22
class QQuickItem;
 
23
 
 
24
#include "Timer.h"
 
25
 
 
26
namespace UbuntuGestures {
 
27
 
 
28
class UBUNTUGESTURES_EXPORT CandidateInactivityTimer : public QObject {
 
29
    Q_OBJECT
 
30
public:
 
31
    CandidateInactivityTimer(int touchId, QQuickItem *candidate,
 
32
                             AbstractTimerFactory &timerFactory,
 
33
                             QObject *parent = nullptr);
 
34
 
 
35
    const int durationMs = 350;
 
36
 
 
37
Q_SIGNALS:
 
38
    void candidateDefaulted(int touchId, QQuickItem *candidate);
 
39
private Q_SLOTS:
 
40
    void onTimeout();
 
41
private:
 
42
    AbstractTimer *m_timer;
 
43
    int m_touchId;
 
44
    QQuickItem *m_candidate;
 
45
};
 
46
 
 
47
} // namespace UbuntuGestures
 
48
 
 
49
#endif // UBUNTUGESTURES_CANDIDATE_INACTIVITY_TIMER_H