/////////////////////////////////////////////////////////////////////////////
-// Name: frame.cpp
+// Name: src/gtk/frame.cpp
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
// ============================================================================
// declarations
// ============================================================================
// headers
// ----------------------------------------------------------------------------
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
+#include "wx/frame.h"
-#include "wx/defs.h"
+#ifndef WX_PRECOMP
+ #include "wx/app.h"
+ #include "wx/dcclient.h"
+#endif // WX_PRECOMP
-#include "wx/frame.h"
#include "wx/dialog.h"
#include "wx/control.h"
-#include "wx/app.h"
#include "wx/menu.h"
#if wxUSE_TOOLBAR
#include "wx/toolbar.h"
#if wxUSE_STATUSBAR
#include "wx/statusbr.h"
#endif
-#include "wx/dcclient.h"
#include <glib.h>
#include "wx/gtk/private.h"
const int wxSTATUS_HEIGHT = 25;
const int wxPLACE_HOLDER = 0;
-// ----------------------------------------------------------------------------
-// idle system
-// ----------------------------------------------------------------------------
-
-extern void wxapp_install_idle_handler();
-extern bool g_isIdle;
-
// ----------------------------------------------------------------------------
// event tables
// ----------------------------------------------------------------------------
gtk_pizza_set_size( GTK_PIZZA(m_wxwindow),
m_frameStatusBar->m_widget,
xx, yy, ww, hh );
- gtk_widget_queue_draw (m_frameStatusBar->m_widget);
- // FIXME: Do we really want to force an immediate redraw?
- gdk_window_process_updates (m_frameStatusBar->m_widget->window, TRUE);
+ if (GTK_WIDGET_DRAWABLE (m_frameStatusBar->m_widget))
+ {
+ gtk_widget_queue_draw (m_frameStatusBar->m_widget);
+ // FIXME: Do we really want to force an immediate redraw?
+ gdk_window_process_updates (m_frameStatusBar->m_widget->window, TRUE);
+ }
}
#endif // wxUSE_STATUSBAR