aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference
Commit message (Collapse)AuthorAgeFilesLines
* Remove e_get_account_by_transport_url().Matthew Barnes2011-05-032-10/+0
| | | | Function is no longer used, or wanted.
* Restore lockdown integration.Matthew Barnes2011-03-282-10/+0
| | | | | | | | | | | | | With lockdown settings available through GSettings, widgets can handle lockdown integration themselves without having to use EShellSettings. Also fixed a few places where printing or save-to-disk actions were either not properly wired up or not responding to lockdown settings, but much more work needs done. Attachments, for example, are not honoring the disable-save-to-disk setting at all. This too requires the recently-added gsettings-desktop-schemas dependency.
* Add e_shell_submit_alert().Matthew Barnes2010-12-272-0/+10
| | | | | | An easy way to broadcast application-wide alerts to shell windows. These alerts will persist in all current and future shell windows until responded to (either programmatically or by the user).
* Update API docs.Matthew Barnes2010-12-234-27/+23
|
* Revert the doc changes committed.Bharath Acharya2010-12-013-23/+25
| | | | Messed up some hunks in the doc with my previous commit. Reverting them.
* Bug #636058 - Account setup issues express mode.Punit Jain2010-12-013-25/+23
| | | | Widget name required to update.
* Add GBinding transform funcs for enum types.Matthew Barnes2010-11-052-0/+26
| | | | We'll want to store enum settings by their nicknames.
* Update API docs.Matthew Barnes2010-11-054-4/+66
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-021-2/+2
|
* EActivity: Add an "alert-sink" property.Matthew Barnes2010-11-013-5/+23
| | | | | | | 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 633172 - Folder->Subscriptions is always enabledMatthew Barnes2010-10-302-0/+10
|
* Bug 633471 - EAttachmentStore store folder name where uri is expectedMatthew Barnes2010-10-302-18/+16
|
* Simplify EActivity.Matthew Barnes2010-10-233-71/+75
| | | | | | | | | | | | | | | | | | | | | | 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-213-6/+26
|
* Miscellaneous fixups.Matthew Barnes2010-10-191-0/+9
|
* Move more account utilities to e-account-utils.c.Matthew Barnes2010-10-192-0/+40
|
* Send errors to an EAlertSink instead of the task bar.Matthew Barnes2010-10-195-35/+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.
* EAlert: Allow arbitrary actions to be added.Matthew Barnes2010-10-192-0/+6
| | | | | | | | | | | | | | You can now amend the predefined actions in an EAlert by calling e_alert_add_action(). Useful for adding actions from an existing GtkUIManager. Call e_alert_peek_actions() to obtain a combined list of predefined and custom actions. These will typically serve as "related" actions for GtkButtons (cf. gtk_activatable_set_related_action()). Also, both EShellWindow and EShellView now implement EAlertSink. Use EShellWindow for application-wide alerts, EShellView for view-specific alerts.
* Implement EAlertSinkInterface in EShellContent.Matthew Barnes2010-10-182-0/+15
| | | | Use the same alert handling policy as the composer.
* Replace EBinding with GBinding.Matthew Barnes2010-10-144-22/+163
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-143-0/+26
| | | | | 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-142-0/+7
| | | | | | | | | | | | 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().
* Messin around with EAlerts.Matthew Barnes2010-09-303-48/+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-193-25/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Gtk-Doc fussing with SGML files.Matthew Barnes2010-08-0317-34/+0
|
* Fix linker flags for API documentation.Matthew Barnes2010-08-031-4/+4
|
* Add new SGML files for API docs.Matthew Barnes2010-08-0217-0/+2684
|
* Remove unused 'preview' argument from e_import_assistant_new_simple().Matthew Barnes2010-07-301-1/+0
| | | | We preview imported files by other means now.
* Update API documentation.Matthew Barnes2010-07-197-1/+728
|
* Fix places where "~/.evolution" is hard-coded.Matthew Barnes2010-07-093-10/+8
| | | | | Also replace "$USER_DATA_DIR/cache" path constructions with e_get_user_cache_dir().
* Remove gnome-pilot integration.Matthew Barnes2010-06-162-8/+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.
* Bug 603468 - Improve handling of --quit optionMatthew Barnes2010-06-131-0/+2
|
* Coding style and whitespace cleanups.Matthew Barnes2010-06-071-2/+0
|
* More GTK3 preparation.Matthew Barnes2010-06-041-0/+69
| | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page.
* Merge branch 'express2'Matthew Barnes2010-05-271-0/+10
|\
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-255-9/+24
| |\
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-171-0/+1
| |\|
| | * Let Gtk-Doc do its thing.Matthew Barnes2010-04-2632-0/+112
| | |
| * | Let Gtk-Doc do its thing.Matthew Barnes2010-04-3032-0/+112
| | |
| * | Simplify the search UI for express mode.Matthew Barnes2010-04-076-19/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | More API documentation tweaking.Matthew Barnes2010-04-0730-5386/+21
| | |
| * | Demonstrate extending the EExtension API.Matthew Barnes2010-04-074-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Document EExtensible and EExtension.Matthew Barnes2010-04-075-0/+110
| |/ | | | | | | | | | | The mechanism here is simple but hard to explain without leaning heavily on object-oriented jargon. Consider this a rough draft. Illustrations would certainly help clarify.
* | Fix compiler warnings.Matthew Barnes2010-04-2134-0/+119
| |
* | Add gtk-doc tests, but leave them disabled.Matthew Barnes2010-04-011-1/+0
| |
* | Add --name-space to MKDB_OPTIONS.Matthew Barnes2010-04-011-2/+1
| |
* | Move EPoolv back to Evolution from libedataserver.Matthew Barnes2010-04-012-0/+11
| | | | | | | | | | MessageList is the only thing still using it. EMemPool is gone now, so it uses CamelMemPool instead (same thing).
* | Update API docs.Matthew Barnes2010-03-301-3/+0
| |
* | Drop support for migrating from Evolution < 2.0.Matthew Barnes2010-03-301-28/+0
| | | | | | | | | | | | | | There's too much ancient, crufty code there that we can't realistically support anymore. A workaround for those poor users still on 1.x is to upgrade to some 2.x release first, then upgrade again to 3.x. An error dialog explaining this will be shown at startup.
* | Simplify the search UI for express mode.Matthew Barnes2010-03-276-20/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Bug 613639 - Evolution hard codes .gnome2Matthew Barnes2010-03-231-0/+1
| |
* | More API documentation tweaking.Matthew Barnes2010-03-2230-5386/+21
| |
* | Demonstrate extending the EExtension API.Matthew Barnes2010-03-224-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Document EExtensible and EExtension.Matthew Barnes2010-03-225-0/+110
|/ | | | | | The mechanism here is simple but hard to explain without leaning heavily on object-oriented jargon. Consider this a rough draft. Illustrations would certainly help clarify.
* Prevent future bugs like #612792.Matthew Barnes2010-03-151-2/+0
| | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly.
* Shell and UI manager cleanups.Matthew Barnes2010-03-144-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | Replace the EVO_EXPRESS environment variable with an --express command line option. (Note, this adds a new translatable string for --help.) Add an EUIManager class with an "express-mode" property and custom load functions that use our new "express" preprocessor. This replaces the UI manager functions in e-utils.c. (Also going to see if I can get GTK+ to add an "add_ui_from_string" method to GtkUIManagerClass that we can override. Then we could just call gtk_ui_manager_add_ui_from_string() and the preprocessor would automatically do its thing and chain up.) Add an "express-mode" read-only GObject property to EShell. Add e_shell_configure_ui_manager() to e-shell-utils.c. For now this just creates a one-way property binding: EShell:express-mode -> EUIManager:express-mode Call this immediately after e_ui_manager_new(). (EUIManager can't do this itself because it lives too low in the dependency hierarchy and doesn't know about EShell.)
* Update API documentation.Matthew Barnes2010-02-106-6/+81
| | | | Also, start fixing some Gtk-Doc warnings. There's a lot.
* Implement account-wide search scope in mail.Matthew Barnes2010-02-072-9/+13
| | | | Also, let EShellSearchbar handle search state persistence.
* Add a EShellWindow::shell-view-created signal.Matthew Barnes2010-01-232-0/+19
| | | | | | | | | | | | | The signal uses the name of the newly created shell view as the detail, so for example "shell-view-created::mail" is emitted when the "mail" view is created. Also, add e_shell_window_peek_shell_view() to obtain a shell view if it exists but without instantiating it. Using these new tools, teach the templates plugin to wait for the user to switch to the "mail" view before connecting to its "update-actions" signal. Previously is was instantiating the "mail" view itself.
* Coding style and whitespace cleanup.Matthew Barnes2010-01-041-0/+5
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-0/+5
| | | | | | | | | | | | | | | | | | 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.
* Refactor the EShell search API.Matthew Barnes2009-12-197-293/+623
| | | | | | | | | | | | | | | | | 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-155-43/+59
| | | | | | 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 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-028-42/+341
| | | | | | | | | | | | | | | | | | | | | | | 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-022-120/+106
| | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader);
* Update API documentation.Matthew Barnes2009-11-291-4/+0
|
* Add a --quit command-line option.Matthew Barnes2009-11-261-0/+1
| | | | | | | This -asks- an existing Evolution process to quit. It is equivalent to selecting File->Quit in the main window. It does not kill the process. My plan is to use this as part of a new --force-shutdown implementation.
* Add a --geometry command-line option.Matthew Barnes2009-11-264-13/+23
| | | | | 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-203-14/+17
| | | | | GTK+ already does this. Eliminates e_icon_factory_init() and e_icon_factory_shutdown().
* BugĀ 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-174-75/+0
|
* Add some new Gtk-Doc generated files.Matthew Barnes2009-11-152-0/+259
|
* Update API documentation.Matthew Barnes2009-11-155-14/+112
|
* Further tweaks for the command-line importing.Matthew Barnes2009-11-131-0/+1
| | | | | Includes Bastien Nocera's patch to register our importable MIME types with the MIME database.
* Simplify clipboard handling in calendar.Matthew Barnes2009-11-122-17/+15
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-112-31/+28
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-103-32/+16
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-084-23/+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-063-20/+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().
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-281-0/+1
| | | | | | After the folder's context menu closes the folder tree selection jumps back to the folder whose contents are showing in the message list. Suggested by Philippe LeCavalier on evolution-list.
* Gtk-Doc updates.Matthew Barnes2009-10-071-0/+1
|
* Bug 596843 - Link to libraries when building API docsH.Habighorst2009-09-301-88/+9
|
* Show import progress directly in the assistant window.Matthew Barnes2009-09-262-2/+0
|
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-264-19/+1
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-264-28/+22
|
* Developer documentation improvements.Matthew Barnes2009-09-2324-11/+2699
|
* Fix some mistakes in the EShell documentation.Matthew Barnes2009-09-033-1/+17
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-034-8/+16
| | | | | | | | | | | | 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.
* Deal with untracked files in git.Matthew Barnes2009-08-261-0/+2
|
* Fix Gtk-Doc build break.Matthew Barnes2009-08-231-1/+0
|
* BugĀ 591755 - Gtk-Doc build failure when NM support disabledH.Habighorst2009-08-171-1/+5
|
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-013-3/+11
|
* Finish EggSMClient shell integration.Matthew Barnes2009-07-161-0/+3
|
* Update EShell API docs.Matthew Barnes2009-07-152-4/+9
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-132-1/+16
| | | | | | | 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-113-37/+40
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Fix up EShell API documentation.Matthew Barnes2009-07-014-2/+51
|
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Radically reorganize source code.Matthew Barnes2009-06-252-0/+283
| | | | | | | | | | | | | | | | | | | - 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.
* 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().
* Makefile.am cleanups.Matthew Barnes2009-06-132-15/+1
|
* Search bar improvements.Matthew Barnes2009-06-092-1/+6
| | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space.
* Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-211-7/+7
|
* Fix bugs caused by EShellBackend changes.Matthew Barnes2009-05-102-4/+1
|
* Adapt tasks to EShellBackend changes.Matthew Barnes2009-05-098-51/+265
|
* Add another .gitignoreMatthew Barnes2009-04-291-0/+15
|
* Use consistent variable names for GtkUIManagerMatthew Barnes2009-04-252-1/+2
|
* Manual conflict resolutionMatthew Barnes2009-04-252-2/+1
|
* Correct documentation.Matthew Barnes2009-02-232-1/+9
| | | | svn path=/branches/kill-bonobo/; revision=37310
* Make filter options for mail labels work again.Matthew Barnes2009-02-232-0/+2
| | | | | | | | | | 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
* Documentation tweaks.Matthew Barnes2009-02-191-0/+1
| | | | | | Have e_shell_get_preferences_window() take an EShell argument. svn path=/branches/kill-bonobo/; revision=37294
* Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-193-6/+37
| | | | | | | 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
* Merge revisions 37200:3266 from trunk.Matthew Barnes2009-02-151-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=37270
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-143-45/+38
| | | | | | 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-082-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-293-12/+40
| | | | | | 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-273-0/+19
| | | | svn path=/branches/kill-bonobo/; revision=37137
* Add action groups to support lockdown, starting with printing.Matthew Barnes2009-01-274-0/+49
| | | | | | Other categories to follow. Editors still need lockdown support. svn path=/branches/kill-bonobo/; revision=37136
* Miscellaneous stuff.Matthew Barnes2009-01-272-0/+11
| | | | svn path=/branches/kill-bonobo/; revision=37134
* Redesign EPluginUI to accommodate merging and unmerging shell views.Matthew Barnes2009-01-241-0/+1
| | | | | | Get the "mark-all-read" and "plugin-manager" plugins working. svn path=/branches/kill-bonobo/; revision=37125
* Tweak the EShell API.Matthew Barnes2009-01-083-15/+68
| | | | | | | 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-282-4/+21
| | | | svn path=/branches/kill-bonobo/; revision=36936
* Define a new interface called EMailReader, which implements operationsMatthew Barnes2008-12-272-0/+10
| | | | | | | | common to both the main shell window and the message browser. Replaces EMFolderView. Also begin to define EMailBrowser (GtkWindow subclass), which implements EMailReader and replaces EMMessageBrowser. svn path=/branches/kill-bonobo/; revision=36933
* - Mail: Update the sidebar on folder selection.Matthew Barnes2008-12-163-27/+45
| | | | svn path=/branches/kill-bonobo/; revision=36901
* Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-115-413/+464
| | | | svn path=/branches/kill-bonobo/; revision=36867
* Implement bug #263268 - Contact categories need to be able to be filtered byMatthew Barnes2008-12-045-464/+413
| | | | | | "not categorized". Also fix a crasher. svn path=/branches/kill-bonobo/; revision=36831
* Documentation improvements.Matthew Barnes2008-11-2011-407/+623
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Progress update:Matthew Barnes2008-11-192-0/+6
| | | | | | | | | | | | | | | | | | | - Tighter integration of GalViewInstance and EShellView. - EBinding. Stolen from ExoBinding. Lets you bind GObject properties together to automatically keep their values in sync. This is a godsend. Added to e-util, but might even deserve a place in libedataserver. - EShellSettings. This is the concept I blogged about. Already started ripping apart em-mailer-prefs.c. Others to follow. Any place where we're monitoring GConf keys is a target. - Incremental progress on the calender and mailer. Got EMFolderView somewhat working, but I think I'll be killing off EMFolderBrowser. svn path=/branches/kill-bonobo/; revision=36795
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-142-9/+9
| | | | | | | | 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-085-454/+404
| | | | svn path=/branches/kill-bonobo/; revision=36763
* Disable parts of my previous calendar work, such that all modules now load!Matthew Barnes2008-10-283-0/+1891
| | | | svn path=/branches/kill-bonobo/; revision=36690
* Fix some compilation errors.Matthew Barnes2008-10-055-9/+35
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Support migration in the new shell design.Matthew Barnes2008-10-054-0/+37
| | | | | | Some code got duplicated for calendars and tasks. Made a note to revisit. svn path=/branches/kill-bonobo/; revision=36560
* Tasks is working. Still need to deal with some loose ends and test it all.Matthew Barnes2008-10-0411-22/+347
| | | | svn path=/branches/kill-bonobo/; revision=36551
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-0313-113/+499
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Add more EShell API documentation.Matthew Barnes2008-10-023-18/+42
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-016-2248/+129
| | | | 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-302-9/+22
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Saving progress. Experimenting with directory layout.Matthew Barnes2008-09-252-10/+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-232-2/+8
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Fix some miscellaneous address book bugs.Matthew Barnes2008-09-201-1/+0
| | | | | | Kill e-shell-constants.h. svn path=/branches/kill-bonobo/; revision=36392
* Replace EActivityHandler with a new activity-tracking system that usesMatthew Barnes2008-09-206-146/+143
| | | | | | | | | 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
* Finally got the "Current View" menu under control.Matthew Barnes2008-09-191-1/+0
| | | | svn path=/branches/kill-bonobo/; revision=36380
* Progress update:Matthew Barnes2008-09-181-0/+1
| | | | | | | | | - Kill EABMenu. - Centralize marshallers to eliminate duplication. svn path=/branches/kill-bonobo/; revision=36368
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-174-14/+66
| | | | | | 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-1531-0/+5873
svn path=/branches/kill-bonobo/; revision=36337