#ifndef WX_PRECOMP
#include "wx/intl.h"
+ #include "wx/menu.h"
+ #include "wx/dialog.h"
#endif
#include "wx/notebook.h"
-#include "wx/dialog.h"
-#include "wx/menu.h"
#include "wx/gtk/private.h"
-#include <glib.h>
-#include <gdk/gdk.h>
#include <gtk/gtk.h>
#include "wx/gtk/win_gtk.h"
// globals
//-----------------------------------------------------------------------------
-extern wxList wxPendingDelete;
-
//-----------------------------------------------------------------------------
// "switch_page"
//-----------------------------------------------------------------------------
gint WXUNUSED(page_num),
wxMDIParentFrame *parent )
{
- if (g_isIdle)
- wxapp_install_idle_handler();
-
// send deactivate event to old child
wxMDIChildFrame *child = parent->GetActiveChild();
return true;
}
-void wxMDIParentFrame::GtkOnSize( int x, int y, int width, int height )
+void wxMDIParentFrame::GtkOnSize()
{
- wxFrame::GtkOnSize( x, y, width, height );
+ wxFrame::GtkOnSize();
wxMDIChildFrame *child_frame = GetActiveChild();
if (!child_frame) return;
}
}
-void wxMDIParentFrame::DoGetClientSize(int *width, int *height ) const
-{
- wxFrame::DoGetClientSize( width, height );
-}
-
wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
{
if (!m_clientWindow) return (wxMDIChildFrame*) NULL;
wxWindowList::compatibility_iterator node = m_clientWindow->GetChildren().GetFirst();
while (node)
{
+ if ( wxPendingDelete.Member(node->GetData()) )
+ return (wxMDIChildFrame*) NULL;
+
wxMDIChildFrame *child_frame = wxDynamicCast( node->GetData(), wxMDIChildFrame );
- wxASSERT_MSG( child_frame, _T("child is not a wxMDIChildFrame") );
+ if (!child_frame)
+ return (wxMDIChildFrame*) NULL;
if (child_frame->m_page == page)
return child_frame;
+
node = node->GetNext();
}
return wxWindow::Create( parent->GetClientWindow(), id, wxDefaultPosition, size, style, name );
}
-void wxMDIChildFrame::DoSetSize( int x, int y, int width, int height, int sizeFlags )
+bool wxMDIChildFrame::Destroy()
{
- wxWindow::DoSetSize( x, y, width, height, sizeFlags );
-}
+ // delayed destruction: the frame will be deleted during
+ // the next idle loop iteration.
+ // I'm not sure if delayed destruction really makes so
+ // much sense for MDI child frames, actually, but hiding
+ // it doesn't make any sense.
+ if ( !wxPendingDelete.Member(this) )
+ wxPendingDelete.Append(this);
-void wxMDIChildFrame::DoSetClientSize(int width, int height)
-{
- wxWindow::DoSetClientSize( width, height );
+ return true;
}
-void wxMDIChildFrame::DoGetClientSize( int *width, int *height ) const
+void wxMDIChildFrame::DoSetSize( int x, int y, int width, int height, int sizeFlags )
{
- wxWindow::DoGetClientSize( width, height );
+ wxWindow::DoSetSize( x, y, width, height, sizeFlags );
}
void wxMDIChildFrame::AddChild( wxWindowBase *child )
{
#if wxUSE_STATUSBAR
wxMDIParentFrame *mdi_frame = (wxMDIParentFrame*)m_parent->GetParent();
- if ( !ShowMenuHelp(mdi_frame->GetStatusBar(), event.GetMenuId()) )
+ if ( !ShowMenuHelp(event.GetMenuId()) )
{
// we don't have any help text for this item, but may be the MDI frame
// does?
//-----------------------------------------------------------------------------
extern "C" {
-static void gtk_page_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxWindow *win )
+static void gtk_page_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxMDIChildFrame *win )
{
- if (g_isIdle) wxapp_install_idle_handler();
-
if ((win->m_x == alloc->x) &&
(win->m_y == alloc->y) &&
(win->m_width == alloc->width) &&
bool wxMDIClientWindow::CreateClient( wxMDIParentFrame *parent, long style )
{
- m_needParent = true;
-
m_insertCallback = (wxInsertChildFunction)wxInsertChildInMDI;
if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
return true;
}
-#endif
+#endif // wxUSE_MDI