aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/ui_util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-07 05:36:10 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-07 05:36:10 +0000
commit4077cb9b5b06ad8405014f009a3a72f9dca367c9 (patch)
tree92c89a10eb9e9987b50094dc9aa8ff7df4e4dcc0 /gtk/ui_util.h
parent696197a940443ecb3a087a82e65a4ebc1693f4d5 (diff)
Get rid of the splash screen's title bar on GTK+ 1.2[.x] as well.
svn path=/trunk/; revision=11329
Diffstat (limited to 'gtk/ui_util.h')
-rw-r--r--gtk/ui_util.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/gtk/ui_util.h b/gtk/ui_util.h
index 64747556d5..4100ece8c3 100644
--- a/gtk/ui_util.h
+++ b/gtk/ui_util.h
@@ -1,7 +1,7 @@
/* ui_util.h
* Definitions for UI utility routines
*
- * $Id: ui_util.h,v 1.15 2004/07/04 12:15:41 ulfl Exp $
+ * $Id: ui_util.h,v 1.16 2004/07/07 05:36:10 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -105,7 +105,7 @@
*/
extern GtkWidget *window_new(GtkWindowType type, const gchar *title);
-/** Same as window_new(), but will keep it's geometry values (size, position, ...).
+/** Same as window_new(), but will keep its geometry values (size, position, ...).
* Be sure to use window_present() and window_destroy() appropriately!
*
* @param type window type, typical GTK_WINDOW_TOPLEVEL
@@ -115,6 +115,12 @@ extern GtkWidget *window_new(GtkWindowType type, const gchar *title);
*/
extern GtkWidget *window_new_with_geom(GtkWindowType type, const gchar *title, const gchar *geom_name);
+/** Create a new splash window, with no icon or title bar.
+ *
+ * @return the newly created window
+ */
+extern GtkWidget *splash_window_new(void);
+
/** Present the created window on the top of the screen. This will put the window on top and
* (if available) set previously saved position and size.
*