]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
removed relic: GetMaxLineWidth
[wxWidgets.git] / include / wx / window.h
index afc521e18f019ba0f85976c9214096df71a2b77f..b554906d5d6a75163105b37cc339c17bd439a3b0 100644 (file)
@@ -30,9 +30,7 @@
 #include "wx/region.h"
 #include "wx/utils.h"
 
-#if wxUSE_VALIDATORS
-    #include "wx/validate.h"    // defines wxDefaultValidator
-#endif // wxUSE_VALIDATORS
+#include "wx/validate.h"        // for wxDefaultValidator (always include it)
 
 #if wxUSE_ACCEL
     #include "wx/accel.h"
@@ -121,13 +119,7 @@ public:
                     const wxPoint& pos = wxDefaultPosition,
                     const wxSize& size = wxDefaultSize,
                     long style = 0,
-#if wxUSE_VALIDATORS
-#  if defined(__VISAGECPP__)
-                    const wxValidator* validator = wxDefaultValidator,
-#  else
                     const wxValidator& validator = wxDefaultValidator,
-#  endif
-#endif // wxUSE_VALIDATORS
                     const wxString& name = wxPanelNameStr);
 
     virtual ~wxWindowBase();
@@ -392,11 +384,7 @@ public:
 #if wxUSE_VALIDATORS
         // a window may have an associated validator which is used to control
         // user input
-#  if defined(__VISAGECPP__)
-    virtual void SetValidator( const wxValidator *validator );
-#  else
     virtual void SetValidator( const wxValidator &validator );
-#  endif
     virtual wxValidator *GetValidator() { return m_windowValidator; }
 #endif // wxUSE_VALIDATORS
 
@@ -820,6 +808,12 @@ protected:
     // same as DoSetSize() for the client size
     virtual void DoSetClientSize(int width, int height) = 0;
 
+    // move the window to the specified location and resize it: this is called
+    // from both DoSetSize() and DoSetClientSize() and would usually just
+    // reposition this window except for composite controls which will want to
+    // arrange themselves inside the given rectangle
+    virtual void DoMoveWindow(int x, int y, int width, int height) = 0;
+
 #if wxUSE_TOOLTIPS
     virtual void DoSetToolTip( wxToolTip *tip );
 #endif // wxUSE_TOOLTIPS