aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/shell/tmpl/eshell-unused.sgml
Commit message (Collapse)AuthorAgeFilesLines
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-0/+8
| | | | Also, let EShellSearchbar handle search state persistence.
* Refactor the EShell search API.Matthew Barnes2009-12-191-0/+264
| | | | | | | | | | | | | | | | | 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.
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-151-0/+37
| | | | | | EMailSidebar is a subclass of EMFolderTree that implements the state saving and restoration feature from EMailShellSidebar. Placing this in the shared mail library allows Anjal to reuse it.
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-021-0/+31
| | | | | | | | | | | | | | | | | | | | | | | 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
* Expand the EMailReader interface so it's easier to use.Matthew Barnes2009-12-021-0/+106
| | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader);
* Add a --geometry command-line option.Matthew Barnes2009-11-261-0/+12
| | | | | Applies the user's window geometry string to the first main window. Suggested in bug #529565.
* Kill Evolution's icon cache once and for all.Matthew Barnes2009-11-201-0/+12
| | | | | GTK+ already does this. Eliminates e_icon_factory_init() and e_icon_factory_shutdown().
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-61/+0
|
* Simplify clipboard handling in calendar.Matthew Barnes2009-11-121-0/+15
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-111-0/+28
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-101-0/+16
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-081-0/+19
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Remove redundant URI/filename conversion functions.Matthew Barnes2009-11-061-0/+16
| | | | | Use g_filename_to_uri() instead of e_util_filename_to_uri(). Use g_filename_from_uri() instead of e_util_uri_to_filename().
* Convert the shell importer to a widget class.Matthew Barnes2009-09-261-0/+7
|
* Developer documentation improvements.Matthew Barnes2009-09-231-0/+8
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-0/+7
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-011-0/+9
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-131-0/+8
| | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that.
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-0/+32
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Use key files for tracking widget states.Matthew Barnes2009-06-131-0/+16
| | | | | | | | | | | | | | | | | Each EShellView now maintains a GKeyFile for recording disposable widget state such as tree view path expansion, scroll bar positions, combo box selections, etc. The EShellView records changes to the key file to ~/.evolution/<shell-backend>/config/state, and automatically restores the GKeyFile at startup. Currently only the mailer uses the key file, but it's intended to serve all shell views. It replaces the use of Camel "cmeta" files, as well as "et-expanded-*" and "folder-tree-expand-state.xml" files. Also, the mailer's folder tree model now includes a column for tracking which sidebar folders are expanded. Folder tree widgets appearing in dialog windows can copy the sidebar's expanded state using em_folder_tree_clone_expanded().
* Adapt tasks to EShellBackend changes.Matthew Barnes2009-05-091-0/+214
|
* Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-191-0/+22
| | | | | | | Use EBindings instead of a notify callback to keep other widgets and actions synchronized with EShell:online. Cleaner and less error prone. svn path=/branches/kill-bonobo/; revision=37293
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-141-0/+38
| | | | | | Search scope (current folder, current account, etc.) is still ignored. svn path=/branches/kill-bonobo/; revision=37263
* When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-291-0/+17
| | | | | | terminate after all the windows for those URIs have been closed. svn path=/branches/kill-bonobo/; revision=37157
* Tweak the EShell API.Matthew Barnes2009-01-081-0/+54
| | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* - Mail: Update the sidebar on folder selection.Matthew Barnes2008-12-161-0/+26
| | | | svn path=/branches/kill-bonobo/; revision=36901
* Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-111-413/+0
| | | | svn path=/branches/kill-bonobo/; revision=36867
* Implement bug #263268 - Contact categories need to be able to be filtered byMatthew Barnes2008-12-041-0/+413
| | | | | | "not categorized". Also fix a crasher. svn path=/branches/kill-bonobo/; revision=36831
* Documentation improvements.Matthew Barnes2008-11-201-404/+31
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-141-0/+8
| | | | | | | | 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
* Merge revisions 36685:36729 from trunk.Matthew Barnes2008-11-081-0/+404
| | | | svn path=/branches/kill-bonobo/; revision=36763
* Disable parts of my previous calendar work, such that all modules now load!Matthew Barnes2008-10-281-0/+1883
| | | | svn path=/branches/kill-bonobo/; revision=36690
* Fix some compilation errors.Matthew Barnes2008-10-051-0/+26
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-031-15/+0
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Add more EShell API documentation.Matthew Barnes2008-10-021-0/+8
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-011-2171/+2
| | | | svn path=/branches/kill-bonobo/; revision=36511
* Get Memos to come up. Doesn't really work yet, but the widgets are all there.Matthew Barnes2008-09-301-0/+14
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Saving progress. Experimenting with directory layout.Matthew Barnes2008-09-251-0/+9
| | | | | | | Saving progress. Experimenting with directory layout. svn path=/branches/kill-bonobo/; revision=36446
* Search UI is kinda sorta working. Still some outstanding issues.Matthew Barnes2008-09-231-0/+6
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Replace EActivityHandler with a new activity-tracking system that usesMatthew Barnes2008-09-201-0/+123
| | | | | | | | | EActivity objects instead of numeric handler IDs. Create an EActivity, configure it, and (optionally) connect to its "cancelled" and "completed" signals. Then hand it to the shell view via e_shell_view_add_activity(). When finished with the activity, call e_activity_finish() and unref it. svn path=/branches/kill-bonobo/; revision=36391
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-171-0/+52
| | | | | | Also, begin documenting the new shell API, and provide a Gtk-Doc framework. svn path=/branches/kill-bonobo/; revision=36359
* Begin documenting the new shell design.Matthew Barnes2008-09-151-0/+1972
svn path=/branches/kill-bonobo/; revision=36337