update copyright year
[claws.git] / src / gtk / manage_window.c
1 /*
2  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail team
4  *
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.
9  *
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.
14  *
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/>.
17  * 
18  */
19
20 #include "config.h"
21
22 #include <glib.h>
23 #include <gtk/gtk.h>
24
25 #include "manage_window.h"
26 #include "utils.h"
27
28 GtkWidget *focus_window;
29
30 gint manage_window_focus_in(GtkWidget *widget, GdkEventFocus *event,
31                             gpointer data)
32 {
33 /*      const gchar *title = NULL; */
34
35         if (!GTK_IS_WINDOW(widget))
36                 return FALSE;
37         
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"); */
41
42         focus_window = widget;
43
44         return FALSE;
45 }
46
47 gint manage_window_focus_out(GtkWidget *widget, GdkEventFocus *event,
48                              gpointer data)
49 {
50 /*      const gchar *title = NULL; */
51
52         if (!GTK_IS_WINDOW(widget))
53                 return FALSE;
54
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"); */
58
59         if (focus_window == widget)
60                 focus_window = NULL;
61
62         return FALSE;
63 }
64
65 gint manage_window_unmap(GtkWidget *widget, GdkEventAny *event, gpointer data)
66 {
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"); */
70
71         if (focus_window == widget)
72                 focus_window = NULL;
73
74         return FALSE;
75 }
76
77 void manage_window_destroy(GtkWidget *widget, gpointer data)
78 {
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"); */
82
83
84         if (focus_window == widget)
85                 focus_window = NULL;
86 }
87
88 void manage_window_set_transient(GtkWindow *window)
89 {
90         if (window && focus_window)
91                 gtk_window_set_transient_for(window, GTK_WINDOW(focus_window));
92 }