diff base/Clipboard.h @ 370:e73a1a1e8f24

* more reference frame records
author Chris Cannam
date Mon, 04 Feb 2008 16:48:52 +0000
parents 007b01b971a6
children afeb580b1b57
line wrap: on
line diff
--- a/base/Clipboard.h	Mon Feb 04 13:35:11 2008 +0000
+++ b/base/Clipboard.h	Mon Feb 04 16:48:52 2008 +0000
@@ -47,7 +47,9 @@
         bool haveLevel() const;
         float getLevel() const;
 
-        bool referenceFramesDiffer() const;
+        bool haveReferenceFrame() const;
+        bool referenceFrameDiffers() const; // from point frame
+
         long getReferenceFrame() const;
         void setReferenceFrame(long);
 
@@ -62,7 +64,7 @@
         QString m_label;
         bool m_haveLevel;
         float m_level;
-        bool m_referenceFramesDiffer;
+        bool m_haveReferenceFrame;
         long m_referenceFrame;
     };
 
@@ -77,6 +79,7 @@
     void setPoints(const PointList &points);
     void addPoint(const Point &point);
 
+    bool haveReferenceFrames() const;
     bool referenceFramesDiffer() const;
 
 protected: