aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
Commit message (Collapse)AuthorAgeFilesLines
* Avoid gtk_rc_parse_string().Matthew Barnes2012-12-012-16/+37
| | | | Use gtk_css_provider_load_from_data() instead.
* ECellText: Simplify fetching vertical-spacing style property.Matthew Barnes2012-12-011-5/+1
| | | | Call gtk_widget_style_get(). No need to get GtkStyle involved.
* Avoid gtk_style_attach().Matthew Barnes2012-12-011-5/+0
| | | | | Documentation claims this step is unnecessary with GtkStyleContext, and indeed the current gtk_style_attach() code does nothing at all.
* Avoid GtkStyle-based "paint" functions.Matthew Barnes2012-12-014-97/+183
| | | | | | | | | | | Use GtkStyleContext-based "render" functions instead. gtk_paint_arrow() --> gtk_render_arrow() gtk_paint_box() --> gtk_render_background() gtk_paint_expander() --> gtk_render_expander() gtk_paint_flat_box() --> gtk_render_background() gtk_paint_shadow() --> gtk_render_frame() gtk_paint_vline() --> gtk_render_line()
* Avoid gtk_widget_get_child_requisition().Matthew Barnes2012-12-012-4/+4
| | | | Use gtk_widget_get_preferred_size() instead.
* Avoid gdk_app_launch_context_new().Matthew Barnes2012-12-011-1/+3
| | | | Use gdk_display_get_app_launch_context() instead.
* Avoid gdk_keyboard_grab/ungrab() and gdk_pointer_grab/ungrab().Matthew Barnes2012-12-014-86/+285
| | | | | | | Use gdk_device_grab() and gdk_device_ungrab() instead. In some cases this requires stashing the grabbed device so it can be ungrabbed outside of an GdkEvent handler.
* Address couple issues found by a Coverity scanMilan Crha2012-11-309-55/+69
|
* Add a GdkDevice parameter to gnome_canvas_item_grab().Matthew Barnes2012-11-307-147/+313
| | | | | GnomeCanvas will stash the GdkDevice and reuse it in the subsequent gnome_canvas_item_ungrab() call.
* Avoid using GdkEventButton directly in certain places.Matthew Barnes2012-11-3011-86/+127
| | | | | | | | | | | | Prefer dealing with GdkEvent pointers and using accessor functions like gdk_event_get_button(). This is complicated by the fact that some GtkWidget method declarations still use GdkEventButton pointers, and synthesizing button events pretty much requires direct GdkEventButton access. But GDK seems to be nudging itself toward sealing the GdkEvent union. Likely to happen in GDK4. Mainly clean up signal handlers and leave method overrides alone for now.
* EWebViewGtkHTML: Fix code alignment issues.Matthew Barnes2012-11-301-60/+60
|
* Add the GdkDevice to ETextEventProcessorCommand.Matthew Barnes2012-11-292-0/+6
| | | | Will be needed for grabs in response to button events.
* Avoid gdk_window_get_pointer().Matthew Barnes2012-11-291-6/+32
| | | | Use gdk_window_get_device_position() instead.
* Bug #687998 - Attachment dialog shown when storing assigned taskMilan Crha2012-11-122-0/+81
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-1195-3924/+5000
|
* Bug #683877 - No more contextual menus for linksMilan Crha2012-11-092-125/+87
|
* Bug #656143 - Stop using deprecated Gtk[HV]Box(Class)Dominique Leuenberger2012-11-079-17/+17
|
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-065-5/+5
|
* Bug #687155 - Text/plain signatures wrap in an editorMilan Crha2012-10-302-3/+11
|
* Bug #267787 - Preferences too large for small screensMilan Crha2012-10-301-1/+57
|
* Bug 627244 - Bold days in "Select Date" dialog not updated when changing monthFabiano Fidêncio2012-10-261-1/+5
|
* Prefer e_source_registry_check_enabled().Matthew Barnes2012-10-261-1/+2
| | | | | Prefer e_source_registry_check_enabled() over e_source_get_enabled() for most instances where we want to exclude disabled data sources.
* Bug #686785 - Port of WebDAV source doesn't match SSL checkMilan Crha2012-10-251-0/+31
|
* Bug #685262 - Attachments disappear when dragged in message previewMilan Crha2012-10-171-0/+11
|
* Bug 685786 - EWebView: Signal handlers never disconnectedMatthew Barnes2012-10-141-0/+6
| | | | | | | | | | | | Both EWebView and EMailDisplay listen for "changed" signals from a GSettings instance, passing itself as the 'user_data' to the signal handler e_web_view_update_fonts(). But in both cases the signal handler was left connected after EWebView and EMailDisplay were finalized, resulting in the signal handler receiving a dangling pointer. Not using g_signal_connect_object() here because of the unresolved reference leak issue in GObject. The GSettings instance is likely cached internally and lives well beyond EWebView and EMailDisplay.
* EWebView cleanups.Matthew Barnes2012-10-141-78/+91
|
* Bug 678750 - Use geocode-glib instead of geoclueMatthew Barnes2012-10-042-82/+90
|
* Bug #678408 - WebKit renders frames with plain/text parts too smallDan Vrátil2012-09-191-11/+8
| | | | | | | | | Workaround for a WebKit bug [0] which appeared in 1.9.x series. When message is loaded, the content is zoomed in and out to force WebKit to recalculate and redraw the iframe so that the content is correctly visible [0] https://bugs.webkit.org/show_bug.cgi?id=89553
* Bug #683949 - Cannot create new LDAP AddressbookMilan Crha2012-09-141-0/+1
|
* Critical warning on ETree dispose, g_object_unref() called on freed objectMilan Crha2012-09-131-4/+2
|
* Make sure selection in ECalendar is visibleMilan Crha2012-09-111-0/+7
| | | | | | | The GtkStyle's GTK_STATE_ACTIVE background color can match background color of GTK_STATE_NORMAL, when there is not visible selected days in the calendar, thus fallback to GTK_STATE_SELECTED colors in that case.
* Revert "Adjust for webkit 1.9.90 API change."Matthew Barnes2012-09-071-5/+0
| | | | | | This reverts commit 485704419b11685e4753024dabec53d1668aaa9d. WebKit reverted its API break in 1.9.91, so revert our workaround.
* Bug #679382 - Saving attachments takes too long, maxes CPU usageMilan Crha2012-09-061-3/+16
|
* Coding style and whitespace cleanup.Matthew Barnes2012-09-011-4/+8
|
* Adjust for webkit 1.9.90 API change.Dominique Leuenberger2012-08-251-0/+5
|
* Bug 682494 - Add some defensive checks in gal-a11y-e-text.cMike Gorse2012-08-231-6/+21
|
* Disconnect signal handler from 'candidate' on its freeMilan Crha2012-08-231-0/+4
|
* EAttachment: Minor code rearrangement.Matthew Barnes2012-08-201-67/+67
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-2048-214/+214
|
* Bug 681882 - Account signature not selected in new composer windowMatthew Barnes2012-08-161-0/+51
|
* Remove all references to JavaScriptCore and use of JavaScriptDan Vrátil2012-08-092-230/+6
| | | | | | | | | | JavaScript is disabled in EWebView, so any attempt to evaluate a JavaScript code will fail. We are using DOM bindings instead to interact with the document. This commit removes some helper functions created in the early days of WebKit port which are not used anymore and also fixes mail-to-task plugin, which was relying on some JavaScript.
* Bug #681400 - Fix build against WebKitGtk+ 1.9.6Dan Vrátil2012-08-081-2/+11
|
* Bug #681279 - Reply on selection doesn't workDan Vrátil2012-08-081-19/+70
|
* Bug #678408 - Mail view is very small for some mailsMilan Crha2012-08-071-0/+9
|
* Remove all GDK threads usage.Matthew Barnes2012-08-067-18/+4
| | | | | | | | | | | | According to [1], we don't need to worry about GDK's global lock since we don't call gdk_threads_init() or gdk_threads_set_lock_functions(). The GDK threads API is being aggressively deprecated by GTK+ developers so let's just abandon it entirely. I've never really understood when you're supposed to use it or not use it anyway, so it's good to be rid of this confusion. [1] https://mail.gnome.org/archives/desktop-devel-list/2012-August/msg00005.html
* ESourceConfigDialog: Implement EAlertSink.Matthew Barnes2012-08-031-4/+85
|
* ESourceConfig: Enable remote resource creation.Matthew Barnes2012-08-031-5/+14
|
* Bug 681075 - Add tooltips to signature editor toolbarMichael Wood2012-08-031-2/+2
|
* Bug #680666 - Contacts/Tasks/Memos preview pane does not follow theme colorsDan Vrátil2012-08-021-8/+3
|
* Fix some memory leaksDan Vrátil2012-08-021-0/+1
|
* EWebView: Remove a stray newline causing build failures.Matthew Barnes2012-07-281-2/+1
|
* Bug #679404 - Read colors for message preview from Gtk themeDan Vrátil2012-07-271-1/+18
|
* G_GNUC_CONST leads to 'statement with no effect' compiler warningMilan Crha2012-07-191-1/+1
|
* Remove unused e_date_edit_have_time().Matthew Barnes2012-07-182-20/+0
|
* EDateEdit cleanups.Matthew Barnes2012-07-182-85/+118
|
* Bug #678783 - Crash under e_attachment_set_file_info()Milan Crha2012-07-131-20/+33
|
* e_web_view_update_fonts(): Fix memory corruption.Matthew Barnes2012-07-071-10/+8
| | | | | | Boxed GdkColors are allocated with the slice allocator, not malloc(). This has been causing me frequent and random Evolution crashes.
* Bug 678946 - Port entry in Account Assistant is unsetMatthew Barnes2012-07-051-3/+0
| | | | Reverts part of commit 6c05b09be16ac8eceb17653c3c26c0c6f963ef10.
* Bug #515004 - Allow toggling between text and HTML view of mailDan Vrátil2012-06-261-3/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2012-06-2510-14/+6
|
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-255-16/+16
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* Bug 678634 - Criticals warnings when creating new book/calMatthew Barnes2012-06-245-105/+355
| | | | | | | | | | | | | | | | This required some reworking of assumptions I made early on when I first wrote ESourceConfig, before I thought up the whole "collection" concept. Not all ESourceConfigBackends will use a fixed parent UID, specifically collection backends. In fact we may use multiple instances of the same ESourceConfigBackend subclass if, for example, a user has two different Exchange Web Services accounts configured. We would need to show both EWS account (or "collection") names in the "Type" combo box. For the moment collection-based ESourceConfigBackends are not listed when creating a new calendar or address book since we lack support for creating new resources on a remote server. A D-Bus interface for that is in the works.
* e-text: misc cleanupCosimo Cecchi2012-06-181-4/+0
|
* e-text: remove unused draw_background propertyCosimo Cecchi2012-06-182-45/+1
| | | | It's always FALSE.
* all: don't set draw_background to FALSE on ETextCosimo Cecchi2012-06-184-4/+0
|
* e-text: remove unused draw_borders propertyCosimo Cecchi2012-06-183-82/+6
| | | | Nobody ever sets it.
* e-text: remove property that is never setCosimo Cecchi2012-06-181-6/+1
|
* e-text: remove draw-button propertyCosimo Cecchi2012-06-182-124/+1
| | | | Nothing in Evolution sets it, so we can just remove this.
* e-text: remove commented out codeCosimo Cecchi2012-06-181-66/+1
|
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-1810-3/+63
|
* Bug #764467 - URL popup shows all Copy optionsDan Vrátil2012-06-182-19/+23
|
* Fix some memory leaksDan Vrátil2012-06-181-0/+3
|
* ESourceConfig: Lock down name when editing a collection member.Matthew Barnes2012-06-151-7/+36
|
* ESourceConfig: Add "collection-source" property.Matthew Barnes2012-06-152-0/+50
| | | | | | This is a read-only property, set when editing an existing data source which is a collection member. We'll use this to lock down certain UI elements.
* Move ECalSourceConfig to /widgets/misc.Matthew Barnes2012-06-153-0/+472
| | | | | | ECalSourceConfig drags in no additional dependencies, and although we do publish a libevolution-calendar.so, this keeps all the ESource config UI in one place so it can more easily be moved to Evolution-Data-Server.
* Move EBookSourceConfig to /widgets/misc.Matthew Barnes2012-06-153-0/+323
| | | | | | | | | | | EBookSourceConfig drags in no additional dependencies, and allows us to delay publishing a libevolution-addressbook.so since 3rd party packages will need to subclass EBookSourceConfig. The address book source code will need to be flattened into a single library before we could publish a libevolution-addressbook.so anyway. That would be a good thing to do regardless -- Evolution has way too many internal libraries -- but it's out of scope at the moment.
* Bug #677631 - Some HTML links don't workDan Vrátil2012-06-131-0/+5
|
* Bug #677706 - Crash in spell_entry_recheck_all()Milan Crha2012-06-121-0/+3
|
* Mail formatter rewriteDan Vrátil2012-06-064-1/+856
| | | | | | | | All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.
* Fix a couple distcheck errors.Matthew Barnes2012-06-051-0/+2
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-0444-75/+43
|
* Adapt modules/calendar to the new ESource API.Matthew Barnes2012-06-032-0/+65
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-032-0/+66
|
* Adapt widgets/misc to the new ESource API.Matthew Barnes2012-06-0339-5077/+4784
|
* Adapt libeutil to the new ESource API.Matthew Barnes2012-06-0310-601/+1636
|
* Add ESourceConfig widget.Matthew Barnes2012-06-0312-1/+2666
| | | | Base class for building address book and calendar configuration dialogs.
* Revert "Bug #669463 - HTML signature opens in editor as Plain text"Matthew Barnes2012-06-033-54/+1
| | | | | | This reverts commit f25826211b007a615118f9b583a66d7027eddeac. Not an issue on the account-mgmt branch. We can do without this hack.
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-031-0/+6
| | | | One last time.
* Whitespace cleanups.Matthew Barnes2012-06-022-3/+3
|
* Fix memory leaks around gtk_tree_model_get() functionMilan Crha2012-05-312-5/+8
|
* Bug #206484 - Add year scrolling to date pickerMilan Crha2012-05-174-42/+277
|
* Bug #671585 - Add support for smooth scrolling devicesMilan Crha2012-05-152-2/+42
|
* Whitespace cleanups.Matthew Barnes2012-05-135-23/+21
|
* Bug #200683 - Composer subject spell checkingMilan Crha2012-05-103-0/+922
|
* Fix displaying icons in EWebView alertsDan Vrátil2012-05-031-30/+8
|
* Bug #669463 - HTML signature opens in editor as Plain textMilan Crha2012-05-033-1/+54
|
* Initialize ESignatureEditor with GtkHTML's WebViewMilan Crha2012-05-031-2/+2
|
* Bug #675347 - No 'Retrieving message...' in preview panelDan Vrátil2012-05-031-2/+2
|
* Bug #669133 - Import Assistant preview widget is too smallMilan Crha2012-05-031-1/+1
|
* Bug #674060 - Preview panel on folder change not updatedDan Vrátil2012-04-271-1/+1
|
* Bug #669088 - Add a Column dialog draws incorrectlyMilan Crha2012-04-271-0/+2
|
* Bug #674701 - Clicking address in preview composes to default accountMilan Crha2012-04-261-0/+9
|
* Bug #674062 - Runtime warning from e_attachment_load_handle_error()Milan Crha2012-04-241-2/+4
|
* Bug #674272 - Contacts preview differs with mailer running and notDan Vrátil2012-04-232-1/+37
| | | | | | This splits the giant EMailRequest to individual EFileRequest, EStockRequest, EHTTPRequest and EMailRequest, making the first two available globally from e-utils, the othe two are loaded only with mailer, since no other component uses them.
* Handle default e-mail fonts with multiword names correctlyDan Vrátil2012-04-161-2/+2
|
* Bug #600860 - Opening IMAP message with large attachment blocks UIMilan Crha2012-04-131-7/+27
|
* Use link colors from GtkStyleContextDan Vrátil2012-04-131-0/+35
|
* EWebView: Make antialiasing settings optional.Matthew Barnes2012-04-121-25/+38
| | | | | | Check if the "org.gnome.settings-daemon.plugins.xsettings" schema is available before creating a GSettings object for it, to avoid a hard dependency on gnome-settings-daemon.
* Bug #673108 - Font settings and monospace fonts don't workDan Vrátil2012-04-122-14/+155
|
* Add missing return to e_calendar_item_event()Milan Crha2012-04-101-0/+1
|
* Whitespace cleanup.Matthew Barnes2012-04-025-23/+23
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* WebKit port - port widgetsDan Vrátil2012-03-2917-1918/+3560
|
* Bug 671509 (2/2) - Some small UI/theming improvementsCosimo Cecchi2012-03-181-1/+6
| | | | | | | | | | | | | | table-header: use gtk_widget_create_pango_context() for header buttons Since we temporarily set custom style classes for the header button on the table's style context, we cannot rely on the PangoContext used by gtk_widget_create_pango_layout(), since the font values it will use are cached by GtkWidget. By creating a new PangoContext and using that to create our Pango layout, the text we render will correctly support the properties specified by the theme (such as bold column-header buttons as specified by Adwaita).
* Bug 671509 (1/2) - Some small UI/theming improvementsCosimo Cecchi2012-03-181-0/+3
| | | | | attachment-button: set "linked" style class on the button to get a unified look for themes that support it.
* Bug #665130 - Memory leaks in Preferences and ETableMilan Crha2012-03-163-3/+21
|
* Bug #665129 - Memory leak in EBufferTaggerMilan Crha2012-03-161-0/+2
|
* Bug 671716 - Fails to build with --enable-contact-mapsMatthew Barnes2012-03-103-0/+12
|
* Bug #664169 - Default port is not selected by defaultMilan Crha2012-03-081-4/+2
|
* Bug #671233 - Unable to choose port 587 for SMTPMilan Crha2012-03-061-4/+15
|
* Add missing linker flags.Matthew Barnes2012-03-044-2/+6
|
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-0317-20/+20
| | | | libevolution-utils.
* Coding style and whitespace cleanup.Matthew Barnes2012-02-20106-2657/+3173
|
* Use i as mnemonic for Filename string everywhere. This does not conflict ↵Andre Klapper2012-02-171-1/+1
| | | | with other mnemonics in the affected dialogs.
* Bug 670280 - Remove "Recent Documents" attachment featureMatthew Barnes2012-02-172-58/+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 #320976 - Remember last New button choice in Calendar viewMilan Crha2012-02-172-7/+141
|
* Be able to define help target for Preferences pagesMilan Crha2012-02-153-11/+18
| | | | A follow-up for bug #670073
* Bug #670073 - Non-working help button in Preferences dialogMilan Crha2012-02-151-2/+30
|
* Fix broken Help menu entry in Groupwise Send Options after Mallard transition.Andre Klapper2012-02-151-3/+3
|
* Bug #591436 - Add -avoid-version to LDFLAGSH. Habighorst2012-02-155-5/+5
|
* Bug #646430 - New line character is a link separator tooMilan Crha2012-01-301-3/+3
|
* EActivity cleanups.Matthew Barnes2012-01-252-6/+12
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-1910-9/+13
| | | | | | | 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.
* Do not auto-mark-as-seen when changing filter typeMilan Crha2012-01-111-1/+0
|
* Bug #667119 - Hard to change Attendee role in meeting editorMilan Crha2012-01-115-768/+0
|
* Bug #667398 - Automatic mark-as-seen too aggressiveMilan Crha2012-01-112-0/+25
|
* Bug 665981 - Use OpenStreetMap geoclue providerAlban Browaeys2011-12-131-2/+4
| | | | | | | Use the OpenStreetMap geoclue provider instead of the deprecated and likely disabled Yahoo geoclue v1 API. Requires geoclue >= 0.12.
* Bug 665980 - Bump minimum champlain-gtk version to 0.12Alban Browaeys2011-12-131-1/+1
|
* Reorder accounts by drag-and-drop.Matthew Barnes2011-12-115-2156/+0
| | | | | | | | | | | | | | | | | | | | | This implements https://bugzilla.gnome.org/show_bug.cgi?id=663527#c3. Account reordering is now done by drag-and-drop instead of up/down buttons. Turned out to be a wee bit more complicated than I initially thought. This scraps EAccountManager and EAccountTreeView and replaces them with new classes centered around EMailAccountStore, which EMailSession owns. EMailAccountStore is the model behind the account list in Preferences. The folder tree model now uses it to sort its own top-level rows using gtk_tree_path_compare(). It also broadcasts account operations through signals so we don't have to rely so heavily on EAccountList signals, since EAccountList is going away soon. Also as part of this work, the e-mail-local.h and e-mail-store.h APIs have been merged into EMailSession and MailFolderCache.
* Cosimo's spidey senses pointed him to a memory leak.Matthew Barnes2011-11-241-1/+0
|
* Merge branch 'master' into wip/gsettingsMatthew Barnes2011-11-234-74/+216
|\ | | | | | | | | Conflicts: mail/e-mail-paned-view.c
| * EPreviewPane: Implement EAlertSink.Matthew Barnes2011-11-222-2/+69
| | | | | | | | | | | | | | Means EMailBrowser no longer has to. Also, EMailReader now provides a default implementation for get_alert_sink() which just calls get_preview_pane() and casts.
| * EAlertBar: Add a close button to all alerts.Matthew Barnes2011-11-222-72/+147
| | | | | | | | | | Replaces the 'Dismiss' button. All alerts appearing in an alert bar should be dismissable (i.e. non-modal). For modal alerts use a dialog.
| * Remove some unnecessary #includes.Matthew Barnes2011-11-181-1/+0
| |
* | Fix compiler warnings.Matthew Barnes2011-11-231-1/+0
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-084-112/+451
|\|
| * EMAccountEditor: Start using CamelNetworkSettings.Matthew Barnes2011-11-072-114/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of stuffing host/port/user/etc into CamelURLs. To enforce this in 3rd party extensions, remove EAccounts from EMConfigTargetAccount and rename it EMConfigTargetSettings with the following struct members: const gchar *email_address; const gchar *storage_protocol; CamelSettings *storage_settings; const gchar *transport_protocol; CamelSettings *transport_settings;
| * Add EAuthComboBox widget.Matthew Barnes2011-11-073-0/+332
| | | | | | | | To be used in the Account Editor to list authentication mechanisms.
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-247-13/+25
|\|
| * Bug #451377 - Timezone map resizes on mouseoverMilan Crha2011-10-202-11/+17
| |
| * Bug #527614 - Valgrind shows a nice amount of lost memoryMilan Crha2011-10-205-2/+8
| |
* | Port misc widgets to use GSettingsRodrigo Moya2011-10-133-18/+11
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-132-1/+6
|\|
| * Bug #661434 - Unfriendly search resultMilan Crha2011-10-112-1/+6
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-1013-534/+213
|\|
| * Bug #235665 - Heavy hard disk access when resizing columns in viewsMilan Crha2011-10-075-2/+86
| |
| * Prefer g_simple_async_result_take_error().Matthew Barnes2011-10-062-22/+11
| | | | | | | | | | | | | | | | | | Slightly more efficient and convenient than: g_simple_async_result_set_from_error (simple, error); g_error_free (error); One less GError to copy and destroy.
| * Let GtkFileChooser track its own last-used-folder.Matthew Barnes2011-10-062-129/+2
| | | | | | | | | | | | GtkFileChooser in GTK+ 3.2 now keeps track of the last-used-folder itself, even across applications, so get out of its way and let it handle it.
| * Remove EHintedEntry.Matthew Barnes2011-10-063-368/+0
| | | | | | | | | | GtkEntry in GTK+ 3.2 now provides this functionality through the new GtkEntry:placeholder-text property.
| * EAttachmentPaned: Add "resize-toplevel" property.Matthew Barnes2011-10-062-13/+114
| | | | | | | | | | | | | | | | | | 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.
* | First successful buildRodrigo Moya2011-10-061-11/+0
| |
* | Merge from masterRodrigo Moya2011-10-0529-339/+176
|\|
| * Simplify library dependency flags.Matthew Barnes2011-10-055-33/+32
| | | | | | | | | | | | | | | | | | 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 two little memory leaksDan Vrátil2011-10-011-0/+5
| |
| * ETableHeader: Nuke unused code.Cosimo Cecchi2011-09-301-147/+2
| |
| * ETableHeader: Rework the header button drawing code for GTK+ 3Cosimo Cecchi2011-09-305-120/+93
| | | | | | | | | | | | | | | | The code in ETable that draws the button headers is outdated, and uses deprecated gtk_paint_* functions mixed with cairo. Port the code to use the GtkStyleContext API, which allows themes to give the header the same appearance of a regular GtkTreeView header.
| * Fix few 'may be used uninitialized' compiler warningsMilan Crha2011-09-302-4/+3
| |
| * Remove Ctrl + l ( ) character from source filesPaul Menzel2011-09-308-27/+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-272-14/+29
| | | | | | | | | | 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-267-7/+8
| | | | | | | | | | | | | | | | 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 #655625 - Crash in atk_state_set_contains_stateMilan Crha2011-09-262-7/+12
| |
| * Bug #659828 - Selecting a message with a sound attached loses focusMilan Crha2011-09-261-1/+1
| |
| * Bug #351025 - Make the order of the mail accounts configurableMilan Crha2011-09-263-5/+916
| |
| * Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-262-58/+88
| |
| * Bug #655709 - Hide 'Group by' in views when not supportedMilan Crha2011-09-062-1/+7
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-09-04140-3385/+5477
| |
| * Bug #651741 - Find in text message doesn't warn about no matching foundMilan Crha2011-08-192-1/+5
| |
| * Bug #651633 - Hidden task/memo sidebar always automagically re-appearsMilan Crha2011-08-191-0/+19
| |
| * Bug #656722 - Incorrect prototype of notify:: signal callbackMilan Crha2011-08-171-1/+1
| |
| * EPortEntry: Add a "security-method" property.Matthew Barnes2011-08-152-75/+138
| | | | | | | | | | This is an enum property of type CAMEL_TYPE_NETWORK_SECURITY_METHOD. We can then bind it to CamelNetworkSettings:security-method.
| * Coding style and whitespace cleanup.Matthew Barnes2011-08-133-81/+102
| |
| * Bug #645476 - Message list unnecessarily scrolls back to selected rowMilan Crha2011-08-121-1/+0
| |
| * Bug #655669 - Can't save inline pictures embedded in HTML MailsMilan Crha2011-08-092-1/+55
| |
| * Bug #654889 - Closes when clicking on year/month selectorMilan Crha2011-07-251-7/+17
| |
| * Add "Open With Other Application" to attachment menu.Matthew Barnes2011-06-221-6/+68
| | | | | | | | Opens a GtkAppChooserDialog based on the attachment's content type.
| * Bug #652626 - Fix initial position of contact maps markersDan Vrátil2011-06-151-0/+1
| |
| * Do not use deprecated EBook/ECal APIMilan Crha2011-06-142-23/+29
| |
| * Coding style and whitespace cleanups.Matthew Barnes2011-06-145-168/+161
| |
| * Replace G_CONST_RETURN with 'const'.Matthew Barnes2011-06-108-27/+27
| | | | | | | | GLib is finally dropping this hack.
| * Coding style and whitespace cleanups.Matthew Barnes2011-06-0923-165/+249
| |
| * Bug #643526 - Crash in et_get_n_childrenMilan Crha2011-06-062-5/+5
| |
| * Bug #642557 - Display maps in contact previewDan Vrátil2011-06-027-2/+1744
| |
| * Embed e_hsv_tweak() directly in e-table-item.c.Matthew Barnes2011-06-016-115/+43
| | | | | | | | | | ETableItem is the last user of e_hsv_tweak(). This allows us to remove widgets/misc/e-hsv-utils.[ch].
| * Move EPopupMenu to /widgets/table.Matthew Barnes2011-06-015-69/+14
| | | | | | | | | | | | | | | | ETableHeaderItem is the last user of EPopupMenu. Move it to /widgets/table to discourage further use and strip out unused features. The functionality it provides has long since been superseded by GtkUIManager and GtkAction.
| * Including <glib-object.h> directly is rarely needed.Matthew Barnes2011-05-2810-11/+0
| |
| * Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-2811-11/+0
| |
| * Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-27145-16/+395
| |
| * Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-05-232-12/+9
| | | | | | | | | | This adds a "handle-uris" GAction which takes a string array argument, so the URIs can be passed to the primary process verbatim.
| * Coding style and whitespace cleanup.Matthew Barnes2011-05-2226-336/+497
| |
| * Bug 649990 - Remove get_font_options() from e-util.c.Matthew Barnes2011-05-172-18/+0
| | | | | | | | | | | | | | | | | | Not only is get_font_options() no longer needed, it's actually doing the wrong thing by reading settings through GConfClient instead of GSettings. But it turns out, thanks to the tighter Cairo integration in GTK3, the widgets that call get_font_options() can be made to work correctly by simply removing this hack. Love it when that happens.
| * Bug #601541 - Add 'Copy Image' Option On Inline Email ImagesMilan Crha2011-05-162-1/+113
| |
| * Bug #243938 - Clicking on week numbers changes work week to week viewMilan Crha2011-05-132-4/+42
| |
| * Coding style cleanups.Matthew Barnes2011-05-0941-169/+169
| |
| * Whitespace and coding style cleanups.Matthew Barnes2011-05-0819-35/+78
| |
| * Make EAlertBar messages selectableMilan Crha2011-04-281-0/+2
| |
| * Adapt to CamelService changes.Matthew Barnes2011-04-211-7/+4
| |
| * EWebView: Coding style cleanupMatthew Barnes2011-04-151-1/+2
| |
| * Work around another a11y crash.Matthew Barnes2011-04-141-2/+10
| | | | | | | | | | | | Some kind of object lifetime issue in GalA11yETableItem. Just work around it for now. Killing this class would pretty much mean killing a11y support for ETables entirely and I'm not that pissed off... yet.
| * EWebView: Fix icon retrieval when showing EAlerts.Matthew Barnes2011-04-141-1/+13
| | | | | | | | Need to convert the icon filename to a URI for use in <img> tags.
| * EWebView: Implement the EAlertSink interfaceMatthew Barnes2011-04-132-10/+116
| | | | | | | | Shows alerts directly in the HTML area, similar to GtkInfoBar.
| * Restore lockdown integration.Matthew Barnes2011-03-285-44/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | With lockdown settings available through GSettings, widgets can handle lockdown integration themselves without having to use EShellSettings. Also fixed a few places where printing or save-to-disk actions were either not properly wired up or not responding to lockdown settings, but much more work needs done. Attachments, for example, are not honoring the disable-save-to-disk setting at all. This too requires the recently-added gsettings-desktop-schemas dependency.
| * Bug 644310 - Rework "Set as Background" image optionMatthew Barnes2011-03-271-25/+18
| | | | | | | | | | | | | | | | | | This adds a dependency on gsettings-desktop-schemas >= 2.91.92. The version was chosen for the change from "picture-filename" to "picture-uri" in the "org.gnome.desktop.background" schema. Also, we now save the background image under ~/Pictures since the old directory (~/.gnome2/wallpapers) is presumed deprecated in GNOME 3.
| * EAlertBar: Make warnings time out after 5 minutesMatthew Barnes2011-03-261-1/+11
| | | | | | | | | | | | Warnings are generally meant for transient errors. No need to leave them up indefinitely. Close them automatically if the user hasn't responded after a reasonable period of time has elapsed.
| * Reduce EAlertBar height.Matthew Barnes2011-03-261-6/+12
| | | | | | | | | | Use height-for-width size requests instead of width-for-height. Height is still not as small as I'd like, but it's a little better.
| * Bug 418954 - Add a separate entry combo for port numbersDan Vráti2011-03-243-0/+558
| | | | | | | | | | | | | | | | | | Adds a new EPortEntry widget which appears alongside "host" entry boxes so users don't have to know about the "host:port" syntax to specify a custom port number. Currently only used in the mail account editor, but we'll generalize it futher so it can be used everywhere.
| * Fix few invalid reads caused by ECanvasMilan Crha2011-03-151-6/+10
| |
| * Bug 644235 - Make EActivityProxy a GtkFrameCosimo Cecchi2011-03-092-10/+5
| | | | | | | | | | So it can inherit the theme from the widget below. Was previously a GtkEventBox for historical reasons that no one remembers.
| * Bug 644066 - Text selection is cleared when right-clicking on a linkMatthew Barnes2011-03-071-5/+6
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-03-0650-50/+109
| |
| * Do not leak attachments in a mail viewMilan Crha2011-03-023-5/+33
| |
| * Fix Gtk-Doc comment notation.Matthew Barnes2011-03-022-9/+13
| | | | | | | | Seeing lots of what I assume to be doxygen syntax in comment blocks.
| * Bug #641374 - "Send new mail to..." popup action doesn't workMilan Crha2011-02-282-1/+18
| |
| * Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-2550-364/+159
| |
| * Use G_SIGNAL_TYPE_STATIC_SCOPE for all GdkEvent signal params.Matthew Barnes2011-02-256-45/+94
| | | | | | | | | | I thought this might be the cause of bug #643089. Turns out it wasn't, but it's a good thing to do anyway.
| * Bug #623593 - Cannot drag&drop attached messages from mailsMilan Crha2011-02-233-7/+111
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-02-192-2/+2
| |
| * Bug #642088 - Crash when changing advanced send options in GroupWiseMilan Crha2011-02-171-11/+35
| |
| * Fix few memory leaksMilan Crha2011-02-152-3/+17
| |
| * Remove NULL checks for GObject methods.Matthew Barnes2011-02-1334-85/+65
| | | | | | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
| * Fix a build break due to #error pragmaMilan Crha2011-02-111-4/+15
| |
| * Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-098-65/+3
| | | | | | | | GCC learned how to find dead assignments.
| * Composer: Add Edit -> PreferencesMatthew Barnes2011-02-041-5/+9
| | | | | | | | Opens the Preferences window to the Composer Preferences section.
| * Bug #641011 - Ugly appointment editing windowsMilan Crha2011-02-032-0/+3
| |
| * More whitespace cleanup.Matthew Barnes2011-01-3137-409/+409
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-01-3014-172/+273
| |
| * Adapt ETree to latest gtk+-3.0 API.Matthew Barnes2011-01-262-52/+58
| |
| * Adapt ECell classes to latest gtk+-3.0 API.Matthew Barnes2011-01-2610-121/+69
| |
| * Adapt ETableHeaderItem to latest gtk+-3.0 API.Matthew Barnes2011-01-263-33/+32
| |
| * Adapt ETableFieldChooserItem to latest gtk+-3.0 API.Matthew Barnes2011-01-261-9/+18
| |
| * Adapt ETableItem to latest gtk+-3.0 API.Matthew Barnes2011-01-261-17/+8
| |
| * Adapt ETable to latest gtk+-3.0 API.Matthew Barnes2011-01-262-49/+58
| |
| * Adapt ECanvasBackground to latest gtk+-3.0 API.Matthew Barnes2011-01-261-4/+3
| |
| * Adapt EReflow to latest gtk+-3.0 API.Matthew Barnes2011-01-261-11/+12
| |
| * Adapt EText to latest gtk+-3.0 API.Matthew Barnes2011-01-261-25/+21
| |
| * Adapt EMap to latest gtk+-3.0 API.Matthew Barnes2011-01-261-140/+243
| |
| * Adapt ECanvas to latest gtk+-3.0 API.Matthew Barnes2011-01-261-1/+1
| |
| * Adapt ECalendarItem to latest gtk+-3.0 API.Matthew Barnes2011-01-261-50/+22
| |
| * Fix minor compiler warningsMatthew Barnes2011-01-261-2/+2
| |
| * Various critical warnings about comp-editor-pages and date editMilan Crha2011-01-251-0/+1
| |
| * Do not oversize New and Send/Receive toolbar buttonsMilan Crha2011-01-251-37/+0
| |
| * Adapt size_request vfuncs to latest gtk+-3.0 API.Rodrigo Moya2011-01-254-33/+84
| |