aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-gui-utils.c
blob: 2e31eb101ba48fc72ab49c750722cc2eba2acc2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * GUI utility functions
 *
 * Author:
 *   Miguel de Icaza (miguel@helixcode.com)
 *
 * (C) 1999 Miguel de Icaza
 * (C) 2000 Helix Code, Inc.
 */
#include <config.h>
#include <gtk/gtksignal.h>
#include <libgnomeui/gnome-messagebox.h>
#include <libgnomeui/gnome-stock.h>
#include <gnome.h>
#include "e-gui-utils.h"
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk-pixbuf/gnome-canvas-pixbuf.h>

void
e_notice (GtkWindow *window, const char *type, const char *format, ...)
{
    GtkWidget *dialog;
    va_list args;
    char *str;

    va_start (args, format);
    str = g_strdup_vprintf (format, args);
    dialog = gnome_message_box_new (str, type, GNOME_STOCK_BUTTON_OK, NULL);
    va_end (args);
    g_free (str);
    
    if (window)
        gnome_dialog_set_parent (GNOME_DIALOG (dialog), window);

    gnome_dialog_run (GNOME_DIALOG (dialog));
}

static void
kill_popup_menu (GtkWidget *widget, GtkMenu *menu)
{
    g_return_if_fail (menu != NULL);
    g_return_if_fail (GTK_IS_MENU (menu));

    gtk_object_unref (GTK_OBJECT (menu));
}

void
e_auto_kill_popup_menu_on_hide (GtkMenu *menu)
{
    g_return_if_fail (menu != NULL);
    g_return_if_fail (GTK_IS_MENU (menu));

    gtk_signal_connect (GTK_OBJECT (menu), "hide",
                GTK_SIGNAL_FUNC (kill_popup_menu), menu);
}

void
e_popup_menu (GtkMenu *menu, GdkEventButton *event)
{
    g_return_if_fail (menu != NULL);
    g_return_if_fail (GTK_IS_MENU (menu));

    e_auto_kill_popup_menu_on_hide (menu);
    gtk_menu_popup (menu, NULL, NULL, 0, NULL, event->button, event->time);
}

GtkWidget *e_create_image_widget(gchar *name,
                 gchar *string1, gchar *string2,
                 gint int1, gint int2)
{
    char *filename;
    GdkPixbuf *pixbuf;
    double width, height;
    GtkWidget *canvas, *alignment;
    if (string1) {
        if (*string1 == '/')
            filename = g_strdup(string1);
        else
            filename = g_concat_dir_and_file(EVOLUTION_IMAGES, string1);
        pixbuf = gdk_pixbuf_new_from_file(filename);
        width = gdk_pixbuf_get_width(pixbuf);
        height = gdk_pixbuf_get_height(pixbuf);

        canvas = gnome_canvas_new_aa();
        GTK_OBJECT_UNSET_FLAGS(GTK_WIDGET(canvas), GTK_CAN_FOCUS);
        gnome_canvas_item_new(gnome_canvas_root(GNOME_CANVAS(canvas)),
                      gnome_canvas_pixbuf_get_type(),

                      "pixbuf", pixbuf,
                      NULL);

        alignment = gtk_widget_new(gtk_alignment_get_type(),
                       "child", canvas,
                       "xalign", (double) 0,
                       "yalign", (double) 0,
                       "xscale", (double) 0,
                       "yscale", (double) 0,
                       NULL);
    
        gtk_widget_set_usize(canvas, width, height);

        gdk_pixbuf_unref(pixbuf);

        gtk_widget_show(canvas);
        gtk_widget_show(alignment);
        g_free(filename);

        return alignment;
    } else
        return NULL;
}

typedef struct {
    GtkCallback callback;
    gpointer closure;
} CallbackClosure;

static void
e_container_foreach_leaf_callback(GtkWidget *widget, CallbackClosure *callback_closure)
{
    if (GTK_IS_CONTAINER(widget)) {
        e_container_foreach_leaf(GTK_CONTAINER(widget), callback_closure->callback, callback_closure->closure);
    } else {
        (*callback_closure->callback) (widget, callback_closure->closure);
    }
}

void
e_container_foreach_leaf(GtkContainer *container,
             GtkCallback callback,
             gpointer closure)
{
    CallbackClosure callback_closure;
    callback_closure.callback = callback;
    callback_closure.closure = closure;
    gtk_container_foreach(container, (GtkCallback) e_container_foreach_leaf_callback, &callback_closure);
}

static void
e_container_change_tab_order_destroy_notify(gpointer data)
{
    GList *list = data;
    g_list_foreach(list, (GFunc) gtk_object_unref, NULL);
    g_list_free(list);
}


static gint
e_container_change_tab_order_callback(GtkContainer *container,
                      GtkDirectionType direction,
                      GList *children)
{
    GtkWidget *focus_child;
    GtkWidget *child;

    if (direction != GTK_DIR_TAB_FORWARD &&
        direction != GTK_DIR_TAB_BACKWARD)
        return FALSE;

    focus_child = container->focus_child;

    if (direction == GTK_DIR_TAB_BACKWARD) {
        children = g_list_last(children);
    }

    while (children) {
        child = children->data;
        if (direction == GTK_DIR_TAB_FORWARD)
            children = children->next;
        else
            children = children->prev;

        if (!child)
            continue;

        if (focus_child) {
            if (focus_child == child) {
                focus_child = NULL;

                if (GTK_WIDGET_DRAWABLE (child) &&
                    GTK_IS_CONTAINER (child) &&
                    !GTK_WIDGET_HAS_FOCUS (child))
                    if (gtk_container_focus (GTK_CONTAINER (child), direction)) {
                        gtk_signal_emit_stop_by_name(GTK_OBJECT(container), "focus");
                        return TRUE;
                    }
            }
        }
        else if (GTK_WIDGET_DRAWABLE (child)) {
            if (GTK_IS_CONTAINER (child)) {
                if (gtk_container_focus (GTK_CONTAINER (child), direction)) {
                    gtk_signal_emit_stop_by_name(GTK_OBJECT(container), "focus");
                    return TRUE;
                }
            }
            else if (GTK_WIDGET_CAN_FOCUS (child)) {
                gtk_widget_grab_focus (child);
                gtk_signal_emit_stop_by_name(GTK_OBJECT(container), "focus");
                return TRUE;
            }
        }
    }

    return FALSE;
}

gint
e_container_change_tab_order(GtkContainer *container, GList *widgets)
{
    GList *list;
    list = g_list_copy(widgets);
    g_list_foreach(list, (GFunc) gtk_object_ref, NULL);
    return gtk_signal_connect_full(GTK_OBJECT(container), "focus",
                       GTK_SIGNAL_FUNC(e_container_change_tab_order_callback),
                       NULL, list,
                       e_container_change_tab_order_destroy_notify,
                       FALSE, FALSE);
}