Wireshark  4.3.0
The Wireshark network protocol analyzer
progress_dlg.h
Go to the documentation of this file.
1 
12 #ifndef __PROGRESS_DLG_H__
13 #define __PROGRESS_DLG_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
25 struct progdlg;
26 
28 typedef struct progdlg progdlg_t;
29 
47 progdlg_t *create_progress_dlg(gpointer top_level_window, const gchar *task_title, const gchar *item_title,
48  gboolean terminate_is_stop, gboolean *stop_flag);
49 
66 progdlg_t *delayed_create_progress_dlg(gpointer top_level_window, const gchar *task_title, const gchar *item_title,
67  gboolean terminate_is_stop, gboolean *stop_flag, gfloat progress);
68 
76 void update_progress_dlg(progdlg_t *dlg, gfloat percentage, const gchar *status);
77 
84 
85 #ifdef __cplusplus
86 }
87 #endif /* __cplusplus */
88 
89 #endif /* __PROGRESS_DLG_H__ */
progdlg_t * create_progress_dlg(gpointer top_level_window, const gchar *task_title, const gchar *item_title, gboolean terminate_is_stop, gboolean *stop_flag)
Definition: progress_frame.cpp:31
void update_progress_dlg(progdlg_t *dlg, gfloat percentage, const gchar *status)
Definition: progress_frame.cpp:73
void destroy_progress_dlg(progdlg_t *dlg)
Definition: progress_frame.cpp:89
progdlg_t * delayed_create_progress_dlg(gpointer top_level_window, const gchar *task_title, const gchar *item_title, gboolean terminate_is_stop, gboolean *stop_flag, gfloat progress)
Definition: progress_frame.cpp:60
Definition: progress_frame.h:33