~ci-train-bot/ubuntu-ui-toolkit/ubuntu-ui-toolkit-ubuntu-yakkety-landing-094

« back to all changes in this revision

Viewing changes to src/Ubuntu/UbuntuGestures/candidateinactivitytimer.h

  • Committer: Zsombor Egri
  • Date: 2016-07-06 11:27:11 UTC
  • mto: (1000.991.6 fixFwHeaders)
  • mto: This revision was merged to the branch mainline in revision 1342.
  • Revision ID: zsombor.egri@canonical.com-20160706112711-u42itw3zw36xfy8o
remove UGestures fw-headers, move all classes to private

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2015 Canonical Ltd.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser 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
 
UG_NAMESPACE_BEGIN
27
 
 
28
 
class UBUNTUGESTURES_EXPORT CandidateInactivityTimer : public QObject {
29
 
    Q_OBJECT
30
 
public:
31
 
    CandidateInactivityTimer(int touchId, QQuickItem *candidate,
32
 
                             AbstractTimer *timer,
33
 
                             QObject *parent = nullptr);
34
 
 
35
 
    virtual ~CandidateInactivityTimer();
36
 
 
37
 
    const int durationMs = 1000;
38
 
 
39
 
Q_SIGNALS:
40
 
    void candidateDefaulted(int touchId, QQuickItem *candidate);
41
 
private Q_SLOTS:
42
 
    void onTimeout();
43
 
private:
44
 
    AbstractTimer *m_timer;
45
 
    int m_touchId;
46
 
    QQuickItem *m_candidate;
47
 
};
48
 
 
49
 
UG_NAMESPACE_END
50
 
 
51
 
#endif // UBUNTUGESTURES_CANDIDATE_INACTIVITY_TIMER_H