aboutsummaryrefslogtreecommitdiffstats
path: root/ui/evolution-shell.ui
Commit message (Collapse)AuthorAgeFilesLines
* Remove conditionals from GtkUIManager definitions.Matthew Barnes2013-04-011-8/+0
|
* Adapt libeshell to the new ESource API.Matthew Barnes2012-06-031-1/+0
|
* Bug #584143 - Global Search Function withing CalendarMilan Crha2012-04-111-0/+1
|
* Help->FAQ menu item and action are goneMilan Crha2011-08-081-1/+0
|
* Bug #629037 - Email operations existed in ContactsHao H Li2010-09-131-1/+1
| | | | Email operations existed in Contacts in Express mode.
* Remove gnome-pilot integration.Matthew Barnes2010-06-161-1/+0
| | | | | | | | | | | | | | | | It just doesn't belong in Evolution anymore. We don't support syncing with more modern devices -- see Conduits or SyncEvolution for that -- so it does not make sense for older model Palm Pilot PDAs to be the lone exception. I have repackaged the Evolution-Data-Server conduit modules to be provided by gnome-pilot itself in bug #619315. This should provide eqivalent Palm Pilot syncing functionality; it's just being moved to gnome-pilot. This completely severs our dependency on deprecated GNOME 2.x libraries which were still being dragged in by way of gnome-pilot dependencies. It was also interfereing with our bundling of libgnomecanvas.
* Merge branch 'express2'Matthew Barnes2010-05-271-0/+1
|\
| * Handle adding 'X' close button on the menu bar. Restore adding the sameSrinivasa Ragavan2010-05-111-0/+2
| | | | | | | | for adding in calendar since it doesn't have a toolbar.
| * remove redundant print elements from express modeMichael Meeks2010-04-071-0/+2
| |
| * Only show "Send/Receive" in mailer when using express mode.Matthew Barnes2010-04-071-2/+0
| |
| * Simplify the search UI for express mode.Matthew Barnes2010-04-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. Conflicts: doc/reference/shell/eshell-sections.txt
| * Alter UI conditional syntax to be more familiar cpp style, whichMichael Meeks2010-03-241-6/+6
| | | | | | | | avoids the need for intltool changes.
* | remove redundant print elements from express modeMichael Meeks2010-03-301-0/+2
| |
* | Only show "Send/Receive" in mailer when using express mode.Matthew Barnes2010-03-281-2/+0
| |
* | Simplify the search UI for express mode.Matthew Barnes2010-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Alter UI conditional syntax to be more familiar cpp style, whichMichael Meeks2010-03-231-6/+6
|/ | | | avoids the need for intltool changes.
* disable cancel buttonMichael Meeks2010-03-141-3/+0
|
* clean up the 'express' mode hooks for UI Managers and start toMichael Meeks2010-03-141-1/+1
| | | | | extend them to plugins - use a simple one-off boolean on the UI Manager instead of exhaustively trying to propagate this information everywhere.
* remove more complex pieces in the UIMichael Meeks2010-03-141-0/+6
|
* Add generic 'express mode' conditionals to the UI XMLMichael Meeks2010-03-141-0/+3
|
* Add focus tracking to EMailBrowser.Matthew Barnes2010-01-201-5/+7
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-0/+6
| | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property.
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | So Anjal can override what it needs to for its own purpose. Also makes the EShellWindow design a little cleaner. Methods added: GtkWidget * (*construct_menubar) (EShellWindow *shell_window); GtkWidget * (*construct_toolbar) (EShellWindow *shell_window); GtkWidget * (*construct_sidebar) (EShellWindow *shell_window); GtkWidget * (*construct_content) (EShellWindow *shell_window); GtkWidget * (*construct_taskbar) (EShellWindow *shell_window); EShellView * (*create_shell_view) (EShellWindow *shell_window, const gchar *view_name); Also added some new GObject properties to help decouple actions from internal EShellWindow widgets created by these methods: EShellWindow:sidebar-visible EShellWindow:switcher-visible EShellWindow:taskbar-visible EShellWindow:toolbar-visible
* search-execute => search-quick - forgotten place from commit 53268d551Milan Crha2009-09-031-1/+1
|
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-141-7/+7
| | | | | | | | dependencies in our libraries. The circular dependency between the composer and the mail module is still causing me headaches. And it doesn't help that the addressbook and calendar also want to link to the composer. svn path=/branches/kill-bonobo/; revision=36782
* Progress update:Matthew Barnes2008-10-141-0/+3
| | | | | | | | | | - Calendar is kind of a mess at the moment. Doesn't compile. - Roughed in the Mail module, including all the actions. That _does_ compile. Runs, even. svn path=/branches/kill-bonobo/; revision=36611
* Get Memos to come up. Doesn't really work yet, but the widgets are all there.Matthew Barnes2008-09-301-0/+1
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Search UI is kinda sorta working. Still some outstanding issues.Matthew Barnes2008-09-231-0/+4
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Progress update:Matthew Barnes2008-09-071-1/+8
| | | | | | | | | - Contacts module mostly working now. - View and search UI not yet working. - Still refining shell design. svn path=/branches/kill-bonobo/; revision=36268
* Saving progress. Lots of changes. Things are a bit broken at the moment.Matthew Barnes2008-09-051-0/+8
| | | | svn path=/branches/kill-bonobo/; revision=36260
* Miscellaneous tweaks. Nothing major.Matthew Barnes2008-08-281-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=36138
* Progress update:Matthew Barnes2008-08-271-0/+3
| | | | | | | | | - Further refinements of the shell API. - Kill ESMenu and EUserCreatableItemsHandler. - Start ripping apart the addressbook component. svn path=/branches/kill-bonobo/; revision=36093
* Get a basic shell window working.Matthew Barnes2008-08-141-0/+57
svn path=/branches/kill-bonobo/; revision=35982