wireshark/ui/qt
João Valverde dc7f0b88bb Refactor our logging and extend the wslog API
Experience has shown that:

  1. The current logging methods are not very reliable or practical.
A logging bitmask makes little sense as the user-facing interface (who
would want debug but not crtical messages for example?); it's
computer-friendly and user-unfriendly. More importantly the console
log level preference is initialized too late in the startup process
to be used for the logging subsystem and that fact raises a number
of annoying and hard-to-fix usability issues.

  2. Coding around G_MESSAGES_DEBUG to comply with our log level mask
and not clobber the user's settings or not create unexpected log misses
is unworkable and generally follows the principle of most surprise.
The fact that G_MESSAGES_DEBUG="all" can leak to other programs using
GLib is also annoying.

  3. The non-structured GLib logging API is very opinionated and lacks
configurability beyond replacing the log handler.

  4. Windows GUI has some special code to attach to a console,
but it would be nice to abstract away the rest under a single
interface.

  5. Using this logger seems to be noticeably faster.

Deprecate the console log level preference and extend our API to
implement a log handler in wsutil/wslog.h to provide easy-to-use,
flexible and dependable logging during all execution phases.

Log levels have a hierarchy, from most verbose to least verbose
(debug to error). When a given level is set everything above that
is also enabled.

The log level can be set with an environment variable or a command
line option (parsed as soon as possible but still later than the
environment). The default log level is "message".

Dissector logging is not included because it is not clear what log
domain they should use. An explosion to thousands of domains is
not desirable and putting everything in a single domain is probably
too coarse and noisy. For now I think it makes sense to let them do
their own thing using g_log_default_handler() and continue using the
G_MESSAGES_DEBUG mechanism with specific domains for each individual
dissector.

In the future a mechanism may be added to selectively enable these
domains at runtime while trying to avoid the problems introduced
by G_MESSAGES_DEBUG.
2021-06-11 09:40:28 +00:00
..
manager Qt: Fix various compiler warnings. 2021-04-20 06:11:40 +00:00
models Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
utils RTP Player: Player is able to skip silence during playback 2021-05-03 21:38:48 +00:00
widgets Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
CMakeLists.txt CMake: Set Qt autogen properties for Wireshark. 2021-05-14 07:55:25 +00:00
CMakeListsCustom.txt.example spdx: more licenses converted. 2018-03-07 15:56:44 +00:00
about_dialog.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
about_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
about_dialog.ui About Dialog: Add a copy to clipboard button for the version info 2019-11-16 23:20:43 +00:00
accordion_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
accordion_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
address_editor_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
address_editor_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
address_editor_frame.ui
bluetooth_att_server_attributes_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_att_server_attributes_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_att_server_attributes_dialog.ui Qt, docs, ieee1905: fix some spelling errors 2019-09-21 08:33:58 +00:00
bluetooth_device_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_device_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_device_dialog.ui Bluetooth HCI: Add support for Bluetooth v5.2 2020-01-31 05:13:15 +00:00
bluetooth_devices_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_devices_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_devices_dialog.ui Qt, docs, ieee1905: fix some spelling errors 2019-09-21 08:33:58 +00:00
bluetooth_hci_summary_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_hci_summary_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
bluetooth_hci_summary_dialog.ui
byte_view_tab.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
byte_view_tab.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_event.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
capture_file.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file_properties_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file_properties_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_file_properties_dialog.ui qt: capture file properties: add a splitter 2018-04-11 02:16:34 +00:00
capture_filter_syntax_worker.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_filter_syntax_worker.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_info_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_info_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_info_dialog.ui Qt: Save the Capture Information dialog geometry. 2018-05-16 18:44:59 +00:00
capture_options_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_options_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_options_dialog.ui Qt: Increase ring buffer file number limit 2020-12-04 12:06:03 +00:00
capture_preferences_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
capture_preferences_frame.h prefs: add the option not to load interfaces on startup. 2018-09-26 17:11:47 +00:00
capture_preferences_frame.ui prefs: Remove trailing dot from UI text 2018-09-26 18:22:53 +00:00
coloring_rules_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
coloring_rules_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
coloring_rules_dialog.ui Qt: Convert the rest of the preference dialog list buttons. 2019-06-21 23:51:49 +00:00
column_editor_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
column_editor_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
column_editor_frame.ui
column_preferences_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
column_preferences_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
column_preferences_frame.ui Qt: Move reset to contextmenu 2019-10-22 11:50:20 +00:00
compiled_filter_output.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
compiled_filter_output.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
compiled_filter_output.ui
conversation_colorize_action.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_colorize_action.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_hash_tables_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_hash_tables_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
conversation_hash_tables_dialog.ui
credentials_dialog.cpp Qt: Fix various compiler warnings. 2021-04-20 06:11:40 +00:00
credentials_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
credentials_dialog.ui tap: add credentials tap. 2019-06-26 07:09:54 +00:00
decode_as_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
decode_as_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
decode_as_dialog.ui Qt: Convert the rest of the preference dialog list buttons. 2019-06-21 23:51:49 +00:00
display_filter_expression_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
display_filter_expression_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
display_filter_expression_dialog.ui
dissector_tables_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
dissector_tables_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
dissector_tables_dialog.ui
enabled_protocols_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
enabled_protocols_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
enabled_protocols_dialog.ui Qt: in EnabledProtocolsDialog handle protocol type 2019-09-04 06:45:00 +00:00
endpoint_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
endpoint_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
expert_info_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
expert_info_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
expert_info_dialog.ui
export_dissection_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_dissection_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_object_action.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_object_action.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_object_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_object_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_object_dialog.ui Qt: Refactor ExportObjectsDialog 2019-11-22 05:10:16 +00:00
export_pdu_dialog.cpp Clean up "Export PDUs to File" code. 2021-03-14 06:51:36 -07:00
export_pdu_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
export_pdu_dialog.ui
extcap_argument.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
extcap_argument.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_argument_file.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_argument_file.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_argument_multiselect.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_argument_multiselect.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_options_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_options_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
extcap_options_dialog.ui Correct typo in Extcap-Options-Dialog 2019-08-03 10:50:36 +00:00
file_set_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
file_set_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
file_set_dialog.ui
filter_action.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
filter_action.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
filter_dialog.cpp Qt: add display filter - invalid new filter syntax 2021-06-07 13:36:20 +00:00
filter_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
filter_dialog.ui Qt: Allow drag/drop of filter buttons in dialog 2019-10-29 19:44:15 +00:00
filter_expression_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
filter_expression_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
filter_expression_frame.ui
firewall_rules_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
firewall_rules_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
firewall_rules_dialog.ui
follow_stream_dialog.cpp Follow stream: Modify YAML format, add timestamps and peers 2021-05-25 08:09:31 +00:00
follow_stream_dialog.h Follow stream: Modify YAML format, add timestamps and peers 2021-05-25 08:09:31 +00:00
follow_stream_dialog.ui UI: Follow Stream "Show and save data as" -> "Show data as" 2020-08-09 23:56:13 +00:00
font_color_preferences_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
font_color_preferences_frame.h Qt: Do not spin unnecessary additional event loops 2019-10-01 03:53:46 +00:00
font_color_preferences_frame.ui Qt: Selected item preference updates. 2019-06-12 17:10:35 +00:00
funnel_statistics.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
funnel_statistics.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
funnel_string_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
funnel_string_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
funnel_string_dialog.ui
funnel_text_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
funnel_text_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
funnel_text_dialog.ui
geometry_state_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
geometry_state_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
gpl-template.txt Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
gsm_map_summary_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
gsm_map_summary_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
gsm_map_summary_dialog.ui
i18n.qrc.in
iax2_analysis_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
iax2_analysis_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
iax2_analysis_dialog.ui
import_text_dialog.cpp Regex based textfile import 2021-03-26 06:44:25 +00:00
import_text_dialog.h Regex based textfile import 2021-03-26 06:44:25 +00:00
import_text_dialog.ui Regex text import: fixed ui deviations 2021-03-26 06:44:25 +00:00
interface_frame.cpp Merge the caputils/ and capchild/ directories 2021-03-29 06:08:02 +01:00
interface_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
interface_frame.ui Qt: Make it possible to hide welcome screen warnings. 2020-02-07 07:36:03 +00:00
interface_toolbar.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
interface_toolbar.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
interface_toolbar.ui
interface_toolbar_reader.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
interface_toolbar_reader.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
io_graph_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
io_graph_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
io_graph_dialog.ui Qt: Add a splitter to the I/O Graphs dialog. 2020-01-13 07:42:55 +00:00
layout_preferences_frame.cpp Qt: Add checkbox for enabling/disabling packet-list hover_style 2021-04-21 08:36:27 +00:00
layout_preferences_frame.h Qt: Add checkbox for enabling/disabling packet-list hover_style 2021-04-21 08:36:27 +00:00
layout_preferences_frame.ui Qt: Add checkbox for enabling/disabling packet-list hover_style 2021-04-21 08:36:27 +00:00
lbm_lbtrm_transport_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_lbtrm_transport_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_lbtrm_transport_dialog.ui
lbm_lbtru_transport_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_lbtru_transport_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_lbtru_transport_dialog.ui
lbm_stream_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_stream_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lbm_stream_dialog.ui
lte_mac_statistics_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
lte_mac_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lte_rlc_graph_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
lte_rlc_graph_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
lte_rlc_graph_dialog.ui
lte_rlc_statistics_dialog.cpp Qt: Fix various compiler warnings. 2021-04-20 06:11:40 +00:00
lte_rlc_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
main.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
main_status_bar.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
main_status_bar.h Merge the caputils/ and capchild/ directories 2021-03-29 06:08:02 +01:00
main_window.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
main_window.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
main_window.ui Bugfix: Added Analyze -> SCTP -> Filter this Association 2021-05-28 16:35:05 +00:00
main_window_layout.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
main_window_preferences_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
main_window_preferences_frame.h Qt: Add window title settings the preferences dialog 2020-02-10 07:45:57 +00:00
main_window_preferences_frame.ui Qt: Restore space and add tooltips 2020-02-12 07:50:41 +00:00
main_window_slots.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
manage_interfaces_dialog.cpp Merge the caputils/ and capchild/ directories 2021-03-29 06:08:02 +01:00
manage_interfaces_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
manage_interfaces_dialog.ui Qt: Convert the rest of the preference dialog list buttons. 2019-06-21 23:51:49 +00:00
module_preferences_scroll_area.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
module_preferences_scroll_area.h Qt: Open our preference dialogs via "clicked" signals. 2018-12-19 18:13:35 +00:00
module_preferences_scroll_area.ui
mtp3_summary_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
mtp3_summary_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
mtp3_summary_dialog.ui
multicast_statistics_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
multicast_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
packet_comment_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
packet_comment_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
packet_comment_dialog.ui
packet_diagram.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
packet_diagram.h Qt: Handle palette changes in the packet diagram. 2020-09-28 23:56:08 +00:00
packet_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
packet_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
packet_dialog.ui
packet_format_group_box.cpp Change the print preview if "include column headings" changes. 2018-07-06 00:11:41 +00:00
packet_format_group_box.h Change the print preview if "include column headings" changes. 2018-07-06 00:11:41 +00:00
packet_format_group_box.ui Add a "Include column headings" checkbox in export dissections and print. 2018-07-05 23:49:47 +00:00
packet_list.cpp Qt: Add checkbox for enabling/disabling packet-list hover_style 2021-04-21 08:36:27 +00:00
packet_list.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
packet_range_group_box.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
packet_range_group_box.h Qt: Multiselection in PacketList 2019-11-17 12:20:29 +00:00
packet_range_group_box.ui
preference_editor_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
preference_editor_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
preference_editor_frame.ui Qt: Handle filenames in preference editor frame 2020-07-03 06:12:48 +00:00
preferences_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
preferences_dialog.h Qt: Debounce Preferences -> Advanced menu's "Search" to improve UX 2021-01-12 22:11:47 +00:00
preferences_dialog.ui Qt: add initial RSA Keys preference frame 2019-01-29 23:34:01 +00:00
print_dialog.cpp QT Print Dialog: Make header optional 2021-04-03 14:54:00 +00:00
print_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
print_dialog.ui QT Print Dialog: Make header optional 2021-04-03 14:54:00 +00:00
profile_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
profile_dialog.h Qt: Update UI for profiles and handle export/import properly 2019-08-02 21:38:02 +00:00
profile_dialog.ui Qt, docs, ieee1905: fix some spelling errors 2019-09-21 08:33:58 +00:00
progress_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
progress_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
progress_frame.ui QT: progress UI: Fix TextLabel string to loading 2020-11-04 19:24:36 +00:00
proto_tree.cpp Qt: URLs to Display Filter Reference and Wiki Protocol pages 2021-05-01 08:55:28 +00:00
proto_tree.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
protocol_hierarchy_dialog.cpp Qt: Protocol Hierarchy - protocol abbrev tooltip 2021-06-09 04:52:29 +00:00
protocol_hierarchy_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
protocol_hierarchy_dialog.ui
protocol_preferences_menu.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
protocol_preferences_menu.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
recent_file_status.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
recent_file_status.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
remote_capture_dialog.cpp Merge the caputils/ and capchild/ directories 2021-03-29 06:08:02 +01:00
remote_capture_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
remote_capture_dialog.ui
remote_settings_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
remote_settings_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
remote_settings_dialog.ui
resolved_addresses_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
resolved_addresses_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
resolved_addresses_dialog.ui Qt: Rework Resolved Addresses dialog 2019-09-01 09:02:51 +00:00
response_time_delay_dialog.cpp Get rid of some GTK+-only stuff. 2018-05-12 23:01:14 +00:00
response_time_delay_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
rpc_service_response_time_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
rpc_service_response_time_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
rsa_keys_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
rsa_keys_frame.h Fix build without GnuTLS 2019-01-31 13:14:22 +00:00
rsa_keys_frame.ui Qt: Add support for RSA private key file selection 2019-01-29 23:34:14 +00:00
rtp_analysis_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
rtp_analysis_dialog.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
rtp_analysis_dialog.ui VoIP dialogs: Improvements and new functions 2021-04-15 21:19:51 +00:00
rtp_audio_stream.cpp RTP Player: Player is able to skip silence during playback 2021-05-03 21:38:48 +00:00
rtp_audio_stream.h RTP Player: Player is able to skip silence during playback 2021-05-03 21:38:48 +00:00
rtp_player_dialog.cpp VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
rtp_player_dialog.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
rtp_player_dialog.ui Qt UI: fix AutoUic warning 'The name 'label' (QLabel) is already in use' 2021-05-05 22:09:35 +02:00
rtp_stream_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
rtp_stream_dialog.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
rtp_stream_dialog.ui Add min/mean delta and min jitter, to the RTP analysis. 2021-05-02 19:58:59 +00:00
scsi_service_response_time_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
scsi_service_response_time_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_all_assocs_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_all_assocs_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_all_assocs_dialog.ui Further SCTP Analysis dialog layout improvements. 2021-04-21 04:16:27 +00:00
sctp_assoc_analyse_dialog.cpp Fixed typo. 2021-04-21 04:16:27 +00:00
sctp_assoc_analyse_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_assoc_analyse_dialog.ui More SCTP Analysis GUI layout fixes. 2021-04-21 04:16:27 +00:00
sctp_chunk_statistics_dialog.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
sctp_chunk_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_chunk_statistics_dialog.ui Further SCTP Analysis dialog layout improvements. 2021-04-21 04:16:27 +00:00
sctp_graph_arwnd_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_graph_arwnd_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_graph_arwnd_dialog.ui Further SCTP Analysis dialog layout improvements. 2021-04-21 04:16:27 +00:00
sctp_graph_byte_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_graph_byte_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_graph_byte_dialog.ui Further SCTP Analysis dialog layout improvements. 2021-04-21 04:16:27 +00:00
sctp_graph_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
sctp_graph_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sctp_graph_dialog.ui SCTP: Add a checkbox to show relative TSNs 2018-06-08 10:23:34 +00:00
search_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
search_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
search_frame.ui Enable display filter autocomplete on find packet search. 2020-07-05 07:46:41 +00:00
sequence_diagram.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sequence_diagram.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
sequence_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
sequence_dialog.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
sequence_dialog.ui VoIP Calls: Streams related to calls can be selected in RTP Streams 2021-04-19 20:04:05 +00:00
service_response_time_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
service_response_time_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
show_packet_bytes_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
show_packet_bytes_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
show_packet_bytes_dialog.ui Qt: Enable select hint text in Show Packet Bytes 2018-08-23 12:18:09 +00:00
simple_dialog.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
simple_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
simple_statistics_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
simple_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
stats_tree_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
stats_tree_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
supported_protocols_dialog.cpp
supported_protocols_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
supported_protocols_dialog.ui
tabnav_tree_widget.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
tabnav_tree_widget.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
tap_parameter_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
tap_parameter_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
tap_parameter_dialog.ui
tcp_stream_dialog.cpp Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
tcp_stream_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
tcp_stream_dialog.ui Qt, http2: Add Follow HTTP/2 Stream functionality 2019-09-22 05:29:30 +00:00
time_shift_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
time_shift_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
time_shift_dialog.ui
traffic_table_dialog.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
traffic_table_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
traffic_table_dialog.ui
uat_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
uat_dialog.h Qt: UAT editor column widths, italic pathname 2020-12-04 09:33:10 +00:00
uat_dialog.ui Qt: Convert the list management icons to templates. 2019-06-20 20:50:25 +00:00
uat_frame.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
uat_frame.h Qt: UAT editor column widths, italic pathname 2020-12-04 09:33:10 +00:00
uat_frame.ui Qt: Move CopyFrom from menu to button 2019-08-26 06:34:31 +00:00
voip_calls_dialog.cpp VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
voip_calls_dialog.h VoIP Dialogs: Refactoring of singleton windows to factory methods 2021-05-22 03:08:46 +00:00
voip_calls_dialog.ui VoIP Calls: Streams related to calls can be selected in RTP Streams 2021-04-19 20:04:05 +00:00
welcome_page.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
welcome_page.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
welcome_page.ui Clean up URLs. 2020-10-02 20:13:42 -07:00
wireless_frame.cpp Merge the caputils/ and capchild/ directories 2021-03-29 06:08:02 +01:00
wireless_frame.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
wireless_frame.ui
wireshark_application.cpp Refactor our logging and extend the wslog API 2021-06-11 09:40:28 +00:00
wireshark_application.h Qt: Give a directory to wsApp->setLastOpenDir() 2021-06-07 13:52:59 +00:00
wireshark_de.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_dialog.cpp Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
wireshark_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00
wireshark_en.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_es.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_fr.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_it.ts [Automatic update for 2021-05-16] 2021-05-16 09:29:06 +00:00
wireshark_ja_JP.ts [Automatic update for 2021-05-30] 2021-05-30 17:17:00 +00:00
wireshark_pl.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_ru.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_sv.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_uk.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wireshark_zh_CN.ts [Automatic update for 2021-05-09] 2021-05-09 09:29:13 +00:00
wlan_statistics_dialog.cpp Qt: Fix various missing prototype warnings. 2021-04-16 22:25:22 +00:00
wlan_statistics_dialog.h Remove modelines in ui/qt. 2021-03-08 18:11:32 +00:00