]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: control.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifndef __GTKCONTROLH__ |
11 | #define __GTKCONTROLH__ | |
12 | ||
c801d85f KB |
13 | #include "wx/defs.h" |
14 | #include "wx/object.h" | |
15 | #include "wx/list.h" | |
16 | #include "wx/window.h" | |
17 | ||
18 | //----------------------------------------------------------------------------- | |
19 | // classes | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
20123d49 | 22 | class WXDLLIMPEXP_CORE wxControl; |
c801d85f | 23 | |
b2ff89d6 VZ |
24 | typedef struct _GtkLabel GtkLabel; |
25 | typedef struct _GtkFrame GtkFrame; | |
26 | ||
c801d85f KB |
27 | //----------------------------------------------------------------------------- |
28 | // wxControl | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
865bb325 VZ |
31 | // C-linkage function pointer types for GetDefaultAttributesFromGTKWidget |
32 | extern "C" { | |
33 | typedef GtkWidget* (*wxGtkWidgetNew_t)(void); | |
34 | typedef GtkWidget* (*wxGtkWidgetNewFromStr_t)(const gchar*); | |
35 | typedef GtkWidget* (*wxGtkWidgetNewFromAdj_t)(GtkAdjustment*); | |
36 | } | |
37 | ||
20123d49 | 38 | class WXDLLIMPEXP_CORE wxControl : public wxControlBase |
c801d85f | 39 | { |
2a4f4a27 | 40 | public: |
8d99be5f | 41 | wxControl(); |
04165bec RR |
42 | wxControl(wxWindow *parent, wxWindowID id, |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, long style = 0, | |
04165bec | 45 | const wxValidator& validator = wxDefaultValidator, |
04165bec RR |
46 | const wxString& name = wxControlNameStr) |
47 | { | |
674ac8b9 | 48 | Create(parent, id, pos, size, style, validator, name); |
04165bec | 49 | } |
8d772832 | 50 | |
04165bec RR |
51 | bool Create(wxWindow *parent, wxWindowID id, |
52 | const wxPoint& pos = wxDefaultPosition, | |
53 | const wxSize& size = wxDefaultSize, long style = 0, | |
04165bec | 54 | const wxValidator& validator = wxDefaultValidator, |
04165bec | 55 | const wxString& name = wxControlNameStr); |
2a4f4a27 | 56 | |
8d99be5f VZ |
57 | virtual void SetLabel( const wxString &label ); |
58 | virtual wxString GetLabel() const; | |
b2ff89d6 | 59 | |
9d522606 RD |
60 | virtual wxVisualAttributes GetDefaultAttributes() const; |
61 | ||
2a4f4a27 | 62 | protected: |
f68586e5 | 63 | virtual wxSize DoGetBestSize() const; |
abdeb9e7 RD |
64 | void PostCreation(const wxSize& size); |
65 | ||
b2ff89d6 VZ |
66 | // sets the label to the given string and also sets it for the given widget |
67 | void GTKSetLabelForLabel(GtkLabel *w, const wxString& label); | |
68 | ||
69 | // as GTKSetLabelForLabel() but for a GtkFrame widget | |
70 | void GTKSetLabelForFrame(GtkFrame *w, const wxString& label); | |
71 | ||
72 | // remove mnemonics ("&"s) from the label | |
73 | static wxString GTKRemoveMnemonics(const wxString& label); | |
74 | ||
75 | // converts wx label to GTK+ label, i.e. basically replace "&"s with "_"s | |
76 | // | |
77 | // for GTK+ 1 (which doesn't support mnemonics) this is the same as | |
78 | // GTKRemoveMnemonics() | |
79 | static wxString GTKConvertMnemonics(const wxString &label); | |
f68586e5 | 80 | |
9d522606 RD |
81 | // These are used by GetDefaultAttributes |
82 | static wxVisualAttributes | |
83 | GetDefaultAttributesFromGTKWidget(GtkWidget* widget, | |
84 | bool useBase = false, | |
85 | int state = -1); | |
86 | static wxVisualAttributes | |
865bb325 | 87 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNew_t, |
9d522606 RD |
88 | bool useBase = false, |
89 | int state = -1); | |
90 | static wxVisualAttributes | |
865bb325 | 91 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromStr_t, |
9d522606 RD |
92 | bool useBase = false, |
93 | int state = -1); | |
94 | ||
95 | static wxVisualAttributes | |
865bb325 | 96 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromAdj_t, |
9d522606 RD |
97 | bool useBase = false, |
98 | int state = -1); | |
99 | ||
100 | // Widgets that use the style->base colour for the BG colour should | |
101 | // override this and return true. | |
102 | virtual bool UseGTKStyleBase() const { return false; } | |
103 | ||
b2ff89d6 VZ |
104 | // this field contains the label in wx format, i.e. with "&" mnemonics |
105 | wxString m_label; | |
8d772832 | 106 | |
738f9e5a RR |
107 | private: |
108 | DECLARE_DYNAMIC_CLASS(wxControl) | |
c801d85f KB |
109 | }; |
110 | ||
111 | #endif // __GTKCONTROLH__ |