]>
git.saurik.com Git - wxWidgets.git/blob - samples/layout/layout.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Layout sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // Define a new application
13 class MyApp
: public wxApp
20 // the main frame class
21 class MyFrame
: public wxFrame
26 void TestProportions(wxCommandEvent
& event
);
27 void TestFlexSizers(wxCommandEvent
& event
);
28 void TestNotebookSizers(wxCommandEvent
& event
);
29 void TestGridBagSizer(wxCommandEvent
& event
);
30 void TestNested(wxCommandEvent
& event
);
31 void TestSetMinimal(wxCommandEvent
& event
);
32 void TestWrap(wxCommandEvent
& event
);
34 void OnAbout(wxCommandEvent
& event
);
35 void OnQuit(wxCommandEvent
& event
);
41 // a frame showing the box sizer proportions
42 class MyProportionsFrame
: public wxFrame
45 MyProportionsFrame(wxFrame
*parent
);
48 void UpdateProportions();
50 void OnProportionChanged(wxSpinEvent
& event
);
51 void OnProportionUpdated(wxCommandEvent
& event
);
53 wxSpinCtrl
*m_spins
[3]; // size can be changed without changing anything else
57 // a frame using flex sizers for layout
58 class MyFlexSizerFrame
: public wxFrame
61 MyFlexSizerFrame(const wxString
&title
, int x
, int y
);
64 void InitFlexSizer(wxFlexGridSizer
*sizer
, wxWindow
* parent
);
68 // a dialog using notebook sizer for layout
69 class MySizerDialog
: public wxDialog
72 MySizerDialog(wxWindow
*parent
, const wxString
&title
);
76 // a frame using wxGridBagSizer for layout
77 class MyGridBagSizerFrame
: public wxFrame
80 MyGridBagSizerFrame(const wxString
&title
, int x
, int y
);
82 void OnHideBtn(wxCommandEvent
&);
83 void OnShowBtn(wxCommandEvent
&);
84 void OnMoveBtn(wxCommandEvent
&);
87 wxGridBagSizer
* m_gbs
;
91 wxTextCtrl
* m_hideTxt
;
95 wxGBPosition m_lastPos
;
101 // a frame for testing simple setting of "default size"
102 class MySimpleSizerFrame
: public wxFrame
105 MySimpleSizerFrame(const wxString
&title
, int x
, int y
);
107 void OnSetSmallSize( wxCommandEvent
&event
);
108 void OnSetBigSize( wxCommandEvent
&event
);
111 wxTextCtrl
*m_target
;
113 DECLARE_EVENT_TABLE()
117 // a frame for testing simple setting of a frame containing
118 // a sizer containing a panel containing a sizer containing
120 class MyNestedSizerFrame
: public wxFrame
123 MyNestedSizerFrame(const wxString
&title
, int x
, int y
);
127 wxTextCtrl
*m_target
;
130 // a frame with several wrapping sizers
132 class MyWrapSizerFrame
: public wxFrame
135 MyWrapSizerFrame(const wxString
&title
, int x
, int y
);
138 // controls and menu constants
141 LAYOUT_TEST_SIZER
= 101,
142 LAYOUT_TEST_NB_SIZER
,
143 LAYOUT_TEST_GB_SIZER
,
144 LAYOUT_TEST_PROPORTIONS
,
145 LAYOUT_TEST_SET_MINIMAL
,
148 LAYOUT_QUIT
= wxID_EXIT
,
149 LAYOUT_ABOUT
= wxID_ABOUT