]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/statbox.h
Add wxDEPRECATED_MSG() and use it in a couple of places.
[wxWidgets.git] / include / wx / gtk / statbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/statbox.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 #ifndef _WX_GTKSTATICBOX_H_
10 #define _WX_GTKSTATICBOX_H_
11
12 //-----------------------------------------------------------------------------
13 // wxStaticBox
14 //-----------------------------------------------------------------------------
15
16 class WXDLLIMPEXP_CORE wxStaticBox : public wxStaticBoxBase
17 {
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
37 static wxVisualAttributes
38 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
39
40 // implementation
41
42 virtual bool GTKIsTransparentForMouse() const { return true; }
43
44 virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
45
46 virtual void AddChild( wxWindowBase *child );
47
48 protected:
49 virtual bool GTKWidgetNeedsMnemonic() const;
50 virtual void GTKWidgetDoSetMnemonic(GtkWidget* w);
51
52 void DoApplyWidgetStyle(GtkRcStyle *style);
53
54 DECLARE_DYNAMIC_CLASS(wxStaticBox)
55 };
56
57 #endif // _WX_GTKSTATICBOX_H_