aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-gui-utils.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-02-14 10:00:23 +0800
committernobody <nobody@localhost>2000-02-14 10:00:23 +0800
commite293db6dfb3b21244742ecb5433a03466edb5bc6 (patch)
tree610cbf6a41e89796140e81720a52d90501b1d8d3 /e-util/e-gui-utils.c
parentadd8821e99b4ea1b574ed469018ae224a542e6ae (diff)
downloadgsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar.gz
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar.bz2
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar.lz
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar.xz
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.tar.zst
gsoc2013-evolution-e293db6dfb3b21244742ecb5433a03466edb5bc6.zip
This commit was manufactured by cvs2svn to create branch 'HELIX'.
svn path=/branches/HELIX/; revision=1769
Diffstat (limited to 'e-util/e-gui-utils.c')
-rw-r--r--e-util/e-gui-utils.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/e-util/e-gui-utils.c b/e-util/e-gui-utils.c
deleted file mode 100644
index 7d9f4d49d9..0000000000
--- a/e-util/e-gui-utils.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * 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 "e-gui-utils.h"
-
-void
-e_notice (GtkWindow *window, const char *type, const char *str)
-{
- GtkWidget *dialog;
-
- dialog = gnome_message_box_new (str, type, GNOME_STOCK_BUTTON_OK, NULL);
-
- 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);
-}
-
-