Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug 645825 - Search bar not changing color when showing results | Dan Vrátil | 2011-04-29 | 1 | -2/+2 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2011-03-06 | 1 | -1/+2 |
| | |||||
* | Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedly | Milan Crha | 2011-02-25 | 1 | -6/+2 |
| | |||||
* | Remove NULL checks for GObject methods. | Matthew Barnes | 2011-02-13 | 1 | -2/+2 |
| | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks. | ||||
* | Drop backward-compatibility cruft. | Matthew Barnes | 2011-01-25 | 1 | -3/+0 |
| | |||||
* | Free/busy meeting view doesn't work due to non-working extension | Milan Crha | 2010-12-06 | 1 | -0/+3 |
| | |||||
* | Replace EBinding with GBinding. | Matthew Barnes | 2010-10-14 | 1 | -23/+33 |
| | | | | | | GObject now does property bindings itself. Requires GLib >= 2.26. | ||||
* | Use new GDK keysym names if available. | Matthew Barnes | 2010-09-18 | 1 | -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 leaks | Milan Crha | 2010-09-08 | 1 | -0/+5 |
| | |||||
* | GObject boilerplate cleanup. | Matthew Barnes | 2010-08-25 | 1 | -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, not | Michael Meeks | 2010-08-10 | 1 | -2/+11 |
| | |||||
* | EShellContent: Add a focus_search_results() method. | Matthew Barnes | 2010-06-25 | 1 | -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 Evolution | Milan Crha | 2010-06-25 | 1 | -0/+1 |
| | |||||
* | Bug 622559 - Changing search option should focus search entry | Matthew Barnes | 2010-06-24 | 1 | -1/+3 |
| | |||||
* | Simplify the search UI for express mode. | Matthew Barnes | 2010-03-27 | 1 | -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 Barnes | 2010-03-22 | 1 | -0/+6 |
| | |||||
* | Make EShell and related classes extensible. | Matthew Barnes | 2010-03-20 | 1 | -32/+10 |
| | |||||
* | Bug 609302 - Quick search filters are broken | Matthew Barnes | 2010-02-09 | 1 | -2/+7 |
| | |||||
* | Bug 609304 - Search scope forgotten if search is not performed | Matthew Barnes | 2010-02-09 | 1 | -3/+7 |
| | |||||
* | Remember search menu option even when not searching. | Matthew Barnes | 2010-02-09 | 1 | -56/+131 |
| | |||||
* | Implement account-wide search scope in mail. | Matthew Barnes | 2010-02-07 | 1 | -30/+233 |
| | | | | Also, let EShellSearchbar handle search state persistence. | ||||
* | Fix a issue for anjal while saving/restoring search across multiple | Srinivasa Ragavan | 2010-01-25 | 1 | -0/+1 |
| | | | | folders | ||||
* | Do not focus in a search entry when it is not having a focus | Milan Crha | 2010-01-08 | 1 | -1/+2 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2009-12-26 | 1 | -1/+1 |
| | |||||
* | Provison to hide search label for Anjal's use. | Srinivasa Ragavan | 2009-12-23 | 1 | -1/+47 |
| | |||||
* | Refactor the EShell search API. | Matthew Barnes | 2009-12-19 | 1 | -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. |