EVT_SIZE(wxFrame::OnSize)
END_EVENT_TABLE()
-#if defined(__WXMSW__)
- IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxFrameMSW)
-#elif defined(__WXGTK__)
- IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxFrameGTK)
-#endif
+IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
// ----------------------------------------------------------------------------
// ctors
{
// the menubar is positioned above the client size, hence the negative
// y coord
- m_frameMenuBar->SetSize(0, -m_frameMenuBar->GetSize().y,
- GetClientSize().x, -1);
+ wxCoord heightMbar = m_frameMenuBar->GetSize().y;
+ m_frameMenuBar->SetSize(0,
+
+// FIXME: why doesn't this work as expected in wxGTK??
+#ifdef __WXGTK__
+ 0,
+#else
+ -heightMbar,
+#endif
+ GetClientSize().x, heightMbar);
}
}
+
#endif // wxUSE_MENUS
wxPoint wxFrame::GetClientAreaOrigin() const
return pt;
}
+bool wxFrame::Enable( bool enable )
+{
+ if (!wxFrameNative::Enable(enable))
+ return FALSE;
+#ifdef __WXMICROWIN__
+ if (m_frameMenuBar)
+ m_frameMenuBar->Enable(enable);
+#endif
+ return TRUE;
+}