Note that for THE3GPP_IPV6_DNS_SERVERS we probably *do* need to handle
[obnox/wireshark/wip.git] / progress_dlg.h
index 2afb7ef31a3dc3d6e4405642073b38f38f64b93b..2cac3c0c76ba13fbbd5f9527b3891ac5dcf1723b 100644 (file)
@@ -1,23 +1,22 @@
 /* progress_dlg.h
  * Definitions for progress dialog box routines
  *
- * $Id: progress_dlg.h,v 1.2 2002/07/30 10:13:14 guy Exp $
+ * $Id: progress_dlg.h,v 1.6 2004/01/21 22:00:28 ulfl Exp $
  *
  * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * 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.
@@ -40,12 +39,12 @@ typedef struct progdlg progdlg_t;
  * needs in order to manipulate the dialog, and return a pointer to
  * it.
  *
- * The first argument is the title to give the dialog box; the second
- * argument is the string to put in the "stop this operation" button;
- * the third argument is a pointer to a Boolean variable that will be
- * set to TRUE if the user hits that button.
+ * The first argument is the task to do, e.g. "Loading".
+ * The second argument is the item to do, e.g. "capture.cap".
+ * The third argument is a pointer to a Boolean variable that will be
+ *   set to TRUE if the user hits that button.
  */
-progdlg_t *create_progress_dlg(const gchar *title, const gchar *stop_title,
+progdlg_t *create_progress_dlg(const gchar *task_title, const gchar *item_title,
     gboolean *stop_flag);
 
 /* Create a progress dialog, but only if it's not likely to disappear
@@ -56,14 +55,14 @@ progdlg_t *create_progress_dlg(const gchar *title, const gchar *stop_title,
  * the time at which the caller started to process the data, and the
  * current progress (0..1).
  */
-progdlg_t *delayed_create_progress_dlg(const gchar *title,
-    const gchar *stop_title, gboolean *stop_flag, GTimeVal *start_time,
-    gfloat progress);
+progdlg_t *
+delayed_create_progress_dlg(const gchar *task_title, const gchar *item_title,
+    gboolean *stop_flag, const GTimeVal *start_time, gfloat progress);
 
 /*
- * Set the percentage value of the progress bar.
+ * Update the progress information of the progress dialog box.
  */
-void update_progress_dlg(progdlg_t *dlg, gfloat percentage);
+void update_progress_dlg(progdlg_t *dlg, gfloat percentage, gchar *status);
 
 /*
  * Destroy the progress bar.