aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/new_packet_list.h
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-16 18:17:45 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-16 18:17:45 +0000
commit426e39bd48bbcd82218cf069ada6cd1fa8259bc8 (patch)
treeda049ea1a4163fcbc6cb3ad790573777e642f543 /gtk/new_packet_list.h
parent49698a53bbf0266156a74aadfa60841cd33b2233 (diff)
From Cal Turney:
1. Restore the functionality of <Ctrl>A and <Ctrl>X to the filter textbox. 2. Assign intuitive shortcuts without consuming any new shortcut letters. 3. Add 'Un-Time Reference All Packets' to the menu. 4. Disallow the marking or ignoring of all packets in the capture. 5. Make the Mark/Ignore/Time Reference-related menu items context sensitive. 6. Add 'ref_time_count' to the capture_file structure 7. Utilize marked/ignored/ref_time_count vars to prevent needless looping thru the entire packet list by exiting the loop when it becomes zero. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5115 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33817 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/new_packet_list.h')
-rw-r--r--gtk/new_packet_list.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/gtk/new_packet_list.h b/gtk/new_packet_list.h
index fbca9de3cf..bc9cddf979 100644
--- a/gtk/new_packet_list.h
+++ b/gtk/new_packet_list.h
@@ -67,19 +67,19 @@ extern void new_packet_list_set_font(PangoFontDescription *font);
*/
extern void new_packet_list_mark_frame_cb(GtkWidget *widget, gpointer data);
-/** Mark all packets in the list.
+/** Mark/unmark all displayed packets.
*
* @param widget parent widget (unused)
* @param data unused
*/
-void new_packet_list_mark_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
+extern void new_packet_list_mark_all_displayed_frames_cb(GtkWidget *w _U_, gpointer data _U_);
-/** Unmark all packets in the list.
+/** UnMark all packets in the capture.
*
* @param widget parent widget (unused)
* @param data unused
*/
-void new_packet_list_unmark_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
+extern void new_packet_list_unmark_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
/** Ignore the currently selected packet.
*
@@ -88,12 +88,12 @@ void new_packet_list_unmark_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
*/
extern void new_packet_list_ignore_frame_cb(GtkWidget *widget, gpointer data);
-/** Ignore all packets in the list.
+/** Ignore/Unignore all displayed packets.
*
* @param widget parent widget (unused)
* @param data unused
*/
-extern void new_packet_list_ignore_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
+extern void new_packet_list_ignore_all_displayed_frames_cb(GtkWidget *w _U_, gpointer data _U_);
/** Un-ignore all packets in the list.
*
@@ -102,6 +102,13 @@ extern void new_packet_list_ignore_all_frames_cb(GtkWidget *w _U_, gpointer data
*/
extern void new_packet_list_unignore_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
+/** Un-Time Reference all packets in the capture.
+ *
+ * @param widget parent widget (unused)
+ * @param data unused
+ */
+extern void new_packet_list_untime_reference_all_frames_cb(GtkWidget *w _U_, gpointer data _U_);
+
/* Different modes of copying summary data */
typedef enum {
CS_TEXT, /* Packet summary data (tab separated) */