/* * GnomeCalendar widget * Copyright (C) 1998 the Free Software Foundation * * Authors: Miguel de Icaza (miguel@kernel.org) * Federico Mena-Quintero */ #ifndef GNOME_CALENDAR_APP_H #define GNOME_CALENDAR_APP_H #include #include #include #include #include #include BEGIN_GNOME_DECLS #define GNOME_TYPE_CALENDAR (gnome_calendar_get_type ()) #define GNOME_CALENDAR(obj) (GTK_CHECK_CAST ((obj), GNOME_TYPE_CALENDAR, GnomeCalendar)) #define GNOME_CALENDAR_CLASS(klass) (GTK_CHECK_CAST_CLASS ((klass), GNOME_TYPE_CALENDAR, \ GnomeCalendarClass)) #define GNOME_IS_CALENDAR(obj) (GTK_CHECK_TYPE ((obj), GNOME_TYPE_CALENDAR)) #define GNOME_IS_CALENDAR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GNOME_TYPE_CALENDAR)) typedef struct _GnomeCalendar GnomeCalendar; typedef struct _GnomeCalendarClass GnomeCalendarClass; typedef struct _GnomeCalendarPrivate GnomeCalendarPrivate; struct _GnomeCalendar { GtkVBox vbox; /* Private data */ GnomeCalendarPrivate *priv; }; struct _GnomeCalendarClass { GtkVBoxClass parent_class; }; typedef enum { CALENDAR_OPEN, CALENDAR_OPEN_OR_CREATE } GnomeCalendarOpenMode; GtkType gnome_calendar_get_type (void); GtkWidget *gnome_calendar_construct (GnomeCalendar *gcal); GtkWidget *gnome_calendar_new (void); CalClient *gnome_calendar_get_cal_client (GnomeCalendar *gcal); gboolean gnome_calendar_open (GnomeCalendar *gcal, char *file, GnomeCalendarOpenMode gcom); /* int gnome_calendar_create (GnomeCalendar *gcal, char *file); */ void gnome_calendar_next (GnomeCalendar *gcal); void gnome_calendar_previous (GnomeCalendar *gcal); void gnome_calendar_goto (GnomeCalendar *gcal, time_t new_time); void gnome_calendar_dayjump (GnomeCalendar *gcal, time_t time); /* Jumps to the current day */ void gnome_calendar_goto_today (GnomeCalendar *gcal); void gnome_calendar_tag_calendar (GnomeCalendar *gcal, ECalendar *ecal); char *gnome_calendar_get_current_view_name (GnomeCalendar *gcal); void gnome_calendar_set_view (GnomeCalendar *gcal, char *page_name, gboolean reset_range_shown, gboolean focus); void gnome_calendar_set_selected_time_range (GnomeCalendar *gcal, time_t start_time, time_t end_time); void gnome_calendar_get_selected_time_range (GnomeCalendar *gcal, time_t *start_time, time_t *end_time); void gnome_calendar_edit_object (GnomeCalendar *gcal, CalComponent *comp); void gnome_calendar_new_appointment (GnomeCalendar *gcal); /* Returns the selected time range for the current view. Note that this may be different from the fields in the GnomeCalendar, since the view may clip this or choose a more appropriate time. */ void gnome_calendar_get_current_time_range (GnomeCalendar *gcal, time_t *start_time, time_t *end_time); /* Notifies the calendar that the time format has changed and it must update all its views */ void gnome_calendar_time_format_changed (GnomeCalendar *gcal); /* Notifies the calendar that the todo list properties have changed and its time to update the views. */ void gnome_calendar_colors_changed (GnomeCalendar *gcal); /* Notifies the calendar that the todo list properties have changed and its time to update the views. */ void gnome_calendar_todo_properties_changed (GnomeCalendar *gcal); void gnome_calendar_set_view_buttons (GnomeCalendar *gcal, GtkWidget *day_button, GtkWidget *work_week_button, GtkWidget *week_button, GtkWidget *month_button); /* This makes the appropriate radio button in the toolbar active. It sets the ignore_view_button_clicks flag so the "clicked" signal handlers just return without doing anything. */ void gnome_calendar_update_view_buttons (GnomeCalendar *gcal); END_GNOME_DECLS #endif type_ensure() to register plugin hook types.Matthew Barnes2012-12-171-2/+2 * Fix compiler warnings.Matthew Barnes2012-12-151-0/+4 * libeshell documentation cleanups.Matthew Barnes2012-12-148-12/+28 * Remove unused E_SHELL_MIGRATE_ERROR domain.Matthew Barnes2012-12-141-15/+0 * Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-4/+0 * Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-1322-133/+51 * Avoid using GdkEventButton directly in certain places.Matthew Barnes2012-11-303-13/+23 * Bug #685808 - Search bar entry background does not change on searchMilan Crha2012-11-211-10/+60 * Coding style and whitespace cleanup.Matthew Barnes2012-11-117-25/+34 * Replace e_ensure_type() with g_type_ensure().Matthew Barnes2012-11-091-12/+1 * Bug #656143 - Stop using deprecated Gtk[HV]Box(Class)Dominique Leuenberger2012-11-071-2/+2 * Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-062-20/+9 * Missing search buttons in Calendar viewMilan Crha2012-11-061-2/+4 * Bug #422273 - Wrap searchbar widgets for smaller minimum width requestMilan Crha2012-10-315-65/+210 * Add format checker (in compile time) to e_notice()Milan Crha2012-10-171-7/+4 * Do not crash in create_default_shell()Milan Crha2012-10-171-3/+9 * Bug 676141 - Use GtkApplication for session managementMatthew Barnes2012-10-163-44/+14 * Fix contact maps.Matthew Barnes2012-10-042-4/+17 * Bug #683548 - Initialize webkit's web view before other threads are runMilan Crha2012-09-101-0/+17 * Remove test EShellBackend module.Matthew Barnes2012-08-257-571/+0 * Coding style and whitespace cleanup.Matthew Barnes2012-08-207-44/+54 * Adapt to CamelService API changes.Matthew Barnes2012-08-131-1/+4 * Adapt to CamelSession API changes.Matthew Barnes2012-08-121-2/+12 * express: Remove clutter-based email tabs.Matthew Barnes2012-08-111-15/+0 * Add missing linker flag.Matthew Barnes2012-08-111-0/+1 * e-convert-local-mail.c: Minor cleanups.Matthew Barnes2012-08-111-14/+9 * Run mbox-to-Maildir conversion before loading modules.Matthew Barnes2012-08-103-1/+332 * Add e_shell_view_remote_delete_source().Matthew Barnes2012-08-032-0/+36 * Use template files to generate GEnumClass types.Matthew Barnes2012-07-183-5/+74 * Delay saving Evolution version until later in initialization.Matthew Barnes2012-07-031-14/+68 * Remove evolution-nognome script.Matthew Barnes2012-07-032-16/+0 * Record the actual Evolution version after migration.Matthew Barnes2012-07-033-10/+45 * Remove UPGRADE_REVISION definition.Matthew Barnes2012-07-031-5/+3 * Remove "last-upgraded-version" GSettings key.Matthew Barnes2012-07-021-19/+0 * killev.c: Don't kill D-Bus services.Matthew Barnes2012-07-021-36/+25 * Coding style and whitespace cleanup.Matthew Barnes2012-06-251-2/+2 * Do not call g_object_notify() when property didn't changeMilan Crha2012-06-188-1/+124 * Remove the last remaining usage of GConfMilan Crha2012-06-157-459/+9 * Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-0416-21/+18 * Adapt libeshell to the new ESource API.Matthew Barnes2012-06-038-151/+129 * Bug 677280 - "Help - Quick Reference" opens multiple PDF documentsMatthew Barnes2012-06-011-2/+4 * Update About dialog contentJavier Jardón2012-05-161-5/+4 * Remove "currently-offline" key from GSettings added for bug #655753Milan Crha2012-04-251-9/+0 * Bug #655753 - Improve offline notification for network outageMilan Crha2012-04-231-0/+9 * Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-3/+3 * Show calendar Find Next/Prev/Stop buttons beside Search text entryMilan Crha2012-04-162-0/+12 * Bug 673955 - Can not display email and calendar in separate windows anymoreMatthew Barnes2012-04-121-1/+6 * Whitespace cleanup.Matthew Barnes2012-04-021-2/+2 * Use GNetworkMonitor to drive EShell:network-available.Matthew Barnes2012-04-011-2/+12 * Add dbus-glib flags to evolution binary.Matthew Barnes2012-03-181-0/+2 * Bug #659756 - Initialize dbus-glib threading for GConfMilan Crha2012-03-162-0/+7 * Bug #669490 - Window resizes with many activities (gtk 3.3.14+)Milan Crha2012-03-161-3/+15 * Fix too large allocation for alert-bar in shell-contentMilan Crha2012-03-131-1/+1 * Add missing linker flags.Matthew Barnes2012-03-041-1/+2 * Move EAlert* and e-xml-utils references from other part of the code to libevo...Srinivasa Ragavan2012-03-035-7/+7 * Coding style and whitespace cleanup.Matthew Barnes2012-02-206-74/+46 * EShellView: Add new_shell_searchbar() factory method.Matthew Barnes2012-02-202-1/+5 * Detect express mode, if we are in Tizen/Dawati.Srinivasa Ragavan2012-02-181-1/+4 * Change 'file name' to 'filename' according to the GDP Style GuideAndre Klapper2012-02-171-1/+1 * Bug #320976 - Remember last New button choice in Calendar viewMilan Crha2012-02-174-1/+205 * Bug #591436 - Add -avoid-version to LDFLAGSH. Habighorst2012-02-151-1/+1 * Use _DAWATI to detect if its Tizen/MeeGo.Srinivasa Ragavan2012-02-021-1/+1 * Remove the --debug command-line option.Matthew Barnes2012-02-011-15/+0 * Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-0/+2 * Bug #661535 - "Current View" tooltip uses string with mnemonic underscoreMilan Crha2012-01-181-2/+4 * Do not auto-mark-as-seen when changing filter typeMilan Crha2012-01-112-1/+17 * Do not call gtk_main_quit() on shell quit when none is runningMilan Crha2012-01-061-1/+2 * Reduce diff noise with account-mgmt branch.Matthew Barnes2011-12-201-0/+1 * EShellBackend: Remove unused enum value.Matthew Barnes2011-12-161-1/+0 * Add a hidden --version option.Matthew Barnes2011-12-081-0/+13 * Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-085-32/+43 * Bug #663122 - Doesn't quit on exit with GLib's git masterMilan Crha2011-12-031-0/+2 * Remove some unnecessary GConf crud.Matthew Barnes2011-11-282-3/+0 * Use e_restore_window() and "org.gnome.evolution.window".Matthew Barnes2011-11-282-5/+4 * Remove e_shell_get_gconf_client().Matthew Barnes2011-11-252-25/+0 * Bug 664654 - Sanitize subjects before suggesting a save filenameMatthew Barnes2011-11-251-2/+10 * Miscellaneous cleanups.Matthew Barnes2011-11-239-39/+63 * Miscellaneous cleanups.Matthew Barnes2011-11-232-5/+10 * Fix compiler warnings.Matthew Barnes2011-11-233-5/+2 * Build fixesRodrigo Moya2011-11-152-15/+13 * Migrate EShellSettings to GSettingsRodrigo Moya2011-11-153-127/+96 * Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-141-1/+25 |\ | * Bug 663372 - Actions not updated after disabling accountMatthew Barnes2011-11-131-1/+25 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-081-0/+3 |\| | * Call e_gdbus_templates_init_main_thread() in main()Milan Crha2011-11-071-0/+3 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-281-4/+0 |\| | * Remove g_thread_init() calls.Matthew Barnes2011-10-271-4/+0 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-242-0/+5 |\| | * Call g_thread_init() conditionallyMilan Crha2011-10-241-0/+2 | * Fix distcheck errors.Matthew Barnes2011-10-231-0/+3 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-141-0/+9 |\| | * Bug #576478 - [Windows] Redirect Help->Contents to a web pageMilan Crha2011-10-131-0/+9 * | Build fixesRodrigo Moya2011-10-133-10/+7 * | Migrate most of the shell code to GSettingsRodrigo Moya2011-10-134-94/+63 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-132-7/+5 |\| | * Bug 661534 - "Current View" tooltip untranslatedMatthew Barnes2011-10-121-1/+1 | * Bug 661542 - Weird "Cannot upgrade from version 0.xxxx" on first useVincent Untz2011-10-121-6/+4 * | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-109-327/+123 |\| | * Let GtkFileChooser track its own last-used-folder.Matthew Barnes2011-10-063-74/+14 | * Remove EHintedEntry.Matthew Barnes2011-10-062-15/+18 | * GtkApplication has some new EShell-like features.Matthew Barnes2011-10-066-238/+91 * | Merge from masterRodrigo Moya2011-10-0511-34/+28 |\| | * Simplify library dependency flags.Matthew Barnes2011-10-051-10/+7 | * Require GLib 2.30.Matthew Barnes2011-09-301-10/+0 | * Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-271-4/+7 | * The EExtension framework is now in libebackend.Matthew Barnes2011-09-269-14/+15 | * Make sure GConf schemas have defined default valuesMilan Crha2011-09-141-5/+22 | * Coding style and whitespace cleanup.Matthew Barnes2011-09-0410-52/+69 | * Bug 657836 - Work around g_unix_signal API changes.Matthew Barnes2011-09-011-1/+5 | * Fix build break in libeshell.Matthew Barnes2011-08-291-0/+1 | * EShell: Remove unused macro.Matthew Barnes2011-08-081-2/+0 | * Remove link to FAQ as content is covered by new user docsAndre Klapper2011-08-051-26/+0 | * Replace user name by username as used anywhere else in EvolutionAndre Klapper2011-07-281-1/+1 | * Bug 652634 - Runtime warning on second search dialogMatthew Barnes2011-07-111-2/+8 | * EShellContent: Fix underallocation of EAlertBar.Matthew Barnes2011-07-071-27/+54 | * Coding style and whitespace cleanups.Matthew Barnes2011-06-094-129/+31 | * Including <glib-object.h> directly is rarely needed.Matthew Barnes2011-05-281-2/+0 | * Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-283-3/+2 | * Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-2716-5/+60 | * EMFolderTree: Add an EAlertSink property.Matthew Barnes2011-05-241-0/+32 | * Bug 649993 - Change behavior of --component optionMatthew Barnes2011-05-241-0/+22 | * Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-05-235-46/+34 | * Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERMColin Walters2011-05-221-22/+19 | * Handle SIGTERM instead of SIGQUIT.Matthew Barnes2011-05-221-9/+9 | * Bug 650525 - Don't install a SEGV handlerColin Walters2011-05-221-51/+0 | * Coding style and whitespace cleanup.Matthew Barnes2011-05-221-1/+2 | * Coding style cleanups.Matthew Barnes2011-05-092-13/+13 | * Whitespace and coding style cleanups.Matthew Barnes2011-05-083-11/+19 | * Bug 332497 - Add Edit -> Available CategoriesDan Vrátil2011-05-051-0/+44 | * Bug 645825 - Search bar not changing color when showing resultsDan Vrátil2011-04-291-2/+2 | * Bug 648317 - MeeGo shell looking for the wrong atomAbner Silva2011-04-211-1/+1 | * Remove the profiler plugin.Matthew Barnes2011-03-291-4/+0 | * Restore lockdown integration.Matthew Barnes2011-03-284-90/+21 | * EShellContent: Whitespace cleanup.Matthew Barnes2011-03-261-11/+11 | * Fix an EShell reference leak.Matthew Barnes2011-03-251-0/+9 | * Port EShell to GtkApplication.Matthew Barnes2011-03-253-163/+182 | * Bug 645551 - Mailer statusbar jumping in sizeMatthew Barnes2011-03-251-8/+42 | * Bug 644166 - Add style class to primary toolbarsMatthew Barnes2011-03-081-0/+4 | * Bug #644107 - Local addressbooks created without relative_uri setMilan Crha2011-03-071-4/+18 | * Typo in comment: s/datefime-formats/datetime-formats/Paul Menzel2011-03-071-1/+1 | * Coding style and whitespace cleanup.Matthew Barnes2011-03-0613-14/+30 | * Do not flush Outbox when mail shell backend not startedMilan Crha2011-03-042-0/+16 | * Merge duplicate local sourcesMilan Crha2011-03-031-0/+88 | * Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-2513-94/+44 | * Write state.ini immediately in EShellView::dispose methodMilan Crha2011-02-241-3/+12 | * Coding style and whitespace cleanup.Matthew Barnes2011-02-192-3/+7 | * Bug #638333 - Critical warning when invoking File->New->Mail FolderMilan Crha2011-02-161-0/+2 | * Fix few memory leaksMilan Crha2011-02-151-11/+0 | * Bug 642171 - Implicit libgnome dependency for lockdown GConf keysMatthew Barnes2011-02-133-0/+12 | * Remove NULL checks for GObject methods.Matthew Barnes2011-02-138-16/+16 | * Bug #638057 - Evolution --express doesn't remember status bar settingMilan Crha2011-02-111-10/+4 | * Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-092-14/+7 | * Composer: Add Edit -> PreferencesMatthew Barnes2011-02-041-3/+2 | * More whitespace cleanup.Matthew Barnes2011-01-312-12/+12 | * Coding style and whitespace cleanup.Matthew Barnes2011-01-301-2/+5 | * Bug #640516 - Information bar above folder list is emptyMilan Crha2011-01-261-6/+2 | * Adapt size_request vfuncs to latest gtk+-3.0 API.Rodrigo Moya2011-01-254-38/+118 | * Dialogs no longer have separators.Matthew Barnes2011-01-251-2/+2 | * Drop backward-compatibility cruft.Matthew Barnes2011-01-257-22/+0 | * Bug #634403 - Mails Label popup menu is not updated properlyMilan Crha2011-01-192-0/+3 | * Fudge gtk_widget_get_preferred_size() for gtk2.Matthew Barnes2011-01-153-11/+20 | * Bug #638808 - camel_shutdown() called too earlyMilan Crha2011-01-111-0/+1 | * Add e_shell_submit_alert().Matthew Barnes2010-12-272-0/+69 | * Bug #590245 - 'evolution --force-shutdown' should kill factoriesMilan Crha2010-12-072-12/+73 | * Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-068-0/+24 | * Clarify command line parameter stringAndre Klapper2010-12-041-1/+2 | * 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 dire...Mathieu Trudel-Lapierre2010-11-231-7/+11 | * 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 * | 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 * | EShellContent: Fix underallocation of EAlertBar.Matthew Barnes2011-09-141-27/+54 * | 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 * | Bug 649993 - Change behavior of --component optionMatthew Barnes2011-06-301-0/+22 * | Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-06-305-46/+34 * | Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERMColin Walters2011-06-301-22/+19 * | Handle SIGTERM instead of SIGQUIT.Matthew Barnes2011-06-301-9/+9 * | Bug 650525 - Don't install a SEGV handlerColin Walters2011-06-301-51/+0 * | 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 * | 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 * | Remove the profiler plugin.Matthew Barnes2011-06-301-4/+0 * | Restore lockdown integration.Matthew Barnes2011-06-304-90/+21 * | EShellContent: Whitespace cleanup.Matthew Barnes2011-06-301-11/+11 * | Fix an EShell reference leak.Matthew Barnes2011-06-301-0/+9 * | 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 * | 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 * | Remove NULL checks for GObject methods.Matthew Barnes2011-06-308-16/+16 * | 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 * | Composer: Add Edit -> PreferencesMatthew Barnes2011-06-301-3/+2 * | 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 * | Bug #638808 - camel_shutdown() called too earlyMilan Crha2011-06-301-0/+1 * | Add e_shell_submit_alert().Matthew Barnes2011-06-302-0/+69 * | 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 dire...Mathieu Trudel-Lapierre2011-06-301-7/+11 * | 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 * Bug #597567 - Crash in comp_subject()Milan Crha2010-10-211-0/+8 * EAlert: Allow arbitrary actions to be added.Matthew Barnes2010-10-197-35/+130 * Implement EAlertSinkInterface in EShellContent.Matthew Barnes2010-10-183-14/+155 * EShellView: Mark a string for translation.Matthew Barnes2010-10-181-3/+1 * Replace EBinding with GBinding.Matthew Barnes2010-10-149-88/+144 * Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-143-12/+49 * EShellBackend: Respond to EShell::prepare-for-quit signals.Matthew Barnes2010-10-142-8/+149 * Bug #631320 - GtkObject is gone in GTK3Milan Crha2010-10-071-25/+10 * Bug #630390 - Operation stuck: Generating message list (cancelled)Milan Crha2010-10-06