~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to src/v2/x11/frame_x11.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 <stdlib.h>
 
23
 
 
24
#include <X11/Xlib.h>
 
25
 
 
26
#include "utouch/frame.h"
 
27
#include "utouch/frame_x11.h"
 
28
#include "v2/x11/handle_x11.h"
 
29
 
 
30
extern "C" {
 
31
 
 
32
UFStatus frame_x11_new(Display* display, ::UFHandle* handle) {
 
33
  utouch::frame::UFHandleX11** handle_x11 =
 
34
      reinterpret_cast<utouch::frame::UFHandleX11**>(handle);
 
35
 
 
36
  try {
 
37
    *handle_x11 = new utouch::frame::UFHandleX11(display);
 
38
    return UFStatusSuccess;
 
39
  } catch (const std::exception& exception) {
 
40
    *handle_x11 = NULL;
 
41
    return UFStatusErrorResources;
 
42
  }
 
43
}
 
44
 
 
45
UFStatus frame_x11_process_event(UFHandle handle,
 
46
                                 XGenericEventCookie* xcookie) {
 
47
  utouch::frame::UFHandleX11* handle_x11 =
 
48
      static_cast<utouch::frame::UFHandleX11*>(handle);
 
49
  return handle_x11->ProcessEvent(xcookie);
 
50
}
 
51
 
 
52
void frame_x11_delete(UFHandle handle) {
 
53
  utouch::frame::UFHandleX11* handle_x11 =
 
54
      static_cast<utouch::frame::UFHandleX11*>(handle);
 
55
  delete handle_x11;
 
56
}
 
57
 
 
58
Window frame_x11_get_window_id(UFWindowId window_id) {
 
59
  return static_cast<Window>(window_id);
 
60
}
 
61
 
 
62
UFWindowId frame_x11_create_window_id(Window id) {
 
63
  return static_cast<UFWindowId>(id);
 
64
}
 
65
 
 
66
unsigned int frame_x11_get_touch_id(UFTouchId touch_id) {
 
67
  return static_cast<unsigned int>(touch_id);
 
68
}
 
69
 
 
70
UFTouchId frame_x11_create_touch_id(unsigned int id) {
 
71
  return static_cast<UFTouchId>(id);
 
72
}
 
73
 
 
74
} // extern "C"