aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-searchbar.c
Commit message (Collapse)AuthorAgeFilesLines
* Use new GDK keysym names if available.Matthew Barnes2010-09-181-1/+4
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Various memory leaksMilan Crha2010-09-081-0/+5
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-251-2/+5
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Execute calendar search post startup, notMichael Meeks2010-08-101-2/+11
|
* EShellContent: Add a focus_search_results() method.Matthew Barnes2010-06-251-6/+7
| | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best.
* Bug #620815 - Memory leaks with EvolutionMilan Crha2010-06-251-0/+1
|
* Bug 622559 - Changing search option should focus search entryMatthew Barnes2010-06-241-1/+3
|
* Simplify the search UI for express mode.Matthew Barnes2010-03-271-18/+88
| | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me.
* Move "section" documentation out of header files.Matthew Barnes2010-03-221-0/+6
|
* Make EShell and related classes extensible.Matthew Barnes2010-03-201-32/+10
|
* BugĀ 609302 - Quick search filters are brokenMatthew Barnes2010-02-091-2/+7
|
* BugĀ 609304 - Search scope forgotten if search is not performedMatthew Barnes2010-02-091-3/+7
|
* Remember search menu option even when not searching.Matthew Barnes2010-02-091-56/+131
|
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-30/+233
| | | | Also, let EShellSearchbar handle search state persistence.
* Fix a issue for anjal while saving/restoring search across multipleSrinivasa Ragavan2010-01-251-0/+1
| | | | folders
* Do not focus in a search entry when it is not having a focusMilan Crha2010-01-081-1/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-261-1/+1
|
* Provison to hide search label for Anjal's use.Srinivasa Ragavan2009-12-231-1/+47
|
* Refactor the EShell search API.Matthew Barnes2009-12-191-0/+1053
Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus.