]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/button.h
1. added support for bitmaps with alpha channel
[wxWidgets.git] / include / wx / cocoa / button.h
index 0cf3f2df6db75aec2f83210bf1b787a2106970b0..b0ecb12f7a251e1ff77aafe52479084aa9408e14 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2002/12/29
 // RCS-ID:      $Id: 
 // Copyright:   (c) 2002 David Elliott
-// Licence:    wxWindows license
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_BUTTON_H__
@@ -36,6 +36,16 @@ public:
     {
         Create(parent, winid, label, pos, size, style, validator, name);
     }
+    
+    wxButton(wxWindow *parent, wxWindowID winid, wxStockItemID stock,
+           const wxString& descriptiveLabel = wxEmptyString,
+           const wxPoint& pos = wxDefaultPosition,
+           long style = 0,
+           const wxValidator& validator = wxDefaultValidator,
+           const wxString& name = wxButtonNameStr)
+    {
+        Create(parent, winid, stock, descriptiveLabel, pos, style, validator, name);
+    }
 
     bool Create(wxWindow *parent, wxWindowID winid,
             const wxString& label,
@@ -43,6 +53,18 @@ public:
             const wxSize& size = wxDefaultSize, long style = 0,
             const wxValidator& validator = wxDefaultValidator,
             const wxString& name = wxButtonNameStr);
+    
+    bool Create(wxWindow *parent, wxWindowID winid, wxStockItemID stock,
+           const wxString& descriptiveLabel = wxEmptyString,
+           const wxPoint& pos = wxDefaultPosition,
+           long style = 0,
+           const wxValidator& validator = wxDefaultValidator,
+           const wxString& name = wxButtonNameStr)
+    {
+        return CreateStock(parent, winid, stock, descriptiveLabel,
+                           pos, style, validator, name);
+    }
+    
     virtual ~wxButton();
 
 // ------------------------------------------------------------------------