]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/ogl/src/constrnt.h
Added SetFont to most controls and controls sample
[wxWidgets.git] / utils / ogl / src / constrnt.h
index 36538803c9efddaefb95f91bdc35ff1ef835d9d5..ef35bd03c3735b09ac134f0bc65773f4a18f7c55 100644 (file)
@@ -35,7 +35,7 @@ public:
 
 };
 
-extern wxList OGLConstraintTypes;
+extern wxList* OGLConstraintTypes;
 
 #define gyCONSTRAINT_CENTRED_VERTICALLY   1
 #define gyCONSTRAINT_CENTRED_HORIZONTALLY 2
@@ -67,11 +67,11 @@ class OGLConstraint: public wxObject
 
   // Returns TRUE if anything changed
   bool Evaluate();
-  inline void SetSpacing(float x, float y) { m_xSpacing = x; m_ySpacing = y; };
-  bool Equals(float a, float b);
+  inline void SetSpacing(double x, double y) { m_xSpacing = x; m_ySpacing = y; };
+  bool Equals(double a, double b);
 
-  float         m_xSpacing;
-  float         m_ySpacing;
+  double         m_xSpacing;
+  double         m_ySpacing;
   int           m_constraintType;
   wxString      m_constraintName;
   long          m_constraintId;
@@ -81,6 +81,7 @@ class OGLConstraint: public wxObject
 };
 
 void OGLInitializeConstraintTypes();
+void OGLCleanUpConstraintTypes();
 
 #endif
  // _OGL_CONSTRNT_H_