~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to tools/common/frame.c

  • 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) 2010-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 "common/frame.h"
 
23
 
 
24
#include <stdio.h>
 
25
 
 
26
#include <X11/X.h>
 
27
 
 
28
#include <utouch/frame_x11.h>
 
29
 
 
30
#include "common/touch.h"
 
31
 
 
32
void print_frame(UFHandle handle, UFEvent event) {
 
33
  UFFrame frame;
 
34
  UFDevice device;
 
35
  UFStatus status;
 
36
  Window window;
 
37
  const char *string = NULL;
 
38
  int num_touches = 0;
 
39
  int i;
 
40
 
 
41
  printf("Frame received:\n");
 
42
 
 
43
  printf("  Time: %ju ms\n", frame_event_get_time(event));
 
44
 
 
45
  status = frame_event_get_property(event, UFEventPropertyFrame, &frame);
 
46
  if (status != UFStatusSuccess) {
 
47
    fprintf(stderr, "Error: failed to get frame from frame event\n");
 
48
    return;
 
49
  }
 
50
 
 
51
  window = frame_x11_get_window_id(frame_frame_get_window_id(frame));
 
52
  printf("  Window: 0x%lx\n", window);
 
53
 
 
54
  device = frame_frame_get_device(frame);
 
55
 
 
56
  status = frame_device_get_property(device, UFDevicePropertyName, &string);
 
57
  if (status != UFStatusSuccess)
 
58
    fprintf(stderr, "Error: failed to get device name from device\n");
 
59
  else
 
60
    printf("  Device: %s\n", string);
 
61
 
 
62
  num_touches = frame_frame_get_num_touches(frame);
 
63
  printf("  Number of touches: %d\n", num_touches);
 
64
 
 
65
  for (i = 0; i < num_touches; ++i) {
 
66
    UFTouch touch;
 
67
 
 
68
    printf("  Touch %d:\n", i);
 
69
 
 
70
    status = frame_frame_get_touch_by_index(frame, i, &touch);
 
71
    if (status != UFStatusSuccess) {
 
72
      fprintf(stderr, "Error: failed to get touch %d from frame\n", i);
 
73
      continue;
 
74
    }
 
75
 
 
76
    print_touch(touch, frame, device, window);
 
77
  }
 
78
 
 
79
  printf("\n");
 
80
}