#define XIconifyWindow XICONIFYWINDOW
#endif
-#include "wx/frame.h"
+#include "wx/defs.h"
+
#include "wx/dialog.h"
#include "wx/control.h"
#include "wx/app.h"
#ifdef __WXUNIVERSAL__
IMPLEMENT_DYNAMIC_CLASS(wxFrameGTK, wxWindow)
#else
- IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
+ IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxFrameGTK)
+ IMPLEMENT_DYNAMIC_CLASS(wxFrameGTK, wxWindow)
#endif
// ----------------------------------------------------------------------------
}
}
-bool wxFrame::ShowFullScreen(bool show, long style )
+bool wxFrameGTK::ShowFullScreen(bool show, long style )
{
if (show == m_fsIsShowing) return FALSE; // return what?
{
if (iconize)
{
- XIconifyWindow( GDK_WINDOW_XDISPLAY( m_widget->window ),
- GDK_WINDOW_XWINDOW( m_widget->window ),
- DefaultScreen( GDK_DISPLAY() ) );
+ GdkWindow *window = m_widget->window;
+
+ // you should do it later, for example from OnCreate() handler
+ wxCHECK_RET( window, _T("frame not created yet - can't iconize") );
+
+ XIconifyWindow( GDK_WINDOW_XDISPLAY( window ),
+ GDK_WINDOW_XWINDOW( window ),
+ DefaultScreen( GDK_DISPLAY() ) );
}
}
return m_isIconized;
}
-void wxFrame::SetIconizeState(bool iconize)
+void wxFrameGTK::SetIconizeState(bool iconize)
{
if ( iconize != m_isIconized )
{
m_isIconized = iconize;
(void)SendIconizeEvent(iconize);
}
- else
- {
- // this is not supposed to happen if we're called only from
- // gtk_frame_(un)map_callback!
-
- // RR: I don't understand this test. Upon startup, the frame is
- // not iconized by default, it has just not been created
- // yet.
- ///wxFAIL_MSG( _T("unexpected call to SendIconizeEvent ignored") );
- }
}