aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
Commit message (Collapse)AuthorAgeFilesLines
...
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-303-10/+20
| |
* | Bug #255973 - Contact preview waste space and cosmetic correctionDan Vrátil2011-06-302-148/+246
| |
* | Remove NULL checks for GObject methods.Matthew Barnes2011-06-307-16/+16
| | | | | | | | | | 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-301-5/+0
| | | | | | | | GCC learned how to find dead assignments.
* | More whitespace cleanup.Matthew Barnes2011-06-305-254/+307
| |
* | Coding style and whitespace cleanup.Matthew Barnes2011-06-303-27/+49
| |
* | Bug #640707 - Crash on 'Add to address book'->'Edit full' clickMilan Crha2011-06-302-3/+1
| |
* | Bug #640526 - Default column width in address card view is smallMatthew Barnes2011-06-302-4/+4
| |
* | Adapt to GtkComboBox class reorg.Matthew Barnes2011-06-304-14/+30
| |
* | Dialogs no longer have separators.Matthew Barnes2011-06-307-7/+2
| |
* | Drop backward-compatibility cruft.Matthew Barnes2011-06-307-24/+0
| |
* | Use e_load_book_source_async() for all EBook loading.Matthew Barnes2011-06-308-528/+154
| |
* | Fudge gtk_widget_get_preferred_size() for gtk2.Matthew Barnes2011-06-301-2/+2
| | | | | | | | | | Easy enough to fake gtk_widget_get_preferred_size() in gtk2 using gtk_widget_size_request(). Reduces diff noise with gtk3 branch.
* | Bug #634305 - Crash on move of contacts between booksMilan Crha2011-06-301-2/+10
| |
* | Bug #638087 - Crash at merging duplicate contactVibha Yadav2011-06-301-1/+1
| | | | | | | | Using 'comments' instead of 'comment'.
* | Show common addressbook and calendar errors in an alert sinkMilan Crha2011-06-307-42/+62
| |
* | Free/busy meeting view doesn't work due to non-working extensionMilan Crha2011-06-302-0/+6
| |
* | Bug #635755 - Authenticate books in addressbook importers on openMilan Crha2011-06-303-42/+91
| |
* | Localize few strings with ngettextMilan Crha2011-06-301-3/+7
| | | | | | | | Per request of bug #635414
* | Added few translator commentsMilan Crha2011-06-302-1/+2
| | | | | | | | As requested in bug #635414
* | Bug #633779 - GtkComboBoxText issuesMilan Crha2011-06-302-7/+29
| |
* | Bug #632671 - "Search interrupted" status message foreverMilan Crha2010-11-102-1/+28
| |
* | Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-105-65/+19
|/
* addressbook: Only include libgnomecanvas.hBenjamin Otte2010-10-304-5/+4
|
* Bug #632278 - Double .vcf extension on addressbook saveMilan Crha2010-10-291-7/+4
|
* Workaround GtkComboBoxText/GtkComboBoxEntry in .ui filesMilan Crha2010-10-281-4/+4
|
* Drop usage of GtkAnchorType.Matthew Barnes2010-10-272-3/+0
| | | | gtk+-3.0 removed it for being "unused".
* Simplify EActivity.Matthew Barnes2010-10-231-4/+4
| | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet.
* Deal with GtkComboBoxEntry removal in gtk+-3.0.Matthew Barnes2010-10-212-10/+13
|
* Bug 632641 - Handle combo box text API going awayMatthias Clasen2010-10-212-13/+19
|
* Bug #630504 - Precache collate keys before sorting in EReflowModelMilan Crha2010-10-201-5/+41
|
* Widget 'label-comments' gone in Contact editorMilan Crha2010-10-151-1/+0
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-141-1/+0
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug #631320 - GtkObject is gone in GTK3Milan Crha2010-10-073-4/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2010-10-042-3/+7
|
* Bug #629636 - Doesn't recognize local ESource-sMilan Crha2010-09-291-2/+21
|
* Add a GCancellable to EActivity.Matthew Barnes2010-09-191-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EActivity now uses a GCancellable to manage cancellations, instead of having its own redundant cancellation API. API changes are as follows: + e_activity_get_cancellable() + e_activity_set_cancellable() - e_activity_cancel() - e_activity_is_cancelled() - e_activity_get_allow_cancel() - e_activity_set_allow_cancel() EActivity's "cancelled" signal remains, but only as a repeater for GCancellable::cancelled signals. It should not be emitted directly. The presence of a GCancellable implies that cancellation is allowed. EActivity does not create its own default GCancellable, it has to be given one. If a CamelOperation (cast as a GCancellable) is given, EActivity will configure itself to listen for status updates from the CamelOperation and propagate the information to its own "primary-text" and "percent" properties. These changes allowed me to start cleaning up some of the incredibly convoluted logic in mail-mt.c -- in particular, mail_operation_status() is completely gone now. mail-mt.c is still in a transitional state -- much more significant changes coming soon.
* Use new GDK keysym names if available.Matthew Barnes2010-09-184-11/+22
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Increase safety on WindowsFridrich Štrba2010-09-151-0/+36
| | | | Call SetDllDirectory() to reduce risk of DLL hijacking, and call SetProcessDEPPolicy() to reduce risk of rogue code execution.
* Coding style cleanups.Matthew Barnes2010-09-1335-614/+614
|
* Coding style and whitespace cleanups.Matthew Barnes2010-09-129-88/+88
|
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-2/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-142/+124
|
* bugs.meego.com #2329 - Contact list editor is not translatedFederico Mena Quintero2010-08-281-11/+11
| | | | | | | | We had a 'context=yes' attribute in all the translatable labels, when in fact no label has the magic marker for the context string. This was somehow carried over from the .glade days. Signed-off-by: Federico Mena Quintero <federico@novell.com>
* Use the new e_load_book_source_async() where possible.Matthew Barnes2010-08-195-118/+132
| | | | | | It's easier to use than addressbook_load() but requires starting with an ESource rather than an EBook, and there's a couple places left where that's not so easy. I'll spend more time on it later.
* addressbook: Port to use new _async suffix instead of _ex suffixRob Bradford2010-08-0214-102/+102
|
* addressbook/gui, plugins/groupwise, widgets/misc: Update to new icon themeRob Bradford2010-08-023-5/+5
| | | | | | | Since gnome-icon-theme 2.30.x the icon name for the default avatar has changed from stock_person to avatar-default Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=616822
* Bug 625624 - Customizations of contacts views forgottenMatthew Barnes2010-07-301-1/+5
| | | | Found similar bugs in EShellMemoContent and EShellTaskContent.
* Bug #615049 - Crash in remove_contact at e-addressbook-model.c:202Milan Crha2010-07-141-0/+8
|
* Coding style and whitespace cleanup.Matthew Barnes2010-07-1212-43/+71
|
* Fix some compiler warnings.Matthew Barnes2010-07-111-2/+4
|
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-0923-266/+255
|
* Fix transience problems with ENameSelectorDialogs ...Michael Meeks2010-07-081-0/+2
|
* Bug 331305 - Can't drag email addresses to Contact List EditorMatthew Barnes2010-06-233-56/+40
|
* Bug 619347 - Contact List Editor calls wrong EDestination functionMatthew Barnes2010-06-211-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-06-201-6/+20
|
* Fix all remaining GTK3 issues.Matthew Barnes2010-06-162-5/+13
| | | | | | | | | | | | Work around the issue of GnomeCanvasItem amending its own flags to GtkObject::flags (which is sealed) by giving it its own flags field. This breaks libgnomecanvas ABI and API, but I see no other way. This commit didn't work the first time because gnome-pilot libraries were still pulling in the system-wide libgnomecanvas, and that was interfereing with our bundled version which has a different ABI. But gnome-pilot integration was dropped in the previous commit, so everything is now using the bundled libgnomecanvas.
* Remove gnome-pilot integration.Matthew Barnes2010-06-164-2304/+1
| | | | | | | | | | | | | | | | It just doesn't belong in Evolution anymore. We don't support syncing with more modern devices -- see Conduits or SyncEvolution for that -- so it does not make sense for older model Palm Pilot PDAs to be the lone exception. I have repackaged the Evolution-Data-Server conduit modules to be provided by gnome-pilot itself in bug #619315. This should provide eqivalent Palm Pilot syncing functionality; it's just being moved to gnome-pilot. This completely severs our dependency on deprecated GNOME 2.x libraries which were still being dragged in by way of gnome-pilot dependencies. It was also interfereing with our bundling of libgnomecanvas.
* Revert "Fix all remaining GTK3 issues."Matthew Barnes2010-06-152-13/+5
| | | | | | | This reverts commit fd8b55edaa88906b588aa07d9eadcacd34a7a774. Something in this commit seriously hosed ETable, making Evolution pretty much unusable. Reverting this until I can track down the problem.
* Fix all remaining GTK3 issues.Matthew Barnes2010-06-152-5/+13
| | | | | | Work around the issue of GnomeCanvasItem amending its own flags to GtkObject::flags (which is sealed) by giving it its own flags field. This breaks libgnomecanvas ABI and API, but I see no other way.
* Bug 603468 - Improve handling of --quit optionMatthew Barnes2010-06-131-3/+8
|
* Coding style and whitespace cleanups.Matthew Barnes2010-06-072-8/+23
|
* More GTK3 preparation.Matthew Barnes2010-06-041-2/+9
| | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page.
* Bug 619637 - Inconsistent buttons in delete confirmation dialogsMatthew Barnes2010-05-291-1/+1
|
* Bug 619783 - Web Addresses arrow button doesn't changeMatthew Barnes2010-05-291-1/+1
|
* Remove unnecessary conditional compilation macro.Matthew Barnes2010-05-291-4/+0
|
* Simplify the Notes tab in Contact Editor.Matthew Barnes2010-05-281-2971/+1794
|
* Bug #573510 - Outlook type CSV import brokenMilan Crha2010-05-281-79/+143
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-275-29/+57
|
* Merge branch 'express2'Matthew Barnes2010-05-272-1/+71
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-251-6/+6
| |
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-251-2/+2
| |\
| | * On Windows, some LDIF files can have .ldi extensionFridrich Štrba2010-05-201-2/+2
| | |
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-172-12/+20
| |\|
| | * Bug #618177 - Mobile Phone of imported contacts not shown in previewMilan Crha2010-05-101-11/+20
| | |
| | * Bug #617150 - Crash printing contacts in List ViewBharath Acharya2010-04-291-1/+0
| | | | | | | | | | | | The returned widget does not have a reference added, so you do not need to unref it.
| | * Fix a potential crasher in e_contact_quick_add_email().Matthew Barnes2010-04-261-1/+1
| | |
| * | Fix a potential crasher in e_contact_quick_add_email().Matthew Barnes2010-04-301-1/+1
| | |
| * | Compress the contact viewer even more so it still fits.Michael Meeks2010-04-152-1/+70
| | |
| * | Merge gnome-2-30 into express2 to get bugfixesFederico Mena Quintero2010-04-101-0/+2
| |\| | | | | | | | | | | | | | | | 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.
| | * Fix for bug #613564Jeff Cai2010-04-081-0/+2
| | | | | | | | | | | | If no <> in the email address, addr should be the full email address.
| * | Last scroll-pane, and manual sizing tweakMichael Meeks2010-04-072-1/+21
| | |
| * | Get the new contact sizing right despite the scrolled regions.Michael Meeks2010-04-072-1/+11
| | | | | | | | | | | | Add Claire's calendar popup feedback wrt. express mode
| * | Scrolled window for personal bits ...Michael Meeks2010-04-071-1/+19
| | |
| * | Add a scrolled area to cope if we want to expand mail settignsMichael Meeks2010-04-071-0/+18
| | |
| * | Add conditionally enabled expanders for 'Other' address and 'Misc'Michael Meeks2010-04-072-12/+24
| | | | | | | | | | | | personal items, to fit on a 600 pixel high screen.
| * | Switch back to an older version with my changes.Michael Meeks2010-04-071-471/+1491
| | |
| * | Adapt and further compact the UI with new expander-alikeMichael Meeks2010-04-071-39/+87
| | |
| * | Add expander button to E-mail pieces.Michael Meeks2010-04-071-0/+66
| | |
| * | Add vertical orientation properties to make glade-3 happy.Michael Meeks2010-04-071-0/+62
| | |
| * | Refresh contact-editor.ui.Matthew Barnes2010-04-071-1558/+461
| | | | | | | | | | | | | | | Just letting Glade have its way with the file. No manual changes other than setting GtkVBox orientations to "vertical".
| * | Compress new contact dialog (first page) a little; more to come.Michael Meeks2010-04-073-5/+31
| |/
* | Fix compiler warnings.Matthew Barnes2010-05-221-1/+1
| |
* | On Windows, some LDIF files can have .ldi extensionFridrich Štrba2010-05-201-2/+2
| |
* | Consider full name and also the first part of e-mail address forFridrich Štrba2010-05-201-0/+15
| | | | | | | | contact description in the import dialogue.
* | Bug #523775 - Order of Email Addresses in UI is brokenMilan Crha2010-05-191-12/+12
| |
* | Bug #499320 - Preview before import from command lineMilan Crha2010-05-195-6/+488
| |
* | Bug #603006 - Move All Contacts To enabled for read-only address booksMilan Crha2010-05-131-2/+9
| |
* | There is no 'shadow-type' property on a GtkExpanderMilan Crha2010-05-111-1/+0
| |
* | Bug #618177 - Mobile Phone of imported contact not shown in previewMilan Crha2010-05-101-11/+20
| |
* | Bug #545462 - Printing of contacts is weird.Vibha Yadav2010-05-073-18/+136
| | | | | | | | Lot of improvements in contact printing. A few more to follow suit.
* | Coding style and whitespace cleanup.Matthew Barnes2010-05-021-9/+11
| |
* | Bug #609052 - Crash printing contacts in List ViewBharath Acharya2010-04-291-1/+0
| | | | | | | | The returned widget does not have a reference added, so you do not need to unref it.
* | Adapt to libedataserverui API changes.Matthew Barnes2010-04-201-1/+3
| |
* | Use accessor functions instead direct access (GSEAL work)Javier Jardón2010-04-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Forgot to commit some bits.Matthew Barnes2010-04-082-1/+10
| |
* | Giant leap towards GSEAL compliance.Matthew Barnes2010-04-0812-108/+144
| |
* | Bug #567304 - Review strings for translationMilan Crha2010-04-071-2/+2
| |
* | Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-033-27386/+0
| | | | | | | | Remove old ChangeLog files that predate our switch to git.
* | Only #include Camel's top-level header.Matthew Barnes2010-04-031-1/+1
| |
* | Miscellaneous cleanup bits from WebKit branch.Matthew Barnes2010-04-022-31/+35
| |
* | Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-0211-90/+90
| |
* | Bug #261062 - Do not translate untranslatable textsMilan Crha2010-04-021-8/+4
| |
* | If no <> in the email address, the address should be the full email address.caiqm2010-03-311-0/+2
| | | | | | | | Fix for #613564
* | Last scroll-pane, and manual sizing tweakMichael Meeks2010-03-292-1/+21
| |
* | Get the new contact sizing right despite the scrolled regions.Michael Meeks2010-03-292-1/+11
| | | | | | | | Add Claire's calendar popup feedback wrt. express mode
* | Scrolled window for personal bits ...Michael Meeks2010-03-291-1/+19
| |
* | Add a scrolled area to cope if we want to expand mail settignsMichael Meeks2010-03-291-0/+18
| |
* | Add conditionally enabled expanders for 'Other' address and 'Misc'Michael Meeks2010-03-292-12/+24
| | | | | | | | personal items, to fit on a 600 pixel high screen.
* | Switch back to an older version with my changes.Michael Meeks2010-03-261-471/+1491
| |
* | Adapt and further compact the UI with new expander-alikeMichael Meeks2010-03-261-39/+87
| |
* | Add expander button to E-mail pieces.Michael Meeks2010-03-261-0/+66
| |
* | Add vertical orientation properties to make glade-3 happy.Michael Meeks2010-03-261-0/+62
| |
* | Refresh contact-editor.ui.Matthew Barnes2010-03-251-1558/+461
| | | | | | | | | | Just letting Glade have its way with the file. No manual changes other than setting GtkVBox orientations to "vertical".
* | Compress new contact dialog (first page) a little; more to come.Michael Meeks2010-03-183-5/+31
|/
* Clean up GalView and related classes.Matthew Barnes2010-03-113-50/+56
|
* Strip whitespace off email addresses in contact editor.Matthew Barnes2010-03-111-2/+4
|
* Update win32 directory relocation and some consistency cleanupFridrich Strba2010-03-102-2/+1
|
* Remove a long lived win32 hackFridrich Strba2010-03-062-8/+1
| | | | | It seems that the dummy libraries are not needed anymore on windows nowadays.
* Work around recent GTK+ deprecations.Matthew Barnes2010-03-052-0/+8
|
* Bug #610382 - No addressbook selected on account disableMilan Crha2010-02-251-1/+3
|
* Bug #610658 - Contact is lost after moving to the same address bookMilan Crha2010-02-252-7/+12
|
* Bug #602996 - Prevent crash on certain circumstancesMilan Crha2010-02-221-2/+2
|
* Bug #610061 - Do not re-run book view on same book with same queryMilan Crha2010-02-191-5/+27
|
* Add DnD support to e-selection.c.Matthew Barnes2010-02-092-40/+19
| | | | | | Avoid listing calendar and directory targets explicitly, so that e-selection.c contains the one and only master list. Still need to figure out how to centralize "text/x-source-vcard".
* Coding style and whitespace cleanup.Matthew Barnes2010-02-081-16/+32
|
* Bug 607520 - 'Add to Address Book' fails when address has spaceMatthew Barnes2010-02-032-0/+27
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-3116-65/+65
|
* Coding style and whitespace cleanups.Matthew Barnes2010-01-231-1/+3
|
* Bug 607542 - Sometimes delete in pop up doesn't get displayedMatthew Barnes2010-01-211-0/+6
|
* Improve clipboard behavior.Matthew Barnes2010-01-182-8/+86
| | | | | | | | | | | | | | | | | | | | | Add "copy-target-list" and "paste-target-list" to the ESelectable interface. These are underutilized for the moment, but will eventually be used to help integrate drag-and-drop support into ESelectable. Add cut and paste support to EWebView, along with a new "editable" property and new clipboard signals "copy-clipboard", "cut-clipboard" and "paste-clipboard". In EFocusTracker, listen for "owner-changed" signals from the default clipboard as another trigger to update actions, particularly the Paste action. (Unfortunately this doesn't work for EWebView since GtkHtml implements its own clipboard.) In EMsgComposer, convert GtkhtmlEditor's clipboard methods to empty stubs, since EFocusTracker will now trigger EWebView's clipboard actions. Also, intercept EWebView::paste-clipboard signals and improve the interaction between the HTML editor and the attachment bar based on use cases in bug #603715.
* Remove dead assignments found by clang.Matthew Barnes2010-01-169-49/+6
|
* Bug #604670 - addressbook-export segfaults when specifying addressbookMilan Crha2010-01-141-0/+2
|
* Cleanup delete actions in shell views.Matthew Barnes2010-01-111-0/+17
|
* Bug 606250 - Remove usage of deprecated GTK+ symbolsMatthew Barnes2010-01-081-1/+1
| | | | Several GtkWidget macros were recently deprecated.
* Coding style and whitespace cleanup.Matthew Barnes2010-01-053-11/+30
|
* Kill e_popup_menu().Matthew Barnes2010-01-053-3/+0
| | | | | The function is trivial and was only used from ETableHeaderItem. This also eliminates widgets/misc/e-gui-utils.[ch].
* Coding style and whitespace cleanup.Matthew Barnes2010-01-045-31/+71
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-284-15/+25
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-262-8/+15
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-262-80/+154
| | | | | | | | | | | | | | | | | | 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.
* Bug 604822 - Drop more alert titlesPaul Bolle2009-12-201-3/+1
| | | | | 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-202-3/+2
|
* Fix some compiler warnings.Matthew Barnes2009-12-201-4/+0
|
* Bug #602998 - Contacts searches are supposed to be per address bookMilan Crha2009-12-112-0/+74
|
* Bug #499322 - Use extension for "Save as" suggested file nameMilan Crha2009-12-101-2/+5
|
* Kill ETableScrolled.Matthew Barnes2009-12-083-96/+55
| | | | | ETableScrolled is nothing but a GtkScrolledWindow containing an ETable. It adds nothing of value and actually makes customizing ETable harder.
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-087-8/+8
| | | | | | 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.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-017-22/+22
| | | | | | | | | | 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 addressbook/ to use new EError APIJonathon Jongsma2009-12-018-15/+37
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Fixed bug 364618, solve the chinese character issue.Jeff Cai2009-11-301-36/+50
|
* Fixes a build break.Chenthill Palanisamy2009-11-301-1/+0
|
* Assemble HTML code in a GString instead of a GtkHTMLStream.Matthew Barnes2009-11-201-162/+248
| | | | This helps further isolate direct GtkHTML API usage to EWebView.
* Remove some redundancy from EABContactDisplay.Matthew Barnes2009-11-181-274/+195
|
* Remove markup from translatable strings in ui filesClaude Paroz2009-11-172-22/+44
| | | | | | GTKBuilder format allows to separate markup from translatable content. Whenever possible, this should be preferred so as there is less content to translate and less error opportunities.
* Bug 360461 - Do not hardcode invisible_char in ui filesClaude Paroz2009-11-173-46/+0
|
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-1724-4897/+4587
|
* Bug 601769 - Print issues in address bookMatthew Barnes2009-11-142-6/+15
|
* Simplify clipboard handling in addressbook.Matthew Barnes2009-11-121-112/+40
|
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-112-10/+5
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-084-220/+20
| | | | | | | | | | 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.
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-1/+1
|
* Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-272-4/+2
|
* Bug #599131 - Crash on new contact adding with similar values as an oldMilan Crha2009-10-241-1/+4
|
* Bug #565306 - "Edit Full" in "Add to address book" searches firstMilan Crha2009-10-163-12/+92
|
* Bug #449520 - Adding a contact to a contact list fails when using a commaMilan Crha2009-10-161-1/+26
|
* Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-138-28/+15
|
* Bug #498095 - Fixing mnemonicsMilan Crha2009-10-131-1/+3
|
* Bug 598027 - Use vCard instead of VCardMatthew Barnes2009-10-112-3/+3
|
* Build with GTK_DISABLE_DEPRECATED and fix resulting breakage.Matthew Barnes2009-10-021-6/+1
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-019-39/+46
|
* Bug #596800 - Hang on contacts mergingMilan Crha2009-09-301-7/+8
|
* Fix duplicate symbols in Glade files.Matthew Barnes2009-09-251-1/+1
|
* Work around build break caused by gnome-pilot headers.Matthew Barnes2009-09-251-0/+2
|
* Bug #593633 - Runtime warnings trying to create a recurrence eventMilan Crha2009-09-242-4/+23
|
* Goodbye libgnome and libgnomeui!!Matthew Barnes2009-09-191-1/+3
|
* Finish killing Bonobo.Matthew Barnes2009-09-094-76/+90
|
* Bug 594284 - FTBFS: missing linksDiego Escalante Urrelo2009-09-061-0/+1
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-302-61/+0
| | | | | | | | | | | | | - 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.
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-161-0/+8
|
* Bug #205137 - Configurable date formats in componentsMilan Crha2009-08-121-1/+10
|
* Compiler warning fixes (as part of bug #424078)Milan Crha2009-08-111-1/+1
|
* Merge commit 'EVOLUTION_2_27_5' into kill-bonoboMatthew Barnes2009-07-282-2/+3
|\
| * Bug #589580 - Crashes when dragging an image to the contact editorMilan Crha2009-07-242-3/+4
| |
| * More whitespace cleanup.Matthew Barnes2009-07-1918-141/+141
| |
| * Bug #555326 - Suppress Del key press in Contacts source selectorMarcel Stimberg2009-07-131-1/+1
| |
| * Fix excessive whitespace.Matthew Barnes2009-07-1347-112/+0
| |
* | More whitespace cleanup.Matthew Barnes2009-07-1916-97/+97
| |
* | Bug 579702 – Contact changes not shown until restartMatthew Barnes2009-07-182-4/+4
| |
* | Fix excessive whitespace.Matthew Barnes2009-07-1437-88/+0
| |
* | Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-137-243/+326
| | | | | | | | | | | | | | 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.
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-111-71/+135
|\| | | | | | | | | | | | | | | | | | | | | 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
| * Bug #561300 - Edit contact's Notes on its own tab.Milan Crha2009-07-101-71/+135
| |
| * Kill EConfigListener.Matthew Barnes2009-07-033-17/+0
| |
* | Kill EConfigListener.Matthew Barnes2009-07-032-16/+0
| |
* | Kill the last GtkOptionMenu instances.Matthew Barnes2009-07-031-11/+11
| | | | | | | | | | | | | | Wrote a new widget (ECharsetComboBox) to replace e-charset-picker.c. The widget provides a "charset" string property that allows us to bind to GConf keys (via EShellSettings). Moved e_charset_add_radio_actions() to e-util/e-charset.c. Updated Glade files, #include lines, etc.
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-013-12/+19
|\|
| * Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am.Matthew Barnes2009-07-0110-10/+10
| |
| * Fix "make check" errors.Matthew Barnes2009-06-201-25/+12
| |
| * Remove an obsolete Makefile.am stanza.Matthew Barnes2009-06-191-6/+0
| |
| * Stop abusing forward declarations.Matthew Barnes2009-06-194-16/+11
| |
| * Use G_BEGIN_DECLS / G_END_DECLS macros.Matthew Barnes2009-06-196-42/+12
| |
| * Fix coding style.Matthew Barnes2009-06-141-2/+2
| |
| * Avoid the console popping while evolution running on windowsFridrich Strba2009-06-051-0/+4
| |
| * Fix even more compiler warnings and disable one for format stringsMilan Crha2009-06-051-5/+5
| |
| * libevolution-mail-shared is a new library, so reflect its existenceFridrich Strba2009-06-051-1/+1
| | | | | | | | in the win32 bootstrap import libraries.
| * More code cleanup.Matthew Barnes2009-06-0220-75/+75
| |
| * Whitespace cleanup.Matthew Barnes2009-05-2919-96/+96
| |
| * Prefer GLib basic types over C types.Matthew Barnes2009-05-2958-921/+921
| |
| * Remove trailing whitespace, again.Matthew Barnes2009-05-2977-89/+89
| |
* | Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-019-9/+9
| |
* | Radically reorganize source code.Matthew Barnes2009-06-2538-9919/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.
* | Fix "make distcheck" errors.Matthew Barnes2009-06-202-4/+5
| |
* | Stop abusing forward declarations.Matthew Barnes2009-06-191-7/+7
| |
* | Use G_BEGIN_DECLS / G_END_DECLS macros.Matthew Barnes2009-06-187-49/+14
| |
* | Fix coding style.Matthew Barnes2009-06-141-2/+2
| |
* | Use key files for tracking widget states.Matthew Barnes2009-06-131-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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().
* | Avoid the console popping while evolution running on windowsFridrich Strba2009-06-091-0/+4
| |
* | Fix even more compiler warnings and disable one for format stringsMilan Crha2009-06-091-4/+5
| |
* | libevolution-mail-shared is a new library, so reflect its existenceFridrich Strba2009-06-091-0/+4
| | | | | | | | in the win32 bootstrap import libraries.
* | Search bar improvements.Matthew Barnes2009-06-091-1/+24
| | | | | | | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space.
* | More code cleanup.Matthew Barnes2009-06-0214-59/+59
| |
* | Whitespace cleanup.Matthew Barnes2009-05-2920-93/+93
| |
* | Prefer GLib basic types over C types.Matthew Barnes2009-05-2747-727/+727
| |
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-05-2792-166/+166
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-2777-89/+89
| |/
| * Fix compiler warnings in addressbook.Matthew Barnes2009-05-2621-106/+106
| |
| * Eliminate redundant E_ICON_SIZE_* enumeration.Matthew Barnes2009-05-245-21/+21
| |
| * Merge branch 'vcard-inline'Matthew Barnes2009-05-214-350/+0
| |\
| | * Convert the vCard Bonobo control to an EMFormatHook plugin.Matthew Barnes2009-05-064-350/+0
| | |
| * | Bug 578176 – "Send message to contact" does not honor "always BCC"Matthew Barnes2009-05-171-3/+5
| | |
| * | Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-1712-18/+18
| |/
* | Fix "make check" errors.Matthew Barnes2009-05-251-25/+13
| |
* | Eliminate redundant E_ICON_SIZE_* enumeration.Matthew Barnes2009-05-254-4/+4
| |
* | Fix several types of pedantic compiler warnings.Matthew Barnes2009-05-216-7/+7
| |
* | Use -no-undefined on Linux tooMilan Crha2009-05-2018-25/+1133
| | | | | | | | | | There still left two things opened, search for KILL-BONOBO to find them. One is in calendar's Makefile.am, one in composer.
* | Add G_MODULE_EXPORT to exported module functions.Matthew Barnes2009-05-111-2/+2
| |
* | Use the proper idiom for loading types in a GTypeModule.Matthew Barnes2009-05-1112-162/+201
| | | | | | | | | | Also, combine calendar, memo, and task backends into a single module, similar to how it worked under Bonobo.
* | Fix bugs caused by EShellBackend changes.Matthew Barnes2009-05-101-1/+1
| |