~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to src/v2/device.cpp

  • 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
#include "v2/device.h"
 
23
 
 
24
#include <assert.h>
 
25
 
 
26
#include "v2/axis.h"
 
27
 
 
28
namespace utouch {
 
29
namespace frame {
 
30
 
 
31
UFStatus UFDevice::GetAxisByIndex(unsigned int index, ::UFAxis* axis) const {
 
32
  if (index >= axes_.size())
 
33
    return UFStatusErrorInvalidAxis;
 
34
 
 
35
  auto it = axes_.cbegin();
 
36
  std::advance(it, index);
 
37
 
 
38
  *axis = it->second.get();
 
39
 
 
40
  return UFStatusSuccess;
 
41
}
 
42
 
 
43
UFStatus UFDevice::GetAxisByType(UFAxisType type, ::UFAxis* axis) const {
 
44
  auto it = axes_.find(type);
 
45
  if (it == axes_.end())
 
46
    return UFStatusErrorInvalidAxis;
 
47
 
 
48
  *axis = it->second.get();
 
49
 
 
50
  return UFStatusSuccess;
 
51
}
 
52
 
 
53
} // namespace frame
 
54
} // namespace utouch
 
55
 
 
56
extern "C" {
 
57
 
 
58
UFStatus frame_device_get_property(UFDevice device, UFDeviceProperty property,
 
59
                                   void* data) {
 
60
  return static_cast<const utouch::frame::UFDevice*>(device)->GetProperty(
 
61
      property,
 
62
      data);
 
63
}
 
64
 
 
65
UFStatus frame_device_get_axis_by_index(UFDevice device, unsigned int index,
 
66
                                        UFAxis* axis) {
 
67
  return static_cast<const utouch::frame::UFDevice*>(device)->GetAxisByIndex(
 
68
      index,
 
69
      axis);
 
70
}
 
71
 
 
72
UFStatus frame_device_get_axis_by_type(UFDevice device, UFAxisType type,
 
73
                                       UFAxis* axis) {
 
74
  return static_cast<const utouch::frame::UFDevice*>(device)->GetAxisByType(
 
75
      type,
 
76
      axis);
 
77
}
 
78
 
 
79
unsigned int frame_device_get_num_axes(UFDevice device) {
 
80
  unsigned int num_axes;
 
81
  UFStatus status = frame_device_get_property(device, UFDevicePropertyNumAxes,
 
82
                                              &num_axes);
 
83
  assert(status == UFStatusSuccess);
 
84
  return num_axes;
 
85
}
 
86
 
 
87
} // extern "C"