]>
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 | ||
0416c418 PC |
10 | #ifndef _WX_GTK_CONTROL_H_ |
11 | #define _WX_GTK_CONTROL_H_ | |
c801d85f | 12 | |
b2ff89d6 VZ |
13 | typedef struct _GtkLabel GtkLabel; |
14 | typedef struct _GtkFrame GtkFrame; | |
15 | ||
c801d85f KB |
16 | //----------------------------------------------------------------------------- |
17 | // wxControl | |
18 | //----------------------------------------------------------------------------- | |
19 | ||
865bb325 VZ |
20 | // C-linkage function pointer types for GetDefaultAttributesFromGTKWidget |
21 | extern "C" { | |
22 | typedef GtkWidget* (*wxGtkWidgetNew_t)(void); | |
23 | typedef GtkWidget* (*wxGtkWidgetNewFromStr_t)(const gchar*); | |
24 | typedef GtkWidget* (*wxGtkWidgetNewFromAdj_t)(GtkAdjustment*); | |
25 | } | |
26 | ||
20123d49 | 27 | class WXDLLIMPEXP_CORE wxControl : public wxControlBase |
c801d85f | 28 | { |
2a4f4a27 | 29 | public: |
8d99be5f | 30 | wxControl(); |
04165bec RR |
31 | wxControl(wxWindow *parent, wxWindowID id, |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, long style = 0, | |
04165bec | 34 | const wxValidator& validator = wxDefaultValidator, |
04165bec RR |
35 | const wxString& name = wxControlNameStr) |
36 | { | |
674ac8b9 | 37 | Create(parent, id, pos, size, style, validator, name); |
04165bec | 38 | } |
8d772832 | 39 | |
04165bec RR |
40 | bool Create(wxWindow *parent, wxWindowID id, |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, long style = 0, | |
04165bec | 43 | const wxValidator& validator = wxDefaultValidator, |
04165bec | 44 | const wxString& name = wxControlNameStr); |
2a4f4a27 | 45 | |
b2ff89d6 | 46 | |
9d522606 RD |
47 | virtual wxVisualAttributes GetDefaultAttributes() const; |
48 | ||
2a4f4a27 | 49 | protected: |
f68586e5 | 50 | virtual wxSize DoGetBestSize() const; |
abdeb9e7 RD |
51 | void PostCreation(const wxSize& size); |
52 | ||
b2ff89d6 VZ |
53 | // sets the label to the given string and also sets it for the given widget |
54 | void GTKSetLabelForLabel(GtkLabel *w, const wxString& label); | |
39bc0347 | 55 | void GTKSetLabelWithMarkupForLabel(GtkLabel *w, const wxString& label); |
b2ff89d6 | 56 | |
2e1f5012 VZ |
57 | // GtkFrame helpers |
58 | GtkWidget* GTKCreateFrame(const wxString& label); | |
b2ff89d6 | 59 | void GTKSetLabelForFrame(GtkFrame *w, const wxString& label); |
2e1f5012 VZ |
60 | void GTKFrameApplyWidgetStyle(GtkFrame* w, GtkRcStyle* rc); |
61 | void GTKFrameSetMnemonicWidget(GtkFrame* w, GtkWidget* widget); | |
b2ff89d6 VZ |
62 | |
63 | // remove mnemonics ("&"s) from the label | |
64 | static wxString GTKRemoveMnemonics(const wxString& label); | |
65 | ||
66 | // converts wx label to GTK+ label, i.e. basically replace "&"s with "_"s | |
b2ff89d6 | 67 | static wxString GTKConvertMnemonics(const wxString &label); |
f68586e5 | 68 | |
39bc0347 VZ |
69 | // converts wx label to GTK+ labels preserving Pango markup |
70 | static wxString GTKConvertMnemonicsWithMarkup(const wxString& label); | |
71 | ||
9d522606 RD |
72 | // These are used by GetDefaultAttributes |
73 | static wxVisualAttributes | |
74 | GetDefaultAttributesFromGTKWidget(GtkWidget* widget, | |
75 | bool useBase = false, | |
76 | int state = -1); | |
77 | static wxVisualAttributes | |
865bb325 | 78 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNew_t, |
9d522606 RD |
79 | bool useBase = false, |
80 | int state = -1); | |
81 | static wxVisualAttributes | |
865bb325 | 82 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromStr_t, |
9d522606 RD |
83 | bool useBase = false, |
84 | int state = -1); | |
85 | ||
86 | static wxVisualAttributes | |
865bb325 | 87 | GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromAdj_t, |
9d522606 RD |
88 | bool useBase = false, |
89 | int state = -1); | |
90 | ||
91 | // Widgets that use the style->base colour for the BG colour should | |
92 | // override this and return true. | |
93 | virtual bool UseGTKStyleBase() const { return false; } | |
94 | ||
ad60f9e7 JS |
95 | // Fix sensitivity due to bug in GTK+ < 2.14 |
96 | void GTKFixSensitivity(bool onlyIfUnderMouse = true); | |
97 | ||
738f9e5a RR |
98 | private: |
99 | DECLARE_DYNAMIC_CLASS(wxControl) | |
c801d85f KB |
100 | }; |
101 | ||
0416c418 | 102 | #endif // _WX_GTK_CONTROL_H_ |