aboutsummaryrefslogtreecommitdiffstats
path: root/gtk2/ui_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2/ui_util.h')
-rw-r--r--gtk2/ui_util.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/gtk2/ui_util.h b/gtk2/ui_util.h
deleted file mode 100644
index 977e7a42f1..0000000000
--- a/gtk2/ui_util.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* ui_util.h
- * Definitions for UI utility routines
- *
- * $Id: ui_util.h,v 1.2 2002/09/14 10:07:40 oabad Exp $
- *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@ethereal.com>
- * Copyright 1998 Gerald Combs
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __GTKGUIUI_UTIL_H__
-#define __GTKGUIUI_UTIL_H__
-
-/* Given a pointer to a GtkWidget for a top-level window, raise it and
- de-iconify it. This routine is used if the user has done something to
- ask that a window of a certain type be popped up when there can be only
- one such window and such a window has already been popped up - we
- pop up the existing one rather than creating a new one. */
-void reactivate_window(GtkWidget *);
-
-/* Set the window icon to the 16x16 3D icon. */
-void window_icon_realize_cb (GtkWidget *, gpointer);
-
-/* Create a GtkScrolledWindow, set its scrollbar placement appropriately,
- and remember it. */
-GtkWidget *scrolled_window_new(GtkAdjustment *hadjustment,
- GtkAdjustment *vadjustment);
-
-/* Set the scrollbar placement of all scrolled windows based on user
- preference. */
-void set_scrollbar_placement_all(void);
-
-/* Create a GtkTreeView, give it the right styles, and remember it. */
-GtkWidget *tree_view_new(GtkTreeModel *model);
-
-/* Set the styles of all GtkTreeViews based upon user preferences. */
-void set_tree_view_styles_all(void);
-
-#endif /* __GTKGUIUI_UTIL_H__ */