aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/shell/tmpl/e-shell-backend.sgml
Commit message (Collapse)AuthorAgeFilesLines
* Kill gtk-doc tmpl files.Matthew Barnes2011-11-081-134/+0
| | | | Bump our gtk-doc requirement to 1.14 and use --flavour no-tmpl.
* Gtk-Doc updates.Matthew Barnes2011-08-101-0/+9
|
* Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-141-0/+17
| | | | | Use it to override network availability detection as reported by NetworkManager or other network monitoring software.
* EShellBackend: Respond to EShell::prepare-for-quit signals.Matthew Barnes2010-10-141-0/+5
| | | | | | | | | | | | Listen for "prepare-for-quit" signals from the shell and inhibit shutdown until all the activities we're tracking are finalized. Also, add a couple supporting functions: gboolean e_shell_backend_is_busy (EShellBackend *shell_backend); void e_shell_backend_cancel_all (EShellBackend *shell_backend); These will eventually replace mail_msg_active() and mail_cancel_all().
* Fix compiler warnings.Matthew Barnes2010-04-211-0/+3
|
* Demonstrate extending the EExtension API.Matthew Barnes2010-03-221-5/+0
| | | | | | | | | | | | | | | 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.
* Developer documentation improvements.Matthew Barnes2009-09-231-9/+0
|
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-18/+0
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+132
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.