~oif-team/grail/trunk

« back to all changes in this revision

Viewing changes to src/regular-recognizer.cpp

  • Committer: Chase Douglas
  • Date: 2012-07-25 23:09:08 UTC
  • mfrom: (229.2.4 grail)
  • Revision ID: chase.douglas@canonical.com-20120725230908-1l25qh2ex2ueanqj
Merge in project rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <cstdio>
28
28
#include <limits>
29
29
 
30
 
#include <utouch/frame.h>
31
 
#include <utouch/frame_x11.h>
 
30
#include <oif/frame.h>
 
31
#include <oif/frame_x11.h>
32
32
 
33
33
#include "handle.h"
34
34
#include "gesture.h"
35
35
#include "log.h"
36
36
#include "touch.h"
37
37
 
38
 
namespace utouch {
 
38
namespace oif {
39
39
namespace grail {
40
40
 
41
41
/**
49
49
 
50
50
/**
51
51
 * @internal
52
 
 * Process a uTouch-Frame event
 
52
 * Process a frame event
53
53
 */
54
54
void RegularRecognizer::ProcessFrameEvent(const UFEvent event) {
55
55
  LOG(Dbg) << "new event " << event << " with time "
62
62
 
63
63
/**
64
64
 * @internal
65
 
 * Process all touches present in the given uTouch-Frame event.
 
65
 * Process all touches present in the given frame event.
66
66
 *
67
67
 * Add new touches to new_touches_ and free_touches_ maps, update the grail
68
68
 * touch state for existing touches, and remove touches from maps when they
414
414
}
415
415
 
416
416
} // namespace grail
417
 
} // namespace utouch
 
417
} // namespace oif