]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/deprecated/propform.h
Source cleaning: whitespaces, tabs, -1/wxID_ANY/wxDefaultCoord/wxNOT_FOUND, TRUE...
[wxWidgets.git] / contrib / include / wx / deprecated / propform.h
index dabcc80eb0b60c7ed0d94fe7a60f87439b68285b..705ad97dec3bc7384886b756943a34e825a2e159 100644 (file)
@@ -23,7 +23,7 @@
 #include "wx/deprecated/prop.h"
 #include "wx/panel.h"
 
-class WXDLLEXPORT wxPropertyFormView;
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormView;
 
 ////
 //// Property form classes: for using an existing dialog or panel
@@ -33,7 +33,7 @@ class WXDLLEXPORT wxPropertyFormView;
 #define wxID_PROP_UPDATE        3101
 
 // Mediates between a physical panel and the property sheet
-class WXDLLEXPORT wxPropertyFormView: public wxPropertyView
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormView: public wxPropertyView
 {
  DECLARE_DYNAMIC_CLASS(wxPropertyFormView)
  public:
@@ -120,7 +120,7 @@ DECLARE_EVENT_TABLE()
  * assocated with a window. It's that kinda thing.
  */
 
-class WXDLLEXPORT wxPropertyFormValidator: public wxPropertyValidator
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormValidator: public wxPropertyValidator
 {
   DECLARE_DYNAMIC_CLASS(wxPropertyFormValidator)
  protected:
@@ -131,7 +131,7 @@ class WXDLLEXPORT wxPropertyFormValidator: public wxPropertyValidator
    // Called to check value is OK (e.g. when OK is pressed)
    // Return FALSE if value didn't check out; signal to restore old value.
    virtual bool OnCheckValue( wxProperty *WXUNUSED(property), wxPropertyFormView *WXUNUSED(view),
-     wxWindow *WXUNUSED(parentWindow) ) { return TRUE; }
+     wxWindow *WXUNUSED(parentWindow) ) { return true; }
 
    // Does the transferance from the property editing area to the property itself.
    // Called by the view, e.g. when closing the window.
@@ -161,7 +161,7 @@ private:
  * Some default validators
  */
 
-class WXDLLEXPORT wxRealFormValidator: public wxPropertyFormValidator
+class WXDLLIMPEXP_DEPRECATED wxRealFormValidator: public wxPropertyFormValidator
 {
   DECLARE_DYNAMIC_CLASS(wxRealFormValidator)
  public:
@@ -182,7 +182,7 @@ class WXDLLEXPORT wxRealFormValidator: public wxPropertyFormValidator
   float         m_realMax;
 };
 
-class WXDLLEXPORT wxIntegerFormValidator: public wxPropertyFormValidator
+class WXDLLIMPEXP_DEPRECATED wxIntegerFormValidator: public wxPropertyFormValidator
 {
   DECLARE_DYNAMIC_CLASS(wxIntegerFormValidator)
  public:
@@ -202,7 +202,7 @@ class WXDLLEXPORT wxIntegerFormValidator: public wxPropertyFormValidator
   long          m_integerMax;
 };
 
-class WXDLLEXPORT wxBoolFormValidator: public wxPropertyFormValidator
+class WXDLLIMPEXP_DEPRECATED wxBoolFormValidator: public wxPropertyFormValidator
 {
   DECLARE_DYNAMIC_CLASS(wxBoolFormValidator)
  protected:
@@ -217,7 +217,7 @@ class WXDLLEXPORT wxBoolFormValidator: public wxPropertyFormValidator
    bool OnDisplayValue(wxProperty *property, wxPropertyFormView *view, wxWindow *parentWindow);
 };
 
-class WXDLLEXPORT wxStringFormValidator: public wxPropertyFormValidator
+class WXDLLIMPEXP_DEPRECATED wxStringFormValidator: public wxPropertyFormValidator
 {
   DECLARE_DYNAMIC_CLASS(wxStringFormValidator)
  public:
@@ -241,7 +241,7 @@ class WXDLLEXPORT wxStringFormValidator: public wxPropertyFormValidator
  * A default dialog box class to use.
  */
 
-class WXDLLEXPORT wxPropertyFormDialog: public wxDialog
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormDialog: public wxDialog
 {
 public:
     wxPropertyFormDialog(wxPropertyFormView *v = NULL,
@@ -270,7 +270,7 @@ private:
  * A default panel class to use.
  */
 
-class WXDLLEXPORT wxPropertyFormPanel: public wxPanel
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormPanel: public wxPanel
 {
 public:
     wxPropertyFormPanel(wxPropertyFormView *v = NULL,
@@ -279,7 +279,7 @@ public:
                         const wxSize& size = wxDefaultSize,
                         long style = 0,
                         const wxString& name = _T("panel"))
-        : wxPanel(parent, -1, pos, size, style, name)
+        : wxPanel(parent, wxID_ANY, pos, size, style, name)
         {
             m_view = v;
         }
@@ -301,7 +301,7 @@ private:
  * A default frame class to use.
  */
 
-class WXDLLEXPORT wxPropertyFormFrame: public wxFrame
+class WXDLLIMPEXP_DEPRECATED wxPropertyFormFrame: public wxFrame
 {
 public:
     wxPropertyFormFrame(wxPropertyFormView *v = NULL,
@@ -311,7 +311,7 @@ public:
                         const wxSize& size = wxDefaultSize,
                         long style = wxDEFAULT_FRAME_STYLE,
                         const wxString& name = _T("frame"))
-        : wxFrame(parent, -1, title, pos, size, style, name)
+        : wxFrame(parent, wxID_ANY, title, pos, size, style, name)
         {
             m_view = v;
             m_propertyPanel = NULL;