]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/button.h
*** empty log message ***
[wxWidgets.git] / include / wx / gtk1 / button.h
index 5adbd99d0c5efd073a72654cf3a166f579b6bb1b..9e2268309c9b87330493a3269513e8650e35c4d3 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        button.h
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -31,7 +30,7 @@ class wxButton;
 // global data
 //-----------------------------------------------------------------------------
 
-extern const char *wxButtonNameStr;
+extern const wxChar *wxButtonNameStr;
 
 //-----------------------------------------------------------------------------
 // wxButton
@@ -43,7 +42,7 @@ class wxButton: public wxControl
 
   public:
 
-    wxButton(void);
+    wxButton();
     inline wxButton(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize, long style = 0,
@@ -52,13 +51,21 @@ class wxButton: public wxControl
     {
       Create(parent, id, label, pos, size, style, validator, name);
     }
+    ~wxButton();
     bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize, long style = 0,
            const wxValidator& validator = wxDefaultValidator,
            const wxString& name = wxButtonNameStr);
-    void SetDefault(void);
+    void SetDefault();
     void SetLabel( const wxString &label );
+    bool Enable( bool enable );
+
+    static wxSize GetDefaultSize();
+    
+  // implementation        
+  
+    void ApplyWidgetStyle();    
 };
 
 #endif // __GTKBUTTONH__