- wxPanel *panel;
- MySizerFrame(wxFrame *frame, char *title, int x, int y );
+ MyNestedSizerFrame(const wxString &title, int x, int y );
+
+
+private:
+ wxTextCtrl *m_target;
+};
+
+// a frame with several wrapping sizers
+
+class MyWrapSizerFrame: public wxFrame
+{
+public:
+ MyWrapSizerFrame(const wxString &title, int x, int y );
+};
+
+// controls and menu constants
+enum
+{
+ LAYOUT_TEST_SIZER = 101,
+ LAYOUT_TEST_NB_SIZER,
+ LAYOUT_TEST_GB_SIZER,
+ LAYOUT_TEST_PROPORTIONS,
+ LAYOUT_TEST_SET_MINIMAL,
+ LAYOUT_TEST_NESTED,
+ LAYOUT_TEST_WRAP,
+ LAYOUT_QUIT = wxID_EXIT,
+ LAYOUT_ABOUT = wxID_ABOUT