aboutsummaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
...
| * Bug #207580 - Allow new mail check on individual accountsMilan Crha2010-11-267-89/+0
| |
| * Bug #635087 - Leftover files after migration of config/data/cache to XDG ↵Mathieu Trudel-Lapierre2010-11-231-7/+11
| | | | | | | | directories
| * Migrate the local store from mbox to maildir formatChenthill Palanisamy2010-11-231-8/+2
| |
| * Add a compatibility code to previous patchJavier Jardón2010-11-091-0/+4
| |
| * Use gtk_paned_new() instead gtk_[v|h]paned_new()Javier Jardón2010-11-091-1/+1
| |
| * Fix distcheck errors.EVOLUTION_2_91_2Matthew Barnes2010-11-081-1/+1
| |
* | Make sure GConf schemas have defined default valuesMilan Crha2011-09-141-5/+22
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-09-1410-52/+69
| |
* | Bug 657836 - Work around g_unix_signal API changes.Matthew Barnes2011-09-141-1/+5
| | | | | | | | | | | | Work around GLib API churn with regard to registering UNIX signal callbacks on the main loop. GLib >= 2.29.5 calls the function one thing, GLib >= 2.29.19 calls it another.
* | Fix build break in libeshell.Matthew Barnes2011-09-141-0/+1
| |
* | EShell: Remove unused macro.Matthew Barnes2011-09-141-2/+0
| |
* | Remove link to FAQ as content is covered by new user docsAndre Klapper2011-09-141-26/+0
| |
* | Replace user name by username as used anywhere else in EvolutionAndre Klapper2011-09-141-1/+1
| |
* | Bug 652634 - Runtime warning on second search dialogMatthew Barnes2011-09-141-2/+8
| | | | | | | | | | | | A signal handler connected to an EFilterRule was passing a GtkDialog instance as the closure. Eventually, the GtkDialog is destroyed but we never disconnected the signal handler.
* | EShellContent: Fix underallocation of EAlertBar.Matthew Barnes2011-09-141-27/+54
| | | | | | | | Keeps GTK+ from going crazy with runtime warnings.
* | Coding style and whitespace cleanups.Matthew Barnes2011-06-304-129/+31
| |
* | Including <glib-object.h> directly is rarely needed.Matthew Barnes2011-06-301-2/+0
| |
* | Including <glib.h> directly is rarely needed.Matthew Barnes2011-06-303-3/+2
| |
* | Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-3016-5/+60
| |
* | EMFolderTree: Add an EAlertSink property.Matthew Barnes2011-06-301-0/+32
| | | | | | | | | | Now EMFolderTree has access to both an EShellBackend and an EAlertSink; everything it needs to build and submit EActivity instances.
* | Bug 649993 - Change behavior of --component optionMatthew Barnes2011-06-301-0/+22
| | | | | | | | | | | | | | | | | | | | This is primarily for the GNOME Shell calendar. If, for example, "evolution --component calendar" is invoked and there is already an Evolution window opened to the calendar view, present that window. Otherwise open a new Evolution window to the requested view. Same behavior applies to all requested views.
* | Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-06-305-46/+34
| | | | | | | | | | This adds a "handle-uris" GAction which takes a string array argument, so the URIs can be passed to the primary process verbatim.
* | Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERMColin Walters2011-06-301-22/+19
| | | | | | | | | | We can't call anything safely except write() inside a signal handler, g_unix_signal_add_watch_full() handles this for us nicely.
* | Handle SIGTERM instead of SIGQUIT.Matthew Barnes2011-06-301-9/+9
| | | | | | | | SIGQUIT is supposed to produce a core dump. We don't want that.
* | Bug 650525 - Don't install a SEGV handlerColin Walters2011-06-301-51/+0
| | | | | | | | | | Assume the operating system ships with a system-wide crash catching service like ABRT or Apport.
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+2
| |
* | Coding style cleanups.Matthew Barnes2011-06-302-13/+13
| |
* | Whitespace and coding style cleanups.Matthew Barnes2011-06-303-11/+19
| |
* | Bug 332497 - Add Edit -> Available CategoriesDan Vrátil2011-06-301-0/+44
| | | | | | | | | | | | Opens a window to manage categories without having to edit a contact or appointment. Not available in the Mail shell view since it doesn't use categories.
* | Bug 645825 - Search bar not changing color when showing resultsDan Vrátil2011-06-301-2/+2
| |
* | Bug 648317 - MeeGo shell looking for the wrong atomAbner Silva2011-06-301-1/+1
| | | | | | | | | | | | Yet another s/MOBLIN/MEEGO/ https://bugs.meego.com/show_bug.cgi?id=13756
* | Remove the profiler plugin.Matthew Barnes2011-06-301-4/+0
| | | | | | | | | | | | | | This plugin was for developers, but no one uses it anymore. Plus the only profiling hooks left in Evolution were in the MessageList widget, which performs fine. There's better ways to collect profiling data these days anyway (sysprof, systemtap, etc.).
* | Restore lockdown integration.Matthew Barnes2011-06-304-90/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | EShellContent: Whitespace cleanup.Matthew Barnes2011-06-301-11/+11
| |
* | Fix an EShell reference leak.Matthew Barnes2011-06-301-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | GApplication calls g_main_loop_quit() immediately when the last window is destroyed, whereas we do it from an idle callback with an extra ref on EShell to keep it alive until the idle callback runs. But because GApplication beats us to the punch, our idle callback never runs and the EShell reference leaks. For now, we'll just disable the quit_mainloop() method of GApplication. If GtkApplication grows a signal equivalent to EShell::window-destroyed, EShell could drop its window_destroyed() method and let G[tk]Application handle things normally.
* | Port EShell to GtkApplication.Matthew Barnes2011-06-303-163/+182
| |
* | Bug 645551 - Mailer statusbar jumping in sizeMatthew Barnes2011-06-301-8/+42
| |
* | Bug 644166 - Add style class to primary toolbarsMatthew Barnes2011-06-301-0/+4
| | | | | | | | | | Requires GTK+ >= 3.0.2 since GTK_STYLE_CLASS_PRIMARY_TOOLBAR is a very recent addition.
* | Bug #644107 - Local addressbooks created without relative_uri setMilan Crha2011-06-301-4/+18
| |
* | Typo in comment: s/datefime-formats/datetime-formats/Paul Menzel2011-06-301-1/+1
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-3013-14/+30
| |
* | Do not flush Outbox when mail shell backend not startedMilan Crha2011-06-302-0/+16
| |
* | Merge duplicate local sourcesMilan Crha2011-06-301-0/+88
| |
* | Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-3013-94/+44
| |
* | Write state.ini immediately in EShellView::dispose methodMilan Crha2011-06-301-3/+12
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-302-3/+7
| |
* | Bug #638333 - Critical warning when invoking File->New->Mail FolderMilan Crha2011-06-301-0/+2
| |
* | Fix few memory leaksMilan Crha2011-06-301-11/+0
| |
* | Bug 642171 - Implicit libgnome dependency for lockdown GConf keysMatthew Barnes2011-06-303-0/+12
| | | | | | | | | | Lockdown keys have moved to gsettings-desktop-schemas, so disable lockdown integration until we're ready for GSettings.
* | Remove NULL checks for GObject methods.Matthew Barnes2011-06-308-16/+16
| | | | | | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* | Bug #638057 - Evolution --express doesn't remember status bar settingMilan Crha2011-06-301-10/+4
| |
* | Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-06-302-14/+7
| | | | | | | | GCC learned how to find dead assignments.
* | Composer: Add Edit -> PreferencesMatthew Barnes2011-06-301-3/+2
| | | | | | | | Opens the Preferences window to the Composer Preferences section.
* | More whitespace cleanup.Matthew Barnes2011-06-302-12/+12
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-301-2/+5
| |
* | Bug #640516 - Information bar above folder list is emptyMilan Crha2011-06-301-6/+2
| |
* | Adapt size_request vfuncs to latest gtk+-3.0 API.Rodrigo Moya2011-06-304-38/+118
| |
* | Dialogs no longer have separators.Matthew Barnes2011-06-301-2/+2
| |
* | Drop backward-compatibility cruft.Matthew Barnes2011-06-307-22/+0
| |
* | Bug #634403 - Mails Label popup menu is not updated properlyMilan Crha2011-06-302-0/+3
| |
* | Fudge gtk_widget_get_preferred_size() for gtk2.Matthew Barnes2011-06-303-11/+20
| | | | | | | | | | Easy enough to fake gtk_widget_get_preferred_size() in gtk2 using gtk_widget_size_request(). Reduces diff noise with gtk3 branch.
* | Bug #638808 - camel_shutdown() called too earlyMilan Crha2011-06-301-0/+1
| |
* | Add e_shell_submit_alert().Matthew Barnes2011-06-302-0/+69
| | | | | | | | | | | | 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).
* | Bug #590245 - 'evolution --force-shutdown' should kill factoriesMilan Crha2011-06-302-12/+73
| |
* | Free/busy meeting view doesn't work due to non-working extensionMilan Crha2011-06-308-0/+24
| |
* | Clarify command line parameter stringAndre Klapper2011-06-301-1/+2
| |
* | Bug #207580 - Allow new mail check on individual accountsMilan Crha2011-06-307-89/+0
| |
* | Bug #635087 - Leftover files after migration of config/data/cache to XDG ↵Mathieu Trudel-Lapierre2011-06-301-7/+11
| | | | | | | | directories
* | Migrate the local store from mbox to maildir formatChenthill Palanisamy2011-06-301-8/+2
| |
* | Add a compatibility code to previous patchJavier Jardón2010-11-101-0/+4
| |
* | Use gtk_paned_new() instead gtk_[v|h]paned_new()Javier Jardón2010-11-101-1/+1
| |
* | Fix distcheck errors.Matthew Barnes2010-11-101-1/+1
|/
* Simplify EActivity.Matthew Barnes2010-10-235-50/+63
| | | | | | | | | | | | | | | | | | | | | | 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.
* Bug #597567 - Crash in comp_subject()Milan Crha2010-10-211-0/+8
| | | | Fix works only when compiled with libical 0.46 or later
* EAlert: Allow arbitrary actions to be added.Matthew Barnes2010-10-197-35/+130
| | | | | | | | | | | | | | 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-183-14/+155
| | | | Use the same alert handling policy as the composer.
* EShellView: Mark a string for translation.Matthew Barnes2010-10-181-3/+1
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-149-88/+144
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-143-12/+49
| | | | | 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-8/+149
| | | | | | | | | | | | 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().
* Bug #631320 - GtkObject is gone in GTK3Milan Crha2010-10-071-25/+10
|
* Bug #630390 - Operation stuck: Generating message list (cancelled)Milan Crha2010-10-061-0/+4
|
* Fix distcheck errors.EVOLUTION_2_91_0Matthew Barnes2010-10-051-2/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-3/+9
|
* EShellBackend: Start tracking activitiesMatthew Barnes2010-09-301-0/+25
| | | | | | | | | EShellBackend now keeps an internal queue of live EActivity objects passed to it via e_shell_backend_add_activity(). This will eventually replace "mail_msg_active_table" in mail-mt.c and be used to coordinate shutdown for all shell backends. But first I have to eliminate mail_msg_wait().
* Add a GCancellable to EActivity.Matthew Barnes2010-09-192-16/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Use new GDK keysym names if available.Matthew Barnes2010-09-183-2/+8
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Increase safety on WindowsFridrich Štrba2010-09-151-3/+29
| | | | Call SetDllDirectory() to reduce risk of DLL hijacking, and call SetProcessDEPPolicy() to reduce risk of rogue code execution.
* Coding style and whitespace cleanups.Matthew Barnes2010-09-123-8/+14
|
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-3/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Various memory leaksMilan Crha2010-09-083-1/+11
|
* Convert composer autosave to an EExtension.Matthew Barnes2010-09-031-1/+16
| | | | | | | | | | | | | | | | | | | Given the way the autosave feature was awkwardly bolted on to the composer, an EExtension seemed like a natural fit. And it helped clean up some object lifecycle hacks (and bugs). What we have now is a new module consisting of two EExtensions: EComposerAutosave extends EMsgComposer and determines when to kick off an asynchronous autosave operation. EComposerRegistry extends EShell and offers to restore orphaned autosave files on startup (which is also asynchronous now). e-autosave-utils.c holds the actual asynchronous functions and a few other miscellaneous utility functions. Source code for the new module lives in /modules/composer-autosave.
* Bug 628482 - e_shell_settings_install_property_for_key memory leakMatthew Barnes2010-09-011-3/+7
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-296-37/+41
|
* Remove the last traces of dbus-glib.Matthew Barnes2010-08-291-1/+0
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-257-15/+37
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Whitespace and coding style cleanup.Matthew Barnes2010-08-141-1/+0
|
* Defer the load / creation of configuration UI with changes toMichael Meeks2010-08-112-1/+2
| | | | | | | | | e_preferences_window to take factory callbacks and store a reference to the shell. - This makes start-up substantially faster, particularly on Atom (eg.). Remove a number of idle handlers used to create these UIs in the first instance, cleaning the code.
* Execute calendar search post startup, notMichael Meeks2010-08-101-2/+11
|
* We are not using dbus-glib anymore, don't call dbus_g_thread_initFridrich Štrba2010-08-051-1/+0
|
* Bug 625761 - Folder views not preserved after migrationLucian Langa2010-08-031-4/+76
|
* Make EImportAssistant extensible.Matthew Barnes2010-07-311-1/+1
|
* Remove unused 'preview' argument from e_import_assistant_new_simple().Matthew Barnes2010-07-303-16/+10
| | | | We preview imported files by other means now.
* Remove folder-tree-expand-state.xml while migrating.Matthew Barnes2010-07-301-2/+11
|
* Bug 624500 - Missing EggSMClient linker flags in shellMatthew Barnes2010-07-301-0/+2
|
* Avoid overwriting files while migrating.Matthew Barnes2010-07-301-2/+20
|
* More XDG base directory migration tweaks.Matthew Barnes2010-07-291-32/+18
|
* Migrate ~/.evolution/cache/tmp.Matthew Barnes2010-07-291-0/+6
|
* Remove .goutputstream-XXXXXX files during migration.Matthew Barnes2010-07-291-0/+31
| | | | | | | GIO had a bug for awhile where it would leave behind an empty temp file with the pattern .goutputstream-XXXXXX if an output stream operation was cancelled. We've had several reports of these files in config directories, so remove any we find.
* Add more debug messages to basedir migration.Matthew Barnes2010-07-281-1/+18
| | | | | If directory removal fails because the directory is not empty, list the file names in that directory.
* Migrate ~/.evolution to XDG base directories.Matthew Barnes2010-07-275-32/+523
| | | | | Migration runs just before the main loop starts. It's just a sequence of local directory and file renames.
* Coding style and whitespace cleanup.Matthew Barnes2010-07-261-7/+7
|
* Add optional clutter support.Srinivasa Ragavan2010-07-262-0/+20
|
* Update API documentation.Matthew Barnes2010-07-192-6/+11
|
* Coding style and whitespace cleanup.Matthew Barnes2010-07-121-1/+1
|
* Fix some linking issues.Matthew Barnes2010-07-111-0/+2
|
* Fix places where "~/.evolution" is hard-coded.Matthew Barnes2010-07-092-6/+10
| | | | | Also replace "$USER_DATA_DIR/cache" path constructions with e_get_user_cache_dir().
* EShellContent: Add a focus_search_results() method.Matthew Barnes2010-06-253-6/+33
| | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best.
* Bug #620815 - Memory leaks with EvolutionMilan Crha2010-06-252-0/+3
|
* Bug 622559 - Changing search option should focus search entryMatthew Barnes2010-06-241-1/+3
|
* Bug 622329 - Help menu points to the wrong FAQ pageMatthew Barnes2010-06-221-1/+1
|
* Bug 621759 - EShellSearchbar reference counting errorsMatthew Barnes2010-06-211-7/+2
|
* Bug 621210 - Can't get the shell back after closing itMatthew Barnes2010-06-211-1/+30
|
* EShell cleanups.Matthew Barnes2010-06-211-3/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2010-06-201-2/+2
|
* Left-align text in switcher buttons.Matthew Barnes2010-06-191-0/+7
|
* [win32] Don't run evolution when asked to register handlers.Fridrich Štrba2010-06-181-0/+3
|
* [win32] add --register-handlers and --unregister-handlers optionsFridrich Štrba2010-06-181-2/+16
| | | | and don't tamper with registry unless asked for it explicitely.
* Remove gnome-pilot integration.Matthew Barnes2010-06-162-47/+0
| | | | | | | | | | | | | | | | 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-135-67/+113
|
* More GTK3 preparation.Matthew Barnes2010-06-041-7/+9
| | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page.
* Convert "startup-wizard" to an EExtension.Matthew Barnes2010-06-031-2/+6
| | | | | | | | | | | | | | Convert the "startup-wizard" EPlugin to an EExtension, and fix up the importing UI a bit (but it still needs a lot more love). Importing progress is now shown directly in the GtkAssistant window. Define a new EConfigItem type (E_CONFIG_PAGE_PROGRESS) for creating progress pages in a GtkAssistant. Also, change EMAccountEditor semantics slightly: you now have to call e_config_create_window() manually after creating a new EMAccountEditor instance. This allows extra EConfigItems (specifications for the window content) to be added manually before the window is created.
* Revert "Bug #608203 - Left pane of mailer window is really narrow at startup"Matthew Barnes2010-05-291-18/+16
| | | | | | | This reverts commit 0cdd9484fec0b1fec0801df7d7e0b05c6544ba9b. Causes the Mail window to erroneously switch to Contacts when opening the Contacts window in express mode.
* Hide extra toolbars when not in Express mode.Matthew Barnes2010-05-291-7/+11
|
* Fix another runtime warning.Matthew Barnes2010-05-281-4/+4
|
* Bug 619900 - First widget skipped in e_shell_hide_widgets_for_express_mode()Matthew Barnes2010-05-281-6/+4
|
* Minor EShellWindow cleanup.Matthew Barnes2010-05-281-3/+6
|
* Revert "don't bridge to the active-view gconf setting"Matthew Barnes2010-05-271-3/+1
| | | | | | This reverts commit 2d68130cad1642c1995f3d4e8c3bc18b77977213. Need to fix GConfBridge instead.
* Bug 619811 - Bogus "Cannot update from version 0.0" dialog on startMatthew Barnes2010-05-271-0/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-272-3/+4
|
* Merge branch 'express2'Matthew Barnes2010-05-2712-55/+409
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-2511-59/+66
| |
| * Fix compiler warnings.Matthew Barnes2010-05-251-1/+1
| |
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-251-7/+43
| |\
| | * [win32] Try to get the default application registration rightFridrich Štrba2010-05-191-3/+3
| | |
| | * Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-191-0/+3
| | |
| | * [win32] Implement --reinstall, --show-icons, --hide-icons optionsFridrich Štrba2010-05-181-0/+28
| | | | | | | | | | | | to be used by windows default application setting dialogue
| | * [win32] Don't call glib functions before g_thread_init was called andFridrich Štrba2010-05-171-7/+12
| | | | | | | | | | | | register evolution as capable to handle mailto: protocol on startup
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-171-0/+9
| |\|
| | * [win32] Set patch to evolution's bindir because some child processesFridrich Štrba2010-05-111-0/+9
| | | | | | | | | | | | need it in some situations.
| * | Handle adding 'X' close button on the menu bar. Restore adding the sameSrinivasa Ragavan2010-05-115-1/+42
| | | | | | | | | | | | for adding in calendar since it doesn't have a toolbar.
| * | set widget name for the MeeGo theme on the search toolbar tooMichael Meeks2010-05-071-0/+2
| | |
| * | Add filter_page option for pref window so that we can show only requiredSrinivasa Ragavan2010-04-301-4/+11
| | | | | | | | | | | | preferences for calendar. Bit of a hack, but proves very useful.
| * | don't bridge to the active-view gconf settingMichael Meeks2010-04-281-1/+3
| | |
| * | Don't use gconf to store the names of widgets to hideFederico Mena Quintero2010-04-272-22/+19
| | | | | | | | | | | | | | | | | | That was just for development. Now we hardcode the lists of widgets. Signed-off-by: Federico Mena Quintero <federico@novell.com>
| * | get window sizing logic right (again)Michael Meeks2010-04-231-1/+1
| | |
| * | Store the initial view request and use that to decide whether to showSrinivasa Ragavan2010-04-223-0/+31
| | | | | | | | | | | | startup wizard or not. Show only for mail and not calendar.
| * | Merge commit 'origin/gnome-2-30' into express2Michael Meeks2010-04-222-18/+20
| |\|
| | * Give the windows version of evolution-alarm-notify a nice win32 iconFridrich Štrba2010-04-201-2/+2
| | |
| | * Bug #608203 - Left pane of mailer window is really narrow at startupMilan Crha2010-04-141-16/+18
| | |
| * | revert snafu to full-screening ...Michael Meeks2010-04-191-2/+1
| | |
| * | Re-work the over-complicated event editor as a tabbed notebook.Michael Meeks2010-04-191-2/+3
| | | | | | | | | | | | Thanks to Sashwaat.
| * | Adapt the event editor for MeeGo / small-screen.Michael Meeks2010-04-151-3/+5
| | | | | | | | | | | | Bin the menu bar, disable the print icon, add a close button at top right.
| * | add a close-window action that doesn't become insensitive on the last window.Michael Meeks2010-04-153-17/+21
| | | | | | | | | | | | Use this in meego / full-screen mode
| * | add stock close buttonMichael Meeks2010-04-151-0/+17
| | |
| * | add EVO_MEEGO debugging env var:Michael Meeks2010-04-151-47/+52
| | | | | | | | | | | | export EVO_MEEGO="session-type=small-screen" for the most fun.
| * | Detect MeeGo, and propagate settings variously.Michael Meeks2010-04-124-1/+179
| | | | | | | | | | | | Adapt widget naming on MeeGo for theming etc.
| * | Merge branch 'express2' into express2-reduced-preferencesFederico Mena Quintero2010-04-102-0/+4
| |\ \
| | * | Merge gnome-2-30 into express2 to get bugfixesFederico Mena Quintero2010-04-102-0/+4
| | |\| | | | | | | | | | | | | | | | | | | | | Note that express2 got some documentation for EExtensible and friends, and that documentation is not in gnome-2-30 yet. We need to cherry-pick those commits into gnome-2-30 and elsewhere.
| | | * [win32] Be consistent in disabling the lockdown options.Fridrich Strba2010-04-082-0/+4
| | | |
| | | * Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-04-083-197/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
| | | * Make EShell extensible.Matthew Barnes2010-04-081-34/+13
| | | |
| * | | Utility function to hide widgets when in Express modeFederico Mena Quintero2010-04-092-0/+62
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Express mode requires a reduced preferences dialog. Many options in the current preferences dialog are pure, unadulterated crack. So we need an easy way to hide them, to simplify the dialog and reduce its size. Here we add a function that takes a GConf key, reads a list of strings from that key, and hides the widgets whose names are those strings. This gives us an easy way to experiment with what widgets should be hidden in the preferences dialog, without needing to recompile all the time. Signed-off-by: Federico Mena Quintero <federico@novell.com>
| * | hook X symbols out manually to make it build nicely on Fedora.Michael Meeks2010-04-081-13/+39
| | |
| * | Add meego detection logic, it needs to be used (next pass) toMichael Meeks2010-04-073-0/+152
| | | | | | | | | | | | | | | configure the shell, to name widgets differently, and re-order some menu/toolbar bits.
| * | Disable the status bar for all but the mail view.Michael Meeks2010-04-071-4/+7
| | | | | | | | | | | | | | | Not implemented prettily, but cf. mail_shell_backend_window_created_cb getting invoked even for addressbok windows ...
| * | Simplify the search UI for express mode.Matthew Barnes2010-04-078-145/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Demonstrate extending the EExtension API.Matthew Barnes2010-04-073-136/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Move "section" documentation out of header files.Matthew Barnes2010-04-0722-66/+66
| | |
| * | Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-04-073-197/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
| * | Make EShell and related classes extensible.Matthew Barnes2010-04-078-243/+101
| |/
| * Bug #613352 - Changed time range not propagated to calendarMilan Crha2010-04-012-1/+62
| |
* | [win32} Register evolution as "Contacts" application and .vcf handlerFridrich Štrba2010-05-191-0/+1
| |
* | [win32] Try to get the default application registration rightFridrich Štrba2010-05-191-3/+3
| |
* | Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-191-0/+3
| |
* | [win32] Implement --reinstall, --show-icons, --hide-icons optionsFridrich Štrba2010-05-181-0/+28
| | | | | | | | to be used by windows default application setting dialogue
* | [win32] Don't call glib functions before g_thread_init was called andFridrich Štrba2010-05-171-7/+12
| | | | | | | | register evolution as capable to handle mailto: protocol on startup
* | Convert "default-mailer" plugin to an extension.Matthew Barnes2010-05-131-0/+3
| |
* | [win32] Set patch to evolution's bindir because some child processesFridrich Štrba2010-05-111-0/+9
| | | | | | | | need it in some situations.
* | Coding style and whitespace cleanup.Matthew Barnes2010-05-025-19/+22
| |
* | Fix compiler warnings.Matthew Barnes2010-04-211-1/+1
| |
* | Give the windows version of evolution-alarm-notify a nice win32 iconFridrich Štrba2010-04-201-2/+2
| |
* | Bug #608766 - Replace pthread with GLib's GThreadMilan Crha2010-04-151-7/+5
| |
* | Bug #608203 - Left pane of mailer window is really narrow at startupMilan Crha2010-04-141-16/+18
| |
* | Use accessor functions instead direct access (GSEAL work)Javier Jardón2010-04-133-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still remaining: GtkAccessible::widget GtkAssistant::forward GtkAssistant::back GtkObject::flags GtkTreeStore::stamp The GtkAssistant fields are related to bug #596428. We don't need accessor functions so much as the enhancement described there implemented. https://bugzilla.gnome.org/show_bug.cgi?id=615613
* | Giant leap towards GSEAL compliance.Matthew Barnes2010-04-086-30/+46
| |
* | hook out X symbols via g_module to avoid direct X linkage.Michael Meeks2010-04-081-20/+43
| |
* | Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-033-19342/+0
| | | | | | | | Remove old ChangeLog files that predate our switch to git.
* | Workaround broken build due to direct X function callsMilan Crha2010-04-021-5/+8
| |
* | Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-024-59/+59
| |
* | Add meego detection logic, it needs to be used (next pass) toMichael Meeks2010-04-023-0/+152
| | | | | | | | | | configure the shell, to name widgets differently, and re-order some menu/toolbar bits.
* | Bug #613352 - Changed time range not propagated to calendarMilan Crha2010-04-012-1/+62
| |
* | Disable the status bar for all but the mail view.Michael Meeks2010-03-311-4/+7
| | | | | | | | | | Not implemented prettily, but cf. mail_shell_backend_window_created_cb getting invoked even for addressbok windows ...
* | Fix a compiler warning in main.c.Matthew Barnes2010-03-301-1/+1
| |
* | Drop support for migrating from Evolution < 2.0.Matthew Barnes2010-03-306-423/+35
| | | | | | | | | | | | | | 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-278-145/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Demonstrate extending the EExtension API.Matthew Barnes2010-03-223-136/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Move "section" documentation out of header files.Matthew Barnes2010-03-2222-66/+66
| |
* | [win32] Be consistent in disabling the lockdown options.Fridrich Strba2010-03-212-0/+4
| |
* | Convert NetworkManager integration to an EShell extension.Matthew Barnes2010-03-203-197/+0
| | | | | | | | | | | | | | | | | | This demonstrates how to extend EShell without having to modify and recompile e-shell.c. If NetworkManager integration is enabled, the extension is loaded automatically when the EShell is created. The same pattern can be applied to integrate other network monitoring software like ConnMan or Microsoft's Wireless Zero Configuration.
* | Make EShell and related classes extensible.Matthew Barnes2010-03-208-243/+101
|/
* Don't use the previous stored default shell type in express mode.Michael Meeks2010-03-171-1/+4
| | | | | This avoids closing the mail, then addressbook, and getting only an addressbook when re-run (with no switchers in express mode).
* Bug 612916 - e_lookup_action() called too early during initializationMatthew Barnes2010-03-161-2/+4
|
* Fix a couple compiler warnings.Matthew Barnes2010-03-161-2/+1
|
* Revert some bad assumptions I made in EPluginUI.Matthew Barnes2010-03-162-5/+5
| | | | | | | | | We can't require the use of EUIManager everywhere because we don't control all the UI manager instances -- the most compelling example being the composer, whose UI manager comes from GtkhtmlEditor. Instead, EPluginUI will check the instance type and pick an appropriate "load_from_string" function.
* Actually respect the --disable-schemas-install configure optionFridrich Strba2010-03-151-0/+4
|
* Disabling Gnome schemas for windowsFridrich Strba2010-03-151-0/+2
|
* Some more missing relocations fixedFridrich Strba2010-03-151-0/+1
|
* Remove some more unnecessary windows workarounds.Fridrich Strba2010-03-151-50/+1
|
* Shell and UI manager cleanups.Matthew Barnes2010-03-1411-62/+133
| | | | | | | | | | | | | | | | | | | | | | | | | 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.)
* re-enable middle-click to open in new window with new actionsMichael Meeks2010-03-143-9/+53
|
* document schema to avoid errorsMichael Meeks2010-03-141-0/+4
|
* make the 'New' drop-down menu much cleaner for express modeMichael Meeks2010-03-143-3/+44
|
* Add a set of actions that open a view in a new windowMichael Meeks2010-03-145-30/+81
|
* clean up the 'express' mode hooks for UI Managers and start toMichael Meeks2010-03-143-23/+21
| | | | | extend them to plugins - use a simple one-off boolean on the UI Manager instead of exhaustively trying to propagate this information everywhere.
* Hide switcher in express mode.Srinivasa Ragavan2010-03-141-3/+7
|
* Removed obsolete method signatures in em-account-editor.hMichael Meeks2010-03-141-5/+16
| | | | | | Added em_account_editor_get_widget, and cleaned up the widget listing. Cleaned the startup wizard code to find it's label by name Added disabling of power-user 'indentity' frame in the first page express capplet.
* Fix a typoSrinivasa Ragavan2010-03-141-6/+3
|
* Libify settings capplet.Srinivasa Ragavan2010-03-141-6/+6
|
* Add generic 'express mode' conditionals to the UI XMLMichael Meeks2010-03-142-3/+9
|
* Add 'express mode' gconf settingMichael Meeks2010-03-143-1/+30
|
* cleanup taskbar activities to remove signals with dangling pointersMichael Meeks2010-03-141-1/+14
|
* More relocation cleanup EVOLUTION_ICONSDIR -> EVOLUTION_ICONDIRFridrich Strba2010-03-111-0/+1
|
* Relocate on windows paths in this file tooFridrich Strba2010-03-101-0/+1
|
* Bug 610023 - Does not restore "Current View" on startupMatthew Barnes2010-03-101-0/+4
| | | | | Adds a GalViewInstance::loaded signal so EShellView gets notified when the initial view is loaded.
* Remove some unnecessary terminal messages.Matthew Barnes2010-03-101-12/+0
| | | | | Don't need to see status messages on the terminal when going online, offline or quitting.
* Remove left-over ORBit2 calls on windowsFridrich Strba2010-03-061-8/+0
|
* Accidentally broke string freeze.Matthew Barnes2010-03-041-2/+2
| | | | Apparently intltool disregards preprocessor directives...
* Save state key file asynchronously.Matthew Barnes2010-03-041-21/+90
| | | | | | | | Avoids blocking the UI in case the save triggers an fsync() which, on ext3, synchronizes the entire filesystem. The logic is a bit tricky because we want to limit the frequency of saves and only run one save operation at a time, but we also want to do an immediate last-ditch save before finalizing the shell view.
* Bug #610659 - Clear option is disabled after moving to other componentMilan Crha2010-02-251-6/+1
|
* Bug #594083 - Oversized main window on startupMilan Crha2010-02-231-0/+3
|
* Use "mail" as the fallback shell view when starting up.Matthew Barnes2010-02-171-1/+4
| | | | | This kind of violates the shell window being unaware of specific shell views, but we need a sane fallback so users don't get an empty window.
* Update API documentation.Matthew Barnes2010-02-102-1/+5
| | | | Also, start fixing some Gtk-Doc warnings. There's a lot.
* Bug 609302 - Quick search filters are brokenMatthew Barnes2010-02-091-2/+7
|
* Bug 609304 - Search scope forgotten if search is not performedMatthew Barnes2010-02-091-3/+7
|
* Remember search menu option even when not searching.Matthew Barnes2010-02-091-56/+131
|
* Add missing linker flags for libeshell.Matthew Barnes2010-02-081-0/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-02-081-9/+16
|
* Implement account-wide search scope in mail.Matthew Barnes2010-02-074-44/+251
| | | | Also, let EShellSearchbar handle search state persistence.