aboutsummaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | 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.
* Enforce unique-1.0 >= 1.1.2 build requirement.Matthew Barnes2010-02-032-3/+2
| | | | | Also, add unique-1.0 to GNOME_PLATFORM so it's included in CFLAGS and LIBADD variables everywhere.
* Coding style and whitespace cleanup.Matthew Barnes2010-01-311-4/+4
|
* Bug 581604 - Permissions on mail/local folders are too openChenthill Palanisamy2010-01-302-1/+46
|
* Bug 608340 - Help text missing --debug parameterMatthew Barnes2010-01-281-1/+1
|
* Changes in mingw.org last w32api/mingw-rt packages.Fridrich Strba2010-01-281-1/+1
|
* Fix a issue for anjal while saving/restoring search across multipleSrinivasa Ragavan2010-01-251-0/+1
| | | | folders
* Bug 606342 - PST option not offered in single file importMatthew Barnes2010-01-231-0/+2
|
* Add a EShellWindow::shell-view-created signal.Matthew Barnes2010-01-232-5/+72
| | | | | | | | | | | | | 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.
* EShellBackend cleanup.Matthew Barnes2010-01-191-48/+44
|
* Remove dead assignments found by clang.Matthew Barnes2010-01-162-2/+2
|
* Bug 604520 - Create first account window hidden behind main windowMatthew Barnes2010-01-121-2/+2
|
* Bug #606340 - Crash on non-utf8 letter in mail folder nameMilan Crha2010-01-081-2/+3
|
* Do not focus in a search entry when it is not having a focusMilan Crha2010-01-081-1/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-052-19/+36
|
* Clarify "Synchronization Options" menu item.Matthew Barnes2009-12-281-3/+9
| | | | | Rename it "GNOME Pilot Synchronization" and only display the item if gnome-pilot is installed.
* Hide "Submit Bug Report" if bug-buddy is not present.Matthew Barnes2009-12-281-0/+7
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-282-2/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-265-9/+12
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-267-16/+157
| | | | | | | | | | | | | | | | | | 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.
* Reverting commit 55c3f228ad35 because it's crashing EvolutionMilan Crha2009-12-231-2/+2
|
* Provison to hide search label for Anjal's use.Srinivasa Ragavan2009-12-233-2/+54
|
* Anjal's search bar is outside of EShellContent. Handle that.Srinivasa Ragavan2009-12-231-1/+1
|
* Fix the way parent class is called. Anjal classes were never invokedSrinivasa Ragavan2009-12-231-2/+2
| | | | before.
* Bug 604822 - Drop more alert titlesPaul Bolle2009-12-201-2/+0
| | | | | Drop all alert titles to be found in *.error.xml. HIG suggests alerts do not have a title.
* Coding style and whitespace cleanup.Matthew Barnes2009-12-201-1/+1
|
* Remove some obsolete GConf keys.Matthew Barnes2009-12-191-1/+0
| | | | | | | | | /apps/evolution/mail/display/show_preview /apps/evolution/mail/display/thread_list These keys are no longer needed since we're storing the settings by folder now in ~/.evolution/mail/config/state. To simplify things we use hard-coded defaults: TRUE for PreviewVisible, FALSE for GroupByThreads.
* Refactor the EShell search API.Matthew Barnes2009-12-198-1318/+1618
| | | | | | | | | | | | | | | | | 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.
* EShellContent cleanups.Matthew Barnes2009-12-191-52/+71
|
* Fix a small memory leak in EShellBackendJonathon Jongsma2009-12-191-0/+1
|
* Add get_data_dir(), get_config_dir() vfuncs to EShellBackendJonathon Jongsma2009-12-192-22/+65
| | | | | | | This allows modules to specify their own data dir in a flexible way without having them hard-coded to the backend class name. For example, the data dir for the mail backend should be specified by the mail session (eventually as an eds daemon) and the vfunc will allow the shell to query that in a generic way.
* Bug #604884 - Use proper colors in Search bar when is search activatedMilan Crha2009-12-181-6/+8
|
* Bug #593896 - "Search -> Find now" should not be always enabledMilan Crha2009-12-181-1/+1
|
* Bug #603184 - Various problems with search box in foldersMilan Crha2009-12-183-3/+48
|
* Bug #603342 - Memory leak fixesMilan Crha2009-12-151-0/+3
|
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-151-0/+21
| | | | | | 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.
* Make e_shell_window_update_search_menu() more crash-resistant.Matthew Barnes2009-12-151-0/+9
|
* Move icon theme path setup from main() to EShell.Matthew Barnes2009-12-153-5/+7
| | | | So Anjal picks it up.
* Bug #499322 - Use extension for "Save as" suggested file nameMilan Crha2009-12-102-0/+56
|
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-083-4/+6
| | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary.
* Bug 603592 - X11 window roles should be setMatthew Barnes2009-12-041-0/+10
|
* Revise the EShell ref-leak check to not upset Valgrind.Matthew Barnes2009-12-032-19/+16
|
* Add an EShell:module-directory constructor property.Matthew Barnes2009-12-023-6/+67
| | | | | | | | | | | | | | | | | 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, ...);
* Allow EShellWindow "construct" methods to return NULL.Matthew Barnes2009-12-021-14/+25
| | | | Also allow the methods themselves to be NULL.
* Add private virtual methods to EShellWindowClass.Matthew Barnes2009-12-026-335/+748
| | | | | | | | | | | | | | | | | | | | | | | 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
* Add e_shell_taskbar_get_activity_count().Matthew Barnes2009-12-022-0/+18
| | | | | | | For Anjal. This really belongs in EShellBackend but the infrastructure is not there yet.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-014-18/+17
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* port shell/ over to the new EError APIJonathon Jongsma2009-12-014-7/+18
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Implement a new 'killev' program.Matthew Barnes2009-11-273-20/+178
| | | | | For now this only terminates Evolution, but the same basic approach should also be used with the Evolution-Data-Server D-Bus services.
* Make EShell more subclassable.Matthew Barnes2009-11-273-30/+52
| | | | | | | | Add method pointers to EShellClass for all the EShell signals. Also rework my previous --quit corner case workaround: we'll want to do the full shutdown procedure after all, since the backends have already spun up.
* Handle a missed corner case with --quit.Matthew Barnes2009-11-261-0/+11
| | | | | If --quit is given and no other Evolution process is running, bypass our usual shutdown procedure and terminate the main loop immediately.
* Add a --quit command-line option.Matthew Barnes2009-11-263-22/+63
| | | | | | | 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-266-9/+113
| | | | | Applies the user's window geometry string to the first main window. Suggested in bug #529565.
* Default /evolution/shell/network_config/proxy_type to 0 explicitlyMilan Crha2009-11-241-0/+1
| | | | As part of fix for bug #602719
* Kill Evolution's icon cache once and for all.Matthew Barnes2009-11-202-3/+5
| | | | | GTK+ already does this. Eliminates e_icon_factory_init() and e_icon_factory_shutdown().
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-193-18/+174
|
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-174-8/+5
|
* Hide actions when lockdown settings are enabled.Matthew Barnes2009-11-141-3/+3
| | | | | | Hide actions that are disabled by lockdown settings instead of showing them as disabled. Showing them as disabled gives the impression the user can do something to enable them, which is not the case here.
* EWebView popup menu enhancements.Matthew Barnes2009-11-142-0/+33
| | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all().
* Further tweaks for the command-line importing.Matthew Barnes2009-11-131-11/+1
| | | | | Includes Bastien Nocera's patch to register our importable MIME types with the MIME database.
* Bug #588093 - Allow import of local files from command lineMilan Crha2009-11-125-13/+125
|
* Rearrange variables and Windows-only code to avoid warningTor Lillqvist2009-11-111-10/+11
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-112-3/+91
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-101-4/+0
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-085-14/+151
| | | | | | | | | | 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.
* Test drive EIOActivity with a simple asynchronous function.Matthew Barnes2009-11-081-1/+1
| | | | | | | | | | | | | | Rename e-fsutils to e-file-utils. This is where we'll add asynchronous functions for common file I/O operations with EActivity integration. Start with e_file_replace_contents_async() (and corresponding finish() function). This is a simple wrapper for g_file_replace_contents_async() which also returns an EActivity. It replaces e_write_file_uri(). Also redesign EIOActivity to -contain- a GAsyncResult rather than implement the interface for itself. This is easier for now but I may change my mind again when I figure out how to tie centralized error reporting into the EActivity framework.
* Move EActivity and subclasses to e-util.Matthew Barnes2009-11-081-1/+1
| | | | | Planning to write some asynchronous utility functions in e-util that return EActivity objects.
* Fix few compiler warningsMilan Crha2009-11-031-2/+2
|
* Bug 599890 - Search should not be remembered across foldersMatthew Barnes2009-10-301-1/+1
|
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-282-2/+6
| | | | | | 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.
* Cleanup and rename filter classes.Matthew Barnes2009-10-273-62/+62
|
* Bug #599740 - Crashing in g_thread_initMilan Crha2009-10-271-1/+2
|
* Clean up e_shell_get_active_window()Matthew Barnes2009-10-211-12/+16
| | | | Clarify the documentation and simplify the logic.
* Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-134-6/+34
|
* Bug 596952 - Offline mode does not stick when set from command lineMatthew Barnes2009-10-081-9/+15
|
* Clean up includes in main.c.Matthew Barnes2009-10-081-27/+17
|
* Shell cleanup.Matthew Barnes2009-10-071-5/+12
|
* Build with GTK_DISABLE_DEPRECATED and fix resulting breakage.Matthew Barnes2009-10-021-1/+3
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-012-33/+58
|
* Bug #596753 - Autocompletion addressbooks not rememberedMilan Crha2009-09-303-1/+10
| | | | And select page in Edit->Preferences based on the active view.
* Show import progress directly in the assistant window.Matthew Barnes2009-09-261-2/+6
|
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-265-973/+6
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-263-408/+564
|
* Shell importer does not need an EShellWindow.Matthew Barnes2009-09-263-5/+3
|
* Trim unused or unnecessary bits from the import framework.Matthew Barnes2009-09-262-3/+1
|
* Developer documentation improvements.Matthew Barnes2009-09-234-7/+11
|
* Kill the killev program, and the whole tools directory.Matthew Barnes2009-09-182-11/+31
| | | | The --force-shutdown option now simply runs "pkill evolution".
* Restore the alarm notify daemon.Matthew Barnes2009-09-181-1/+1
| | | | | Convert evolution-alarm-notify to an autostart program, add a .desktop file for it, and use libunique to ensure only one instance is running.
* Bug #590707 - Initialize DBus threading on startMilan Crha2009-09-101-0/+6
|
* Finish killing Bonobo.Matthew Barnes2009-09-093-40/+20
|
* Whitespace cleanup.Matthew Barnes2009-09-051-2/+2
|
* Kill the default parent window hack in e-error.c.Matthew Barnes2009-09-051-1/+6
| | | | | | Fix as many cases that relied on it as I could find, but there may be more cases out there. They should be fixed too. Passing a NULL parent window to e_error_new() is illegal and will emit a runtime warning.
* EShell cleanup + rework my previous crasher fix.Matthew Barnes2009-09-053-124/+90
|
* Fix crash when second main window is closed.Matthew Barnes2009-09-052-43/+41
|
* Homing in on a reference counting issue in EShellContent.Matthew Barnes2009-09-041-22/+6
|
* Fix a reference counting issue in EShellTaskbar.Matthew Barnes2009-09-041-0/+16
|
* Get the "save-calendar" plugin working.Matthew Barnes2009-09-043-34/+8
| | | | Based on initial work by Milan Crha.
* Fix some mistakes in the EShell documentation.Matthew Barnes2009-09-031-1/+1
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-036-49/+124
| | | | | | | | | | | | 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.
* Bug #593761 - Wrong dir for calendar local sourcesMilan Crha2009-09-021-2/+2
| | | | | | | | | | | | | | - using _get_data_dir, not _get_config_dir in calendar's and similar ensure_sources functions - current executable version is stored in gconf, thus not every start is migrating done - applied changes which were using e_source_list_ensure_group calls - e_source_list_sync is called at the end of those ensure_sources, as it didn't work to me to see the Personal source after start when I had no "On this computer" group (the group was added, but the source wasn't)
* Relax the EBinding API to reduce GObject casting.Matthew Barnes2009-09-023-44/+44
| | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing.
* Disable switcher actions when sidebar is hidden.Matthew Barnes2009-09-022-0/+26
|
* Start migration -after- loading all modules and plugins.Matthew Barnes2009-09-022-3/+5
|
* Bug 593778 - Clear search enabled when it shouldn't beMatthew Barnes2009-09-011-1/+12
|
* Get EConfig and EEvent hooks working again.Matthew Barnes2009-09-011-1/+1
| | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first.
* Fix for few compiler warningsMilan Crha2009-08-311-2/+2
|
* Fix widget include paths in public header files.Matthew Barnes2009-08-311-2/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2009-08-301-1/+1
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-22/+18
| | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
* Nit pick.Matthew Barnes2009-08-281-2/+2
|
* Fix resize behavior of main window panes.Matthew Barnes2009-08-271-1/+1
| | | | | Now that I finally understand how the "resize" and "shrink" child properties in GtkPaned work. Was a real brain teaser for some reason.
* Add menu item ellipsis according to bug #324492.Matthew Barnes2009-08-251-1/+1
|
* Bug 488409 - Remember size of filter/vfolder editor windowsMatthew Barnes2009-08-251-1/+1
|
* Bug 592335 - Submit bug-report doesn't workMatthew Barnes2009-08-251-1/+1
|
* Bug 511769 - Poor indication of when network is unavailableMatthew Barnes2009-08-251-0/+12
|
* Exit if no command-line URIs are handled.Matthew Barnes2009-08-252-4/+7
|
* Remember position of main window.Matthew Barnes2009-08-252-1/+23
|
* Stop killing evolution-data-server services.Matthew Barnes2009-08-232-88/+1
| | | | That includes startup and --force-shutdown.
* Bug 571488 - Migrate from deprecated gnome_sound to libcanberraH.Habighorst2009-08-231-3/+0
|
* Remove an unnecessary libgnomeui include.Matthew Barnes2009-08-181-1/+0
|
* Bug 567260 - Migrate from GnomeDruid to GtkAssistantMilan Crha2009-08-181-7/+20
|
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-162-2/+3
|
* Bug 567260 – Migrate from GnomeDruid to GtkAssistantMilan Crha2009-08-143-285/+134
|
* Update GConf when the online/offline button is clicked.Matthew Barnes2009-08-142-0/+20
|
* Bug #563795 - Crashed while importing an mbox file in local folderMilan Crha2009-08-111-3/+22
|
* Kill EMMenu and EMPopup.Matthew Barnes2009-08-102-12/+10
| | | | | Also finish adapting Templates plugin to EPluginUI. It was still leaning pretty hard on EMPopup.
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-013-76/+182
|
* Finish EggSMClient shell integration.Matthew Barnes2009-07-161-34/+102
|
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-151-1/+11
|\
| * Bug 588018 – NetworkManager & DBUS build check rewriteH.Habighorst2009-07-141-0/+6
| |
| * Fix excessive whitespace.Matthew Barnes2009-07-1321-89/+3
| |
* | Fix excessive whitespace.Matthew Barnes2009-07-142-21/+14
| |
* | Version check for the deprecation workaround was off by one.Matthew Barnes2009-07-141-19/+1
| |
* | Fix some issues when building Anjal.Matthew Barnes2009-07-131-1/+1
| |
* | Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-133-30/+78
| | | | | | | | | | | | | | 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.
* | Fix a problem with EShell initialization.Matthew Barnes2009-07-122-6/+5
| |
* | Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-116-274/+107
| | | | | | | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-112-0/+63
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: addressbook/util/addressbook.h calendar/gui/e-week-view-main-item.c configure.ac e-util/Makefile.am mail/em-account-editor.c mail/em-folder-selection-button.c shell/e-shell.c
| * [win32] When started from a console, get console output (Windows XP orFridrich Strba2009-07-041-0/+28
| | | | | | | | later only).
| * Set the start_in_offline state only when the user chooses to goChenthill Palanisamy2009-07-032-8/+39
| | | | | | | | offline and not when network goes offline.
| * Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.Matthew Barnes2009-07-013-3/+3
| |
| * Stop abusing forward declarations.Matthew Barnes2009-06-192-4/+3
| |
| * Use G_BEGIN_DECLS / G_END_DECLS macros.Matthew Barnes2009-06-1914-98/+28
| |
| * Fix even more compiler warnings and disable one for format stringsMilan Crha2009-06-051-2/+2
| |
| * It might help to install the evolution binary.Matthew Barnes2009-06-031-8/+1
| | | | | | | | | | I caused this in the "Drop support for CDE" commit. Nice little regression there.
| * Bug 582939 – Drop support for CDEMatthew Barnes2009-06-031-17/+0
| |
| * More code cleanup.Matthew Barnes2009-06-028-23/+23
| |
| * Whitespace cleanup.Matthew Barnes2009-05-299-21/+21
| |
| * Prefer GLib basic types over C types.Matthew Barnes2009-05-2939-386/+386
| |
| * Remove trailing whitespace, again.Matthew Barnes2009-05-2951-57/+57
| |
* | Fix up EShell API documentation.Matthew Barnes2009-07-015-5/+6
| |
* | Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-012-2/+2
| |
* | Get the "startup-wizard" plugin working again.Matthew Barnes2009-06-304-13/+32
| |
* | Get the "mail-to-task" plugin working again.Matthew Barnes2009-06-261-19/+44
| | | | | | | | | | This one was more challenging. It exposed some flaws in the new shell design and in EPluginUI, which is good because they're fixed now.
* | Fix similar weak pointer issues throughout.Matthew Barnes2009-06-203-0/+18
| |
* | Fix "make distcheck" errors.Matthew Barnes2009-06-202-26/+1
| |
* | Use key files for tracking widget states.Matthew Barnes2009-06-134-4/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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().
* | Search bar improvements.Matthew Barnes2009-06-092-75/+111
| | | | | | | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space.
* | Use GtkEntry instead of EIconEntry in the main search bar.Matthew Barnes2009-06-041-56/+127
| |
* | It might help to install the evolution binary.Matthew Barnes2009-06-041-8/+1
| | | | | | | | | | I caused this in the "Drop support for CDE" commit. Nice little regression there.
* | Bug 582939 – Drop support for CDEMatthew Barnes2009-06-031-17/+0
| |
* | More code cleanup.Matthew Barnes2009-06-021-1/+1
| |
* | Whitespace cleanup.Matthew Barnes2009-05-293-47/+47
| |
* | Prefer GLib basic types over C types.Matthew Barnes2009-05-277-41/+41
| |
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-05-2738-45/+46
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: a11y/widgets/ea-combo-button.c a11y/widgets/ea-combo-button.h addressbook/gui/component/addressbook-component.c addressbook/gui/component/addressbook-component.h addressbook/gui/component/addressbook-view.c addressbook/gui/component/addressbook-view.h addressbook/gui/component/component-factory.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/eab-contact-display.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.c addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup-control.c addressbook/gui/widgets/eab-popup-control.h addressbook/gui/widgets/eab-popup.c addressbook/gui/widgets/eab-popup.h calendar/gui/cal-search-bar.c calendar/gui/calendar-commands.c calendar/gui/calendar-component.c calendar/gui/comp-editor-factory.c calendar/gui/comp-editor-factory.h calendar/gui/control-factory.c calendar/gui/dialogs/comp-editor.c calendar/gui/e-cal-component-memo-preview.c calendar/gui/e-cal-component-memo-preview.h calendar/gui/e-calendar-table.c calendar/gui/e-memo-table.c calendar/gui/e-memos.c calendar/gui/e-tasks.c calendar/gui/gnome-cal.c calendar/gui/gnome-cal.h calendar/gui/itip-bonobo-control.c calendar/gui/itip-bonobo-control.h calendar/gui/main.c calendar/gui/memos-component.c calendar/gui/memos-control.c calendar/gui/memos-control.h calendar/gui/migration.c calendar/gui/migration.h calendar/gui/tasks-component.c calendar/gui/tasks-control.c calendar/importers/main.c composer/Makefile.am composer/e-composer-header-table.c composer/e-composer-header.c composer/e-composer-header.h composer/e-composer-name-header.c composer/e-composer-private.c composer/e-composer-text-header.c composer/e-msg-composer.c composer/e-msg-composer.h e-util/e-corba-utils.h e-util/e-logger.c e-util/e-logger.h e-util/e-util-labels.c e-util/e-util-labels.h em-format/em-format.c mail/Makefile.am mail/e-mail-shell-migrate.c mail/em-account-editor.c mail/em-account-editor.h mail/em-composer-prefs.c mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-tree.c mail/em-folder-tree.h mail/em-folder-utils.c mail/em-folder-utils.h mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html.c mail/em-mailer-prefs.c mail/em-mailer-prefs.h mail/em-message-browser.c mail/em-message-browser.h mail/em-network-prefs.h mail/em-popup.c mail/em-utils.c mail/importers/Makefile.am mail/mail-component-factory.c mail/mail-component.c mail/mail-config-factory.c mail/mail-config-factory.h mail/mail-config.c mail/mail-dialogs.glade mail/mail-types.h plugins/calendar-weather/calendar-weather.c plugins/mail-account-disable/mail-account-disable.c plugins/select-one-source/select-one-source.c po/POTFILES.in shell/e-component-registry.c shell/e-component-registry.h shell/e-component-view.c shell/e-component-view.h shell/e-corba-config-page.c shell/e-corba-config-page.h shell/e-shell-constants.h shell/e-shell-settings-dialog.c shell/e-shell-settings-dialog.h shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-shell.h shell/e-sidebar.c shell/e-sidebar.h shell/e-user-creatable-items-handler.c shell/e-user-creatable-items-handler.h shell/es-menu.c shell/es-menu.h shell/evolution-component.h shell/evolution-config-control.c shell/evolution-config-control.h shell/evolution-listener.c shell/evolution-listener.h shell/evolution-shell-component-utils.c shell/evolution-shell-component-utils.h shell/importer/evolution-importer-client.c shell/importer/evolution-importer-client.h shell/importer/evolution-importer-listener.c shell/importer/evolution-importer-listener.h shell/importer/evolution-importer.c shell/importer/evolution-importer.h shell/importer/evolution-intelligent-importer.c shell/importer/evolution-intelligent-importer.h shell/importer/intelligent.c shell/main.c shell/test/evolution-test-component.c shell/test/evolution-test-component.h widgets/menus/gal-view-instance.c widgets/menus/gal-view-menus.c widgets/menus/gal-view-menus.h widgets/misc/Makefile.am widgets/misc/e-activity-handler.c widgets/misc/e-activity-handler.h widgets/misc/e-charset-picker.c widgets/misc/e-combo-button.c widgets/misc/e-combo-button.h widgets/misc/e-config-page.h widgets/misc/e-dropdown-button.c widgets/misc/e-dropdown-button.h widgets/misc/e-filter-bar.c widgets/misc/e-info-label.c widgets/misc/e-info-label.h widgets/misc/e-multi-config-dialog.c widgets/misc/e-multi-config-dialog.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h widgets/misc/e-task-bar.c widgets/misc/e-task-bar.h widgets/misc/e-task-widget.c widgets/misc/e-task-widget.h widgets/misc/test-dropdown-button.c widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/table/e-table-example-1.c
| * | Remove trailing whitespace, again.Matthew Barnes2009-05-2751-57/+57
| |/
| * Fix compiler warnings in shell.Matthew Barnes2009-05-264-6/+9
| |
| * Eliminate redundant E_ICON_SIZE_* enumeration.Matthew Barnes2009-05-245-17/+17
| |
| * Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-174-5/+5
| |
| * Bug 571496 – Migrate from deprecated gnome_execute to g_spawn/xdg-terminalAdam Petaccia2009-05-061-18/+15
| |