~saviq/unity8/build-arm64

« back to all changes in this revision

Viewing changes to libs/UbuntuGestures/DebugHelpers.h

  • Committer: Michał Sawicz
  • Date: 2016-07-15 09:51:02 UTC
  • mfrom: (2400.1.142 unity8)
  • Revision ID: michal.sawicz@canonical.com-20160715095102-hf5ac4iqnfn1itpw
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_DEBUG_HELPER_H
18
 
#define UBUNTUGESTURES_DEBUG_HELPER_H
19
 
 
20
 
#include <QString>
21
 
 
22
 
#include "UbuntuGesturesGlobal.h"
23
 
 
24
 
class QMouseEvent;
25
 
class QTouchEvent;
26
 
 
27
 
UBUNTUGESTURES_EXPORT QString touchPointStateToString(Qt::TouchPointState state);
28
 
UBUNTUGESTURES_EXPORT QString touchEventToString(const QTouchEvent *ev);
29
 
UBUNTUGESTURES_EXPORT QString mouseEventToString(const QMouseEvent *ev);
30
 
 
31
 
#endif // UBUNTUGESTURES_DEBUG_HELPER_H