comparison base/Clipboard.h @ 383:94fc0591ea43 1.2-stable

* merge from trunk (1.2 ended up being tracked from trunk, but we may want this branch for fixes later)
author Chris Cannam
date Wed, 27 Feb 2008 10:32:45 +0000
parents 516819f2b97b
children
comparison
equal deleted inserted replaced
349:f39d33b0b265 383:94fc0591ea43
46 46
47 bool haveLevel() const; 47 bool haveLevel() const;
48 float getLevel() const; 48 float getLevel() const;
49 49
50 bool haveReferenceFrame() const; 50 bool haveReferenceFrame() const;
51 bool referenceFrameDiffers() const; // from point frame
52
51 long getReferenceFrame() const; 53 long getReferenceFrame() const;
52 void setReferenceFrame(long); 54 void setReferenceFrame(long);
53 55
54 private: 56 private:
55 bool m_haveFrame; 57 bool m_haveFrame;
76 const PointList &getPoints() const; 78 const PointList &getPoints() const;
77 void setPoints(const PointList &points); 79 void setPoints(const PointList &points);
78 void addPoint(const Point &point); 80 void addPoint(const Point &point);
79 81
80 bool haveReferenceFrames() const; 82 bool haveReferenceFrames() const;
83 bool referenceFramesDiffer() const;
81 84
82 protected: 85 protected:
83 PointList m_points; 86 PointList m_points;
84 }; 87 };
85 88