aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
Commit message (Collapse)AuthorAgeFilesLines
* EUrlEntry: Replace button with clickable inline icon.Matthew Barnes2013-06-241-9/+6
| | | | | | | | Replace the big, bulky "open URL" button with a clickable icon directly in the text entry field. This saves precious vertical space, especially in the contact editor. Also remove e_url_entry_get_entry() since EUrlEntry now IS a GtkEntry.
* Bug #555130 - Redesign task editorMilan Crha2013-06-067-1428/+884
|
* Make EAttachment a little more thread-safe.Matthew Barnes2013-05-241-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | EAttachment is now used from worker threads by EMailFormatterAttachment, so add some thread-safe accessor functions to eliminate potential races. Added thread-safe functions: e_attachment_dup_disposition() e_attachment_ref_file() e_attachment_ref_file_info() e_attachment_ref_icon() e_attachment_ref_mime_part() e_attachment_dup_description() e_attachment_dup_thumbnail_path() Renamed functions: e_attachment_get_mime_type() -> e_attachment_dup_mime_type() Removed non-thread-safe functions: e_attachment_get_file() e_attachment_get_file_info() e_attachment_get_icon() e_attachment_get_mime_part() e_attachment_get_description() e_attachment_get_thumbnail_path()
* Attachment-related cleanups.Matthew Barnes2013-05-241-9/+11
|
* Use an user-friendlier message when update comp-editor failsFabiano Fidêncio2013-05-221-26/+17
|
* Coding style and whitespace cleanup.Matthew Barnes2013-05-081-12/+12
|
* Add e_cal_model_ref_default_client().Matthew Barnes2013-04-131-2/+5
| | | | Replaces e_cal_model_get_default_client(), which was not thread-safe.
* Bug #696663 - Save without close should update comp-editorFabiano Fidêncio2013-04-101-2/+95
|
* Bug 697268 - Incorrect mnemonic widget in 'Add Reminder' dialogMatthew Barnes2013-04-091-1/+1
|
* Remove EUIManager.Matthew Barnes2013-04-012-5/+3
| | | | No longer needed. Use GtkUIManager directly.
* Remove conditionals from GtkUIManager definitions.Matthew Barnes2013-04-012-12/+0
|
* EShell: Remove "meego-mode" property.Matthew Barnes2013-04-011-25/+4
| | | | | | The property is always FALSE. Remove both the property itself and any logic predicated on it.
* Remove e_shell_adapt_window_size().Matthew Barnes2013-04-011-1/+0
| | | | Its preconditions are never TRUE, and is therefore a no-op function.
* Convert all "week-start-day" properties to GDateWeekday.Matthew Barnes2013-03-173-31/+118
|
* Add ESettingsSpellEntry.Matthew Barnes2013-03-123-41/+0
| | | | | Automatically configures the "checking-enabled" property on all ESpellEntry instances.
* simple_recur_to_comp: Obtain the week start day from CompEditor.Matthew Barnes2013-03-091-2/+5
|
* CompEditor: Add a "week-start-day" property.Matthew Barnes2013-03-092-0/+54
| | | | Automatically configured, of course, by ESettingsCompEditor.
* Add ESettingsWeekdayChooser.Matthew Barnes2013-03-091-3/+0
| | | | Configures the "week-start-day" property of EWeekdayChooser.
* Rename WeekdayPicker to EWeekdayChooser.Matthew Barnes2013-03-091-19/+19
| | | | Also add a "week-start-day" property and make it extensible.
* goto-dialog: ECalendarItem sets its own week start day.Matthew Barnes2013-03-071-5/+0
| | | | By way of ESettingsCalendarItem.
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-0212-135/+121
| | | | Basically any place where we use both EClient and ESourceComboBox.
* Added mnemonic widget for 'Time zone' field in event editorVadim Rutkovsky2013-02-281-2/+3
|
* Add mnemonic widgets for Status and Priority comboboxesVadim Rutkovsky2013-02-221-0/+2
| | | https://bugzilla.gnome.org/show_bug.cgi?id=693660
* TaskPage: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-181-3/+12
|
* MemoPage: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-181-3/+12
|
* EventPage: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-181-3/+12
|
* Add mnemonic widget for Start date field in memo editorVadim Rutkovsky2013-02-141-0/+1
|
* Fix up error handling around e_book/cal_client_connect_finish().Matthew Barnes2013-01-313-27/+3
|
* Use e_cal_client_connect().Matthew Barnes2013-01-304-105/+130
| | | | Instead of e_client_utils_open_new() or e_cal_client_new().
* Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.Matthew Barnes2013-01-203-6/+6
| | | | | Clean up resulting deprecation warnings, which were all related to GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
* Fix compiler warnings.Matthew Barnes2012-12-153-9/+9
|
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-2/+0
| | | | | | | | | | | | Move the supporting widgets for the contact maps feature alongside EABContactDisplay. Removing them from libeutil helps isolate our usage of libchamplain so it's not imposed on the entire application, and even 3rd party software. That libchamplain is an optional dependency only further complicates the matter. Ideally I'd like to somehow isolate this feature in an extension module, but we currently lack sufficient hooks for such an extension. So this arrangement will have to suffice for now.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-1325-94/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Address couple issues found by a Coverity scanMilan Crha2012-11-304-2/+7
|
* Bug #687997 - No email sent for shared memosMilan Crha2012-11-122-3/+30
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-1117-461/+637
|
* Bug #682678 - Entering the end date for a recurring event is very difficultMilan Crha2012-08-312-8/+15
|
* Fix all 'may be used uninitialized' compiler warningsDan Vrátil2012-08-201-2/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-204-12/+12
|
* Bug #559815 - Empty Reminders editor when opened second timeMilan Crha2012-08-081-1/+15
|
* Disable CompEditor when saving changesMilan Crha2012-07-171-2/+6
|
* Adapt to EContact API change.Matthew Barnes2012-06-251-1/+1
| | | | E_CONTACT_BOOK_URI -> UID.
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-251-3/+1
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-182-0/+33
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-0428-74/+36
|
* Adapt calendar/gui to the new ESource API.Matthew Barnes2012-06-0324-1145/+428
|
* Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2012-06-031-0/+7
| | | | | Hide EAccount usage behind a generic API so EAccount can be replaced more easily.
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-031-1/+2
| | | | One last time.
* Whitespace cleanups.Matthew Barnes2012-05-133-5/+4
|
* Bug #559710 - Do not close Event/Task/Memo editor on saveMilan Crha2012-05-111-4/+58
|
* Spell checking for 'Summary' in Event/Task/Memo editorsMilan Crha2012-05-107-32/+84
|
* Bug #668988 - Handle a "minutes" entry greater than 59 intelligentlyMilan Crha2012-04-261-0/+29
|
* Bug #668769 - Recurrence editor weekday items slightly croppedMilan Crha2012-04-241-6/+6
|
* Fix possible memory leaks of GError structuresMilan Crha2012-04-234-6/+12
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-226-26/+44
|
* Whitespace cleanup.Matthew Barnes2012-04-021-2/+2
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* Bug #664326 - Buttons to handle exceptions in event is always disabledMilan Crha2012-03-091-1/+1
|
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-035-6/+6
| | | | libevolution-utils.
* Bug #670934 - Was saving ESourceList first, rather than lastMilan Crha2012-03-011-3/+3
|
* Bug #661265 - Move to Calendar breaks google:// URIMilan Crha2012-02-221-9/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-2015-181/+224
|
* Use same mnemonic for 'Categories' button in Task editor as in all other ↵Andre Klapper2012-02-181-1/+1
| | | | dialogs as it does not collide with other mnemonics
* Bug 670280 - Remove "Recent Documents" attachment featureMatthew Barnes2012-02-171-37/+0
| | | | | | | GTK's file chooser dialog provides one-click access to recently used documents now, so we can remove the redundancy from Evolution's mail composer main menu and calendar component editor main menu and leave it at "Insert -> Attachment".
* Bug #663110 - Crash on copy events between calendarsMilan Crha2012-02-171-4/+0
|
* Bug #655955 - Harmonize mnemonic for New > Shared Memo > OrganizerMilan Crha2012-02-161-1/+2
|
* Fix broken Help menu entry in Task Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Fix broken Help menu entry in Memo Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Fix broken Help menu entry in Appointment Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-193-34/+45
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Remove unnecessary #include <e-util/e-dialog-widgets.h>Matthew Barnes2011-12-244-4/+0
|
* Remove e_dialog_append_list_store_text().Matthew Barnes2011-12-243-33/+84
| | | | Silly function. Do it manually or use a GtkComboBoxText.
* Remove e_dialog_editable_get().Matthew Barnes2011-12-245-77/+59
| | | | | Silly function. Use gtk_entry_get_text() for a const string or else gtk_editable_get_chars() for an allocated string.
* Remove e_dialog_editable_set().Matthew Barnes2011-12-245-20/+43
| | | | Silly function. Use gtk_entry_set_text().
* Bug #577322 - Rename of a system ESource doesn't persistMilan Crha2011-12-071-1/+15
|
* Miscellaneous cleanups.Matthew Barnes2011-11-239-9/+0
|
* Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-101-6/+4
|\
| * EAttachmentPaned: Add "resize-toplevel" property.Matthew Barnes2011-10-061-5/+2
| | | | | | | | | | | | | | | | | | Similiar to the new GtkExpander:resize-toplevel property in GTK+ 3.2, but adapted to the fact that EAttachmentPaned's expander has no direct child widget, and instead acts on the child widget in the lower pane. CompEditor now uses this to fix the weird vertical resizing behavior when its attachment bar is expanded and then collapsed again.
| * GtkApplication has some new EShell-like features.Matthew Barnes2011-10-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I pushed a few EShell features up to GtkApplication for GTK+ 3.2, so we can now trim off the redundancies in EShell. 1) GtkApplication has a new "window-added" signal which replaces EShell's own "window-created" signal. 2) GtkApplication has a new "window-removed" signal which replaces EShell's own "window-destroyed" signal. 3) gtk_application_get_windows() now returns a list of windows sorted by most recently focused, replacing e_shell_get_watched_windows(). 4) GtkApplication now provides enough hooks to subclasses that we can remove e_shell_watch_window() and call gtk_application_add_window() directly.
* | First successful buildRodrigo Moya2011-10-061-7/+12
| |
* | Merge from masterRodrigo Moya2011-10-0523-88/+98
|\|
| * Simplify library dependency flags.Matthew Barnes2011-10-051-5/+4
| | | | | | | | | | | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
| * Fix few 'may be used uninitialized' compiler warningsMilan Crha2011-09-301-2/+2
| |
| * Bug #656378 attachment name corruptionPunit Jain2011-09-301-2/+4
| |
| * Remove Ctrl + l ( ) character from source filesPaul Menzel2011-09-3012-17/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From ccc980da1fd84ebfca25cf8caf9a5d62333099fc Mon Sep 17 00:00:00 2001 From: Paul Menzel <paulepanter@users.sourceforge.net> Date: Wed, 28 Sep 2011 10:18:18 +0200 Subject: [PATCH] Remove Ctrl + l ( ) character from source files The following commits git show aac3f2c8 git show 1510304c git show 13cabd9e git show 350a7a33 git show 9b7cc54d git show e6972011 git show 1d3a7938 git show 934524b9 git show b2954936 git show a7f677b5 git show 4369c400 git show d509f47a git show a6d5818f git show c3876df7 git show 4583098b git show 2831ada5 git show 4e1bce59 git show 1609f699 git show 4e4c1676 git show d6fade43 among others(?) introduced several occurrences of Ctrl + l ( ). Probably this was caused by the used editor. These control characters can be searched for using the following command [1]. $ git grep ^L [1] http://unstableme.blogspot.com/2009/10/grep-and-print-control-characters-in.html
| * Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-2712-64/+89
| | | | | | | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
| * The EExtension framework is now in libebackend.Matthew Barnes2011-09-261-1/+1
| | | | | | | | | | | | | | | | The EModule, EExtensible and EExtension classes as well as the e_type_traverse() function have been moved to Evolution-Data-Server's libebackend library to replace e-data-server-module.c. Now Evolution-Data-Server modules use the same framework as Evolution.
| * Bug #657170 - Disallow creating assigned tasks when not supportedMilan Crha2011-09-262-0/+30
| |
| * Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-261-7/+14
| |
| * Bug #659125 - Reference counting issues in calendarMilan Crha2011-09-151-0/+2
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-09-0428-384/+605
| |
| * Changing source in CompEditor blocks UIMilan Crha2011-08-264-114/+275
| |
| * Bug #650839 - Add option for alarms into calendar preferencesMilan Crha2011-08-251-0/+42
| |
| * Bug #656258 - Critical runtime warning on comp-editor closeMilan Crha2011-08-161-0/+7
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-08-136-46/+93
| |
| * EConfig: Broadcast abort/commit events by way of signals.Matthew Barnes2011-08-111-5/+14
| | | | | | | | | | Remove the clumsy abortfunc and commitfunc callback arguments from e_config_add_items().
| * Bug #656136 - Remove time field in task editorMilan Crha2011-08-082-90/+21
| |
| * Bug #655702 - Do not call Lists Groups when they are Lists anywhere elseAndre Klapper2011-08-043-3/+3
| |
| * Remove unneeded semicolonMilan Crha2011-08-031-1/+1
| |
| * Bug #655190 - Sluggish performance interacting with calendar/tasksMilan Crha2011-08-022-2/+16
| |
| * Replace alarm by reminder for UI consistency. Fixes bug #340614Andre Klapper2011-08-027-21/+21
| |
| * Bug #655255 - Make comp-editor toolbar buttons' tooltips sanerMilan Crha2011-07-272-5/+5
| |
| * Bug 652958 - Evolution Account Assistant jumps stepsMatthew Barnes2011-07-011-4/+24
| | | | | | | | | | | | | | The GTK+ patch in bug 653705 is also required for the Account Assistant to work properly under the new GtkAssistant design in GTK+ 3.1. This commit only deals with sidebar ordering issues.
| * Check for cancelled GIO operation error code tooMilan Crha2011-06-281-1/+2
| |
| * Postpone ENameSelector loading as much as possibleMilan Crha2011-06-243-0/+13
| | | | | | | | | | Also fixes few memory leaks around ENameSelector and cancels loading of its address books when not needed any more.
| * Bug #646442 - [mail-to-task] Edit event details before adding to calendarDan Vrátil2011-06-232-0/+18
| |
| * Bug #653008 - Preference window for imap accounts is too largeMilan Crha2011-06-236-55/+0
| |
| * Do not use deprecated EBook/ECal APIMilan Crha2011-06-1434-446/+561
| |
| * Coding style and whitespace cleanups.Matthew Barnes2011-06-095-25/+59
| |
| * Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-283-3/+0
| |
| * Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+5
| |
| * Bug #643819 - Autocomplete the Location fieldDan Vrátil2011-05-231-4/+157
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-05-224-25/+44
| |
| * Bug #649392 - Improve calendar's "Goto" dialog and move it to dialogsDan Vrátil2011-05-164-0/+503
| |
| * Coding style cleanups.Matthew Barnes2011-05-099-25/+25
| |
| * Whitespace and coding style cleanups.Matthew Barnes2011-05-082-8/+16
| |
| * Add itip_get_fallback_identity().Matthew Barnes2011-04-283-38/+20
| | | | | | | | | | Convenience function returns a name + address string from the default mail identity, to be used as a fallback for organizers.
| * Add itip_get_user_identities().Matthew Barnes2011-04-273-124/+60
| | | | | | | | | | Convenience function returns a NULL-terminated array of name + address strings based on registered mail identities.
| * Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2011-04-273-236/+354
| | | | | | | | | | Hide EAccount usage behind more generic APIs so EAccount can be replaced more easily in the account-mgmt branch.
| * Add e_meeting_store_find_self().Matthew Barnes2011-04-262-36/+11
| | | | | | | | | | Convenience function that uses registered mail identities to find the user among meeting attendees.
| * Remove redundant EAccountList utilities.Matthew Barnes2011-04-265-8/+13
| | | | | | | | | | Kill itip_addresses_get() and itip_addresses_get_default(), and use e_get_account_list() and e_get_default_account() instead.
| * CompEditor cleanups.Matthew Barnes2011-04-268-746/+768
| | | | | | | | Random cleanups from the account-mgmt branch, to reduce diff noise.
| * Fix alignment of extra widgets in EAlertDialogs.Matthew Barnes2011-03-251-1/+1
| | | | | | | | | | | | | | Add e_alert_dialog_get_content_area(), which returns the GtkVBox containing the primary and secondary labels. Use this instead of gtk_dialog_get_content_area() to maintain the dialog's left margin beneath the image.
| * Bug 644166 - Add style class to primary toolbarsMatthew Barnes2011-03-081-0/+4
| | | | | | | | | | Requires GTK+ >= 3.0.2 since GTK_STYLE_CLASS_PRIMARY_TOOLBAR is a very recent addition.
| * Coding style and whitespace cleanup.Matthew Barnes2011-03-0611-11/+22
| |
| * Fix Gtk-Doc comment notation.Matthew Barnes2011-03-024-19/+30
| | | | | | | | Seeing lots of what I assume to be doxygen syntax in comment blocks.
| * Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-2511-102/+58
| |
| * Bug #642954 - Doesn't commit/abort sequence on modification errorMilan Crha2011-02-241-4/+3
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-02-191-3/+8
| |
| * Remove NULL checks for GObject methods.Matthew Barnes2011-02-135-10/+9
| | | | | | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
| * Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-092-19/+2
| | | | | | | | GCC learned how to find dead assignments.
| * Bug #641011 - Ugly appointment editing windowsMilan Crha2011-02-031-2/+6
| |
| * More whitespace cleanup.Matthew Barnes2011-01-316-68/+69
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-01-301-1/+0
| |
| * Bug #640522 - Set minimal height on Description fields in event editorsMilan Crha2011-01-263-0/+3
| |
| * Various critical warnings about comp-editor-pages and date editMilan Crha2011-01-255-13/+43
| |
| * Adapt to GtkComboBox class reorg.Matthew Barnes2011-01-256-6/+11
| |
| * Dialogs no longer have separators.Matthew Barnes2011-01-254-4/+0
| |
| * Drop backward-compatibility cruft.Matthew Barnes2011-01-255-15/+0
| |
| * Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-064-2/+22
| |
| * Bug #635828 - Do not send meeting mails with no recipientMilan Crha2010-11-261-1/+32
| |
| * Bug #633779 - GtkComboBoxText issuesMilan Crha2010-11-182-5/+18
| |
| * Move calendar preferences to the calendar module.Matthew Barnes2010-11-0519-2674/+570
| | | | | | | | | | Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties.
| * Rename CalUnits to EDurationType.Matthew Barnes2010-11-052-21/+21
| | | | | | | | And move the definition to e-util-enums.h so we get a GType for it.
| * Bug #612181 - Show recurring events in italic in date navigatorMilan Crha2010-11-033-2/+24
| |
| * Pass an EAlertSink to e_alert_sink_submit_alert().Matthew Barnes2010-11-011-2/+2
| | | | | | | | | | | | | | Passing a random GtkWidget and then searching its ancestors for an EAlertSink turned out to be not as useful as I thought. Most of the time we know about and have access to the widget that implements EAlertSink, so just pass it directly as an EAlertSink.
* | Bug #657170 - Disallow creating assigned tasks when not supportedMilan Crha2011-09-262-0/+30
| |
* | Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-261-7/+14
| |
* | Add missing argument to g_settings_bindRodrigo Moya2011-09-221-6/+6
| |
* | Bug #659125 - Reference counting issues in calendarMilan Crha2011-09-211-0/+2
| |
* | Port event/task/meeting editor to GSettingsRodrigo Moya2011-09-151-19/+14
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-09-1428-384/+605
| |
* | Changing source in CompEditor blocks UIMilan Crha2011-09-144-114/+275
| |
* | Bug #650839 - Add option for alarms into calendar preferencesMilan Crha2011-09-141-0/+42
| |
* | Bug #656258 - Critical runtime warning on comp-editor closeMilan Crha2011-09-141-0/+7
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-09-146-46/+93
| |
* | EConfig: Broadcast abort/commit events by way of signals.Matthew Barnes2011-09-141-5/+14
| | | | | | | | | | Remove the clumsy abortfunc and commitfunc callback arguments from e_config_add_items().
* | Bug #656136 - Remove time field in task editorMilan Crha2011-09-142-90/+21
| |
* | Bug #655702 - Do not call Lists Groups when they are Lists anywhere elseAndre Klapper2011-09-143-3/+3
| |
* | Remove unneeded semicolonMilan Crha2011-09-141-1/+1
| |
* | Bug #655190 - Sluggish performance interacting with calendar/tasksMilan Crha2011-09-142-2/+16
| |
* | Replace alarm by reminder for UI consistency. Fixes bug #340614Andre Klapper2011-09-147-21/+21
| |
* | Bug #655255 - Make comp-editor toolbar buttons' tooltips sanerMilan Crha2011-09-142-5/+5
| |
* | Bug 652958 - Evolution Account Assistant jumps stepsMatthew Barnes2011-09-141-4/+24
| | | | | | | | | | | | | | The GTK+ patch in bug 653705 is also required for the Account Assistant to work properly under the new GtkAssistant design in GTK+ 3.1. This commit only deals with sidebar ordering issues.
* | Check for cancelled GIO operation error code tooMilan Crha2011-06-301-1/+2
| |
* | Postpone ENameSelector loading as much as possibleMilan Crha2011-06-303-0/+13
| | | | | | | | | | Also fixes few memory leaks around ENameSelector and cancels loading of its address books when not needed any more.
* | Bug #646442 - [mail-to-task] Edit event details before adding to calendarDan Vrátil2011-06-302-0/+18
| |
* | Bug #653008 - Preference window for imap accounts is too largeMilan Crha2011-06-306-55/+0
| |
* | Do not use deprecated EBook/ECal APIMilan Crha2011-06-3034-446/+561
| |
* | Coding style and whitespace cleanups.Matthew Barnes2011-06-305-25/+59
| |
* | Including <glib.h> directly is rarely needed.Matthew Barnes2011-06-303-3/+0
| |
* | Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-301-0/+5
| |
* | Bug #643819 - Autocomplete the Location fieldDan Vrátil2011-06-301-4/+157
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-304-25/+44
| |
* | Bug #649392 - Improve calendar's "Goto" dialog and move it to dialogsDan Vrátil2011-06-304-0/+503
| |
* | Coding style cleanups.Matthew Barnes2011-06-309-25/+25
| |
* | Whitespace and coding style cleanups.Matthew Barnes2011-06-302-8/+16
| |
* | Add itip_get_fallback_identity().Matthew Barnes2011-06-303-38/+20
| | | | | | | | | | Convenience function returns a name + address string from the default mail identity, to be used as a fallback for organizers.
* | Add itip_get_user_identities().Matthew Barnes2011-06-303-124/+60
| | | | | | | | | | Convenience function returns a NULL-terminated array of name + address strings based on registered mail identities.
* | Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2011-06-303-236/+354
| | | | | | | | | | Hide EAccount usage behind more generic APIs so EAccount can be replaced more easily in the account-mgmt branch.
* | Add e_meeting_store_find_self().Matthew Barnes2011-06-302-36/+11
| | | | | | | | | | Convenience function that uses registered mail identities to find the user among meeting attendees.
* | Remove redundant EAccountList utilities.Matthew Barnes2011-06-305-8/+13
| | | | | | | | | | Kill itip_addresses_get() and itip_addresses_get_default(), and use e_get_account_list() and e_get_default_account() instead.
* | CompEditor cleanups.Matthew Barnes2011-06-308-746/+768
| | | | | | | | Random cleanups from the account-mgmt branch, to reduce diff noise.
* | Fix alignment of extra widgets in EAlertDialogs.Matthew Barnes2011-06-301-1/+1
| | | | | | | | | | | | | | Add e_alert_dialog_get_content_area(), which returns the GtkVBox containing the primary and secondary labels. Use this instead of gtk_dialog_get_content_area() to maintain the dialog's left margin beneath the image.
* | 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.
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-3011-11/+22
| |
* | Fix Gtk-Doc comment notation.Matthew Barnes2011-06-304-19/+30
| | | | | | | | Seeing lots of what I assume to be doxygen syntax in comment blocks.
* | Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-3011-102/+58
| |
* | Bug #642954 - Doesn't commit/abort sequence on modification errorMilan Crha2011-06-301-4/+3
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-301-3/+8
| |
* | Remove NULL checks for GObject methods.Matthew Barnes2011-06-305-10/+9
| | | | | | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* | Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-06-302-19/+2
| | | | | | | | GCC learned how to find dead assignments.
* | Bug #641011 - Ugly appointment editing windowsMilan Crha2011-06-301-2/+6
| |
* | More whitespace cleanup.Matthew Barnes2011-06-306-68/+69
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+0
| |
* | Bug #640522 - Set minimal height on Description fields in event editorsMilan Crha2011-06-303-0/+3
| |
* | Various critical warnings about comp-editor-pages and date editMilan Crha2011-06-305-13/+43
| |
* | Adapt to GtkComboBox class reorg.Matthew Barnes2011-06-306-6/+11
| |
* | Dialogs no longer have separators.Matthew Barnes2011-06-304-4/+0
| |
* | Drop backward-compatibility cruft.Matthew Barnes2011-06-305-15/+0
| |
* | Free/busy meeting view doesn't work due to non-working extensionMilan Crha2011-06-304-2/+22
| |
* | Bug #635828 - Do not send meeting mails with no recipientMilan Crha2011-06-301-1/+32
| |
* | Bug #633779 - GtkComboBoxText issuesMilan Crha2011-06-302-5/+18
| |
* | Move calendar preferences to the calendar module.Matthew Barnes2010-11-1019-2674/+570
| | | | | | | | | | Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties.
* | Rename CalUnits to EDurationType.Matthew Barnes2010-11-102-21/+21
| | | | | | | | And move the definition to e-util-enums.h so we get a GType for it.
* | Bug #612181 - Show recurring events in italic in date navigatorMilan Crha2010-11-103-2/+24
| |
* | Pass an EAlertSink to e_alert_sink_submit_alert().Matthew Barnes2010-11-101-2/+2
|/ | | | | | | Passing a random GtkWidget and then searching its ancestors for an EAlertSink turned out to be not as useful as I thought. Most of the time we know about and have access to the widget that implements EAlertSink, so just pass it directly as an EAlertSink.
* Workaround GtkComboBoxText/GtkComboBoxEntry in .ui filesMilan Crha2010-10-281-1/+1
|
* Add missing gtk-compat.h include to various filesMilan Crha2010-10-211-0/+3
|
* Deal with GtkComboBoxEntry removal in gtk+-3.0.Matthew Barnes2010-10-213-3/+3
|
* Bug 632641 - Handle combo box text API going awayMatthias Clasen2010-10-214-11/+14
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-147-57/+100
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug #630490 - Not visible calendar color change immediatelyMilan Crha2010-10-141-0/+6
|
* Bug #631320 - GtkObject is gone in GTK3Milan Crha2010-10-074-5/+5
|
* Bug #629825 - Hide Free/Busy tab if not needed in express modeMilan Crha2010-10-051-1/+2
|
* Messin around with EAlerts.Matthew Barnes2010-09-301-7/+8
| | | | | | | | | | | | | | | | | | | Trying out a new interface called EAlertSink. The idea is to centralize how errors are shown to the user. A GtkWindow subclass would implement the EAlertSink interface, which consists of a single method: void (*submit_alert) (EAlertSink *alert_sink, EAlert *alert); The subclass has complete control over what to do with the EAlert, although I imagine we'll wind up implementing various alert-handling policies as standalone widgets such as EAlertDialog. I'd like to try an EAlertInfoBar. Code that would otherwise display an error dialog itself would instead pass the EAlert to an appropriate EAlertSink and be done with it. Nothing is final yet. Still hacking on EAlert trying to find an API that feels right for these use cases.
* Bug #629636 - Doesn't recognize local ESource-sMilan Crha2010-09-291-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-2/+4
|
* Use new GDK keysym names if available.Matthew Barnes2010-09-183-5/+14
| | | | | | | 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.
* Fix a crapload of run-time warnings.Matthew Barnes2010-09-152-20/+12
| | | | EConfig and EMAccountEditor are very, very brittle.
* Coding style cleanups.Matthew Barnes2010-09-1314-93/+93
|
* Coding style and whitespace cleanups.Matthew Barnes2010-09-121-2/+2
|
* Bug #627101 - Not able to attach files in calendarMilan Crha2010-08-301-4/+4
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-258-21/+21
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Bug 627601 - Memory leak in itip_get_comp_attendee()David Woodhouse2010-08-241-0/+1
|
* Bug 627124 - Crash while opening task-page.uiMatthew Barnes2010-08-191-0/+1
|
* Ensure widgets are registered, without relying on config dialog setup at ↵Michael Meeks2010-08-112-0/+10
| | | | startup.
* Defer the load / creation of configuration UI with changes toMichael Meeks2010-08-112-3/+6
| | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2010-07-124-71/+172
|
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-092-12/+20
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-1/+1
|
* Fix transience problems with ENameSelectorDialogs ...Michael Meeks2010-07-083-17/+6
|
* Bug #553104 - Ambiguous "for" in calendar translationsMilan Crha2010-06-252-12/+12
|
* Bug #620246 - Increase size of 'group' combo box in taskMilan Crha2010-06-241-1/+2
|
* Bug #573228 - Make the "This event has alarms" icon clickableMilan Crha2010-06-071-9/+28
|
* Coding style and whitespace cleanups.Matthew Barnes2010-06-072-187/+172
|
* Bug 620150 - EventEditor: Disconnect signal handlers before disposing modelMatthew Barnes2010-06-061-0/+2
|
* Fix orientations in task-page.ui.Matthew Barnes2010-06-061-295/+108
|
* More GTK3 preparation.Matthew Barnes2010-06-041-1/+1
| | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page.
* Bug 617094 - System timezone label not initialized in preferencesMatthew Barnes2010-05-302-9/+15
| | | | | Gert Kulyk gets credit for solving the bug, I just refactored the code a bit more heavily.
* Bug 619417 - system_tz_label is not translated in cal-prefs-dialogGert Michael Kulyk2010-05-291-1/+1
| | | | | Translate system_tz_label too, as every occurence of timezone names is getting translated in this dialog.
* Bug 619903 - Event editor is too small in express modeMatthew Barnes2010-05-291-2/+2
|
* CompEditor cleanup.Matthew Barnes2010-05-291-41/+24
|
* Bug 619904 - Mnemonic issues in express modeMatthew Barnes2010-05-282-6/+6
|
* Bug #313791 - Delegator can be repeated when delegating a meetingMilan Crha2010-05-282-30/+30
|
* Bug #248105 - No warning if you create an appointment in the pastMilan Crha2010-05-275-15/+161
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-273-14/+24
|
* Merge branch 'express2'Matthew Barnes2010-05-2712-181/+330
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-256-16/+23
| |
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-256-13/+57
| |\
| | * Bug #616889 - Force 24h format for locales not supporting 12h formatGert Michael Kulyk2010-05-211-0/+5
| | |