]> git.saurik.com Git - wxWidgets.git/commitdiff
OS/2 update for wxUniv merge.
authorDavid Webster <Dave.Webster@bhmi.com>
Fri, 6 Jul 2001 21:45:11 +0000 (21:45 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Fri, 6 Jul 2001 21:45:11 +0000 (21:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

25 files changed:
include/wx/bmpbuttn.h
include/wx/frame.h
include/wx/generic/listctrl.h
include/wx/generic/progdlgg.h
include/wx/os2/accel.h
include/wx/os2/bmpbuttn.h
include/wx/os2/button.h
include/wx/os2/checkbox.h
include/wx/os2/dc.h
include/wx/os2/dcclient.h
include/wx/os2/frame.h
include/wx/os2/menu.h
include/wx/os2/menuitem.h
include/wx/os2/msgdlg.h
include/wx/os2/notebook.h
include/wx/os2/radiobox.h
include/wx/os2/radiobut.h
include/wx/os2/scrolbar.h
include/wx/os2/setup.h
include/wx/os2/setup0.h
include/wx/os2/slider.h
include/wx/os2/statbmp.h
include/wx/os2/statbox.h
include/wx/os2/window.h
include/wx/window.h

index 4b23b568c26d321a54d59af6ee7d8b7e379c6788..7c1ad834fd4e4d8477b99906bea5c107268cfa7a 100644 (file)
@@ -69,6 +69,10 @@ protected:
     // the margins around the bitmap
     int m_marginX,
         m_marginY;
     // the margins around the bitmap
     int m_marginX,
         m_marginY;
+private:
+    // Prevent Virtual function hiding warnings
+    void SetLabel(const wxString& rsLabel)
+    { wxWindowBase::SetLabel(rsLabel); }
 };
 
 #if defined(__WXUNIVERSAL__)
 };
 
 #if defined(__WXUNIVERSAL__)
index fd9afe2a918f0af39c7ddc4fc7268ebc94452e4e..4d68e8903213e8260cf0aed159de82be70fca20e 100644 (file)
@@ -318,6 +318,28 @@ protected:
     #endif
 #elif defined(__WXPM__)
     #include "wx/os2/frame.h"
     #endif
 #elif defined(__WXPM__)
     #include "wx/os2/frame.h"
+    #ifndef __WXUNIVERSAL__
+
+    class WXDLLEXPORT wxFrame : public wxFrameOS2
+    {
+    public:
+        // construction
+        wxFrame() { Init(); }
+        wxFrame(wxWindow *parent,
+                   wxWindowID id,
+                   const wxString& title,
+                   const wxPoint& pos = wxDefaultPosition,
+                   const wxSize& size = wxDefaultSize,
+                   long style = wxDEFAULT_FRAME_STYLE,
+                   const wxString& name = wxFrameNameStr)
+        {
+            Init();
+            Create(parent, id, title, pos, size, style, name);
+        }
+        DECLARE_DYNAMIC_CLASS(wxFrame)
+    };
+    #endif
+
 #elif defined(__WXSTUBS__)
     #include "wx/stubs/frame.h"
 #endif
 #elif defined(__WXSTUBS__)
     #include "wx/stubs/frame.h"
 #endif
index 8ac5dc444d4939de62ded7dbc09fc1652aee6e59..f239e01b3b9cdb494beed23a270f49e8c9ab7dba 100644 (file)
@@ -189,6 +189,10 @@ protected:
     friend wxListMainWindow;
 
 private:
     friend wxListMainWindow;
 
 private:
+    // Virtual function hiding supression
+    void Update(void)
+    { wxWindowBase::Update(); }
+
     // create the header window
     void CreateHeaderWindow();
 
     // create the header window
     void CreateHeaderWindow();
 
index 3c6de052883849c1a9e8a912dcac7dab6636e831..ec103f99a75f1158961e7433c129d7bf48b2723a 100644 (file)
@@ -116,6 +116,10 @@ private:
    class WXDLLEXPORT wxWindowDisabler *m_winDisabler;
 
    DECLARE_EVENT_TABLE()
    class WXDLLEXPORT wxWindowDisabler *m_winDisabler;
 
    DECLARE_EVENT_TABLE()
+private:
+    // Virtual function hiding supression
+    void Update()
+    { wxWindowBase::Update(); }
 };
 #endif
 
 };
 #endif
 
index 226e0320bc4fd5e7ad05190549e18c162e657815..6e33d02ee7bb2cbfd30729ab75c2f0eb008e49c8 100644 (file)
@@ -28,26 +28,6 @@ class WXDLLEXPORT wxAcceleratorTable;
  // Hold no key down
 #define wxACCEL_NORMAL  0x00
 
  // Hold no key down
 #define wxACCEL_NORMAL  0x00
 
-class WXDLLEXPORT wxAcceleratorEntry
-{
-public:
-    wxAcceleratorEntry(int flags = 0, int keyCode = 0, int cmd = 0)
-    {
-        m_flags = flags; m_keyCode = keyCode; m_command = cmd;
-    }
-
-    inline void Set(int flags, int keyCode, int cmd)
-         { m_flags = flags; m_keyCode = keyCode; m_command = cmd; }
-
-    inline int GetFlags() const { return m_flags; }
-    inline int GetKeyCode() const { return m_keyCode; }
-    inline int GetCommand() const { return m_command; }
-
-    int             m_flags;
-    int                            m_keyCode; // ASCII or virtual keycode
-    int                            m_command; // Command id to generate
-};
-
 class WXDLLEXPORT wxAcceleratorTable: public wxObject
 {
 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
 class WXDLLEXPORT wxAcceleratorTable: public wxObject
 {
 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
index f7f5b070fe4947c227c142515453600e8a823a12..8847ff3d1049c9ff996a9920dee024e231ebaf9e 100644 (file)
@@ -18,7 +18,7 @@ WXDLLEXPORT_DATA(extern const char*) wxButtonNameStr;
 
 #define wxDEFAULT_BUTTON_MARGIN 4
 
 
 #define wxDEFAULT_BUTTON_MARGIN 4
 
-class WXDLLEXPORT wxBitmapButton: public wxButton
+class WXDLLEXPORT wxBitmapButton: public wxBitmapButtonBase
 {
   DECLARE_DYNAMIC_CLASS(wxBitmapButton)
  public:
 {
   DECLARE_DYNAMIC_CLASS(wxBitmapButton)
  public:
index ed2c8a8f40750b3f1e77bbc984736dbd8154fb5e..5330bcfb8f12878206c5195e52e158c714c4bbbe 100644 (file)
@@ -17,9 +17,8 @@
 WXDLLEXPORT_DATA(extern const char*) wxButtonNameStr;
 
 // Pushbutton
 WXDLLEXPORT_DATA(extern const char*) wxButtonNameStr;
 
 // Pushbutton
-class WXDLLEXPORT wxButton: public wxControl
+class WXDLLEXPORT wxButton: public wxButtonBase
 {
 {
-  DECLARE_DYNAMIC_CLASS(wxButton)
  public:
   inline wxButton() {}
   inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
  public:
   inline wxButton() {}
   inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
@@ -60,6 +59,8 @@ protected:
     bool SendClickEvent();
 
     virtual wxSize DoGetBestSize() const;
     bool SendClickEvent();
 
     virtual wxSize DoGetBestSize() const;
+private:
+  DECLARE_DYNAMIC_CLASS(wxButton)
 };
 
 #endif
 };
 
 #endif
index 4b0bff34191e10068aa95a1eb1edd701a4a2186e..6079d5f80a403e2c6e16dcd6c8be48a78e0e8602 100644 (file)
@@ -18,10 +18,8 @@ WXDLLEXPORT_DATA(extern const char*) wxCheckBoxNameStr;
 
 // Checkbox item (single checkbox)
 class WXDLLEXPORT wxBitmap;
 
 // Checkbox item (single checkbox)
 class WXDLLEXPORT wxBitmap;
-class WXDLLEXPORT wxCheckBox: public wxControl
+class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase
 {
 {
-  DECLARE_DYNAMIC_CLASS(wxCheckBox)
-
  public:
   inline wxCheckBox() { }
   inline wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label,
  public:
   inline wxCheckBox() { }
   inline wxCheckBox(wxWindow *parent, wxWindowID id, const wxString& label,
@@ -54,6 +52,8 @@ class WXDLLEXPORT wxCheckBox: public wxControl
 
 protected:
   virtual wxSize DoGetBestSize() const;
 
 protected:
   virtual wxSize DoGetBestSize() const;
+private:
+  DECLARE_DYNAMIC_CLASS(wxCheckBox)
 };
 
 class WXDLLEXPORT wxBitmapCheckBox: public wxCheckBox
 };
 
 class WXDLLEXPORT wxBitmapCheckBox: public wxCheckBox
index d673f3cf338bfc567c86d47f10d2d6bdbd7cf3b8..85d37c6593d2d496f5eab3bc720cdb07f8f7f314 100644 (file)
@@ -157,6 +157,8 @@ public:
     const wxBitmap& GetSelectedBitmap(void) const { return m_vSelectedBitmap; }
     wxBitmap&       GetSelectedBitmap(void) { return m_vSelectedBitmap; }
 
     const wxBitmap& GetSelectedBitmap(void) const { return m_vSelectedBitmap; }
     wxBitmap&       GetSelectedBitmap(void) { return m_vSelectedBitmap; }
 
+    void            UpdateClipBox();
+
 protected:
     virtual void DoFloodFill( wxCoord         vX
                              ,wxCoord         vY
 protected:
     virtual void DoFloodFill( wxCoord         vX
                              ,wxCoord         vY
index f0d686183086f6afbab2078e81b15366f784f1ff..351e993888681b531f478b1173155b19726a3ba0 100644 (file)
@@ -52,15 +52,18 @@ class WXDLLEXPORT wxClientDC : public wxWindowDC
 {
 public:
     wxClientDC();
 {
 public:
     wxClientDC();
+    virtual ~wxClientDC();
 
 
-    // Create a DC corresponding to the client area of the window
     wxClientDC(wxWindow *win);
 
     wxClientDC(wxWindow *win);
 
+protected:
+    void InitDC(void);
+
 private:
     DECLARE_DYNAMIC_CLASS(wxClientDC)
 }; // end of CLASS wxClientDC
 
 private:
     DECLARE_DYNAMIC_CLASS(wxClientDC)
 }; // end of CLASS wxClientDC
 
-class WXDLLEXPORT wxPaintDC : public wxWindowDC
+class WXDLLEXPORT wxPaintDC : public wxClientDC
 {
 public:
     wxPaintDC();
 {
 public:
     wxPaintDC();
index 23785ee564fd212b7ec437b99247ae366242b47e..38d5f57600e50b02c0598c8e2f5a23b511b46961 100644 (file)
 //
 #include "wx/os2/wxOs2.h"
 
 //
 #include "wx/os2/wxOs2.h"
 
-class WXDLLEXPORT wxFrame : public wxFrameBase
+class WXDLLEXPORT wxFrameOS2 : public wxFrameBase
 {
 public:
     // construction
 {
 public:
     // construction
-    wxFrame() { Init(); }
-    wxFrame( wxWindow*       pParent
-            ,wxWindowID      vId
-            ,const wxString& rsTitle
-            ,const wxPoint&  rPos = wxDefaultPosition
-            ,const wxSize&   rSize = wxDefaultSize
-            ,long            lStyle = wxDEFAULT_FRAME_STYLE
-            ,const wxString& rsName = wxFrameNameStr
-           )
+    wxFrameOS2() { Init(); }
+    wxFrameOS2( wxWindow*       pParent
+               ,wxWindowID      vId
+               ,const wxString& rsTitle
+               ,const wxPoint&  rPos = wxDefaultPosition
+               ,const wxSize&   rSize = wxDefaultSize
+               ,long            lStyle = wxDEFAULT_FRAME_STYLE
+               ,const wxString& rsName = wxFrameNameStr
+              )
     {
         Init();
 
     {
         Init();
 
@@ -45,7 +45,7 @@ public:
                 ,const wxString& rsName = wxFrameNameStr
                );
 
                 ,const wxString& rsName = wxFrameNameStr
                );
 
-    virtual ~wxFrame();
+    virtual ~wxFrameOS2();
 
     // implement base class pure virtuals
     virtual void Maximize(bool bMaximize = TRUE);
 
     // implement base class pure virtuals
     virtual void Maximize(bool bMaximize = TRUE);
@@ -242,7 +242,7 @@ private:
     SWP                             m_vSwpToolBar;
 
     DECLARE_EVENT_TABLE()
     SWP                             m_vSwpToolBar;
 
     DECLARE_EVENT_TABLE()
-    DECLARE_DYNAMIC_CLASS(wxFrame)
+    DECLARE_DYNAMIC_CLASS(wxFrameOS2)
 };
 
 #endif
 };
 
 #endif
index fac76609db604e267547430ec045b95093ddb3bc..e75b73d6f05f4cc8a177ba082a1d5f0e2fa1a914 100644 (file)
@@ -73,12 +73,6 @@ public:
     }
 #endif // wxUSE_MENU_CALLBACK
 
     }
 #endif // wxUSE_MENU_CALLBACK
 
-    //
-    // OS2-specific
-    //
-    bool ProcessCommand(wxCommandEvent& rEvent);
-
-
     //
     // Implementation only from now on
     // -------------------------------
     //
     // Implementation only from now on
     // -------------------------------
@@ -101,12 +95,6 @@ public:
     //
     WXHMENU GetHMenu() const { return m_hMenu; }
 
     //
     WXHMENU GetHMenu() const { return m_hMenu; }
 
-    //
-    // Attach/detach menu to/from wxMenuBar
-    //
-    void Attach(wxMenuBar* pMenubar);
-    void Detach(void);
-
 #if wxUSE_ACCEL
     //
     // Called by wxMenuBar to build its accel table from the accels of all menus
 #if wxUSE_ACCEL
     //
     // Called by wxMenuBar to build its accel table from the accels of all menus
@@ -166,7 +154,7 @@ private:
     //
     // The helper variable for creating unique IDs.
     //
     //
     // The helper variable for creating unique IDs.
     //
-    static USHORT                  m_nextMenuId;
+    static USHORT                          m_nextMenuId;
 
 #if wxUSE_ACCEL
     //
 
 #if wxUSE_ACCEL
     //
@@ -254,22 +242,8 @@ public:
     // Implementation from now on
     //
     WXHMENU                   Create(void);
     // Implementation from now on
     //
     WXHMENU                   Create(void);
-    void                      Detach(void);
-
-    //
-    // Returns TRUE if we're attached to a frame
-    //
-    bool                      IsAttached(void) const { return m_pMenuBarFrame != NULL; }
-
-    //
-    // Get the frame we live in
-    //
-    wxFrame *                 GetFrame(void) const { return m_pMenuBarFrame; }
-
-    //
-    // Attach to a frame
-    //
-    void                      Attach(wxFrame* pFrame);
+    virtual void              Detach(void);
+    virtual void              Attach(wxFrame* pFrame);
 
 #if wxUSE_ACCEL
     //
 
 #if wxUSE_ACCEL
     //
@@ -305,7 +279,6 @@ protected:
 
     wxArrayString m_titles;
 
 
     wxArrayString m_titles;
 
-    wxFrame*                        m_pMenuBarFrame;
     WXHMENU                         m_hMenu;
 
 #if wxUSE_ACCEL
     WXHMENU                         m_hMenu;
 
 #if wxUSE_ACCEL
@@ -315,6 +288,8 @@ protected:
     wxAcceleratorTable              m_vAccelTable;
 #endif // wxUSE_ACCEL
 
     wxAcceleratorTable              m_vAccelTable;
 #endif // wxUSE_ACCEL
 
+    wxFrame*                        m_pMenuBarFrame;
+
 private:
     //
     // Virtual function hiding suppression
 private:
     //
     // Virtual function hiding suppression
index 8436d0d006f103561f4a3417ee9a8f62b8983aa0..33a41cef6216da15c0c1f60ad4ba0224c6067198 100644 (file)
@@ -60,10 +60,6 @@ public:
     virtual void Check(bool bDoCheck = TRUE);
     virtual bool IsChecked(void) const;
 
     virtual void Check(bool bDoCheck = TRUE);
     virtual bool IsChecked(void) const;
 
-#if wxUSE_ACCEL
-    virtual wxAcceleratorEntry* GetAccel(void) const;
-#endif // wxUSE_ACCEL
-
     // unfortunately needed to resolve ambiguity between
     // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
     bool IsCheckable(void) const { return wxMenuItemBase::IsCheckable(); }
     // unfortunately needed to resolve ambiguity between
     // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
     bool IsCheckable(void) const { return wxMenuItemBase::IsCheckable(); }
index af7a32d0466231870cae8c3613453943acd60d5a..ab513036708395e027f84f13d281cc8aa5c9fae0 100644 (file)
@@ -42,14 +42,5 @@ protected:
     wxWindow*                       m_pParent;
 }; // end of CLASS wxMessageDialog
 
     wxWindow*                       m_pParent;
 }; // end of CLASS wxMessageDialog
 
-
-int WXDLLEXPORT wxMessageBox( const wxString& rsMessage
-                             ,const wxString& rsCaption = wxMessageBoxCaptionStr
-                             ,long            lStyle = wxOK|wxCENTRE
-                             ,wxWindow*       pParent = NULL
-                             ,int             nX = -1
-                             ,int             nY = -1
-                            );
-
 #endif
     // _WX_MSGBOXDLG_H_
 #endif
     // _WX_MSGBOXDLG_H_
index 39415272d8558a7ede9d03cac0263fd8e51dd2bd..7e533d6966b429072280860efd2c0753b381c9be 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "wx/dynarray.h"
 #include "wx/string.h"
 
 #include "wx/dynarray.h"
 #include "wx/string.h"
-#include "wx/control.h"
+#include "wx/notebook.h"
 
 // ----------------------------------------------------------------------------
 // types
 
 // ----------------------------------------------------------------------------
 // types
@@ -38,7 +38,7 @@ WX_DEFINE_ARRAY(wxNotebookPage *, wxArrayNBPages);
 // FIXME this class should really derive from wxTabCtrl, but the interface is not
 //       exactly the same, so I can't do it right now and instead we reimplement
 //       part of wxTabCtrl here
 // FIXME this class should really derive from wxTabCtrl, but the interface is not
 //       exactly the same, so I can't do it right now and instead we reimplement
 //       part of wxTabCtrl here
-class WXDLLEXPORT wxNotebook : public wxControl
+class WXDLLEXPORT wxNotebook : public wxNotebookBase
 {
 public:
   // ctors
 {
 public:
   // ctors
index 9c424e88940cd001a8167d29911efc44593bb34c..e664ccf7bf4da0a5d971170534fe70181d771809 100644 (file)
 #ifndef _WX_RADIOBOX_H_
 #define _WX_RADIOBOX_H_
 
 #ifndef _WX_RADIOBOX_H_
 #define _WX_RADIOBOX_H_
 
-#include "wx/control.h"
-
 WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
 
 // List box item
 class WXDLLEXPORT wxBitmap ;
 
 WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
 
 // List box item
 class WXDLLEXPORT wxBitmap ;
 
-class WXDLLEXPORT wxRadioBox: public wxControl
+class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase
 {
   DECLARE_DYNAMIC_CLASS(wxRadioBox)
 public:
 {
   DECLARE_DYNAMIC_CLASS(wxRadioBox)
 public:
@@ -53,7 +51,11 @@ public:
   int FindString(const wxString& s) const;
   void SetSelection(int N);
   int GetSelection() const;
   int FindString(const wxString& s) const;
   void SetSelection(int N);
   int GetSelection() const;
+  virtual int GetCount() const;
   wxString GetString(int N) const;
   wxString GetString(int N) const;
+  virtual void SetString(int n, const wxString& label);
+  virtual int GetColumnCount() const;
+  virtual int GetRowCount() const;
 
   void GetSize(int *x, int *y) const;
   void GetPosition(int *x, int *y) const;
 
   void GetSize(int *x, int *y) const;
   void GetPosition(int *x, int *y) const;
index f1e03be04a577d8a9c30dae5942695146f753331..ee96b5008b6ca0fe1ef0c432fdcacc3220befc32 100644 (file)
@@ -51,47 +51,5 @@ class WXDLLEXPORT wxRadioButton: public wxControl
   void Command(wxCommandEvent& event);
 };
 
   void Command(wxCommandEvent& event);
 };
 
-// Not implemented
-class WXDLLEXPORT wxBitmap ;
-
-WXDLLEXPORT_DATA(extern const char*) wxBitmapRadioButtonNameStr;
-
-class WXDLLEXPORT wxBitmapRadioButton: public wxRadioButton
-{
-  DECLARE_DYNAMIC_CLASS(wxBitmapRadioButton)
- protected:
-  wxBitmap *theButtonBitmap;
- public:
-  inline wxBitmapRadioButton() { theButtonBitmap = NULL; }
-  inline wxBitmapRadioButton(wxWindow *parent, wxWindowID id,
-           const wxBitmap *label,
-           const wxPoint& pos = wxDefaultPosition,
-           const wxSize& size = wxDefaultSize, long style = 0,
-#if wxUSE_VALIDATORS
-           const wxValidator& validator = wxDefaultValidator,
-#endif
-           const wxString& name = wxBitmapRadioButtonNameStr)
-  {
-      Create(parent, id, label, pos, size, style, validator, name);
-  }
-
-  bool Create(wxWindow *parent, wxWindowID id,
-           const wxBitmap *label,
-           const wxPoint& pos = wxDefaultPosition,
-           const wxSize& size = wxDefaultSize, long style = 0,
-#if wxUSE_VALIDATORS
-           const wxValidator& validator = wxDefaultValidator,
-#endif
-           const wxString& name = wxBitmapRadioButtonNameStr);
-
-  virtual void SetLabel(const wxBitmap *label);
-  virtual void SetValue(bool val) ;
-  virtual bool GetValue() const ;
-private:
-  // virtual function hiding suppression, do not use
-  virtual void SetLabel(const wxString& label)
-  { wxRadioButton::SetLabel(label); };
-};
-
 #endif
     // _WX_RADIOBUT_H_
 #endif
     // _WX_RADIOBUT_H_
index e77f17ec4457ebfc9ebabfa71758b21fd4d75083..c7798d15296830467581499481dec4f8b1b4d2fc 100644 (file)
 #ifndef _WX_SCROLBAR_H_
 #define _WX_SCROLBAR_H_
 
 #ifndef _WX_SCROLBAR_H_
 #define _WX_SCROLBAR_H_
 
-#include "wx/control.h"
+#include "wx/scrolbar.h"
 
 WXDLLEXPORT_DATA(extern const char*) wxScrollBarNameStr;
 
 // Scrollbar item
 
 WXDLLEXPORT_DATA(extern const char*) wxScrollBarNameStr;
 
 // Scrollbar item
-class WXDLLEXPORT wxScrollBar: public wxControl
+class WXDLLEXPORT wxScrollBar: public wxScrollBarBase
 {
   DECLARE_DYNAMIC_CLASS(wxScrollBar)
 
 {
   DECLARE_DYNAMIC_CLASS(wxScrollBar)
 
index 562a2b1470e714e4cb01e19fabe7a980b9d77548..1fdeed452fc0edcbea7f55917f6a28ecf299f2eb 100644 (file)
@@ -34,6 +34,8 @@
 
 #define wxUSE_NET_API          1 // Utilize OS/2's UPM netapi's
 
 
 #define wxUSE_NET_API          1 // Utilize OS/2's UPM netapi's
 
+#define wxUSE_DATETIME         1 // Utilize the date-time classes
+
 #define wxUSE_CONFIG           1
                                 // Use wxConfig, with CreateConfig in wxApp
 
 #define wxUSE_CONFIG           1
                                 // Use wxConfig, with CreateConfig in wxApp
 
 #define wxUSE_DRAG_AND_DROP 1
                                 // 0 for no drag and drop
 
 #define wxUSE_DRAG_AND_DROP 1
                                 // 0 for no drag and drop
 
+#define wxUSE_CONTROLS     1    // Do not change
+#define wxUSE_POPUPWIN     0    // OS/2 does not use this
+
+// Recommended setting: 1
+#define wxUSE_BUTTON       1    // wxButton
+#define wxUSE_BMPBUTTON    1    // wxBitmapButton
+#define wxUSE_CALENDARCTRL 1    // wxCalendarCtrl
+#define wxUSE_CHECKBOX     1    // wxCheckBox
+#define wxUSE_CHECKLISTBOX 1    // wxCheckListBox (requires wxUSE_OWNER_DRAWN)
+#define wxUSE_CHOICE       1    // wxChoice
+#define wxUSE_COMBOBOX     1    // wxComboBox
+#define wxUSE_GAUGE        1    // wxGauge
+#define wxUSE_LISTBOX      1    // wxListBox
+#define wxUSE_LISTCTRL     1    // wxListCtrl
+#define wxUSE_RADIOBOX     1    // wxRadioBox
+#define wxUSE_RADIOBTN     1    // wxRadioButton
+#define wxUSE_SCROLLBAR    1    // wxScrollBar
+#define wxUSE_SLIDER       1    // wxSlider
+#define wxUSE_SPINBTN      1    // wxSpinButton
+#define wxUSE_SPINCTRL     1    // wxSpinCtrl
+#define wxUSE_STATBOX      1    // wxStaticBox
+#define wxUSE_STATLINE     1    // wxStaticLine
+#define wxUSE_STATTEXT     1    // wxStaticText
+#define wxUSE_STATBMP      1    // wxStaticBitmap
+#define wxUSE_TEXTCTRL     1    // wxTextCtrl
+#define wxUSE_TOGGLEBTN    1    // requires wxButton
+#define wxUSE_TREECTRL     1    // wxTreeCtrl
+#define wxUSE_CHOICEDLG    1
+#define wxUSE_COLOURDLG    1
+#define wxUSE_DATAOBJ      1
+#define wxUSE_FILEDLG      1
+#define wxUSE_FONTDLG      1
+#define wxUSE_FONTMAP      1
+#define wxUSE_GRID         1
+#define wxUSE_IMAGLIST     1
+#define wxUSE_LOGGUI       1
+#define wxUSE_LOGWINDOW    1
+#define wxUSE_LOG_DIALOG   1
+#define wxUSE_MIMETYPE     1
+#define wxUSE_MSGDLG       1
+#define wxUSE_NOTEBOOK     1
+#define wxUSE_SPLITTER     1
+#define wxUSE_STOPWATCH    1
+#define wxUSE_TAB_DIALOG   1
+#define wxUSE_WXHTML_HELP  1
+
 #define wxUSE_BUTTONBAR     1
                                     // Define 1 to use buttonbar classes (enhanced toolbar
                                     // for MS Windows)
 #define wxUSE_BUTTONBAR     1
                                     // Define 1 to use buttonbar classes (enhanced toolbar
                                     // for MS Windows)
-#define wxUSE_GAUGE         1
-                                    // Define 1 to use Microsoft's gauge (Windows)
-                                    // or Bull's gauge (Motif) library (both in contrib).
-#define wxUSE_COMBOBOX      1
-                                    // Define 1 to use COMBOXBOX control (Windows)
-                                    // or FWW's ComboBox widget (Motif).
-#define wxUSE_CHOICE      1
-                                    // Define 1 to use CHOICE
 
 #define wxUSE_RADIOBUTTON   1
                                     // Define 1 to use radio button control
 
 #define wxUSE_RADIOBUTTON   1
                                     // Define 1 to use radio button control
-#define wxUSE_RADIOBTN   1
-                                    // Unfortunately someone introduced this one, too
 
 #define wxUSE_SCROLLBAR   1
                                     // Define 1 to compile contributed wxScrollBar class
 
 
 #define wxUSE_SCROLLBAR   1
                                     // Define 1 to compile contributed wxScrollBar class
 
-#define wxUSE_CHECKBOX 1
-                                    // Define 1 to compile checkbox
-
-#define wxUSE_LISTBOX 1
-                                    // Define 1 to compile listbox
-
-#define wxUSE_SPINBTN 1
-                                    // Define 1 to compile spin button
-
-// use wxStaticLine class (separator line in the dialog)?
-#define wxUSE_STATLINE 1
-
-#define wxUSE_CHECKLISTBOX 1
-                                    // Define 1 to compile check listbox
 #define wxUSE_CARET       1
                                     // Define 1 to use wxCaret class
 #define wxUSE_TREECTRL    1
 #define wxUSE_CARET       1
                                     // Define 1 to use wxCaret class
 #define wxUSE_TREECTRL    1
 #define wxUSE_ZIPSTREAM     1
                                   // input stream for reading from zip archives
 
 #define wxUSE_ZIPSTREAM     1
                                   // input stream for reading from zip archives
 
+#define wxUSE_TIMER         1     // use the timer class
 /*
  * Finer detail
  *
 /*
  * Finer detail
  *
 // use wxFile class - required by i18n code, wxConfig and others - recommended
 #define wxUSE_FILE                1
 
 // use wxFile class - required by i18n code, wxConfig and others - recommended
 #define wxUSE_FILE                1
 
+#define wxUSE_FFILE         1
+
 // use wxTextFile class: requires wxFile, required by wxConfig
 #define wxUSE_TEXTFILE            1
 
 // use wxTextFile class: requires wxFile, required by wxConfig
 #define wxUSE_TEXTFILE            1
 
index fabfe09f8db82d945a19c3901585ab84f0f108d1..283a68a07570e6a39d8509b0d14753ea69d4492b 100644 (file)
@@ -36,7 +36,6 @@
 
 #define wxUSE_CONFIG           1
                                 // Use wxConfig, with CreateConfig in wxApp
 
 #define wxUSE_CONFIG           1
                                 // Use wxConfig, with CreateConfig in wxApp
-
 #define wxUSE_POSTSCRIPT  1
                             // 0 for no PostScript device context
 #define wxUSE_AFM_FOR_POSTSCRIPT 1
 #define wxUSE_POSTSCRIPT  1
                             // 0 for no PostScript device context
 #define wxUSE_AFM_FOR_POSTSCRIPT 1
index b290372735dfa0d207cc03bccc8060e8001b6fc7..ba675da4d1633e2a43666aec84450dcef513fa1c 100644 (file)
@@ -17,7 +17,7 @@
 WXDLLEXPORT_DATA(extern const char*) wxSliderNameStr;
 
 // Slider
 WXDLLEXPORT_DATA(extern const char*) wxSliderNameStr;
 
 // Slider
-class WXDLLEXPORT wxSlider: public wxControl
+class WXDLLEXPORT wxSlider: public wxSliderBase
 {
   DECLARE_DYNAMIC_CLASS(wxSlider)
 
 {
   DECLARE_DYNAMIC_CLASS(wxSlider)
 
index 01ad8f183a6353663c714ff2a18535fcdfdb9a0e..116e25034d3f32f34548389168bfe2a0113db33b 100644 (file)
@@ -21,9 +21,8 @@
 
 WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
 
 
 WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
 
-class WXDLLEXPORT wxStaticBitmap: public wxControl
+class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
 {
 {
-    DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
  public:
     inline wxStaticBitmap() { Init(); }
 
  public:
     inline wxStaticBitmap() { Init(); }
 
@@ -56,7 +55,7 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl
     // vice versa
     const wxIcon& GetIcon() const
       { wxASSERT( m_bIsIcon ); return *(wxIcon *)m_pImage; }
     // vice versa
     const wxIcon& GetIcon() const
       { wxASSERT( m_bIsIcon ); return *(wxIcon *)m_pImage; }
-    const wxBitmap& GetBitmap() const
+    wxBitmap GetBitmap() const
       { wxASSERT( !m_bIsIcon ); return *(wxBitmap *)m_pImage; }
 
     // overriden base class virtuals
       { wxASSERT( !m_bIsIcon ); return *(wxBitmap *)m_pImage; }
 
     // overriden base class virtuals
@@ -76,6 +75,8 @@ protected:
     // we can have either an icon or a bitmap
     bool                            m_bIsIcon;
     wxGDIImage*                     m_pImage;
     // we can have either an icon or a bitmap
     bool                            m_bIsIcon;
     wxGDIImage*                     m_pImage;
+private:
+    DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
 };
 
 #endif
 };
 
 #endif
index 147e7beb380dcab936930c6d5998b54537e4653e..df6122aeb91d3c8e5664abe4d4f0d0dde5fcab3d 100644 (file)
@@ -17,7 +17,7 @@
 WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr;
 
 // Group box
 WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr;
 
 // Group box
-class WXDLLEXPORT wxStaticBox: public wxControl
+class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase
 {
   DECLARE_DYNAMIC_CLASS(wxStaticBox)
 
 {
   DECLARE_DYNAMIC_CLASS(wxStaticBox)
 
index 358c0e849a158cfe0f283f481d25cab333a0d45c..4c3fc7391e88073383bae549557473566e800ec5 100644 (file)
@@ -44,21 +44,21 @@ enum
 // wxWindow declaration for OS/2 PM
 // ---------------------------------------------------------------------------
 
 // wxWindow declaration for OS/2 PM
 // ---------------------------------------------------------------------------
 
-class WXDLLEXPORT wxWindow : public wxWindowBase
+class WXDLLEXPORT wxWindowOS2 : public wxWindowBase
 {
 public:
 {
 public:
-    wxWindow()
+    wxWindowOS2()
     {
         Init();
     }
 
     {
         Init();
     }
 
-    wxWindow( wxWindow*       pParent
-             ,wxWindowID      vId
-             ,const wxPoint&  rPos = wxDefaultPosition
-             ,const wxSize&   rSize = wxDefaultSize
-             ,long            lStyle = 0
-             ,const wxString& rName = wxPanelNameStr
-            )
+    wxWindowOS2( wxWindow*       pParent
+                ,wxWindowID      vId
+                ,const wxPoint&  rPos = wxDefaultPosition
+                ,const wxSize&   rSize = wxDefaultSize
+                ,long            lStyle = 0
+                ,const wxString& rName = wxPanelNameStr
+               )
     {
         Init();
         Create( pParent
     {
         Init();
         Create( pParent
@@ -70,7 +70,7 @@ public:
               );
     }
 
               );
     }
 
-    virtual ~wxWindow();
+    virtual ~wxWindowOS2();
 
     bool Create( wxWindow*       pParent
                 ,wxWindowID      vId
 
     bool Create( wxWindow*       pParent
                 ,wxWindowID      vId
@@ -550,8 +550,8 @@ private:
     // the helper functions used by HandleChar/KeyXXX methods
     wxKeyEvent CreateKeyEvent(wxEventType evType, int id, WXLPARAM lp) const;
 
     // the helper functions used by HandleChar/KeyXXX methods
     wxKeyEvent CreateKeyEvent(wxEventType evType, int id, WXLPARAM lp) const;
 
-    DECLARE_DYNAMIC_CLASS(wxWindow);
-    DECLARE_NO_COPY_CLASS(wxWindow);
+    DECLARE_DYNAMIC_CLASS(wxWindowOS2);
+    DECLARE_NO_COPY_CLASS(wxWindowOS2)
     DECLARE_EVENT_TABLE()
 private:
     HWND                            m_hWndScrollBarHorz;
     DECLARE_EVENT_TABLE()
 private:
     HWND                            m_hWndScrollBarHorz;
index c1565a6520419eb13cf8a8e2cac63169766c547c..5cef6812a18163f6a0fea62f79344d72d22bceca 100644 (file)
@@ -981,6 +981,12 @@ private:
     #endif // wxUniv
     #include "wx/mac/window.h"
 #elif defined(__WXPM__)
     #endif // wxUniv
     #include "wx/mac/window.h"
 #elif defined(__WXPM__)
+    #ifdef __WXUNIVERSAL__
+        #define wxWindowNative wxWindowOS2
+    #else // !wxUniv
+        #define wxWindowOS2 wxWindow
+        #define sm_classwxWindowOS2 sm_classwxWindow
+    #endif // wxUniv/!wxUniv
     #include "wx/os2/window.h"
 #endif
 
     #include "wx/os2/window.h"
 #endif