aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/shell/eshell-sections.txt
Commit message (Collapse)AuthorAgeFilesLines
* Add an EShell:module-directory constructor property.Matthew Barnes2009-12-021-0/+1
| | | | | | | | | | | | | | | | | This tells EShell where to look for EModules. Best practice is to define the directory in your CPPFLAGS and then pass it to EShell at instantiation time, like so: Makefile.am: evolution_CPPFLAGS = \ -DMODULEDIR=\""$(moduledir)"\" ... main.c: shell = g_object_new ( E_TYPE_SHELL, "module-directory", MODULEDIR, ...);
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-021-20/+33
| | | | | | | | | | | | | | | | | | | | | | | 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
* Update API documentation.Matthew Barnes2009-11-291-4/+0
|
* Update API documentation.Matthew Barnes2009-11-151-14/+50
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-101-2/+0
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-081-2/+0
| | | | | | | | | | 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-2/+0
| | | | | Use g_filename_to_uri() instead of e_util_filename_to_uri(). Use g_filename_from_uri() instead of e_util_uri_to_filename().
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-261-18/+0
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-261-1/+14
|
* Developer documentation improvements.Matthew Barnes2009-09-231-1/+345
|
* Fix some mistakes in the EShell documentation.Matthew Barnes2009-09-031-1/+1
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-0/+1
| | | | | | | | | | | | 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-1/+1
|
* Update EShell API docs.Matthew Barnes2009-07-151-4/+1
|
* Fix up EShell API documentation.Matthew Barnes2009-07-011-0/+5
|
* Fix bugs caused by EShellBackend changes.Matthew Barnes2009-05-101-4/+0
|
* Adapt tasks to EShellBackend changes.Matthew Barnes2009-05-091-35/+35
|
* Correct documentation.Matthew Barnes2009-02-231-1/+1
| | | | svn path=/branches/kill-bonobo/; revision=37310
* Make filter options for mail labels work again.Matthew Barnes2009-02-231-0/+1
| | | | | | | | | | Define a new shell module method named start() that tells the module when to start loading data and running background tasks. Only really applies to the mail module right now since the others use evolution-data-server. Basically it prevents the mail module from loading and refreshing mail stores until you actually switch to the mail view. svn path=/branches/kill-bonobo/; revision=37309
* Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-191-2/+2
| | | | | | | 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
* Clean up the EMFormat stack. Add some GObject properties to bind to.Matthew Barnes2009-02-191-0/+1
| | | | | | Add some handy color conversion functions to e-util. svn path=/branches/kill-bonobo/; revision=37290
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-141-4/+0
| | | | | | Search scope (current folder, current account, etc.) is still ignored. svn path=/branches/kill-bonobo/; revision=37263
* Make MailSession available through EShellSettings so composer can use it.Matthew Barnes2009-02-131-0/+2
| | | | svn path=/branches/kill-bonobo/; revision=37257
* Rewrite the mail label code from top to bottom.Matthew Barnes2009-02-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Kill the e-util-labels API and read label information into a single-column GtkListStore. Use GConfBridge to automatically keep GConf synched with the list store. - The list store (a singleton instance) is stored in EShellSettings so it's available everywhere. - The list store serves as the model for EMailLabelTreeView, which itself is embedded in EMailLabelManager; a complete label management UI as seen in the preferences dialog. - EMailLabelDialog is used to add or edit a label. Avoid using a color button, instead embed a GtkColorSelection directly in the dialog so everything is in one window. Open issues: - The weird toggle/color/text menu items in the popup menu aren't there. For now they're just regular toggle items. I'll deal with it later. - Filter intergration is broken at the moment. svn path=/branches/kill-bonobo/; revision=37233
* When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-291-2/+3
| | | | | | terminate after all the windows for those URIs have been closed. svn path=/branches/kill-bonobo/; revision=37157
* Make action group management in shell windows more elegant.Matthew Barnes2009-01-271-0/+2
| | | | svn path=/branches/kill-bonobo/; revision=37137
* Add action groups to support lockdown, starting with printing.Matthew Barnes2009-01-271-0/+6
| | | | | | Other categories to follow. Editors still need lockdown support. svn path=/branches/kill-bonobo/; revision=37136
* Miscellaneous stuff.Matthew Barnes2009-01-271-0/+6
| | | | svn path=/branches/kill-bonobo/; revision=37134
* Tweak the EShell API.Matthew Barnes2009-01-081-4/+4
| | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* Update EShell documentation.Matthew Barnes2008-12-281-4/+3
| | | | svn path=/branches/kill-bonobo/; revision=36936
* Documentation improvements.Matthew Barnes2008-11-201-1/+30
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Fix some compilation errors.Matthew Barnes2008-10-051-4/+4
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Support migration in the new shell design.Matthew Barnes2008-10-051-0/+4
| | | | | | Some code got duplicated for calendars and tasks. Made a note to revisit. svn path=/branches/kill-bonobo/; revision=36560
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-031-88/+126
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Add more EShell API documentation.Matthew Barnes2008-10-021-9/+16
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-011-72/+58
| | | | svn path=/branches/kill-bonobo/; revision=36511
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-171-5/+5
| | | | | | 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/+267
svn path=/branches/kill-bonobo/; revision=36337