]> Dogcows Code - chaz/openbox/blobdiff - otk/point.hh
provide the strut for the frame's size instead of an area rect
[chaz/openbox] / otk / point.hh
index 425cb2185b325633e9cdf7f6df90e17ae3f337df..66c3b14d039e57150587b55e7258212a5a72dad4 100644 (file)
@@ -14,7 +14,7 @@ private:
   //! The x value
   int _x;
   //! The y value
- int _y;
 int _y;
 
 public:
   //! Constructs a new Point with 0,0 values
@@ -25,12 +25,15 @@ public:
   //! Changes the x value to the new value specified
   void setX(int x) { _x = x; }
   //! Returns the x value
-  void x() const { return _x; }
+  int x() const { return _x; }
 
   //! Changes the y value to the new value specified
-  void setY(int x) { _x = x; }
+  void setY(int y) { _y = y; }
   //! Returns the y value
-  void y() const { return _x; }
+  int y() const { return _y; }
+
+  //! Changes the x and y values
+  void setPoint(int x, int y) { _x = x; _y = y; }
 };
 
 }
This page took 0.0251 seconds and 4 git commands to generate.