diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/main_statusbar.h | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/main_statusbar.h')
-rw-r--r-- | ui/main_statusbar.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/ui/main_statusbar.h b/ui/main_statusbar.h new file mode 100644 index 00000000..c8dd3c0e --- /dev/null +++ b/ui/main_statusbar.h @@ -0,0 +1,62 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __MAIN_STATUSBAR_H__ +#define __MAIN_STATUSBAR_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +void profile_bar_update(void); +void packets_bar_update(void); +void status_expert_update(void); + +/** Update the capture comment icon in the statusbar, depending on the + * current capture comment (XXX - it's only available for GTK at the moment) + */ +void status_capture_comment_update(void); + +/** Push a formatted message referring to the currently-selected field + * onto the statusbar. + * + * @param msg_format The format string for the message + */ +void statusbar_push_field_msg(const gchar *msg_format, ...) + G_GNUC_PRINTF(1, 2); + +/** Pop a message referring to the currently-selected field off the statusbar. + */ +void statusbar_pop_field_msg(void); + +/** Push a formatted message referring to the current filter onto the + * statusbar. + * + * @param msg_format The format string for the message + */ +void statusbar_push_filter_msg(const gchar *msg_format, ...) + G_GNUC_PRINTF(1, 2); + +/** Pop a message referring to the current filter off the statusbar. + */ +void statusbar_pop_filter_msg(void); + +/** Push a formatted temporary message onto the statusbar. The message + * is automatically removed at a later interval. + * + * @param msg_format The format string for the message + */ +void statusbar_push_temporary_msg(const gchar *msg_format, ...) + G_GNUC_PRINTF(1, 2); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __MAIN_STATUSBAR_H__ */ |