X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5e0aa05a52f50a1846dce5469be93849ee469099..e8cd8b1b129fc261c4b526c9c8c52fea8c067479:/src/gtk/window.cpp diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index d62e188723..382d1e089b 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -25,7 +25,11 @@ #include "wx/dcclient.h" #include "wx/dnd.h" #include "wx/mdi.h" +#include "wx/menu.h" #include "wx/notebook.h" +#include "wx/statusbr.h" +#include +//#include "wx/treectrl.h" #include "gdk/gdkkeysyms.h" #include #include "wx/gtk/win_gtk.h" @@ -52,15 +56,18 @@ void gtk_window_expose_callback( GtkWidget *WXUNUSED(widget), GdkEventExpose *gd if (g_blockEventsOnDrag) return; /* - printf( "OnExpose from " ); + if (IS_KIND_OF(win,wxStatusBar)) + { + printf( "OnExpose from " ); if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) printf( win->GetClassInfo()->GetClassName() ); printf( ".\n" ); - + printf( "x: %d \n", gdk_event->area.x ); printf( "y: %d \n", gdk_event->area.y ); printf( "w: %d \n", gdk_event->area.width ); printf( "h: %d \n", gdk_event->area.height ); +} */ win->m_updateRegion.Union( gdk_event->area.x, @@ -86,6 +93,8 @@ void gtk_window_draw_callback( GtkWidget *WXUNUSED(widget), GdkRectangle *rect, if (g_blockEventsOnDrag) return; /* + if (IS_KIND_OF(win,wxStatusBar)) + { printf( "OnDraw from " ); if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) printf( win->GetClassInfo()->GetClassName() ); @@ -95,6 +104,7 @@ void gtk_window_draw_callback( GtkWidget *WXUNUSED(widget), GdkRectangle *rect, printf( "y: %d \n", rect->y ); printf( "w: %d \n", rect->width ); printf( "h: %d \n", rect->height ); +} */ win->m_updateRegion.Union( rect->x, rect->y, rect->width, rect->height ); @@ -251,7 +261,12 @@ gint gtk_window_key_press_callback( GtkWidget *WXUNUSED(widget), GdkEventKey *gd event.m_x = 0; event.m_y = 0; event.SetEventObject( win ); - return win->ProcessEvent( event ); + + bool ret = win->ProcessEvent( event ); +/* + if (ret) printf( "found.\n") ; +*/ + return ret; }; //----------------------------------------------------------------------------- @@ -259,8 +274,8 @@ gint gtk_window_key_press_callback( GtkWidget *WXUNUSED(widget), GdkEventKey *gd gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxWindow *win ) { - if (widget->window != gdk_event->window) return FALSE; - if (g_blockEventsOnDrag) return FALSE; + if (widget->window != gdk_event->window) return TRUE; + if (g_blockEventsOnDrag) return TRUE; if (win->m_wxwindow) { @@ -278,7 +293,7 @@ gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton *gdk_ev }; }; - if (!win->HasVMT()) return FALSE; + if (!win->HasVMT()) return TRUE; /* printf( "OnButtonPress from " ); @@ -286,7 +301,7 @@ gint gtk_window_button_press_callback( GtkWidget *widget, GdkEventButton *gdk_ev printf( win->GetClassInfo()->GetClassName() ); printf( ".\n" ); */ - + wxEventType event_type = wxEVT_LEFT_DOWN; if (gdk_event->button == 1) @@ -342,9 +357,9 @@ gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButton *gdk_ { if (widget->window != gdk_event->window) return TRUE; - if (g_blockEventsOnDrag) return FALSE; + if (g_blockEventsOnDrag) return TRUE; - if (!win->HasVMT()) return FALSE; + if (!win->HasVMT()) return TRUE; /* printf( "OnButtonRelease from " ); @@ -374,7 +389,9 @@ gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButton *gdk_ event.m_y = (long)gdk_event->y; event.SetEventObject( win ); - return win->ProcessEvent( event ); + win->ProcessEvent( event ); + + return TRUE; }; //----------------------------------------------------------------------------- @@ -384,9 +401,9 @@ gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion *gdk_e { if (widget->window != gdk_event->window) return TRUE; - if (g_blockEventsOnDrag) return FALSE; + if (g_blockEventsOnDrag) return TRUE; - if (!win->HasVMT()) return FALSE; + if (!win->HasVMT()) return TRUE; /* printf( "OnMotion from " ); @@ -410,7 +427,7 @@ gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion *gdk_e win->ProcessEvent( event ); - return FALSE; + return TRUE; }; //----------------------------------------------------------------------------- @@ -418,7 +435,7 @@ gint gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion *gdk_e gint gtk_window_focus_in_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxWindow *win ) { - if (g_blockEventsOnDrag) return FALSE; + if (g_blockEventsOnDrag) return TRUE; if (win->m_wxwindow) { if (GTK_WIDGET_CAN_FOCUS(win->m_wxwindow)) @@ -433,7 +450,7 @@ gint gtk_window_focus_in_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUS }; }; - if (!win->HasVMT()) return FALSE; + if (!win->HasVMT()) return TRUE; /* printf( "OnSetFocus from " ); @@ -446,7 +463,9 @@ gint gtk_window_focus_in_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUS wxFocusEvent event( wxEVT_SET_FOCUS, win->GetId() ); event.SetEventObject( win ); - return win->ProcessEvent( event ); + win->ProcessEvent( event ); + + return TRUE; }; //----------------------------------------------------------------------------- @@ -454,14 +473,14 @@ gint gtk_window_focus_in_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUS gint gtk_window_focus_out_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxWindow *win ) { - if (g_blockEventsOnDrag) return FALSE; + if (g_blockEventsOnDrag) return TRUE; if (win->m_wxwindow) { if (GTK_WIDGET_CAN_FOCUS(win->m_wxwindow)) GTK_WIDGET_UNSET_FLAGS (win->m_wxwindow, GTK_HAS_FOCUS); }; - if (!win->HasVMT()) return FALSE; + if (!win->HasVMT()) return TRUE; /* printf( "OnKillFocus from " ); @@ -472,7 +491,9 @@ gint gtk_window_focus_out_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNU wxFocusEvent event( wxEVT_KILL_FOCUS, win->GetId() ); event.SetEventObject( win ); - return win->ProcessEvent( event ); + win->ProcessEvent( event ); + + return TRUE; }; //----------------------------------------------------------------------------- @@ -616,8 +637,8 @@ void gtk_window_hscroll_change_callback( GtkWidget *WXUNUSED(widget), wxWindow * void gtk_window_drop_callback( GtkWidget *widget, GdkEvent *event, wxWindow *win ) { - printf( "OnDrop.\n" ); - + if (!win->HasVMT()) return; + if (win->GetDropTarget()) { int x = 0; @@ -653,8 +674,8 @@ bool gtk_window_destroy_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSE bool gtk_window_enter_callback( GtkWidget *widget, GdkEventCrossing *gdk_event, wxWindow *win ) { if (widget->window != gdk_event->window) return TRUE; - - if (g_blockEventsOnDrag) return FALSE; + if (g_blockEventsOnDrag) return TRUE; + if (!win->HasVMT()) return TRUE; if (widget->window) gdk_window_set_cursor( widget->window, win->m_cursor->GetCursor() ); @@ -670,8 +691,8 @@ bool gtk_window_enter_callback( GtkWidget *widget, GdkEventCrossing *gdk_event, bool gtk_window_leave_callback( GtkWidget *widget, GdkEventCrossing *gdk_event, wxWindow *win ) { if (widget->window != gdk_event->window) return TRUE; - - if (g_blockEventsOnDrag) return FALSE; + if (!win->HasVMT()) return TRUE; + if (g_blockEventsOnDrag) return TRUE; if (widget->window) gdk_window_set_cursor( widget->window, wxSTANDARD_CURSOR->GetCursor() ); @@ -737,6 +758,7 @@ wxWindow::wxWindow( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style, const wxString &name ) { + m_cursor = NULL; Create( parent, id, pos, size, style, name ); }; @@ -795,6 +817,8 @@ bool wxWindow::Create( wxWindow *parent, wxWindowID id, m_wxwindow = gtk_myfixed_new(); + if (m_wxwindow) GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); + if (m_windowStyle & wxTAB_TRAVERSAL == wxTAB_TRAVERSAL) GTK_WIDGET_UNSET_FLAGS( m_wxwindow, GTK_CAN_FOCUS ); else @@ -846,7 +870,7 @@ wxWindow::~wxWindow(void) if (m_widget) gtk_widget_destroy( m_widget ); -// delete m_cursor; + wxDELETE(m_cursor); DeleteRelatedConstraints(); if (m_constraints) @@ -883,7 +907,7 @@ void wxWindow::PreCreation( wxWindow *parent, wxWindowID id, long style, const wxString &name ) { if (m_needParent && (parent == NULL)) - wxFatalError( "Need complete parent.", name ); + wxFatalError( _("Need complete parent."), name ); m_widget = NULL; m_hasVMT = FALSE; @@ -900,7 +924,8 @@ void wxWindow::PreCreation( wxWindow *parent, wxWindowID id, m_windowValidator = NULL; m_windowId = id; m_sizeSet = FALSE; - m_cursor = new wxCursor( wxCURSOR_ARROW ); + if (m_cursor == NULL) + m_cursor = new wxCursor( wxCURSOR_ARROW ); m_font = *wxSWISS_FONT; m_backgroundColour = wxWHITE; m_foregroundColour = wxBLACK; @@ -924,8 +949,7 @@ void wxWindow::PostCreation(void) // GtkStyle *style = m_widget->style; // style->font = m_font.GetInternalFont( 1.0 ); // destroy old font ? - GtkWidget *connect_widget = m_widget; - if (m_wxwindow) connect_widget = m_wxwindow; + GtkWidget *connect_widget = GetConnectWidget(); gtk_object_set_data (GTK_OBJECT (connect_widget), "MyWxWindow", (gpointer)this ); @@ -961,9 +985,6 @@ void wxWindow::PostCreation(void) gtk_signal_connect( GTK_OBJECT(connect_widget), "focus_out_event", GTK_SIGNAL_FUNC(gtk_window_focus_out_callback), (gpointer)this ); - gtk_signal_connect( GTK_OBJECT(connect_widget), "drop_data_available_event", - GTK_SIGNAL_FUNC(gtk_window_drop_callback), (gpointer)this ); - // Only for cursor handling gtk_signal_connect( GTK_OBJECT(m_widget), "enter_notify_event", @@ -1053,17 +1074,16 @@ void wxWindow::ImplementSetSize(void) void wxWindow::ImplementSetPosition(void) { - if (!m_parent) + if (IS_KIND_OF(this,wxFrame) || IS_KIND_OF(this,wxDialog)) { - if (IsKindOf(CLASSINFO(wxFrame)) || - IsKindOf(CLASSINFO(wxDialog))) - { + if ((m_x != -1) || (m_y != -1)) gtk_widget_set_uposition( m_widget, m_x, m_y ); - } - else - { - printf( "wxWindow::SetSize error.\n" ); - } + return; + } + + if (!m_parent) + { + printf( _("wxWindow::SetSize error.\n") ); return; } @@ -1318,14 +1338,11 @@ void wxWindow::ScreenToClient( int *x, int *y ) void wxWindow::Centre( int direction ) { - int x = 0; - int y = 0; - GetPosition( &x, &y ); - if (this->IsKindOf(CLASSINFO(wxDialog)) || this->IsKindOf(CLASSINFO(wxFrame))) + if (IS_KIND_OF(this,wxDialog) || IS_KIND_OF(this,wxFrame)) { - if (direction & wxHORIZONTAL == wxHORIZONTAL) x = (gdk_screen_width () - m_width) / 2; - if (direction & wxVERTICAL == wxVERTICAL) y = (gdk_screen_height () - m_height) / 2; - gtk_widget_set_uposition( m_widget, x, y ); + if (direction & wxHORIZONTAL == wxHORIZONTAL) m_x = (gdk_screen_width () - m_width) / 2; + if (direction & wxVERTICAL == wxVERTICAL) m_y = (gdk_screen_height () - m_height) / 2; + ImplementSetPosition(); } else { @@ -1334,9 +1351,9 @@ void wxWindow::Centre( int direction ) int p_w = 0; int p_h = 0; m_parent->GetSize( &p_w, &p_h ); - if (direction & wxHORIZONTAL == wxHORIZONTAL) x = (p_w - m_width) / 2; - if (direction & wxVERTICAL == wxVERTICAL) y = (p_h - m_height) / 2; - gtk_widget_set_uposition( m_widget, x, y ); + if (direction & wxHORIZONTAL == wxHORIZONTAL) m_x = (p_w - m_width) / 2; + if (direction & wxVERTICAL == wxVERTICAL) m_y = (p_h - m_height) / 2; + ImplementSetPosition(); }; } }; @@ -1359,7 +1376,7 @@ void wxWindow::Fit(void) node = node->Next(); } - SetClientSize(maxX + 5, maxY + 5); + SetClientSize(maxX + 5, maxY + 10); }; void wxWindow::OnSize( wxSizeEvent &WXUNUSED(event) ) @@ -1404,8 +1421,7 @@ void wxWindow::MakeModal( bool modal ) void wxWindow::SetFocus(void) { - GtkWidget *connect_widget = m_widget; - if (m_wxwindow) connect_widget = m_wxwindow; + GtkWidget *connect_widget = GetConnectWidget(); if (connect_widget) { if (GTK_WIDGET_CAN_FOCUS(connect_widget) && !GTK_WIDGET_HAS_FOCUS (connect_widget) ) @@ -1417,7 +1433,6 @@ void wxWindow::SetFocus(void) bool wxWindow::OnClose(void) { - printf( "OnClose event.\n" ); return TRUE; }; @@ -1431,39 +1446,59 @@ void wxWindow::AddChild( wxWindow *child ) // for wxFrame, wxDialog, wxWindow and // wxMDIParentFrame. - if (IsKindOf(CLASSINFO(wxMDIParentFrame))) + // wxFrame and wxDialog as children aren't placed into the parents + + if (( IS_KIND_OF(child,wxFrame) || IS_KIND_OF(child,wxDialog) ) && + (!IS_KIND_OF(child,wxMDIChildFrame))) { - if (child->IsKindOf(CLASSINFO(wxMDIChildFrame))) + m_children.Append( child ); + + if ((child->m_x != -1) && (child->m_y != -1)) + gtk_widget_set_uposition( child->m_widget, child->m_x, child->m_y ); + + return; + } + + // In the case of an wxMDIChildFrame descendant, we use the + // client windows's AddChild() + + if (IS_KIND_OF(this,wxMDIParentFrame)) + { + if (IS_KIND_OF(child,wxMDIChildFrame)) { wxMDIClientWindow *client = ((wxMDIParentFrame*)this)->GetClientWindow(); if (client) { client->AddChild( child ); return; - }; - }; - }; + } + } + } - // wxNotebooks are very special, so they have their own AddChild + // wxNotebook is very special, so it has a private AddChild() - if (IsKindOf(CLASSINFO(wxNotebook))) + if (IS_KIND_OF(this,wxNotebook)) { wxNotebook *tab = (wxNotebook*)this; tab->AddChild( child ); return; - }; + } - m_children.Append( child ); - if (child->IsKindOf(CLASSINFO(wxFrame)) || child->IsKindOf(CLASSINFO(wxDialog))) + // wxFrame has a private AddChild + + if (IS_KIND_OF(this,wxFrame) && !IS_KIND_OF(this,wxMDIChildFrame)) { - if ((child->m_x != -1) && (child->m_y != -1)) - gtk_widget_set_uposition( child->m_widget, child->m_x, child->m_y ); + wxFrame *frame = (wxFrame*)this; + frame->AddChild( child ); + return; } - else - { - if (m_wxwindow) - gtk_myfixed_put( GTK_MYFIXED(m_wxwindow), child->m_widget, child->m_x, child->m_y ); - }; + + // All the rest + + m_children.Append( child ); + if (m_wxwindow) gtk_myfixed_put( GTK_MYFIXED(m_wxwindow), child->m_widget, + child->m_x, child->m_y ); + gtk_widget_set_usize( child->m_widget, child->m_width, child->m_height ); }; @@ -1531,7 +1566,11 @@ wxWindowID wxWindow::GetId(void) void wxWindow::SetCursor( const wxCursor &cursor ) { - if (*m_cursor == cursor) return; + wxASSERT(m_cursor != NULL); + + if (m_cursor != NULL) + if (*m_cursor == cursor) + return; (*m_cursor) = cursor; if (m_widget->window) gdk_window_set_cursor( m_widget->window, m_cursor->GetCursor() ); @@ -1546,11 +1585,11 @@ void wxWindow::Refresh( bool eraseBackground, const wxRect *rect ) if (rect) gdk_window_clear_area( m_wxwindow->window, rect->x, - rect->y, - rect->width, - rect->height ); + rect->y, + rect->width, + rect->height ); else - Clear(); + Clear(); }; if (!rect) { @@ -1581,6 +1620,7 @@ void wxWindow::Refresh( bool eraseBackground, const wxRect *rect ) gdk_rect.y = rect->y; gdk_rect.width = rect->width; gdk_rect.height = rect->height; + if (m_wxwindow) gtk_widget_draw( m_wxwindow, &gdk_rect ); else @@ -1642,7 +1682,7 @@ bool wxWindow::TransferDataToWindow(void) if (child->GetValidator() && /* child->GetValidator()->Ok() && */ !child->GetValidator()->TransferToWindow() ) { - wxMessageBox( "Application Error", "Could not transfer data to window", wxOK|wxICON_EXCLAMATION ); + wxMessageBox( _("Application Error"), _("Could not transfer data to window"), wxOK|wxICON_EXCLAMATION ); return FALSE; }; node = node->Next(); @@ -1675,19 +1715,45 @@ void wxWindow::InitDialog(void) GetEventHandler()->ProcessEvent(event); }; +static void SetInvokingWindow( wxMenu *menu, wxWindow *win ) +{ + menu->SetInvokingWindow( win ); + wxNode *node = menu->m_items.First(); + while (node) + { + wxMenuItem *menuitem = (wxMenuItem*)node->Data(); + if (menuitem->IsSubMenu()) + SetInvokingWindow( menuitem->GetSubMenu(), win ); + node = node->Next(); + }; +}; + +bool wxWindow::PopupMenu( wxMenu *menu, int WXUNUSED(x), int WXUNUSED(y) ) +{ + SetInvokingWindow( menu, this ); + gtk_menu_popup( GTK_MENU(menu->m_menu), NULL, NULL, NULL, NULL, 0, 0 ); + return TRUE; +} + void wxWindow::SetDropTarget( wxDropTarget *dropTarget ) { - GtkWidget *connect_widget = m_widget; - if (m_wxwindow) connect_widget = m_wxwindow; + GtkWidget *dnd_widget = GetConnectWidget(); + if (m_pDropTarget) { - m_pDropTarget->UnregisterWidget( connect_widget ); + gtk_signal_disconnect_by_func( GTK_OBJECT(dnd_widget), + GTK_SIGNAL_FUNC(gtk_window_drop_callback), (gpointer)this ); + + m_pDropTarget->UnregisterWidget( dnd_widget ); delete m_pDropTarget; }; m_pDropTarget = dropTarget; if (m_pDropTarget) { - m_pDropTarget->RegisterWidget( connect_widget ); + m_pDropTarget->RegisterWidget( dnd_widget ); + + gtk_signal_connect( GTK_OBJECT(dnd_widget), "drop_data_available_event", + GTK_SIGNAL_FUNC(gtk_window_drop_callback), (gpointer)this ); }; }; @@ -1696,6 +1762,14 @@ wxDropTarget *wxWindow::GetDropTarget() const return m_pDropTarget; }; +GtkWidget* wxWindow::GetConnectWidget(void) +{ + GtkWidget *connect_widget = m_widget; + if (m_wxwindow) connect_widget = m_wxwindow; + + return connect_widget; +} + void wxWindow::SetFont( const wxFont &font ) { m_font = font; @@ -1727,8 +1801,7 @@ long wxWindow::GetWindowStyleFlag(void) const void wxWindow::CaptureMouse(void) { - GtkWidget *connect_widget = m_widget; - if (m_wxwindow) connect_widget = m_wxwindow; + GtkWidget *connect_widget = GetConnectWidget(); gtk_grab_add( connect_widget ); gdk_pointer_grab ( connect_widget->window, FALSE, (GdkEventMask) @@ -1740,8 +1813,7 @@ void wxWindow::CaptureMouse(void) void wxWindow::ReleaseMouse(void) { - GtkWidget *connect_widget = m_widget; - if (m_wxwindow) connect_widget = m_wxwindow; + GtkWidget *connect_widget = GetConnectWidget(); gtk_grab_remove( connect_widget ); gdk_pointer_ungrab ( GDK_CURRENT_TIME ); }; @@ -1853,11 +1925,25 @@ void wxWindow::SetScrollbar( int orient, int pos, int thumbVisible, }; if (m_wxwindow->window) - { + { if (orient == wxHORIZONTAL) + { +/* + m_drawingOffsetX = -16000; + + gtk_myfixed_set_offset( GTK_MYFIXED(m_wxwindow), m_drawingOffsetX, m_drawingOffsetY ); +*/ gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "changed" ); - else + } + else + { +/* + m_drawingOffsetY = -16000; + + gtk_myfixed_set_offset( GTK_MYFIXED(m_wxwindow), m_drawingOffsetX, m_drawingOffsetY ); +*/ gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "changed" ); + } gtk_widget_set_usize( m_widget, m_width, m_height ); }; @@ -1926,13 +2012,26 @@ void wxWindow::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) ) { if (!m_wxwindow) return; - m_drawingOffsetX += dx; - m_drawingOffsetY += dy; + bool refresh = FALSE; + + if ((m_drawingOffsetX == 0) && (m_drawingOffsetY == 0)) + { + m_drawingOffsetX = -16000; + m_drawingOffsetY = -16000; + refresh = TRUE; + } + else + { + m_drawingOffsetX += dx; + m_drawingOffsetY += dy; + } // printf( "X: %d Y: %d \n", (int)m_drawingOffsetX, (int)m_drawingOffsetY ); gtk_myfixed_set_offset( GTK_MYFIXED(m_wxwindow), m_drawingOffsetX, m_drawingOffsetY ); + if (refresh) Refresh(); + /* The code here is very nifty, but it doesn't work with overlapping windows... @@ -2282,19 +2381,19 @@ void wxWindow::SetConstraintSizes(bool recurse) wxString winName; if (GetName() == "") - winName = "unnamed"; + winName = _("unnamed"); else winName = GetName(); - wxDebugMsg("Constraint(s) not satisfied for window of type %s, name %s:\n", (const char *)windowClass, (const char *)winName); + wxDebugMsg(_("Constraint(s) not satisfied for window of type %s, name %s:\n"), (const char *)windowClass, (const char *)winName); if (!constr->left.GetDone()) - wxDebugMsg(" unsatisfied 'left' constraint.\n"); + wxDebugMsg(_(" unsatisfied 'left' constraint.\n")); if (!constr->right.GetDone()) - wxDebugMsg(" unsatisfied 'right' constraint.\n"); + wxDebugMsg(_(" unsatisfied 'right' constraint.\n")); if (!constr->width.GetDone()) - wxDebugMsg(" unsatisfied 'width' constraint.\n"); + wxDebugMsg(_(" unsatisfied 'width' constraint.\n")); if (!constr->height.GetDone()) - wxDebugMsg(" unsatisfied 'height' constraint.\n"); - wxDebugMsg("Please check constraints: try adding AsIs() constraints.\n"); + wxDebugMsg(_(" unsatisfied 'height' constraint.\n")); + wxDebugMsg(_("Please check constraints: try adding AsIs() constraints.\n")); } if (recurse) @@ -2429,9 +2528,7 @@ bool wxWindow::AcceptsFocus() const return IsEnabled() && IsShown(); } -void wxWindow::OnIdle(wxIdleEvent& event) +void wxWindow::OnIdle(wxIdleEvent& WXUNUSED(event) ) { UpdateWindowUI(); } - -#include "../common/wincmn.cpp"