X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92c0c17272f3cf7c8e54c17e1799d3813dbb459c..86dd5aff13ddea3e0d794ec9e0532b6014a41b20:/samples/layout/layout.h diff --git a/samples/layout/layout.h b/samples/layout/layout.h index 965bcfc5ad..4c0aa56fa6 100644 --- a/samples/layout/layout.h +++ b/samples/layout/layout.h @@ -27,6 +27,7 @@ public: void TestFlexSizers(wxCommandEvent& event); void TestNotebookSizers(wxCommandEvent& event); void TestGridBagSizer(wxCommandEvent& event); + void TestNested(wxCommandEvent& event); void TestSetMinimal(wxCommandEvent& event); void OnAbout(wxCommandEvent& event); @@ -112,6 +113,19 @@ private: }; +// a frame for testing simple setting of a frame containing +// a sizer containing a panel containing a sizer containing +// controls +class MyNestedSizerFrame : public wxFrame +{ +public: + MyNestedSizerFrame(const wxChar *title, int x, int y ); + + +private: + wxTextCtrl *m_target; +}; + // controls and menu constants enum { @@ -120,6 +134,7 @@ enum LAYOUT_TEST_GB_SIZER, LAYOUT_TEST_PROPORTIONS, LAYOUT_TEST_SET_MINIMAL, + LAYOUT_TEST_NESTED, LAYOUT_QUIT = wxID_EXIT, LAYOUT_ABOUT = wxID_ABOUT };