summaryrefslogtreecommitdiff
path: root/gtk/packet_list_store.c
AgeCommit message (Expand)AuthorFilesLines
2010-02-09Read the packet into private areas (private pseudo-header and packetGuy Harris1-4/+6
2010-02-01Issue a row_inserted signal if the model is connectedAnders Broman1-6/+9
2010-01-29Fix various gcc -Wshadow warnings.Bill Meier1-5/+5
2009-11-27Added correct sorting for custom numeric columns.Stig Bjørlykke1-2/+37
2009-11-24Use the highest time value when calculating widest column string forStig Bjørlykke1-11/+11
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-3/+0
2009-10-27From Jakub Zawadzki:Anders Broman1-1/+10
2009-10-24From Jakub Zawadzki via bug 3764:Stig Bjørlykke1-3/+3
2009-10-08Use a "String pool" in the new packet list to reduce memory usage.Anders Broman1-2/+6
2009-09-20Add myself and Kovarththanan Rajaratnam as co authors.Anders Broman1-0/+1
2009-09-20Use G_STRLOCKovarththanan Rajaratnam1-11/+3
2009-09-17Try to get the Solaris build going...Anders Broman1-0/+6
2009-09-11svn path=/trunk/; revision=29868Gerald Combs1-0/+1
2009-09-09Allocate col_text and col_text_len when the fdata struct is allocated.Anders Broman1-7/+2
2009-09-08Add an option to col_fill_in() to allow us to disable column expression proce...Kovarththanan Rajaratnam1-2/+2
2009-09-08Custom columnfication:Kovarththanan Rajaratnam1-1/+0
2009-09-08Fixed initialization of fdata.Stig Bjørlykke1-1/+2
2009-09-07Rename packet_list_dissect_and_cache => packet_list_dissect_and_cache_iterKovarththanan Rajaratnam1-1/+1
2009-09-07Make sure that we fill in the frame_data before passing it onto col_fill_in_f...Kovarththanan Rajaratnam1-21/+60
2009-09-07Auto resize rest of the frame_data columnsKovarththanan Rajaratnam1-22/+2
2009-09-07Auto size COL_NUMBER, COL_PACKET_LENGTH and COL_CUMULATIVE_BYTESKovarththanan Rajaratnam1-77/+149
2009-09-07Add progress bar while constructing columns (which is time consuming)Kovarththanan Rajaratnam1-11/+73
2009-09-07Track how many const strings we're storing. This is guarded by NEW_PACKET_LIS...Kovarththanan Rajaratnam1-1/+16
2009-09-07ntroduce some seasonal address name lookup functions which we use when NEW_PA...Kovarththanan Rajaratnam1-17/+18
2009-09-07Use constant strings for Addresses saves some memory.Anders Broman1-0/+22
2009-09-07Auto resize non frame_data based columnsKovarththanan Rajaratnam1-0/+37
2009-09-07Track length of columns strings. We'll need this in order to resize columns q...Kovarththanan Rajaratnam1-3/+9
2009-09-06Fix target of assignment not really an lvalue errorKovarththanan Rajaratnam1-1/+1
2009-09-06Tigthen the condition under which we create a protocol create while sortingKovarththanan Rajaratnam1-1/+7
2009-09-06Sort the visible list while traversing the physical row list. This halves the...Kovarththanan Rajaratnam1-21/+1
2009-09-06Add NEW_PACKET_LIST guard to color_filters_colorize_packet()Kovarththanan Rajaratnam1-1/+1
2009-09-06Make sure that we can enable/disable color filtering.Kovarththanan Rajaratnam1-32/+48
2009-09-05Don't copy constant column strings. This reduces memory foot print because CO...Kovarththanan Rajaratnam1-1/+20
2009-09-05Dissect-on-the-fly when we have columns that are empty, i.e. columns containi...Kovarththanan Rajaratnam1-15/+59
2009-09-05Move new_packet_list_dissect() to packet_list_store.c. We need to have it the...Kovarththanan Rajaratnam1-0/+53
2009-09-05Restore original condition in packet_list_iter_n_children()Kovarththanan Rajaratnam1-2/+1
2009-09-05Get rid of row_data_tKovarththanan Rajaratnam1-2/+2
2009-09-05Make sure that we can resort with an active display filterKovarththanan Rajaratnam1-4/+10
2009-09-05Bail out gracefully on colums we cant sort on yet instead of crashingKovarththanan Rajaratnam1-0/+5
2009-09-05Make it build without warnings.Stig Bjørlykke1-2/+2
2009-09-05Get rid off GtkTreeModelFilter because the time to sort becomes unbearable wh...Kovarththanan Rajaratnam1-74/+160
2009-09-04Rename new_packet_list_reset_dissected to packet_list_reset_dissectedKovarththanan Rajaratnam1-1/+1
2009-09-03Only store the last column as G_TYPE_POINTER. Hopefully this will soon make u...Kovarththanan Rajaratnam1-8/+11
2009-09-03Add packet_list_visible_record() to avoid poking PacketListRecord in new_pack...Kovarththanan Rajaratnam1-0/+18
2009-09-03Allocate and use an extra column at the end of the column list to indicate th...Kovarththanan Rajaratnam1-4/+7
2009-09-02Adding new color rules should work now.Anders Broman1-0/+12
2009-09-01Plug memleak in new_packet_list_store_clear(). Make sure that we free the poi...Kovarththanan Rajaratnam1-29/+29
2009-08-21Use col_text in frame data.Anders Broman1-10/+9
2009-08-17Prepare to store column data from pinfo.Anders Broman1-14/+2
2009-08-16Switch over to using GPtrArray instead of manually g_renew'ing. This switch h...Kovarththanan Rajaratnam1-33/+27