~oif-packaging/grail/raring

« back to all changes in this revision

Viewing changes to src/regular-recognizer.cpp

  • Committer: Chase Douglas
  • Date: 2012-06-21 20:30:14 UTC
  • mto: This revision was merged to the branch mainline in revision 234.
  • Revision ID: chase.douglas@ubuntu.com-20120621203014-g2uhy6mg779aufop
Rename utouch-grail to grail

Show diffs side-by-side

added added

removed removed

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