summaryrefslogtreecommitdiff
path: root/ui_util.h
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-05 10:36:29 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-05 10:36:29 +0000
commit95ddec4d07eafd83f1a7177083d13d89740e8790 (patch)
tree79be84e2bee0b87055cfa3f33a79180319c62372 /ui_util.h
parentb7bdf3efc15bb82341c82f0911158071e7441ec9 (diff)
downloadwireshark-95ddec4d07eafd83f1a7177083d13d89740e8790.tar.gz
Get rid off GtkTreeModelFilter because the time to sort becomes unbearable when combined with GtkTreeSortable. This means that we now track which frames are visible in the our own packet list store. To do so, we now distinguish between physical and visible rows. All frames are added as physical rows. Only those that passes the display filter are marked as visible.
svn path=/trunk/; revision=29705
Diffstat (limited to 'ui_util.h')
-rw-r--r--ui_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui_util.h b/ui_util.h
index b2f4955cb2..8a4dc37c5b 100644
--- a/ui_util.h
+++ b/ui_util.h
@@ -63,6 +63,7 @@ extern void pipe_input_set_handler(gint source, gpointer user_data, int *child_p
#ifdef NEW_PACKET_LIST
void new_packet_list_clear(void);
void new_packet_list_freeze(void);
+void new_packet_list_recreate_visible_rows(void);
void new_packet_list_thaw(void);
void new_packet_list_next(void);
void new_packet_list_prev(void);