1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTK_CONTROL_H_
11 #define _WX_GTK_CONTROL_H_
13 typedef struct _GtkLabel GtkLabel
;
14 typedef struct _GtkFrame GtkFrame
;
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
20 // C-linkage function pointer types for GetDefaultAttributesFromGTKWidget
22 typedef GtkWidget
* (*wxGtkWidgetNew_t
)(void);
23 typedef GtkWidget
* (*wxGtkWidgetNewFromStr_t
)(const gchar
*);
24 typedef GtkWidget
* (*wxGtkWidgetNewFromAdj_t
)(GtkAdjustment
*);
27 class WXDLLIMPEXP_CORE wxControl
: public wxControlBase
31 wxControl(wxWindow
*parent
, wxWindowID id
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
, long style
= 0,
34 const wxValidator
& validator
= wxDefaultValidator
,
35 const wxString
& name
= wxControlNameStr
)
37 Create(parent
, id
, pos
, size
, style
, validator
, name
);
40 bool Create(wxWindow
*parent
, wxWindowID id
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
, long style
= 0,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxControlNameStr
);
47 virtual wxVisualAttributes
GetDefaultAttributes() const;
49 virtual void OnInternalIdle();
52 virtual wxSize
DoGetBestSize() const;
53 void PostCreation(const wxSize
& size
);
55 // sets the label to the given string and also sets it for the given widget
56 void GTKSetLabelForLabel(GtkLabel
*w
, const wxString
& label
);
57 void GTKSetLabelWithMarkupForLabel(GtkLabel
*w
, const wxString
& label
);
60 GtkWidget
* GTKCreateFrame(const wxString
& label
);
61 void GTKSetLabelForFrame(GtkFrame
*w
, const wxString
& label
);
62 void GTKFrameApplyWidgetStyle(GtkFrame
* w
, GtkRcStyle
* rc
);
63 void GTKFrameSetMnemonicWidget(GtkFrame
* w
, GtkWidget
* widget
);
65 // remove mnemonics ("&"s) from the label
66 static wxString
GTKRemoveMnemonics(const wxString
& label
);
68 // converts wx label to GTK+ label, i.e. basically replace "&"s with "_"s
69 static wxString
GTKConvertMnemonics(const wxString
&label
);
71 // converts wx label to GTK+ labels preserving Pango markup
72 static wxString
GTKConvertMnemonicsWithMarkup(const wxString
& label
);
74 // These are used by GetDefaultAttributes
75 static wxVisualAttributes
76 GetDefaultAttributesFromGTKWidget(GtkWidget
* widget
,
79 static wxVisualAttributes
80 GetDefaultAttributesFromGTKWidget(wxGtkWidgetNew_t
,
83 static wxVisualAttributes
84 GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromStr_t
,
88 static wxVisualAttributes
89 GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromAdj_t
,
93 // Widgets that use the style->base colour for the BG colour should
94 // override this and return true.
95 virtual bool UseGTKStyleBase() const { return false; }
97 // Fix sensitivity due to bug in GTK+ < 2.14
98 void GTKFixSensitivity(bool onlyIfUnderMouse
= true);
101 DECLARE_DYNAMIC_CLASS(wxControl
)
104 #endif // _WX_GTK_CONTROL_H_