X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..a5de8d419f6e4449c951806663a2cecf22d7facf:/include/wx/control.h diff --git a/include/wx/control.h b/include/wx/control.h index d3c7c8f896..98905ebe3e 100644 --- a/include/wx/control.h +++ b/include/wx/control.h @@ -6,7 +6,7 @@ // Created: 26.07.99 // RCS-ID: $Id$ // Copyright: (c) wxWidgets team -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_CONTROL_H_BASE_ @@ -26,7 +26,7 @@ #include "wx/window.h" // base class -WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr; +extern WXDLLEXPORT_DATA(const wxChar*) wxControlNameStr; // ---------------------------------------------------------------------------- // wxControl is the base class for all controls @@ -63,6 +63,9 @@ public: // if the button was clicked) virtual void Command(wxCommandEvent &event); + virtual void SetLabel( const wxString &label ); + virtual bool SetFont(const wxFont& font); + protected: // creates the control (calls wxWindowBase::CreateBase inside) and adds it // to the list of parents children @@ -97,6 +100,8 @@ protected: #if defined(__WXUNIVERSAL__) #include "wx/univ/control.h" +#elif defined(__WXPALMOS__) + #include "wx/palmos/control.h" #elif defined(__WXMSW__) #include "wx/msw/control.h" #elif defined(__WXMOTIF__)