aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/shell/tmpl/eshell-unused.sgml
Commit message (Collapse)AuthorAgeFilesLines
* Kill gtk-doc tmpl files.Matthew Barnes2011-11-081-811/+0
| | | | Bump our gtk-doc requirement to 1.14 and use --flavour no-tmpl.
* Let GtkFileChooser track its own last-used-folder.Matthew Barnes2011-10-061-0/+25
| | | | | | GtkFileChooser in GTK+ 3.2 now keeps track of the last-used-folder itself, even across applications, so get out of its way and let it handle it.
* GtkApplication has some new EShell-like features.Matthew Barnes2011-10-061-0/+23
| | | | | | | | | | | | | | | | | | I pushed a few EShell features up to GtkApplication for GTK+ 3.2, so we can now trim off the redundancies in EShell. 1) GtkApplication has a new "window-added" signal which replaces EShell's own "window-created" signal. 2) GtkApplication has a new "window-removed" signal which replaces EShell's own "window-destroyed" signal. 3) gtk_application_get_windows() now returns a list of windows sorted by most recently focused, replacing e_shell_get_watched_windows(). 4) GtkApplication now provides enough hooks to subclasses that we can remove e_shell_watch_window() and call gtk_application_add_window() directly.
* The EExtension framework is now in libebackend.Matthew Barnes2011-09-261-0/+171
| | | | | | | | The EModule, EExtensible and EExtension classes as well as the e_type_traverse() function have been moved to Evolution-Data-Server's libebackend library to replace e-data-server-module.c. Now Evolution-Data-Server modules use the same framework as Evolution.
* Gtk-Doc updates.Matthew Barnes2011-08-101-0/+7
|
* Coding style and whitespace cleanup.Matthew Barnes2011-05-221-0/+8
|
* Remove unused e_get_gnome2_user_dir().Matthew Barnes2011-05-161-0/+8
|
* Update API docs.Matthew Barnes2010-12-231-0/+23
|
* Revert the doc changes committed.Bharath Acharya2010-12-011-23/+0
| | | | Messed up some hunks in the doc with my previous commit. Reverting them.
* Bug #636058 - Account setup issues express mode.Punit Jain2010-12-011-0/+23
| | | | Widget name required to update.
* EActivity: Add an "alert-sink" property.Matthew Barnes2010-11-011-0/+9
| | | | | | | This is just for convenience, EActivity does not use this property. Especially useful in async function callbacks when the operation failed and now you have to do something useful with the GError.
* Bug 633471 - EAttachmentStore store folder name where uri is expectedMatthew Barnes2010-10-301-0/+16
|
* Simplify EActivity.Matthew Barnes2010-10-231-0/+70
| | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet.
* ESignatureList cleanups.Matthew Barnes2010-10-211-0/+10
|
* Send errors to an EAlertSink instead of the task bar.Matthew Barnes2010-10-191-0/+100
| | | | | | This marks the end of unintrusive error dialogs, which were too unintrusive. We now show errors directly in the main window using the EAlert / EAlertSink framework.
* Replace EBinding with GBinding.Matthew Barnes2010-10-141-0/+137
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Messin around with EAlerts.Matthew Barnes2010-09-301-0/+36
| | | | | | | | | | | | | | | | | | | Trying out a new interface called EAlertSink. The idea is to centralize how errors are shown to the user. A GtkWindow subclass would implement the EAlertSink interface, which consists of a single method: void (*submit_alert) (EAlertSink *alert_sink, EAlert *alert); The subclass has complete control over what to do with the EAlert, although I imagine we'll wind up implementing various alert-handling policies as standalone widgets such as EAlertDialog. I'd like to try an EAlertInfoBar. Code that would otherwise display an error dialog itself would instead pass the EAlert to an appropriate EAlertSink and be done with it. Nothing is final yet. Still hacking on EAlert trying to find an API that feels right for these use cases.
* Add a GCancellable to EActivity.Matthew Barnes2010-09-191-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EActivity now uses a GCancellable to manage cancellations, instead of having its own redundant cancellation API. API changes are as follows: + e_activity_get_cancellable() + e_activity_set_cancellable() - e_activity_cancel() - e_activity_is_cancelled() - e_activity_get_allow_cancel() - e_activity_set_allow_cancel() EActivity's "cancelled" signal remains, but only as a repeater for GCancellable::cancelled signals. It should not be emitted directly. The presence of a GCancellable implies that cancellation is allowed. EActivity does not create its own default GCancellable, it has to be given one. If a CamelOperation (cast as a GCancellable) is given, EActivity will configure itself to listen for status updates from the CamelOperation and propagate the information to its own "primary-text" and "percent" properties. These changes allowed me to start cleaning up some of the incredibly convoluted logic in mail-mt.c -- in particular, mail_operation_status() is completely gone now. mail-mt.c is still in a transitional state -- much more significant changes coming soon.
* Update API documentation.Matthew Barnes2010-07-191-0/+84
|
* Fix places where "~/.evolution" is hard-coded.Matthew Barnes2010-07-091-0/+8
| | | | | Also replace "$USER_DATA_DIR/cache" path constructions with e_get_user_cache_dir().
* Remove gnome-pilot integration.Matthew Barnes2010-06-161-0/+7
| | | | | | | | | | | | | | | | 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.
* Simplify the search UI for express mode.Matthew Barnes2010-03-271-0/+38
| | | | | | | | | | | | | | | 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.
* More API documentation tweaking.Matthew Barnes2010-03-221-2915/+0
|
* Demonstrate extending the EExtension API.Matthew Barnes2010-03-221-0/+6
| | | | | | | | | | | | | | | Introduce e_extensible_list_extensions(), which provides extensible objects access to their own extensions, or a subset of them. Convert EShellBackend to an abstract EExtension subtype. EShell will load its extensions with e_extensible_load_extensions(), and then obtain a list of EShellBackend extensions as follows: shell_backends = e_extensible_list_extensions ( E_EXTENSIBLE (shell), E_TYPE_SHELL_BACKEND); Because EShellBackend is abstract, its GType is skipped while traversing the GType hierarchy to find EShell extensions.
* 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