[1231183] 'cleanup: mismatched indentation' and other cleanings.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -77,7 +77,7 @@ static wxTopLevelWindowGTK *g_lastActiveFrame = (wxTopLevelWindowGTK*) NULL;
|
||||
// either TRUE or FALSE and an activate event will be sent during the next
|
||||
// OnIdle() call and it is reset to -1: this value means that we shouldn't
|
||||
// send any activate events at all
|
||||
static int g_sendActivateEvent = -1;
|
||||
static int g_sendActivateEvent = -1;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// "focus_in_event"
|
||||
@@ -90,7 +90,7 @@ static gint gtk_frame_focus_in_callback( GtkWidget *widget,
|
||||
{
|
||||
if (g_isIdle)
|
||||
wxapp_install_idle_handler();
|
||||
|
||||
|
||||
switch ( g_sendActivateEvent )
|
||||
{
|
||||
case -1:
|
||||
@@ -107,11 +107,11 @@ static gint gtk_frame_focus_in_callback( GtkWidget *widget,
|
||||
|
||||
g_activeFrame = win;
|
||||
g_lastActiveFrame = g_activeFrame;
|
||||
|
||||
|
||||
// wxPrintf( wxT("active: %s\n"), win->GetTitle().c_str() );
|
||||
|
||||
|
||||
wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame);
|
||||
wxActivateEvent event(wxEVT_ACTIVATE, TRUE, g_activeFrame->GetId());
|
||||
wxActivateEvent event(wxEVT_ACTIVATE, true, g_activeFrame->GetId());
|
||||
event.SetEventObject(g_activeFrame);
|
||||
g_activeFrame->GetEventHandler()->ProcessEvent(event);
|
||||
|
||||
@@ -124,8 +124,8 @@ static gint gtk_frame_focus_in_callback( GtkWidget *widget,
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
extern "C" {
|
||||
static gint gtk_frame_focus_out_callback( GtkWidget *widget,
|
||||
GdkEventFocus *WXUNUSED(gdk_event),
|
||||
static gint gtk_frame_focus_out_callback( GtkWidget *widget,
|
||||
GdkEventFocus *WXUNUSED(gdk_event),
|
||||
wxTopLevelWindowGTK *win )
|
||||
{
|
||||
if (g_isIdle)
|
||||
@@ -135,21 +135,21 @@ static gint gtk_frame_focus_out_callback( GtkWidget *widget,
|
||||
// wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset
|
||||
// g_sendActivateEvent to -1
|
||||
g_sendActivateEvent = 0;
|
||||
|
||||
|
||||
// wxASSERT_MSG( (g_activeFrame == win), wxT("TLW deactivatd although it wasn't active") );
|
||||
|
||||
|
||||
// wxPrintf( wxT("inactive: %s\n"), win->GetTitle().c_str() );
|
||||
|
||||
if (g_activeFrame)
|
||||
{
|
||||
wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame);
|
||||
wxActivateEvent event(wxEVT_ACTIVATE, FALSE, g_activeFrame->GetId());
|
||||
wxActivateEvent event(wxEVT_ACTIVATE, false, g_activeFrame->GetId());
|
||||
event.SetEventObject(g_activeFrame);
|
||||
g_activeFrame->GetEventHandler()->ProcessEvent(event);
|
||||
|
||||
g_activeFrame = NULL;
|
||||
}
|
||||
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
@@ -299,7 +299,7 @@ gtk_frame_map_callback( GtkWidget * WXUNUSED(widget),
|
||||
GdkEvent * WXUNUSED(event),
|
||||
wxTopLevelWindow *win )
|
||||
{
|
||||
win->SetIconizeState(FALSE);
|
||||
win->SetIconizeState(false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -410,16 +410,16 @@ static void wxInsertChildInTopLevelWindow( wxTopLevelWindowGTK* parent, wxWindow
|
||||
|
||||
void wxTopLevelWindowGTK::Init()
|
||||
{
|
||||
m_sizeSet = FALSE;
|
||||
m_sizeSet = false;
|
||||
m_miniEdge = 0;
|
||||
m_miniTitle = 0;
|
||||
m_mainWidget = (GtkWidget*) NULL;
|
||||
m_insertInClientArea = TRUE;
|
||||
m_isIconized = FALSE;
|
||||
m_fsIsShowing = FALSE;
|
||||
m_themeEnabled = TRUE;
|
||||
m_insertInClientArea = true;
|
||||
m_isIconized = false;
|
||||
m_fsIsShowing = false;
|
||||
m_themeEnabled = true;
|
||||
m_gdkDecor = m_gdkFunc = 0;
|
||||
m_grabbed = FALSE;
|
||||
m_grabbed = false;
|
||||
}
|
||||
|
||||
bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
@@ -438,13 +438,13 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
|
||||
wxTopLevelWindows.Append( this );
|
||||
|
||||
m_needParent = FALSE;
|
||||
m_needParent = false;
|
||||
|
||||
if (!PreCreation( parent, pos, size ) ||
|
||||
!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
|
||||
{
|
||||
wxFAIL_MSG( wxT("wxTopLevelWindowGTK creation failed") );
|
||||
return FALSE;
|
||||
return false;
|
||||
}
|
||||
|
||||
m_title = title;
|
||||
@@ -479,10 +479,10 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
{
|
||||
gtk_window_set_type_hint(GTK_WINDOW(m_widget),
|
||||
GDK_WINDOW_TYPE_HINT_UTILITY);
|
||||
|
||||
|
||||
// On some WMs, like KDE, a TOOL_WINDOW will still show
|
||||
// on the taskbar, but on Gnome a TOOL_WINDOW will not.
|
||||
// For consistency between WMs and with Windows, we
|
||||
// For consistency between WMs and with Windows, we
|
||||
// should set the NO_TASKBAR flag which will apply
|
||||
// the set_skip_taskbar_hint if it is available,
|
||||
// ensuring no taskbar entry will appear.
|
||||
@@ -495,8 +495,8 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
|
||||
wxWindow *topParent = wxGetTopLevelParent(m_parent);
|
||||
if (topParent && (((GTK_IS_WINDOW(topParent->m_widget)) &&
|
||||
(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)) ||
|
||||
(style & wxFRAME_FLOAT_ON_PARENT)))
|
||||
(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)) ||
|
||||
(style & wxFRAME_FLOAT_ON_PARENT)))
|
||||
{
|
||||
gtk_window_set_transient_for( GTK_WINDOW(m_widget),
|
||||
GTK_WINDOW(topParent->m_widget) );
|
||||
@@ -522,7 +522,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
}
|
||||
#endif
|
||||
|
||||
if (!name.IsEmpty())
|
||||
if (!name.empty())
|
||||
gtk_window_set_wmclass( GTK_WINDOW(m_widget), wxGTK_CONV( name ), wxGTK_CONV( name ) );
|
||||
|
||||
gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( title ) );
|
||||
@@ -598,7 +598,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
GTK_SIGNAL_FUNC(gtk_frame_focus_in_callback), (gpointer)this );
|
||||
gtk_signal_connect( GTK_OBJECT(m_widget), "focus_out_event",
|
||||
GTK_SIGNAL_FUNC(gtk_frame_focus_out_callback), (gpointer)this );
|
||||
|
||||
|
||||
// decorations
|
||||
if ((m_miniEdge > 0) || (style & wxSIMPLE_BORDER) || (style & wxNO_BORDER))
|
||||
{
|
||||
@@ -641,7 +641,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent,
|
||||
}
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
|
||||
wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
|
||||
@@ -652,14 +652,14 @@ wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
|
||||
RemoveGrab();
|
||||
}
|
||||
|
||||
m_isBeingDeleted = TRUE;
|
||||
m_isBeingDeleted = true;
|
||||
|
||||
// it may also be GtkScrolledWindow in the case of an MDI child
|
||||
if (GTK_IS_WINDOW(m_widget))
|
||||
{
|
||||
gtk_window_set_focus( GTK_WINDOW(m_widget), NULL );
|
||||
}
|
||||
|
||||
|
||||
if (g_activeFrame == this)
|
||||
g_activeFrame = NULL;
|
||||
if (g_lastActiveFrame == this)
|
||||
@@ -671,10 +671,10 @@ wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
|
||||
bool wxTopLevelWindowGTK::ShowFullScreen(bool show, long style )
|
||||
{
|
||||
if (show == m_fsIsShowing)
|
||||
return FALSE; // return what?
|
||||
return false; // return what?
|
||||
|
||||
m_fsIsShowing = show;
|
||||
|
||||
|
||||
wxX11FullScreenMethod method =
|
||||
wxGetFullScreenMethodX11((WXDisplay*)GDK_DISPLAY(),
|
||||
(WXWindow)GDK_ROOT_WINDOW());
|
||||
@@ -691,7 +691,7 @@ bool wxTopLevelWindowGTK::ShowFullScreen(bool show, long style )
|
||||
else
|
||||
gtk_window_unfullscreen( GTK_WINDOW( m_widget ) );
|
||||
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
#endif // GTK+ >= 2.2.0
|
||||
@@ -753,7 +753,7 @@ bool wxTopLevelWindowGTK::ShowFullScreen(bool show, long style )
|
||||
}
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -773,10 +773,10 @@ bool wxTopLevelWindowGTK::Show( bool show )
|
||||
|
||||
GtkOnSize( m_x, m_y, m_width, m_height );
|
||||
}
|
||||
|
||||
|
||||
if (show)
|
||||
gtk_widget_set_uposition( m_widget, m_x, m_y );
|
||||
|
||||
|
||||
return wxWindow::Show( show );
|
||||
}
|
||||
|
||||
@@ -804,7 +804,7 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si
|
||||
// avoid recursions
|
||||
if (m_resizing)
|
||||
return;
|
||||
m_resizing = TRUE;
|
||||
m_resizing = true;
|
||||
|
||||
int old_x = m_x;
|
||||
int old_y = m_y;
|
||||
@@ -851,7 +851,7 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si
|
||||
maxWidth = -1;
|
||||
maxHeight = -1;
|
||||
#endif
|
||||
|
||||
|
||||
if ((minWidth != -1) && (m_width < minWidth)) m_width = minWidth;
|
||||
if ((minHeight != -1) && (m_height < minHeight)) m_height = minHeight;
|
||||
if ((maxWidth != -1) && (m_width > maxWidth)) m_width = maxWidth;
|
||||
@@ -875,10 +875,10 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si
|
||||
/* we set the size in GtkOnSize, i.e. mostly the actual resizing is
|
||||
done either directly before the frame is shown or in idle time
|
||||
so that different calls to SetSize() don't lead to flicker. */
|
||||
m_sizeSet = FALSE;
|
||||
m_sizeSet = false;
|
||||
}
|
||||
|
||||
m_resizing = FALSE;
|
||||
m_resizing = false;
|
||||
}
|
||||
|
||||
void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const
|
||||
@@ -914,7 +914,7 @@ void wxTopLevelWindowGTK::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y),
|
||||
|
||||
// avoid recursions
|
||||
if (m_resizing) return;
|
||||
m_resizing = TRUE;
|
||||
m_resizing = true;
|
||||
|
||||
if ( m_wxwindow == NULL ) return;
|
||||
|
||||
@@ -942,7 +942,7 @@ void wxTopLevelWindowGTK::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y),
|
||||
maxWidth = -1;
|
||||
maxHeight = -1;
|
||||
#endif
|
||||
|
||||
|
||||
if ((minWidth != -1) && (m_width < minWidth)) m_width = minWidth;
|
||||
if ((minHeight != -1) && (m_height < minHeight)) m_height = minHeight;
|
||||
if ((maxWidth != -1) && (m_width > maxWidth)) m_width = maxWidth;
|
||||
@@ -1008,14 +1008,14 @@ void wxTopLevelWindowGTK::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y),
|
||||
// is no need to set the size or position of m_wxwindow.
|
||||
}
|
||||
|
||||
m_sizeSet = TRUE;
|
||||
m_sizeSet = true;
|
||||
|
||||
// send size event to frame
|
||||
wxSizeEvent event( wxSize(m_width,m_height), GetId() );
|
||||
event.SetEventObject( this );
|
||||
GetEventHandler()->ProcessEvent( event );
|
||||
|
||||
m_resizing = FALSE;
|
||||
m_resizing = false;
|
||||
}
|
||||
|
||||
void wxTopLevelWindowGTK::OnInternalIdle()
|
||||
@@ -1047,15 +1047,15 @@ void wxTopLevelWindowGTK::OnInternalIdle()
|
||||
}
|
||||
|
||||
wxWindow::OnInternalIdle();
|
||||
|
||||
|
||||
// Synthetize activate events.
|
||||
if ( g_sendActivateEvent != -1 )
|
||||
{
|
||||
bool activate = g_sendActivateEvent != 0;
|
||||
|
||||
|
||||
// if (!activate) wxPrintf( wxT("de") );
|
||||
// wxPrintf( wxT("activate\n") );
|
||||
|
||||
|
||||
// do it only once
|
||||
g_sendActivateEvent = -1;
|
||||
|
||||
@@ -1099,7 +1099,7 @@ void wxTopLevelWindowGTK::SetIcons( const wxIconBundle &icons )
|
||||
}
|
||||
gtk_window_set_icon_list(GTK_WINDOW(m_widget), list);
|
||||
g_list_free(list);
|
||||
|
||||
|
||||
#else // !__WXGTK20__
|
||||
GdkWindow* window = m_widget->window;
|
||||
if (!window)
|
||||
@@ -1147,7 +1147,7 @@ bool wxTopLevelWindowGTK::IsMaximized() const
|
||||
// wxFAIL_MSG( _T("not implemented") );
|
||||
|
||||
// This is an approximation
|
||||
return FALSE;
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -1201,7 +1201,7 @@ void wxTopLevelWindowGTK::AddGrab()
|
||||
{
|
||||
if (!m_grabbed)
|
||||
{
|
||||
m_grabbed = TRUE;
|
||||
m_grabbed = true;
|
||||
gtk_grab_add( m_widget );
|
||||
wxEventLoop().Run();
|
||||
gtk_grab_remove( m_widget );
|
||||
@@ -1213,7 +1213,7 @@ void wxTopLevelWindowGTK::RemoveGrab()
|
||||
if (m_grabbed)
|
||||
{
|
||||
gtk_main_quit();
|
||||
m_grabbed = FALSE;
|
||||
m_grabbed = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1230,23 +1230,23 @@ static bool do_shape_combine_region(GdkWindow* window, const wxRegion& region)
|
||||
else
|
||||
{
|
||||
#ifdef __WXGTK20__
|
||||
gdk_window_shape_combine_region(window, region.GetRegion(), 0, 0);
|
||||
gdk_window_shape_combine_region(window, region.GetRegion(), 0, 0);
|
||||
#else
|
||||
wxBitmap bmp = region.ConvertToBitmap();
|
||||
bmp.SetMask(new wxMask(bmp, *wxBLACK));
|
||||
GdkBitmap* mask = bmp.GetMask()->GetBitmap();
|
||||
gdk_window_shape_combine_mask(window, mask, 0, 0);
|
||||
wxBitmap bmp = region.ConvertToBitmap();
|
||||
bmp.SetMask(new wxMask(bmp, *wxBLACK));
|
||||
GdkBitmap* mask = bmp.GetMask()->GetBitmap();
|
||||
gdk_window_shape_combine_mask(window, mask, 0, 0);
|
||||
#endif
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
bool wxTopLevelWindowGTK::SetShape(const wxRegion& region)
|
||||
{
|
||||
wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), FALSE,
|
||||
wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), false,
|
||||
_T("Shaped windows must be created with the wxFRAME_SHAPED style."));
|
||||
|
||||
GdkWindow *window = NULL;
|
||||
@@ -1263,4 +1263,3 @@ bool wxTopLevelWindowGTK::IsActive()
|
||||
{
|
||||
return (this == (wxTopLevelWindowGTK*)g_activeFrame);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user