]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/control.h
Added wxControl::PostCreation for wxGTK. Moved calls to
[wxWidgets.git] / include / wx / gtk1 / control.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: control.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKCONTROLH__
11 #define __GTKCONTROLH__
12
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface
15 #endif
16
17 #include "wx/defs.h"
18 #include "wx/object.h"
19 #include "wx/list.h"
20 #include "wx/window.h"
21
22 //-----------------------------------------------------------------------------
23 // classes
24 //-----------------------------------------------------------------------------
25
26 class wxControl;
27
28 //-----------------------------------------------------------------------------
29 // wxControl
30 //-----------------------------------------------------------------------------
31
32 class wxControl : public wxControlBase
33 {
34 public:
35 wxControl();
36 wxControl(wxWindow *parent, wxWindowID id,
37 const wxPoint& pos = wxDefaultPosition,
38 const wxSize& size = wxDefaultSize, long style = 0,
39 const wxValidator& validator = wxDefaultValidator,
40 const wxString& name = wxControlNameStr)
41 {
42 Create(parent, id, pos, size, style, validator, name);
43 }
44
45 bool Create(wxWindow *parent, wxWindowID id,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize, long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxControlNameStr);
50
51 // this function will filter out '&' characters and will put the accelerator
52 // char (the one immediately after '&') into m_chAccel (TODO not yet)
53 virtual void SetLabel( const wxString &label );
54 virtual wxString GetLabel() const;
55
56 protected:
57 virtual wxSize DoGetBestSize() const;
58 void PostCreation(const wxSize& size);
59
60 #ifdef __WXGTK20__
61 wxString PrepareLabelMnemonics( const wxString &label ) const;
62 #endif
63
64 wxString m_label;
65 char m_chAccel; // enabled to avoid breaking binary compatibility later on
66
67 private:
68 DECLARE_DYNAMIC_CLASS(wxControl)
69 };
70
71 #endif // __GTKCONTROLH__