]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixes for differences between wxMSW and wxGTK`
authorRobin Dunn <robin@alldunn.com>
Wed, 15 Dec 1999 19:46:19 +0000 (19:46 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 15 Dec 1999 19:46:19 +0000 (19:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/wxPython/demo/GenericButtons.py
utils/wxPython/src/gdi.i
utils/wxPython/src/my_typemaps.i
utils/wxPython/src/stattool.i

index b67a00acde8f44b78592b8b5c25985b0aad063c4..dd74c531fbfa52b1bdca1d075b92b3efe53d45ea 100644 (file)
@@ -41,12 +41,14 @@ class TestPanel(wxPanel):
         b = wxGenBitmapButton(self, -1, None, (100, 130))
         EVT_BUTTON(self, b.GetId(), self.OnButton)
         bmp = wxBitmap('bitmaps/lb1.bmp', wxBITMAP_TYPE_BMP)
-        mask = wxMaskColour(bmp, wxBLUE)
-        bmp.SetMask(mask)
+        if wxPlatform == '__WXMSW__':
+            mask = wxMaskColour(bmp, wxBLUE)
+            bmp.SetMask(mask)
         b.SetBitmapLabel(bmp)
         bmp = wxBitmap('bitmaps/lb2.bmp', wxBITMAP_TYPE_BMP)
-        mask = wxMaskColour(bmp, wxBLUE)
-        bmp.SetMask(mask)
+        if wxPlatform == '__WXMSW__':
+            mask = wxMaskColour(bmp, wxBLUE)
+            bmp.SetMask(mask)
         b.SetBitmapSelected(bmp)
         b.SetBestSize()
 
@@ -57,12 +59,14 @@ class TestPanel(wxPanel):
         b = wxGenBitmapToggleButton(self, -1, None, (100, 230))
         EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
         bmp = wxBitmap('bitmaps/lb1.bmp', wxBITMAP_TYPE_BMP)
-        mask = wxMaskColour(bmp, wxBLUE)
-        bmp.SetMask(mask)
+        if wxPlatform == '__WXMSW__':
+            mask = wxMaskColour(bmp, wxBLUE)
+            bmp.SetMask(mask)
         b.SetBitmapLabel(bmp)
         bmp = wxBitmap('bitmaps/lb2.bmp', wxBITMAP_TYPE_BMP)
-        mask = wxMaskColour(bmp, wxBLUE)
-        bmp.SetMask(mask)
+        if wxPlatform == '__WXMSW__':
+            mask = wxMaskColour(bmp, wxBLUE)
+            bmp.SetMask(mask)
         b.SetBitmapSelected(bmp)
         b.SetToggle(true)
         b.SetBestSize()
index 4d8ed63f085d79ba9eb2010c339355e6ee10e268..3a7eee039fc8f0c2c7ffd06ae9306bf2387b8f3a 100644 (file)
 
 //---------------------------------------------------------------------------
 
-class wxGDIImage {
-public:
-    long GetHandle();
-    void SetHandle(long handle);
-
-    bool Ok();
-
-    int GetWidth();
-    int GetHeight();
-    int GetDepth();
-
-    void SetWidth(int w);
-    void SetHeight(int h);
-    void SetDepth(int d);
-
-    void SetSize(const wxSize& size);
-
-};
+//  class wxGDIImage {
+//  public:
+//      long GetHandle();
+//      void SetHandle(long handle);
+//      bool Ok();
+//      int GetWidth();
+//      int GetHeight();
+//      int GetDepth();
+//      void SetWidth(int w);
+//      void SetHeight(int h);
+//      void SetDepth(int d);
+//      void SetSize(const wxSize& size);
+//  };
 
 //---------------------------------------------------------------------------
 
-class wxBitmap : public wxGDIImage {
+class wxBitmap
+//: public wxGDIImage
+{
 public:
     wxBitmap(const wxString& name, long type);
     ~wxBitmap();
@@ -67,8 +64,25 @@ public:
 #ifdef __WXMSW__
     void SetPalette(wxPalette& palette);
 #endif
+
+    // wxGDIImage methods
+#ifdef __WXMSW__
+    long GetHandle();
+    void SetHandle(long handle);
+#endif
+    bool Ok();
+    int GetWidth();
+    int GetHeight();
+    int GetDepth();
+    void SetWidth(int w);
+    void SetHeight(int h);
+    void SetDepth(int d);
+#ifdef __WXMSW__
+    void SetSize(const wxSize& size);
+#endif
 };
 
+
 %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
 
 #ifdef __WXMSW__
@@ -108,24 +122,60 @@ public:
 //---------------------------------------------------------------------------
 
 
-class wxIcon : public wxGDIImage {
+class wxIcon
+//: public wxGDIImage
+{
 public:
     wxIcon(const wxString& name, long flags,
            int desiredWidth = -1, int desiredHeight = -1);
     ~wxIcon();
 
     bool LoadFile(const wxString& name, long flags);
+
+    // wxGDIImage methods
+#ifdef __WXMSW__
+    long GetHandle();
+    void SetHandle(long handle);
+#endif
+    bool Ok();
+    int GetWidth();
+    int GetHeight();
+    int GetDepth();
+    void SetWidth(int w);
+    void SetHeight(int h);
+    void SetDepth(int d);
+#ifdef __WXMSW__
+    void SetSize(const wxSize& size);
+#endif
 };
 
 
 //---------------------------------------------------------------------------
 
-class wxCursor : public wxGDIImage {
+class wxCursor
+//: public wxGDIImage
+{
 public:
 #ifdef __WXMSW__
     wxCursor(const wxString& cursorName, long flags, int hotSpotX=0, int hotSpotY=0);
 #endif
     ~wxCursor();
+
+    // wxGDIImage methods
+#ifdef __WXMSW__
+    long GetHandle();
+    void SetHandle(long handle);
+#endif
+    bool Ok();
+#ifdef __WXMSW__
+    int GetWidth();
+    int GetHeight();
+    int GetDepth();
+    void SetWidth(int w);
+    void SetHeight(int h);
+    void SetDepth(int d);
+    void SetSize(const wxSize& size);
+#endif
 };
 
 %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id);
@@ -266,7 +316,7 @@ public:
 #ifdef __WXMSW__
 typedef unsigned long wxDash;
 #else
-typedef byte wxDash;
+typedef char wxDash;
 #endif
 
 
index 66f501b1ae98b65a468dabdb76a6398d5a33ea40..96e637567aa0d34aaf82410d35e5631f8ae26b32 100644 (file)
 }
 
 
-
+#ifdef __WXMSW__
 %typemap(python,in) wxDash* LIST = unsigned long* LIST;
 %typemap(python,freearg) wxDash* LIST = unsigned long* LIST;
+#else
+%typemap(python,in) wxDash* LIST = byte* LIST;
+%typemap(python,freearg) wxDash* LIST = byte* LIST;
+#endif
 
 
 %typemap(python,in) char** LIST {
index 78c43a5d9c48451b6afbe40ceffc07c1c543c36f..0867a953bb85fa5c7807419fd6f0776b3f6dd338 100644 (file)
@@ -141,12 +141,14 @@ public:
 
 
     void EnableTool(int toolIndex, bool enable);
+#ifdef __WXMSW__
     wxToolBarTool* FindToolForPosition(long x, long y);
     wxSize GetToolSize();
     wxSize GetToolBitmapSize();
     void SetToolBitmapSize(const wxSize& size);
-    wxSize GetToolMargins();
     wxSize GetMaxSize();
+#endif
+    wxSize GetToolMargins();
 //    wxObject* GetToolClientData(int toolIndex);
     bool GetToolEnabled(int toolIndex);
     wxString GetToolLongHelp(int toolIndex);
@@ -164,16 +166,13 @@ public:
     void SetToolPacking(int packing);
     void SetToolSeparation(int separation);
     void ToggleTool(int toolIndex, const bool toggle);
+#ifdef __WXMSW__
     void SetToggle(int toolIndex, bool toggle);
-
     void SetMaxRowsCols(int rows, int cols);
     int GetMaxRows();
     int GetMaxCols();
-
+#endif
 };
 
-
-
-
 //---------------------------------------------------------------------------