root / src / manage_window.c @ 2164
History | View | Annotate | Download (2.6 kB)
| 1 | /*
|
|---|---|
| 2 | * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client |
| 3 | * Copyright (C) 1999-2002 Hiroyuki Yamamoto |
| 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 2 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, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 18 | */ |
| 19 | |
| 20 | #include <glib.h> |
| 21 | #include <gtk/gtkwidget.h> |
| 22 | #include <gtk/gtkwindow.h> |
| 23 | |
| 24 | #include "manage_window.h" |
| 25 | #include "utils.h" |
| 26 | #include "gtkutils.h" |
| 27 | |
| 28 | static GtkWidget *focus_window;
|
| 29 | |
| 30 | gint manage_window_focus_in(GtkWidget *widget, GdkEventFocus *event, |
| 31 | gpointer data) |
| 32 | {
|
| 33 | /* debug_print("Focus in event: window: %p\n", widget); */
|
| 34 | |
| 35 | focus_window = widget; |
| 36 | |
| 37 | return FALSE;
|
| 38 | } |
| 39 | |
| 40 | gint manage_window_focus_out(GtkWidget *widget, GdkEventFocus *event, |
| 41 | gpointer data) |
| 42 | {
|
| 43 | /* debug_print("Focused window: %p\n", focus_window); */
|
| 44 | /* debug_print("Focus out event: window: %p\n", widget); */
|
| 45 | |
| 46 | #if 0
|
| 47 | if (focus_window == widget) |
| 48 | focus_window = NULL; |
| 49 | #endif |
| 50 | |
| 51 | return FALSE;
|
| 52 | } |
| 53 | |
| 54 | gint manage_window_unmap(GtkWidget *widget, GdkEventAny *event, gpointer data) |
| 55 | {
|
| 56 | /* debug_print("unmap event: %p\n", widget); */
|
| 57 | |
| 58 | if (focus_window == widget)
|
| 59 | focus_window = NULL;
|
| 60 | |
| 61 | return FALSE;
|
| 62 | } |
| 63 | |
| 64 | gint manage_window_delete(GtkWidget *widget, GdkEventAny *event, |
| 65 | gpointer data) |
| 66 | {
|
| 67 | /* debug_print("delete event: %p\n", widget); */
|
| 68 | |
| 69 | if (focus_window == widget)
|
| 70 | focus_window = NULL;
|
| 71 | |
| 72 | return FALSE;
|
| 73 | } |
| 74 | |
| 75 | void manage_window_destroy(GtkWidget *widget, gpointer data)
|
| 76 | {
|
| 77 | /* debug_print("destroy event: %p\n", widget); */
|
| 78 | |
| 79 | if (focus_window == widget)
|
| 80 | focus_window = NULL;
|
| 81 | } |
| 82 | |
| 83 | void manage_window_set_transient(GtkWindow *window)
|
| 84 | {
|
| 85 | /* debug_print("manage_window_set_transient(): window = %p, focus_window = %p\n",
|
| 86 | window, focus_window); */ |
| 87 | |
| 88 | if (window && focus_window) {
|
| 89 | if (!gtk_window_is_active(GTK_WINDOW(focus_window)))
|
| 90 | gtkut_window_popup(focus_window); |
| 91 | gtk_window_set_transient_for(window, GTK_WINDOW(focus_window)); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void manage_window_signals_connect(GtkWindow *window)
|
| 96 | {
|
| 97 | MANAGE_WINDOW_SIGNALS_CONNECT(window); |
| 98 | } |
| 99 | |
| 100 | GtkWidget *manage_window_get_focus_window(void)
|
| 101 | {
|
| 102 | return focus_window;
|
| 103 | } |