m_isIconized = FALSE;
m_isMaximized = FALSE;
m_fsIsShowing = FALSE;
+ m_sizeSet = FALSE;
}
bool wxTopLevelWindowMGL::Create(wxWindow *parent,
size.y = sizeDpy.y / 5;
}
- wxWindow::Create(parent, id, pos, sizeOrig, style, name);
+ wxWindow::Create(NULL, id, pos, sizeOrig, style, name);
+ SetParent(parent);
+ if ( parent )
+ parent->AddChild(this);
wxTopLevelWindows.Append(this);
-
m_title = title;
-
- // FIXME_MGL -- should activate itself when shown!
return TRUE;
}
bool wxTopLevelWindowMGL::Show(bool show)
{
bool ret = wxTopLevelWindowBase::Show(show);
- if ( ret && show )
+
+ // If this is the first time Show was called, send size event,
+ // so that the frame can adjust itself (think auto layout or single child)
+ if ( !m_sizeSet )
+ {
+ m_sizeSet = TRUE;
+ wxSizeEvent event(GetSize(), GetId());
+ event.SetEventObject(this);
+ GetEventHandler()->ProcessEvent(event);
+ }
+
+ if ( ret && show && AcceptsFocus() )
SetFocus();
+ // FIXME_MGL -- don't do this for popup windows?
return ret;
}
}
}
-void wxTopLevelWindowMGL::Iconize(bool iconize)
+void wxTopLevelWindowMGL::Iconize(bool WXUNUSED(iconize))
{
- // FIXME_MGL - use wxDesktop for this
+ wxFAIL_MSG(wxT("Iconize not supported under wxMGL"));
+ // FIXME_MGL - Iconize is not supported in fullscreen mode.
+ // It will be supported in windowed mode (if ever implemented in MGL...)
}
bool wxTopLevelWindowMGL::IsIconized() const