]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/mdig.cpp
Improved colours in wxUniv -- white (window colour) was
[wxWidgets.git] / src / generic / mdig.cpp
index e0b951be0e7b369d28c20b8b8bc1dc49d85431ba..bfa1b92b8bd1752843fa928a9f5b4d8bfe4de1f3 100644 (file)
@@ -797,6 +797,46 @@ void wxGenericMDIClientWindow::OnSize(wxSizeEvent& event)
 
 #if wxUSE_GENERIC_MDI_AS_NATIVE
 
+wxMDIParentFrame::wxMDIParentFrame()
+{
+}
+
+wxMDIParentFrame::wxMDIParentFrame(wxWindow *parent,
+                                   wxWindowID id,
+                                   const wxString& title,
+                                   const wxPoint& pos,
+                                   const wxSize& size,
+                                   long style,
+                                   const wxString& name)
+                                   :wxGenericMDIParentFrame(parent, id, title, pos, size, style, name)
+{
+}
+
+wxMDIChildFrame::wxMDIChildFrame()
+{
+}
+
+wxMDIClientWindow::wxMDIClientWindow()
+{
+}
+
+wxMDIClientWindow::wxMDIClientWindow(wxGenericMDIParentFrame *parent,
+                                     long style)
+                                     :wxGenericMDIClientWindow(parent, style)
+{
+}
+
+wxMDIChildFrame::wxMDIChildFrame(wxGenericMDIParentFrame *parent,
+                                 wxWindowID id,
+                                 const wxString& title,
+                                 const wxPoint& pos,
+                                 const wxSize& size,
+                                 long style,
+                                 const wxString& name)
+                                 :wxGenericMDIChildFrame(parent, id, title, pos, size, style, name)
+{
+}
+
 wxMDIChildFrame * wxMDIParentFrame::GetActiveChild() const
     {
         wxGenericMDIChildFrame *pGFrame = wxGenericMDIParentFrame::GetActiveChild();