Displaying 1 result from an estimated 1 matches for "getgeometry".
Did you mean:
  get_geometry
  
2006 Dec 21
0
[792] trunk/wxruby2/swig/classes/include/wxDisplay.h: Added missing class, but a wrapper needs some tweaking
...xDisplay_h_)
+#define _wxDisplay_h_
+class wxDisplay
+{
+public:
+    wxDisplay(size_t index = 0);
+    static size_t GetCount();
+    static int GetFromPoint(const wxPoint& pt);
+    static int GetFromWindow(wxWindow *window);
+    virtual bool IsOk() const { return true; }
+    virtual wxRect GetGeometry() const = 0;
+    virtual wxString GetName() const = 0;
+    virtual bool IsPrimary() const { return m_index == 0; }
+    virtual wxArrayVideoModes
+        GetModes(const wxVideoMode& mode = wxDefaultVideoMode) const = 0;
+    virtual wxVideoMode GetCurrentMode() const = 0;
+    virtual bool C...