wireshark/ui/qt
Guy Harris a7256d50b5 wiretap: more work on file type/subtypes.
Provide a wiretap routine to get an array of all savable file
type/subtypes, sorted with pcap and pcapng at the top, followed by the
other types, sorted either by the name or the description.

Use that routine to list options for the -F flag for various commands

Rename wtap_get_savable_file_types_subtypes() to
wtap_get_savable_file_types_subtypes_for_file(), to indicate that it
provides an array of all file type/subtypes in which a given file can be
saved.  Have it sort all types, other than the default type/subtype and,
if there is one, the "other" type (both of which are put at the top), by
the name or the description.

Don't allow wtap_register_file_type_subtypes() to override any existing
registrations; have them always register a new type.  In that routine,
if there are any emply slots in the table, due to an entry being
unregistered, use it rather than allocating a new slot.

Don't allow unregistration of built-in types.

Rename the "dump open table" to the "file type/subtype table", as it has
entries for all types/subtypes, even if we can't write them.

Initialize that table in a routine that pre-allocates the GArray before
filling it with built-in types/subtypes, so it doesn't keep getting
reallocated.

Get rid of wtap_num_file_types_subtypes - it's just a copy of the size
of the GArray.

Don't have wtap_file_type_subtype_description() crash if handed an
file type/subtype that isn't a valid array index - just return NULL, as
we do with wtap_file_type_subtype_name().

In wtap_name_to_file_type_subtype(), don't use WTAP_FILE_TYPE_SUBTYPE_
names for the backwards-compatibility names - map those names to the
current names, and then look them up.  This reduces the number of
uses of hardwired WTAP_FILE_TYPE_SUBTYPE_ values.

Clean up the type of wtap_module_count - it has no need to be a gulong.

Have built-in wiretap file handlers register names to be used for their
file type/subtypes, rather than building the table in init.lua.

Add a new Lua C function get_wtap_filetypes() to construct the
wtap_filetypes table, based on the registered names, and use it in
init.lua.

Add a #define WSLUA_INTERNAL_FUNCTION to register functions intended
only for internal use in init.lua, so they can be made available from
Lua without being documented.

Get rid of WTAP_NUM_FILE_TYPES_SUBTYPES - most code has no need to use
it, as it can just request arrays of types, and the space of
type/subtype codes can be sparse due to registration in any case, so
code has to be careful using it.

wtap_get_num_file_types_subtypes() is no longer used, so remove it.  It
returns the number of elements in the file type/subtype array, which is
not necessarily the name of known file type/subtypes, as there may have
been some deregistered types, and those types do *not* get removed from
the array, they just get cleared so that they're available for future
allocation (we don't want the indices of any registered types to changes
if another type is deregistered, as those indicates are the type/subtype
values, so we can't shrink the array).

Clean up white space and remove some comments that shouldn't have been
added.
2021-02-17 21:54:28 +00:00
..
manager Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
models Qt: Do not use obsolete functions 2021-02-15 15:22:55 +01:00
utils Qt: Do not use obsolete functions 2021-02-15 15:22:55 +01:00
widgets Qt: Do not use obsolete functions 2021-02-15 15:22:55 +01:00
CMakeLists.txt CMake: Make sure system headers are treated as such. 2021-02-15 08:31:08 +00:00
CMakeListsCustom.txt.example spdx: more licenses converted. 2018-03-07 15:56:44 +00:00
about_dialog.cpp Qt: enable sorting for Help->About tables 2020-11-10 07:52:18 +00:00
about_dialog.h About Dialog: Add a copy to clipboard button for the version info 2019-11-16 23:20:43 +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 Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
accordion_frame.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
address_editor_frame.cpp Qt: Improve status bar messages 2020-07-18 04:02:23 +00:00
address_editor_frame.h Edit Resolved Name: Don't add duplicate IPs 2020-02-24 07:45:00 +00:00
address_editor_frame.ui
bluetooth_att_server_attributes_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
bluetooth_att_server_attributes_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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 Qt: Fix filling bluetooth device address 2020-04-19 14:44:27 +00:00
bluetooth_device_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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 Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
bluetooth_devices_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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 Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
bluetooth_hci_summary_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
bluetooth_hci_summary_dialog.ui
byte_view_tab.cpp Qt: Update ByteView recent settings on all tabs 2020-07-03 06:11:56 +00:00
byte_view_tab.h Qt: Update ByteView recent settings on all tabs 2020-07-03 06:11:56 +00:00
capture_event.h Qt: expose CaptureEvent definition for MOC 2018-04-18 12:06:21 +00:00
capture_file.cpp Set member variables in initialiser list (rather than in CTOR bodies). 2020-06-30 12:11:15 +00:00
capture_file.h Use the file *base* name for statistics graphs etc.. 2018-07-06 00:31:45 +00:00
capture_file_dialog.cpp wiretap: more work on file type/subtypes. 2021-02-17 21:54:28 +00:00
capture_file_dialog.h Qt+macOS: Add /Volumes to the file dialog sidebar. 2019-11-26 05:37:37 +00:00
capture_file_properties_dialog.cpp wiretap: file types have a name and a description. 2021-02-13 01:25:39 -08:00
capture_file_properties_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +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 UI: Fix compilation with Qt 5.14 2019-12-21 20:25:51 +00:00
capture_filter_syntax_worker.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
capture_info_dialog.cpp UI: Fix compilation with Qt 5.14 2019-12-21 20:25:51 +00:00
capture_info_dialog.h UI: Fix compilation with Qt 5.14 2019-12-21 20:25:51 +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 Qt: CaptureOptionsDialog: set parent for SparkLineDelegate 2020-11-29 16:59:17 +00:00
capture_options_dialog.h Qt: Rename the Capture Interfaces dialog to Capture Options. 2019-12-03 03:16:16 +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 Qt: Fix no interface load preference handling 2019-05-15 21:47:06 +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 Qt: Allow color filters to use all valid display filters 2020-12-30 21:09:09 +00:00
coloring_rules_dialog.h Qt: Do not spin unnecessary additional event loops 2019-10-01 03:53:46 +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 Qt: Cleanup push/pop Infos 2019-11-12 22:03:23 +00:00
column_editor_frame.h Qt: Cleanup push/pop Infos 2019-11-12 22:03:23 +00:00
column_editor_frame.ui
column_preferences_frame.cpp ColumnPreferencesFrame: fix memory leaks 2020-04-19 14:43:57 +00:00
column_preferences_frame.h ColumnPreferencesFrame: fix memory leaks 2020-04-19 14:43:57 +00:00
column_preferences_frame.ui Qt: Move reset to contextmenu 2019-10-22 11:50:20 +00:00
compiled_filter_output.cpp Qt: Rename the Capture Interfaces dialog to Capture Options. 2019-12-03 03:16:16 +00:00
compiled_filter_output.h HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
compiled_filter_output.ui
conversation_colorize_action.cpp epan: Rename dissector_filters.c to conversation_filter.c 2019-11-04 10:17:16 +00:00
conversation_colorize_action.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
conversation_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
conversation_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
conversation_hash_tables_dialog.cpp WSUG: Fixup the "Internals" section. 2018-08-21 22:57:12 +00:00
conversation_hash_tables_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
conversation_hash_tables_dialog.ui
credentials_dialog.cpp UI: Fix compilation with Qt 5.14 2019-12-21 20:25:51 +00:00
credentials_dialog.h Qt: Credentials move tap to dialog 2019-07-03 21:12:25 +00:00
credentials_dialog.ui tap: add credentials tap. 2019-06-26 07:09:54 +00:00
decode_as_dialog.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
decode_as_dialog.h Qt: Add copy from another profile for Decode As 2020-07-02 06:13:27 +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 Qt: Fix loading of FilterExpression Dialog 2019-11-07 18:30:21 +00:00
display_filter_expression_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
display_filter_expression_dialog.ui
dissector_tables_dialog.cpp replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
dissector_tables_dialog.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
dissector_tables_dialog.ui
enabled_protocols_dialog.cpp UI: Fix compilation with Qt 5.14 2019-12-21 20:25:51 +00:00
enabled_protocols_dialog.h Qt: in EnabledProtocolsDialog handle protocol type 2019-09-04 06:45:00 +00:00
enabled_protocols_dialog.ui Qt: in EnabledProtocolsDialog handle protocol type 2019-09-04 06:45:00 +00:00
endpoint_dialog.cpp dup() can fail; check whether it does. 2021-01-18 23:31:27 -08:00
endpoint_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
expert_info_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
expert_info_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
expert_info_dialog.ui
export_dissection_dialog.cpp Qt: Fix export of dissection 2020-04-27 16:00:03 +00:00
export_dissection_dialog.h Qt: Fix export of dissection 2020-04-27 16:00:03 +00:00
export_object_action.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
export_object_action.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
export_object_dialog.cpp Be more strict about opening URLs. 2021-02-15 08:47:57 +00:00
export_object_dialog.h Be more strict about opening URLs. 2021-02-15 08:47:57 +00:00
export_object_dialog.ui Qt: Refactor ExportObjectsDialog 2019-11-22 05:10:16 +00:00
export_pdu_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
export_pdu_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
export_pdu_dialog.ui
extcap_argument.cpp Qt: Do not use obsolete functions 2021-02-15 15:22:55 +01:00
extcap_argument.h Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
extcap_argument_file.cpp Qt: Allow creating new files in extcap fileselect 2020-02-15 15:43:32 +00:00
extcap_argument_file.h Qt: Allow creating new files in extcap fileselect 2020-02-15 15:43:32 +00:00
extcap_argument_multiselect.cpp Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
extcap_argument_multiselect.h Qt: Display checkboxes for extcap multicheck 2019-04-13 20:56:39 +00:00
extcap_options_dialog.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
extcap_options_dialog.h Qt: Omit calls without values on selector reload 2019-04-26 03:48:39 +00:00
extcap_options_dialog.ui Correct typo in Extcap-Options-Dialog 2019-08-03 10:50:36 +00:00
file_set_dialog.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
file_set_dialog.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
file_set_dialog.ui
filter_action.cpp Consistent "Prepare as Filter" - menus and screenshots #16892 2020-10-15 09:18:56 +00:00
filter_action.h Qt: Extend filterbutton context menu 2019-08-29 11:44:16 +00:00
filter_dialog.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
filter_dialog.h Qt: Ensure only valid input for DisplayFilter 2019-11-06 19:19:40 +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 Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
filter_expression_frame.h Qt: Cleanup push/pop Infos 2019-11-12 22:03:23 +00:00
filter_expression_frame.ui
firewall_rules_dialog.cpp Windows: Make sure more native dialogs handle HiDPI. 2018-05-16 04:22:20 +00:00
firewall_rules_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
firewall_rules_dialog.ui
follow_stream_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
follow_stream_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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 Qt+tools: Fix most of our lupdate warnings. 2021-01-18 16:56:20 +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: Support ampersand in funnel menu and button 2020-11-02 07:16:42 +00:00
funnel_statistics.h funnel: Remove unused typedefs 2020-12-30 11:02:41 +00:00
funnel_string_dialog.cpp funnel: Free callback data 2019-11-05 15:21:30 +00:00
funnel_string_dialog.h funnel: Free callback data 2019-11-05 15:21:30 +00:00
funnel_string_dialog.ui
funnel_text_dialog.cpp Qt: Support ampersand in funnel menu and button 2020-11-02 07:16:42 +00:00
funnel_text_dialog.h Qt: Support ampersand in funnel menu and button 2020-11-02 07:16:42 +00:00
funnel_text_dialog.ui
geometry_state_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
geometry_state_dialog.h Update URLs pointing to the bug database. 2020-10-03 07:54:12 -07:00
gpl-template.txt Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
gsm_map_summary_dialog.cpp wiretap: file types have a name and a description. 2021-02-13 01:25:39 -08:00
gsm_map_summary_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
gsm_map_summary_dialog.ui
i18n.qrc.in
iax2_analysis_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
iax2_analysis_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
iax2_analysis_dialog.ui
import_text_dialog.cpp Fix the way we get high-resolution time. 2020-12-20 13:31:57 -08:00
import_text_dialog.h import: add export_pdu dummy header feature. 2018-10-31 13:17:10 +00:00
import_text_dialog.ui Qt, docs, ieee1905: fix some spelling errors 2019-09-21 08:33:58 +00:00
interface_frame.cpp dumpcap: fix the macOS "no permission to capture" message. 2020-10-24 00:44:36 -07:00
interface_frame.h Qt: Make it possible to hide welcome screen warnings. 2020-02-07 07:36:03 +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 Qt: Improve status bar messages 2020-07-18 04:02:23 +00:00
interface_toolbar.h Qt: Convert more "pressed" signals to "clicked". 2018-12-19 20:59:00 +00:00
interface_toolbar.ui
interface_toolbar_reader.cpp Eliminate some unneeded header checks. 2018-05-16 22:03:09 +00:00
interface_toolbar_reader.h Set member variables in initialiser list (rather than in CTOR bodies). 2020-06-30 12:11:15 +00:00
io_graph_dialog.cpp Initial try at y_axis_factor for I/O graph 2020-12-04 20:57:47 +00:00
io_graph_dialog.h Initial try at y_axis_factor for I/O graph 2020-12-04 20:57:47 +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 a packet diagram view. 2020-08-10 18:17:50 +00:00
layout_preferences_frame.h Qt: Add a packet diagram view. 2020-08-10 18:17:50 +00:00
layout_preferences_frame.ui Qt: Add a packet diagram view. 2020-08-10 18:17:50 +00:00
lbm_lbtrm_transport_dialog.cpp HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_lbtrm_transport_dialog.h HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_lbtrm_transport_dialog.ui
lbm_lbtru_transport_dialog.cpp HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_lbtru_transport_dialog.h HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_lbtru_transport_dialog.ui
lbm_stream_dialog.cpp HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_stream_dialog.h HTTPS (almost) everywhere. 2019-07-26 18:44:40 +00:00
lbm_stream_dialog.ui
lte_mac_statistics_dialog.cpp Qt+tools: Fix most of our lupdate warnings. 2021-01-18 16:56:20 +00:00
lte_mac_statistics_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
lte_rlc_graph_dialog.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
lte_rlc_graph_dialog.h Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
lte_rlc_graph_dialog.ui
lte_rlc_statistics_dialog.cpp Qt+tools: Fix most of our lupdate warnings. 2021-01-18 16:56:20 +00:00
lte_rlc_statistics_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
main.cpp Enable -Wredundant-decls. 2021-02-14 14:43:42 -08:00
main_status_bar.cpp Qt: Add a dark mode warning background. 2020-10-16 23:12:17 +00:00
main_status_bar.h Qt: Remove frameSelect signal 2019-11-21 10:59:05 +00:00
main_window.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
main_window.h Fix: SIP Flows dialog can't be open when VoIP Calls dialog is opened 2021-01-07 08:56:14 +00:00
main_window.ui UI: Remove apostrophe from FAQs item in Help menu. 2021-01-02 22:22:27 +00:00
main_window_layout.cpp Qt: Add a packet diagram view. 2020-08-10 18:17:50 +00:00
main_window_preferences_frame.cpp Qt: Add window title settings the preferences dialog 2020-02-10 07:45:57 +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 SIP Flow: Fixed core dump when dialog opened 2021-01-16 07:08:46 +00:00
manage_interfaces_dialog.cpp Fix some places where we forgot to mention Npcap. 2020-03-12 18:59:44 +00:00
manage_interfaces_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +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 Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +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 wiretap: file types have a name and a description. 2021-02-13 01:25:39 -08:00
mtp3_summary_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
mtp3_summary_dialog.ui
multicast_statistics_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
multicast_statistics_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
packet_comment_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +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: Add a recent item for packet diagram field values. 2020-10-28 20:11:25 +00:00
packet_diagram.h Qt: Handle palette changes in the packet diagram. 2020-09-28 23:56:08 +00:00
packet_dialog.cpp Qt: Remove frameSelect signal 2019-11-21 10:59:05 +00:00
packet_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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: Fetch OverlayScrollBar sliderPosition from the real ScrollBar 2021-01-05 08:04:14 +00:00
packet_list.h Qt: Fix saving+restoring frozen packet list rows. 2020-10-28 15:36:07 +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 Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
preference_editor_frame.h Qt: Handle filenames in preference editor frame 2020-07-03 06:12:48 +00:00
preference_editor_frame.ui Qt: Handle filenames in preference editor frame 2020-07-03 06:12:48 +00:00
preferences_dialog.cpp Qt: Debounce Preferences -> Advanced menu's "Search" to improve UX 2021-01-12 22:11:47 +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: fix some Qt 5.15.2 deprecation warnings 2020-11-25 07:23:21 +00:00
print_dialog.h Qt: Multiselection in PacketList 2019-11-17 12:20:29 +00:00
print_dialog.ui
profile_dialog.cpp Qt: Allow renaming personal profile 2020-04-30 11:19:41 +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 Qt: Fix a deprecation issue. 2020-03-31 21:21:22 +00:00
progress_frame.h Qt+wslua: Add back progress bar titles. 2020-03-31 04:11:56 +00:00
progress_frame.ui QT: progress UI: Fix TextLabel string to loading 2020-11-04 19:24:36 +00:00
proto_tree.cpp Be more strict about opening URLs. 2021-02-15 08:47:57 +00:00
proto_tree.h Qt: Re-highlight packet bytes when re-selecting packet tree item 2020-03-09 18:38:17 +00:00
protocol_hierarchy_dialog.cpp Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
protocol_hierarchy_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
protocol_hierarchy_dialog.ui
protocol_preferences_menu.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
protocol_preferences_menu.h Qt: List all protocols in PacketList "Protocol Preferences" 2020-07-03 06:12:40 +00:00
recent_file_status.cpp replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
recent_file_status.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
remote_capture_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
remote_capture_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
remote_capture_dialog.ui
remote_settings_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
remote_settings_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
remote_settings_dialog.ui
resolved_addresses_dialog.cpp Qt: allow Resolved Addresses search filter to be cleared 2020-02-04 14:22:25 +00:00
resolved_addresses_dialog.h Qt: Reduce use of CaptureFile 2019-10-07 21:00:31 +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 Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
rpc_service_response_time_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
rsa_keys_frame.cpp Fix build without GnuTLS 2019-01-31 13:14:22 +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: fix build error with older GCC 2021-01-13 11:54:08 +00:00
rtp_analysis_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
rtp_analysis_dialog.ui
rtp_audio_stream.cpp RTP Player dialog improved 2021-02-09 18:10:14 +00:00
rtp_audio_stream.h RTP Player dialog improved 2021-02-09 18:10:14 +00:00
rtp_player_dialog.cpp RTP Player dialog improved 2021-02-09 18:10:14 +00:00
rtp_player_dialog.h RTP Player dialog improved 2021-02-09 18:10:14 +00:00
rtp_player_dialog.ui RTP Player dialog improved 2021-02-09 18:10:14 +00:00
rtp_stream_dialog.cpp RTP Stream Dialog: Selected rows keep selected during recap 2021-02-09 20:38:22 +00:00
rtp_stream_dialog.h RTP Stream Dialog: Selected rows keep selected during recap 2021-02-09 20:38:22 +00:00
rtp_stream_dialog.ui RTP Stream Dialog: Start of call can be shown as Time of Day 2021-01-01 22:10:34 +01:00
scsi_service_response_time_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
scsi_service_response_time_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
sctp_all_assocs_dialog.cpp Qt: Add macro for g_list_next for C++ 2019-08-30 13:37:25 +00:00
sctp_all_assocs_dialog.h No need for a per-instance private sctp_allassocs_info_t pointer. 2019-03-17 22:04:00 +00:00
sctp_all_assocs_dialog.ui
sctp_assoc_analyse_dialog.cpp Qt: Add macro for g_list_next for C++ 2019-08-30 13:37:25 +00:00
sctp_assoc_analyse_dialog.h Qt: fix several crashes in the SCTP Dialogs 2018-08-20 05:01:11 +00:00
sctp_assoc_analyse_dialog.ui Qt: Move sized toolbar images to stock_icons. 2018-01-05 03:27:15 +00:00
sctp_chunk_statistics_dialog.cpp Qt: Cleanup space inside parentheses 2019-11-17 20:43:10 +00:00
sctp_chunk_statistics_dialog.h Qt: fix several crashes in the SCTP Dialogs 2018-08-20 05:01:11 +00:00
sctp_chunk_statistics_dialog.ui
sctp_graph_arwnd_dialog.cpp Qt: Add macro for g_list_next for C++ 2019-08-30 13:37:25 +00:00
sctp_graph_arwnd_dialog.h Qt: fix several crashes in the SCTP Dialogs 2018-08-20 05:01:11 +00:00
sctp_graph_arwnd_dialog.ui
sctp_graph_byte_dialog.cpp Qt: Add macro for g_list_next for C++ 2019-08-30 13:37:25 +00:00
sctp_graph_byte_dialog.h Qt: fix several crashes in the SCTP Dialogs 2018-08-20 05:01:11 +00:00
sctp_graph_byte_dialog.ui
sctp_graph_dialog.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
sctp_graph_dialog.h Qt: fix several crashes in the SCTP Dialogs 2018-08-20 05:01:11 +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 Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
search_frame.h Qt: Cleanup push/pop Infos 2019-11-12 22:03:23 +00:00
search_frame.ui Enable display filter autocomplete on find packet search. 2020-07-05 07:46:41 +00:00
sequence_diagram.cpp Qt: use packet_list_colorize state in Flow Graph 2020-10-26 08:39:16 +00:00
sequence_diagram.h Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
sequence_dialog.cpp Telecom dialogs: Fixed issues during capture file closing 2021-01-07 09:56:18 +00:00
sequence_dialog.h voip_calls_dialog/voip_calls: Fix for #16952 2020-12-30 08:51:00 +00:00
sequence_dialog.ui voip_calls_dialog/voip_calls: Fix for #16952 2020-12-30 08:51:00 +00:00
service_response_time_dialog.cpp Get rid of some GTK+-only stuff. 2018-05-13 19:46:45 +00:00
service_response_time_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
show_packet_bytes_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
show_packet_bytes_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +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 Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
simple_dialog.h Qt: Make it possible to hide welcome screen warnings. 2020-02-07 07:36:03 +00:00
simple_statistics_dialog.cpp Get rid of some GTK+-only stuff. 2018-05-13 20:21:14 +00:00
simple_statistics_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
stats_tree_dialog.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
stats_tree_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
supported_protocols_dialog.cpp replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
supported_protocols_dialog.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
supported_protocols_dialog.ui
tabnav_tree_widget.cpp Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
tabnav_tree_widget.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
tap_parameter_dialog.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
tap_parameter_dialog.h Fix comment end after SPDX identifier 2018-05-01 06:56:37 +00:00
tap_parameter_dialog.ui
tcp_stream_dialog.cpp Qt: Use … instead of UTF8_HORIZONTAL_ELLIPSIS in translated strings. 2020-10-01 06:40:14 +00:00
tcp_stream_dialog.h Qt: Updates for 5.15. 2020-05-30 06:45:07 +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 Qt: Add a dark mode warning background. 2020-10-16 23:12:17 +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 Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
traffic_table_dialog.h Qt: Remove a duplicate variable. 2019-11-21 00:18:29 +00:00
traffic_table_dialog.ui
uat_dialog.cpp Qt: UAT editor column widths, italic pathname 2020-12-04 09:33:10 +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 Qt: UAT editor column widths, italic pathname 2020-12-04 09:33:10 +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 Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
voip_calls_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
voip_calls_dialog.ui Voice dialogs: Added option to apply display filter in VoIP/RTP dialogs 2021-01-01 19:06:58 +00:00
welcome_page.cpp Qt: restore welcome page release string after edit preferences 2020-10-23 07:27:49 +00:00
welcome_page.h Qt: restore welcome page release string after edit preferences 2020-10-23 07:27:49 +00:00
welcome_page.ui Clean up URLs. 2020-10-02 20:13:42 -07:00
wireless_frame.cpp Qt: Updates for 5.15. 2020-05-30 06:45:07 +00:00
wireless_frame.h Qt: Cleanup push/pop Infos 2019-11-12 22:03:23 +00:00
wireless_frame.ui
wireshark_application.cpp Qt: Load interfaces on profile change if settings have changed 2020-11-27 11:34:24 +00:00
wireshark_application.h Qt: Add a packet diagram view. 2020-08-10 18:17:50 +00:00
wireshark_de.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
wireshark_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
wireshark_en.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_es.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_fr.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_it.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_ja_JP.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_pl.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_ru.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_sv.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_uk.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wireshark_zh_CN.ts [Automatic update for 2021-02-14] 2021-02-14 12:03:40 +00:00
wlan_statistics_dialog.cpp Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00
wlan_statistics_dialog.h Qt framework: Dialogs are correctly notified when capture file was closed 2021-01-11 13:30:18 +00:00