f2a2b68c52
e-text: misc cleanup
2012-06-18 10:27:01 -04:00
81b6d4b963
e-text: remove unused draw_background property
...
It's always FALSE.
2012-06-18 10:27:01 -04:00
4a053b1286
e-text: remove unused draw_borders property
...
Nobody ever sets it.
2012-06-18 10:27:01 -04:00
86f388e13a
e-text: remove property that is never set
2012-06-18 10:27:00 -04:00
71bc5588d3
e-text: remove draw-button property
...
Nothing in Evolution sets it, so we can just remove this.
2012-06-18 10:27:00 -04:00
770f741f83
e-text: remove commented out code
2012-06-18 10:27:00 -04:00
23f5773903
Coding style and whitespace cleanup.
2012-02-20 10:04:25 -05:00
6d2863d35a
Bug #661434 - Unfriendly search result
2011-10-11 15:21:41 +02:00
5ddad03992
Remove Ctrl + l () character from source files
...
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
2011-09-29 21:12:10 +02:00
fcbbdfbd18
Coding style and whitespace cleanup.
2011-09-04 07:34:32 -04:00
f014ab82c8
Coding style and whitespace cleanups.
2011-06-08 13:14:48 -04:00
de752b010f
Including <glib-object.h> directly is rarely needed.
2011-05-28 11:12:08 -04:00
756c8abcb8
Bug #646109 - Fix use of include <config.h> to make sure translations work
2011-05-27 15:23:07 +02:00
cb97c2dc8f
Coding style and whitespace cleanup.
2011-05-21 17:56:06 -04:00
d88a9e7360
Bug 649990 - Remove get_font_options() from e-util.c.
...
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.
2011-05-16 13:40:26 -04:00
8a186c3588
Coding style cleanups.
2011-05-08 13:37:20 -04:00
4cfb84c573
Whitespace and coding style cleanups.
2011-05-07 18:48:38 -04:00
7a1677520d
Remove NULL checks for GObject methods.
...
As of GLib 2.28 all GObject virtual methods, including constructed(),
are safe to chain up to unconditionally. Remove unnecessary checks.
2011-02-12 12:54:08 -05:00
2c31a5bc23
Bug 641756 - Fix warnings from GCC 4.6
...
GCC learned how to find dead assignments.
2011-02-08 11:57:50 -05:00
0109aa3a92
More whitespace cleanup.
2011-01-30 11:33:28 -05:00
21ab8044da
Coding style and whitespace cleanup.
2011-01-29 20:22:57 -05:00
954b68a5c8
Adapt EText to latest gtk+-3.0 API.
2011-01-26 08:49:11 -05:00
dc300e6bc8
gdk_cursor_unref() -> g_object_unref()
2011-01-25 10:28:26 -05:00
753c60fc67
Drop backward-compatibility cruft.
2011-01-25 10:28:26 -05:00
d1b440a268
Remove some unused gnome-canvas options.
...
Simplifies the drawing code a bit.
Public API removed:
GnomeCanvas.center_scroll_region (is always TRUE)
GnomeCanvas.pixels_per_unit (is always 1.0)
gnome_canvas_set_center_scroll_region()
gnome_canvas_get_center_scroll_region()
gnome_canvas_set_pixels_per_unit()
2011-01-15 12:11:31 -05:00
e490db52f6
Bug #371705 - Calendar's day view does not reset its IM context
2010-11-23 15:26:55 +01:00
a891b81cfb
Coding style and whitespace cleanup.
2010-11-07 21:13:03 -05:00
c2b2e863cb
Add forgotten cairo_destroy() calls
2010-11-02 11:17:51 +01:00
06943232b3
Fix typo in EText.
...
Fill color properties should be write-only, not read-only.
2010-10-29 13:51:38 -04:00
eaf4b5a865
e-text: Fix color handling
...
- "color" and "color-gdk" properties aren't readable (Their values would
be wrong if an alpha channel was set).
- Use the rgba color when rendering
- Don't allocate the color in the colormap anymore.
2010-10-29 13:50:04 -04:00
8a0f0cfdc9
e-text: Draw with cairo
2010-10-29 13:50:02 -04:00
d5cf0c298c
e-text: Use gdk_pango_layout_get_clip_region() for selection rendering
2010-10-29 13:50:02 -04:00
8811cd67d3
gnome-canvas: Convert canvas item transformation matrix to cairo
...
Also update the GnomeCanvasItem.update vfunc to take a cairo_matrix_t
and no longer pass the clip_path (what was it used for anyway?).
2010-10-29 13:50:01 -04:00
147cc5979e
e-text: Only include libgnomecanvas.h
2010-10-29 13:49:59 -04:00
b3a95d0299
gnome-canvas: Change GnomeCanvasItem->point vfunc
...
Previously the function returned the distance to the nearest item. Now
it only returns an item that is hit. This slightly changes semantics
(button events are no longer dispatched to the nearest item, but only to
the item actually clicked on), but makes the code way simpler and
actually does what one would expect.
2010-10-29 13:49:59 -04:00
bfe391f216
e-text: Remove stippling code
2010-10-29 13:49:58 -04:00
df70b76a55
gnome-canvas: Remove aa code
...
The anti-aliased code was never used, so remove it.
2010-10-29 13:49:57 -04:00
5d812173d0
Drop usage of GtkAnchorType.
...
gtk+-3.0 removed it for being "unused".
2010-10-26 13:31:26 -04:00
f0714755e2
Memory leaks around g_value_set_string
2010-10-22 15:42:21 +02:00
9675f18d91
Coding style and whitespace cleanup.
2010-10-03 13:29:20 -04:00
afe6f502c3
Use new GDK keysym names if available.
...
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.
2010-09-17 18:39:59 -04:00
ebcce86769
Coding style and whitespace cleanups.
2010-09-11 14:14:04 -04:00
101305e1c7
Various memory leaks
2010-09-07 18:39:46 +02:00
eb29179da6
Coding style and whitespace cleanup.
2010-07-11 22:25:06 -04:00
fc3123dc43
Work around sudden disappearance of GdkRegion in GTK+ 2.90.5.
...
API was deprecated and removed in less than two hours! Sheesh!
2010-06-29 20:38:29 -04:00
72797decc1
Giant leap towards GSEAL compliance.
2010-04-08 11:05:26 -04:00
b2e7e4fedd
Bug #325121 - Do not translate developer strings in g_param_spec_*
2010-04-01 21:40:19 +02:00
2836a54dd6
Work around recent GTK+ deprecations.
2010-03-05 07:36:23 -05:00
ec73f5522f
Coding style and whitespace cleanup.
2010-01-30 18:09:19 -05:00
95072d1bc3
Remove unused tooltip support from ECanvas/ETable/EText.
2010-01-14 11:34:28 -05:00