aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/filter_autocomplete.c
AgeCommit message (Collapse)AuthorFilesLines
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-3/+0
svn path=/trunk/; revision=30918
2009-11-05From Bahaa Naamneh via bug 4207:Stig Bjørlykke1-4/+2
Adjusts the positioning of the autocomplete popup window in a way it gets displayed exactly under the editable box. svn path=/trunk/; revision=30834
2009-08-08From Bahaa Naamneh via Bug 3538:Kovarththanan Rajaratnam1-1/+4
This patch ensures that the filter autocompletion code handles protocols (radius and wimaxasncp) which uses delayed initialisation of protocols fields. svn path=/trunk/; revision=29337
2009-06-16Resize the list in the autocompletion popup when narrowing down the elementsStig Bjørlykke1-0/+1
to remove a possible horizontal scrollbar when not needed, also when using backspace. svn path=/trunk/; revision=28756
2009-06-10Make it compile with gtk < 2.6.Stig Bjørlykke1-0/+4
svn path=/trunk/; revision=28690
2009-06-10From yami via bug 3508:Stig Bjørlykke1-4/+22
Fix a performance issue in filter autocomplete by disable sorting before calling build_autocompletion_list() in filter_autocomplete_handle_backspace(), and enable it after building list. svn path=/trunk/; revision=28687
2009-06-09Resize the list in the autocompletion popup when narrowing down the elementsStig Bjørlykke1-0/+1
to remove a possible horizontal scrollbar when not needed. svn path=/trunk/; revision=28681
2009-04-15size_t fixes.Gerald Combs1-11/+11
svn path=/trunk/; revision=28059
2009-03-13From Jakub Zawadzki (bug 3331):Stig Bjørlykke1-25/+11
g_free() is NULL safe, so we don't need check against it. svn path=/trunk/; revision=27718
2009-02-22Free string fetched from gtk_editable_get_chars().Stig Bjørlykke1-7/+9
svn path=/trunk/; revision=27518
2009-02-22Free path fetched from gtk_tree_model_get_path with gtk_tree_path_free() Stig Bjørlykke1-7/+11
svn path=/trunk/; revision=27515
2008-11-13Improved filter autocompletion when having one exact match to be moreStig Bjørlykke1-65/+129
like other autocompletion implementations. Check for case match before removing a popup with one entry. svn path=/trunk/; revision=26768
2008-11-03gtk_tree_view_set_hover_selection only for gtk 2.6 and above.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=26675
2008-11-02Adjustments to the filter autocompletion window:Stig Bjørlykke1-46/+66
- Do not default select the first entry - Use the same window width as the filter widget - Better support for PageUp and PageDown svn path=/trunk/; revision=26673
2008-10-27Cleanup by using a common function for building the autocompletion list.Stig Bjørlykke1-126/+110
Untabify. svn path=/trunk/; revision=26595
2008-10-27Do not popup the autocompletion window with only one exactly matching entry.Stig Bjørlykke1-9/+32
svn path=/trunk/; revision=26585
2008-10-27From Bahaa Naamneh and me:Stig Bjørlykke1-3/+59
Check if the filter string being typed is a beginning of a protocol name before calling the autocomplete functionality. svn path=/trunk/; revision=26581
2008-10-25Make a new popup when appending a dot to an existing filer entry without Stig Bjørlykke1-2/+2
an existing popup. svn path=/trunk/; revision=26552
2008-10-24Always select an entry in the autocomplete list.Stig Bjørlykke1-8/+18
svn path=/trunk/; revision=26544
2008-10-24Added autocomplete and autocompletion list of protocol names in the filterStig Bjørlykke1-56/+114
entry. This still has some side effects, but hopefully not too bad. svn path=/trunk/; revision=26542
2008-10-19Fixed a small issue using esc and backspace in filter autocompletion.Stig Bjørlykke1-8/+17
svn path=/trunk/; revision=26496
2008-10-19Construct a new autocomplete popup window again if pressing backspaceStig Bjørlykke1-2/+18
while having no existing popup window. svn path=/trunk/; revision=26490
2008-09-06Close filter autocompletion list when it's empty. This re-enablesSake Blok1-2/+15
entering a filter like this: ip.addr==1.1.1.1<ENTER> svn path=/trunk/; revision=26154
2008-07-22Filter autocompletion from Bahaa Naamneh (bug 2581).Martin Mathieson1-0/+567
There are still display filter controls where this isn't being used yet, but I'm committing it now so hopefully people can report any problems. Some commenting and formatting was done by myself. svn path=/trunk/; revision=25788