]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/layout/layout.h
Added sample to reproduce resize display bug.
[wxWidgets.git] / samples / layout / layout.h
index 15fa044a8fe2cbd2f9d1c9eb5708b0fd5ad498c6..eba0332e1691e7642a77861f04201ab872fee627 100644 (file)
@@ -6,15 +6,15 @@
 // Created:     04/01/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart and Markus Holzem
-// Licence:    wxWindows license
+// Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
 // Define a new application
 class MyApp: public wxApp
 {
-  public:
-    MyApp(void) ;
-    bool OnInit(void);
+public:
+    MyApp();
+    bool OnInit();
 };
 
 // Define a new frame
@@ -23,7 +23,7 @@ class MyWindow;
 
 class MyFrame: public wxFrame
 {
-  public:
+public:
     wxPanel *panel;
     MyTextWindow *text_window;
     MyWindow *canvas;
@@ -34,44 +34,47 @@ class MyFrame: public wxFrame
     void LoadFile(wxCommandEvent& event);
     void Quit(wxCommandEvent& event);
     void TestSizers(wxCommandEvent& event);
+    void TestNotebookSizers(wxCommandEvent& event);
     void About(wxCommandEvent& event);
 
-  DECLARE_EVENT_TABLE()
+private:
+    DECLARE_EVENT_TABLE()
 };
 
 // Define a new text subwindow that can respond to drag-and-drop
 class MyTextWindow: public wxTextCtrl
 {
-  public:
-  MyTextWindow(wxFrame *frame, int x=-1, int y=-1, int width=-1, int height=-1,
+public:
+    MyTextWindow(wxFrame *frame, int x=-1, int y=-1, int width=-1, int height=-1,
                long style=wxTE_MULTILINE):
     wxTextCtrl(frame, -1, "", wxPoint(x, y), wxSize(width, height), style)
-  {
-  }
+    {
+    }
+
 };
 
 // Define a new canvas which can receive some events
 class MyWindow: public wxWindow
 {
-  public:
+public:
     MyWindow(wxFrame *frame, int x, int y, int w, int h, long style = wxRETAINED);
-    ~MyWindow(void) ;
+    ~MyWindow();
     void OnPaint(wxPaintEvent& event);
-    
+
+private:    
     DECLARE_EVENT_TABLE()
 };
 
-class SizerFrame: public wxFrame
+class MySizerFrame: public wxFrame
 {
-  public:
+public:
     wxPanel *panel;
-    SizerFrame(wxFrame *frame, char *title, int x, int y, int w, int h);
-    void OnSize(wxSizeEvent& event);
-
-   DECLARE_EVENT_TABLE()
+    MySizerFrame(wxFrame *frame, char *title, int x, int y );
 };
 
 #define LAYOUT_QUIT       100
 #define LAYOUT_TEST       101
 #define LAYOUT_ABOUT      102
 #define LAYOUT_LOAD_FILE  103
+#define LAYOUT_TEST_SIZER 104
+#define LAYOUT_TEST_NB    105