~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to src/v2/axis.h

  • Committer: Chase Douglas
  • Date: 2011-12-09 01:36:45 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: chase.douglas@ubuntu.com-20111209013645-n24l4myiumblzsfu
* New upstream release.
  - Version 2 adds a new API built on top of XInput multitouch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 *
 
3
 * utouch-frame - Touch Frame Library
 
4
 *
 
5
 * Copyright (C) 2011 Canonical Ltd.
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify it
 
8
 * under the terms of the GNU General Public License as published by the
 
9
 * Free Software Foundation, either version 3 of the License, or (at your
 
10
 * option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License along
 
18
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 ****************************************************************************/
 
21
 
 
22
#ifndef UTOUCH_FRAME_AXIS_H_
 
23
#define UTOUCH_FRAME_AXIS_H_
 
24
 
 
25
#include "utouch/frame.h"
 
26
#include "v2/property.h"
 
27
 
 
28
struct UFAxis_ {};
 
29
 
 
30
namespace utouch {
 
31
namespace frame {
 
32
 
 
33
class UFAxis : public UFAxis_ {
 
34
 public:
 
35
  UFAxis(UFAxisType type, float min, float max, float resolution);
 
36
 
 
37
  UFAxisType type() const { return type_; }
 
38
  float min() const { return min_; }
 
39
  float max() const { return max_; }
 
40
  float resolution() const { return resolution_; }
 
41
 
 
42
  UFAxis(const UFAxis&) = delete;
 
43
  UFAxis& operator=(const UFAxis&) = delete;
 
44
 
 
45
 private:
 
46
  const UFAxisType type_;
 
47
  const float min_;
 
48
  const float max_;
 
49
  const float resolution_;
 
50
};
 
51
 
 
52
} // namespace frame
 
53
} // namespace utouch
 
54
 
 
55
#endif // UTOUCH_FRAME_AXIS_H_