Improve some sieve-related translations
[claws.git] / src / gtk / manage_window.c
blob6dc8e1e72612ed87d7c02ee6015a6c3b14793fbb
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
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/>.
20 #include "config.h"
22 #include <glib.h>
23 #include <gtk/gtk.h>
25 #include "manage_window.h"
26 #include "utils.h"
28 GtkWidget *focus_window;
30 gint manage_window_focus_in(GtkWidget *widget, GdkEventFocus *event,
31 gpointer data)
33 /* const gchar *title = NULL; */
35 if (!GTK_IS_WINDOW(widget))
36 return FALSE;
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;
44 return FALSE;
47 gint manage_window_focus_out(GtkWidget *widget, GdkEventFocus *event,
48 gpointer data)
50 /* const gchar *title = NULL; */
52 if (!GTK_IS_WINDOW(widget))
53 return FALSE;
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)
60 focus_window = NULL;
62 return FALSE;
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)
72 focus_window = NULL;
74 return FALSE;
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)
85 focus_window = NULL;
88 void manage_window_set_transient(GtkWindow *window)
90 if (window && focus_window)
91 gtk_window_set_transient_for(window, GTK_WINDOW(focus_window));