2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "manage_window.h"
28 GtkWidget
*focus_window
;
30 gint
manage_window_focus_in(GtkWidget
*widget
, GdkEventFocus
*event
,
33 /* const gchar *title = NULL; */
35 if (!GTK_IS_WINDOW(widget
))
38 /* title = gtk_window_get_title(GTK_WINDOW(widget));
39 debug_print("Focus in event: window: %p - %s\n", widget,
40 title ? title : "no title"); */
42 focus_window
= widget
;
47 gint
manage_window_focus_out(GtkWidget
*widget
, GdkEventFocus
*event
,
50 /* const gchar *title = NULL; */
52 if (!GTK_IS_WINDOW(widget
))
55 /* title = gtk_window_get_title(GTK_WINDOW(widget));
56 debug_print("Focus out event: window: %p - %s\n", widget,
57 title ? title : "no title"); */
59 if (focus_window
== widget
)
65 gint
manage_window_unmap(GtkWidget
*widget
, GdkEventAny
*event
, gpointer data
)
67 /* const gchar *title = gtk_window_get_title(GTK_WINDOW(widget));
68 debug_print("Unmap event: window: %p - %s\n", widget,
69 title ? title : "no title"); */
71 if (focus_window
== widget
)
77 void manage_window_destroy(GtkWidget
*widget
, gpointer data
)
79 /* const gchar *title = gtk_window_get_title(GTK_WINDOW(widget));
80 debug_print("Destroy event: window: %p - %s\n", widget,
81 title ? title : "no title"); */
84 if (focus_window
== widget
)
88 void manage_window_set_transient(GtkWindow
*window
)
90 if (window
&& focus_window
)
91 gtk_window_set_transient_for(window
, GTK_WINDOW(focus_window
));