]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/laywin.h
removed SetSize() methods which just called wxWindow::SetSize()
[wxWidgets.git] / include / wx / generic / laywin.h
index fcfc87a53dcd5ce32033a22703d54d0858eb31e2..b6e89527cdf2a38023843c4bfeb52113970effc7 100644 (file)
@@ -63,6 +63,7 @@ public:
         SetEventType(wxEVT_QUERY_LAYOUT_INFO);
         m_requestedLength = 0;
         m_flags = 0;
+        m_id = id;
         m_alignment = wxLAYOUT_TOP;
         m_orientation = wxLAYOUT_HORIZONTAL;
     }
@@ -107,6 +108,7 @@ public:
     {
         SetEventType(wxEVT_CALCULATE_LAYOUT);
         m_flags = 0;
+       m_id = id;
     }
 // Read by the app
     inline void SetFlags(int flags) { m_flags = flags; }
@@ -169,10 +171,10 @@ public:
     wxLayoutAlgorithm() {}
 
     // The MDI client window is sized to whatever's left over.
-    bool LayoutMDIFrame(wxMDIParentFrame* frame);
+    bool LayoutMDIFrame(wxMDIParentFrame* frame, wxRect* rect = (wxRect*) NULL);
 
     // mainWindow is sized to whatever's left over.
-    bool LayoutFrame(wxFrame* frame, wxWindow* mainWindow);
+    bool LayoutFrame(wxFrame* frame, wxWindow* mainWindow = (wxWindow*) NULL);
 };
 
 #endif