]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/gtk/statbox.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 | 5 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 6 | // Licence: wxWindows licence |
c801d85f KB |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
65391c8f PC |
9 | #ifndef _WX_GTKSTATICBOX_H_ |
10 | #define _WX_GTKSTATICBOX_H_ | |
c801d85f | 11 | |
c801d85f KB |
12 | //----------------------------------------------------------------------------- |
13 | // wxStaticBox | |
14 | //----------------------------------------------------------------------------- | |
15 | ||
20123d49 | 16 | class WXDLLIMPEXP_CORE wxStaticBox : public wxStaticBoxBase |
c801d85f | 17 | { |
1e6feb95 VZ |
18 | public: |
19 | wxStaticBox(); | |
20 | wxStaticBox( wxWindow *parent, | |
21 | wxWindowID id, | |
22 | const wxString &label, | |
23 | const wxPoint &pos = wxDefaultPosition, | |
24 | const wxSize &size = wxDefaultSize, | |
25 | long style = 0, | |
26 | const wxString &name = wxStaticBoxNameStr ); | |
27 | bool Create( wxWindow *parent, | |
28 | wxWindowID id, | |
29 | const wxString &label, | |
30 | const wxPoint &pos = wxDefaultPosition, | |
31 | const wxSize &size = wxDefaultSize, | |
32 | long style = 0, | |
33 | const wxString &name = wxStaticBoxNameStr ); | |
34 | ||
35 | virtual void SetLabel( const wxString &label ); | |
36 | ||
9d522606 RD |
37 | static wxVisualAttributes |
38 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
39 | ||
1e6feb95 | 40 | // implementation |
c801d85f | 41 | |
cafc6e0f | 42 | virtual bool GTKIsTransparentForMouse() const { return true; } |
c801d85f | 43 | |
c1f50b06 RD |
44 | virtual void GetBordersForSizer(int *borderTop, int *borderOther) const; |
45 | ||
39cdc95f FM |
46 | virtual void AddChild( wxWindowBase *child ); |
47 | ||
7545e132 | 48 | protected: |
2e1f5012 VZ |
49 | virtual bool GTKWidgetNeedsMnemonic() const; |
50 | virtual void GTKWidgetDoSetMnemonic(GtkWidget* w); | |
51 | ||
7545e132 | 52 | void DoApplyWidgetStyle(GtkRcStyle *style); |
03647350 | 53 | |
1e6feb95 VZ |
54 | DECLARE_DYNAMIC_CLASS(wxStaticBox) |
55 | }; | |
dcf924a3 | 56 | |
65391c8f | 57 | #endif // _WX_GTKSTATICBOX_H_ |