aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/dlg_utils.h
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2008-04-14 15:01:34 +0000
committerSake Blok <sake@euronet.nl>2008-04-14 15:01:34 +0000
commita287b0f3f5089dab43cdfe9b3fcc0ea3d43491a1 (patch)
tree22cd118718732de749b075b74e0e2950783480c4 /gtk/dlg_utils.h
parentb3838f52b317a2a2806d1fc49566bba554006e4d (diff)
From Jim Young (bug 2212):
Add the profile name to the title of all the configuration windows. (this is a rewrite of Jim's patch) svn path=/trunk/; revision=25016
Diffstat (limited to 'gtk/dlg_utils.h')
-rw-r--r--gtk/dlg_utils.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk/dlg_utils.h b/gtk/dlg_utils.h
index 7985bb631c..62628ad052 100644
--- a/gtk/dlg_utils.h
+++ b/gtk/dlg_utils.h
@@ -79,6 +79,16 @@
*/
extern GtkWidget *dlg_window_new(const gchar *title);
+/** Create a configuration dialog box window that belongs to Wireshark's
+ * main window and add the name of the current profile name to it's title bar
+ * If you want to create a window, use window_new() instead.
+ * See window_new() for general window usage.
+ *
+ * @param title the title for the new dialog
+ * @return the newly created dialog
+ */
+extern GtkWidget *dlg_conf_window_new(const gchar *title);
+
/** Create a button row (with variable number of buttons) for a dialog.
* The button widgets will be available by g_object_get_data(dlg, stock_id) later.
*