aboutsummaryrefslogtreecommitdiffstats
path: root/libgnomecanvas/gnome-canvas-rich-text.c
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-56/+85
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Whitespace and coding style cleanups.Matthew Barnes2011-05-081-1/+3
|
* Remove NULL checks for GObject methods.Matthew Barnes2011-02-131-2/+2
| | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* Bug #641502 - Flickering while resizing the mail listMilan Crha2011-02-101-3/+3
|
* Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-091-5/+1
| | | | GCC learned how to find dead assignments.
* More whitespace cleanup.Matthew Barnes2011-01-311-4/+4
|
* Adapt GnomeCanvas to latest gtk+-3.0 API.Matthew Barnes2011-01-261-21/+13
|
* Drop backward-compatibility cruft.Matthew Barnes2011-01-251-3/+0
|
* Remove some unused gnome-canvas options.Matthew Barnes2011-01-161-12/+8
| | | | | | | | | | | | | 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()
* gnome-canvas: Convert canvas item transformation matrix to cairoBenjamin Otte2010-10-301-5/+5
| | | | | 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?).
* gnome-canvas: Get rid of libart usage in the text itemsBenjamin Otte2010-10-301-18/+12
|
* gnome-canvas: Change GnomeCanvasItem->point vfuncBenjamin Otte2010-10-301-25/+7
| | | | | | | | 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.
* gnome-canvas: Remove GnomeCanvasItem->render vfuncBenjamin Otte2010-10-301-9/+0
| | | | It's unused now
* Drop usage of GtkAnchorType.Matthew Barnes2010-10-271-79/+6
| | | | gtk+-3.0 removed it for being "unused".
* Bug #631320 - GtkObject is gone in GTK3Milan Crha2010-10-071-5/+3
|
* Use new GDK keysym names if available.Matthew Barnes2010-09-181-23/+26
| | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-390/+390
|
* Coding style and whitespace cleanup.Matthew Barnes2010-06-201-104/+102
|
* Don't bother translating GnomeCanvas GObject properties.Matthew Barnes2010-06-201-40/+40
|
* Fix all remaining GTK3 issues.Matthew Barnes2010-06-161-6/+23
| | | | | | | | | | | | 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.
* Revert "Fix all remaining GTK3 issues."Matthew Barnes2010-06-151-23/+6
| | | | | | | 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-151-6/+23
| | | | | | 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.
* Embed libart_lgpl and libgnomecanvas.Matthew Barnes2010-06-141-0/+2202
Both of these modules are deprecated and going away in GNOME 3 but we still rely heavily on them for GnomeCalendar and ETable. So, welcome to the island of unwanted libraries...