~chasedouglas/frame/ubuntu-upstream-xi

« back to all changes in this revision

Viewing changes to src/v2/frame.h

  • 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
#ifndef UTOUCH_FRAME_FRAME_H_
 
23
#define UTOUCH_FRAME_FRAME_H_
 
24
 
 
25
#include <map>
 
26
#include <memory>
 
27
#include <vector>
 
28
 
 
29
#include "utouch/frame.h"
 
30
#include "v2/property.h"
 
31
#include "v2/typedefs.h"
 
32
 
 
33
struct UFFrame_ {};
 
34
 
 
35
namespace utouch {
 
36
namespace frame {
 
37
 
 
38
class UFFrame : public UFFrame_, public Property<UFFrameProperty> {
 
39
 public:
 
40
  UFFrame() {}
 
41
  UFFrame(const SharedWindow& window, const SharedUFFrame& prev);
 
42
 
 
43
  UFTouch* CopyTouch(UFTouchId touchid, UFTouchState new_state) const;
 
44
  bool IsTouchOwned(UFTouchId touchid);
 
45
  void UpdateTouch(const SharedUFTouch& touch);
 
46
  bool IsEnded() const;
 
47
  UFStatus GetPreviousTouchValue(const UFTouch* touch, UFAxisType type,
 
48
                                 float* value) const;
 
49
  UFStatus GetPreviousTouchProperty(const UFTouch* touch,
 
50
                                    UFTouchProperty property, void* value) const;
 
51
  UFStatus GetTouchByIndex(unsigned int index, ::UFTouch* touch) const;
 
52
  UFStatus GetTouchById(UFTouchId touch_id, ::UFTouch* touch) const;
 
53
  void ReleasePreviousFrame();
 
54
 
 
55
  UFFrame(const UFFrame&) = delete;
 
56
  UFFrame& operator=(const UFFrame&) = delete;
 
57
 
 
58
 private:
 
59
  SharedUFFrame prev_;
 
60
  SharedWindow window_;
 
61
  std::vector<SharedUFTouch> touches_array_;
 
62
  std::map<UFTouchId, unsigned int> touches_map_;
 
63
};
 
64
 
 
65
} // namespace frame
 
66
} // namespace utouch
 
67
 
 
68
#endif // UTOUCH_FRAME_FRAME_H_