diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-09-05 10:36:29 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-09-05 10:36:29 +0000 |
commit | 95ddec4d07eafd83f1a7177083d13d89740e8790 (patch) | |
tree | 79be84e2bee0b87055cfa3f33a79180319c62372 /ui_util.h | |
parent | b7bdf3efc15bb82341c82f0911158071e7441ec9 (diff) | |
download | wireshark-95ddec4d07eafd83f1a7177083d13d89740e8790.tar.gz wireshark-95ddec4d07eafd83f1a7177083d13d89740e8790.tar.bz2 wireshark-95ddec4d07eafd83f1a7177083d13d89740e8790.zip |
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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |