Import goffice-0.2.2, to be used for gnumeric and gnucash.

GOffice is a library of document-centric objects and utilities building
on top of GLib and Gtk+.

- fix cairo for gnucash, asked by todd@
tweaks/ok jasper@, todd@, alek@
This commit is contained in:
martynas 2007-09-13 21:23:00 +00:00
parent 9bcb77c0f4
commit cc712183c4
6 changed files with 594 additions and 0 deletions

BIN
devel/goffice/.Makefile.swp Normal file

Binary file not shown.

45
devel/goffice/Makefile Normal file
View File

@ -0,0 +1,45 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/13 21:23:00 martynas Exp $
SHARED_ONLY= Yes
COMMENT= document centric objects and utilities
GNOME_PROJECT= goffice
GNOME_VERSION= 0.2.2
V= ${GNOME_VERSION}
SHARED_LIBS += goffice-1 0.0 # .2.2
CATEGORIES= devel
MAINTAINER= Martynas Venckus <martynas@openbsd.org>
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= ICE ORBit-2 ORBitCosNaming-2 SM X11 Xau Xcursor Xdmcp \
Xext Xfixes Xi Xinerama Xrandr Xrender art_lgpl_2 atk-1.0 \
audiofile bonobo-2 bonobo-activation bonoboui-2 bz2 \
cairo crypto dbus-1 dbus-glib-1 esd expat fontconfig \
freetype gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 glib-2.0 \
glitz gmodule-2.0 gnome-2 gnome-keyring gnomecanvas-2 \
gnomevfs-2 gobject-2.0 gsf-1 gthread-2.0 gtk-x11-2.0 \
jpeg m pango-1.0 pangocairo-1.0 pangoft2-1.0 png popt \
ssl util xml2 z
MODULES= devel/gettext \
x11/gnome
LIB_DEPENDS= glade-2.0.>=0.6::devel/libglade2 \
gnomeprint-2-2.>=2::x11/gnome/libgnomeprint \
gnomeui-2.>=1800::x11/gnome/libgnomeui \
gsf-gnome-1.>=114:libgsf-gnome-*:devel/libgsf,-gnome \
CONFIGURE_STYLE= gnu
CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS+= --with-cairo
SUBST_VARS= V
.include <bsd.port.mk>

5
devel/goffice/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (goffice-0.2.2.tar.bz2) = or/9but2CeoZk2yPbvtG/A==
RMD160 (goffice-0.2.2.tar.bz2) = 4A+kv52KShSH5wgWsfS9vD9OwII=
SHA1 (goffice-0.2.2.tar.bz2) = mxnRQhjrs7Uut9g+SQW7LBdtJs4=
SHA256 (goffice-0.2.2.tar.bz2) = oL+CPvDsA/7i5q50WStT3H6trPyb+/bonbibPj7o/H0=
SIZE (goffice-0.2.2.tar.bz2) = 1422593

View File

@ -0,0 +1,183 @@
$OpenBSD: patch-goffice_graph_gog-renderer-cairo_c,v 1.1.1.1 2007/09/13 21:23:02 martynas Exp $
--- goffice/graph/gog-renderer-cairo.c.orig Tue Aug 30 03:50:11 2005
+++ goffice/graph/gog-renderer-cairo.c Fri Jul 6 19:09:35 2007
@@ -101,31 +101,6 @@ gog_renderer_cairo_finalize (GObject *obj)
(*parent_klass->finalize) (obj);
}
-static void
-gog_renderer_cairo_clip_push (GogRenderer *rend, GogRendererClip *clip)
-{
- GogRendererCairo *crend = GOG_RENDERER_CAIRO (rend);
- double x, y;
-
- /* Rounding clipping area trigger cairo fast clip */
- x = floor (clip->area.x + 0.5);
- y = floor (clip->area.y + 0.5);
-
- cairo_save (crend->cairo);
- cairo_rectangle (crend->cairo, x, y,
- floor (clip->area.x + clip->area.w + 0.5) - x,
- floor (clip->area.y + clip->area.h + 0.5) - y);
- cairo_clip (crend->cairo);
-}
-
-static void
-gog_renderer_cairo_clip_pop (GogRenderer *rend, GogRendererClip *clip)
-{
- GogRendererCairo *crend = GOG_RENDERER_CAIRO (rend);
-
- cairo_restore (crend->cairo);
-}
-
static double
grc_line_size (GogRenderer const *rend, double width)
{
@@ -139,37 +114,7 @@ grc_line_size (GogRenderer const *rend, double width)
return floor (width);
}
-static double
-gog_renderer_cairo_line_size (GogRenderer const *rend, double width)
-{
- double size = grc_line_size (rend, width);
-
- if (size < 1.0)
- return ceil (size);
-
- return size;
-}
-
static void
-gog_renderer_cairo_sharp_path (GogRenderer *rend, ArtVpath *path, double line_width)
-{
- ArtVpath *iter = path;
-
- if (((int) (rint (line_width)) % 2 == 0) && line_width > 1.0)
- while (iter->code != ART_END) {
- iter->x = floor (iter->x + .5);
- iter->y = floor (iter->y + .5);
- iter++;
- }
- else
- while (iter->code != ART_END) {
- iter->x = floor (iter->x) + .5;
- iter->y = floor (iter->y) + .5;
- iter++;
- }
-}
-
-static void
grc_path (cairo_t *cr, ArtVpath *vpath, ArtBpath *bpath)
{
if (vpath)
@@ -250,6 +195,78 @@ grc_draw_path (GogRenderer *rend, ArtVpath const *vpat
}
static void
+gog_renderer_cairo_push_clip (GogRenderer *rend, GogRendererClip *clip)
+{
+ GogRendererCairo *crend = GOG_RENDERER_CAIRO (rend);
+ ArtVpath *path = clip->path;
+ int i;
+ gboolean is_rectangle;
+
+ for (i = 0; i < 6; i++)
+ if (path[i].code == ART_END)
+ break;
+
+ is_rectangle = i == 5 &&
+ path[5].code == ART_END &&
+ path[0].x == path[3].x &&
+ path[0].x == path[4].x &&
+ path[1].x == path[2].x &&
+ path[0].y == path[1].y &&
+ path[0].y == path[4].y &&
+ path[2].y == path[3].y;
+
+ cairo_save (crend->cairo);
+ if (is_rectangle) {
+ double x = floor (path[0].x + 0.5);
+ double y = floor (path[0].y + 0.5);
+ cairo_rectangle (crend->cairo, x, y,
+ floor (path[1].x + 0.5) - x,
+ floor (path[2].y + 0.5) - y);
+ } else {
+ grc_path (crend->cairo, path, NULL);
+ }
+ cairo_clip (crend->cairo);
+}
+
+static void
+gog_renderer_cairo_pop_clip (GogRenderer *rend, GogRendererClip *clip)
+{
+ GogRendererCairo *crend = GOG_RENDERER_CAIRO (rend);
+
+ cairo_restore (crend->cairo);
+}
+
+static double
+gog_renderer_cairo_line_size (GogRenderer const *rend, double width)
+{
+ double size = grc_line_size (rend, width);
+
+ if (size < 1.0)
+ return ceil (size);
+
+ return size;
+}
+
+static void
+gog_renderer_cairo_sharp_path (GogRenderer *rend, ArtVpath *path, double line_width)
+{
+ ArtVpath *iter = path;
+
+ if (((int) (rint (line_width)) % 2 == 0) && line_width > 1.0)
+ while (iter->code != ART_END) {
+ iter->x = floor (iter->x + .5);
+ iter->y = floor (iter->y + .5);
+ iter++;
+ }
+ else
+ while (iter->code != ART_END) {
+ iter->x = floor (iter->x) + .5;
+ iter->y = floor (iter->y) + .5;
+ iter++;
+ }
+}
+
+static void
gog_renderer_cairo_draw_path (GogRenderer *rend, ArtVpath const *path)
{
grc_draw_path (rend, path, NULL);
@@ -443,9 +460,8 @@ gog_renderer_cairo_draw_text (GogRenderer *rend, char
case (PANGO_STYLE_OBLIQUE): slant = CAIRO_FONT_SLANT_OBLIQUE; break;
case (PANGO_STYLE_ITALIC): slant = CAIRO_FONT_SLANT_ITALIC; break;
}
-/* g_message ("family: %s, size: %g", family, size);*/
/* FIXME: calculate dpi */
- size *= 96.0 * rend->scale * rend->zoom / 72.0;
+ size *= rend->scale * rend->zoom;
cairo_select_font_face (cr, family, slant,
weight > PANGO_WEIGHT_SEMIBOLD ? CAIRO_FONT_WEIGHT_BOLD : CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, size);
@@ -516,7 +532,7 @@ gog_renderer_cairo_get_text_OBR (GogRenderer *rend,
family = pango_font_description_get_family (fd);
/* FIXME: calculate dpi */
- size = pango_font_description_get_size (fd) / PANGO_SCALE / 72.0 * 96.0 * rend->scale * rend->zoom;
+ size = pango_font_description_get_size (fd) / PANGO_SCALE * rend->scale * rend->zoom;
weight = pango_font_description_get_weight (fd);
switch (pango_font_description_get_style (fd)) {
case (PANGO_STYLE_NORMAL): slant = CAIRO_FONT_SLANT_NORMAL; break;
@@ -610,8 +626,8 @@ gog_renderer_cairo_class_init (GogRendererClass *rend_
gobject_klass->finalize = gog_renderer_cairo_finalize;
rend_klass->push_style = gog_renderer_cairo_push_style;
rend_klass->pop_style = gog_renderer_cairo_pop_style;
- rend_klass->clip_push = gog_renderer_cairo_clip_push;
- rend_klass->clip_pop = gog_renderer_cairo_clip_pop;
+ rend_klass->push_clip = gog_renderer_cairo_push_clip;
+ rend_klass->pop_clip = gog_renderer_cairo_pop_clip;
rend_klass->sharp_path = gog_renderer_cairo_sharp_path;
rend_klass->draw_path = gog_renderer_cairo_draw_path;
rend_klass->draw_polygon = gog_renderer_cairo_draw_polygon;

2
devel/goffice/pkg/DESCR Normal file
View File

@ -0,0 +1,2 @@
GOffice is a library of document-centric objects and utilities building
on top of GLib and Gtk+.

359
devel/goffice/pkg/PLIST Normal file
View File

@ -0,0 +1,359 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/09/13 21:23:02 martynas Exp $
include/libgoffice-1/
include/libgoffice-1/goffice/
include/libgoffice-1/goffice/app/
include/libgoffice-1/goffice/app/error-info.h
include/libgoffice-1/goffice/app/file.h
include/libgoffice-1/goffice/app/go-cmd-context-impl.h
include/libgoffice-1/goffice/app/go-cmd-context.h
include/libgoffice-1/goffice/app/go-doc-control-impl.h
include/libgoffice-1/goffice/app/go-doc-control.h
include/libgoffice-1/goffice/app/go-doc-impl.h
include/libgoffice-1/goffice/app/go-doc.h
include/libgoffice-1/goffice/app/go-plugin-loader-module.h
include/libgoffice-1/goffice/app/go-plugin-loader.h
include/libgoffice-1/goffice/app/go-plugin-service-impl.h
include/libgoffice-1/goffice/app/go-plugin-service.h
include/libgoffice-1/goffice/app/go-plugin.h
include/libgoffice-1/goffice/app/goffice-app.h
include/libgoffice-1/goffice/app/io-context-priv.h
include/libgoffice-1/goffice/app/io-context.h
include/libgoffice-1/goffice/app/module-plugin-defs.h
include/libgoffice-1/goffice/cut-n-paste/
include/libgoffice-1/goffice/cut-n-paste/foocanvas/
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-line.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-pixbuf.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-polygon.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-rect-ellipse.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-text.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-util.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas-widget.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/foo-canvas.h
include/libgoffice-1/goffice/cut-n-paste/foocanvas/libfoocanvas.h
include/libgoffice-1/goffice/cut-n-paste/pcre/
include/libgoffice-1/goffice/cut-n-paste/pcre/pcre.h
include/libgoffice-1/goffice/data/
include/libgoffice-1/goffice/data/go-data-impl.h
include/libgoffice-1/goffice/data/go-data-simple.h
include/libgoffice-1/goffice/data/go-data.h
include/libgoffice-1/goffice/data/goffice-data.h
include/libgoffice-1/goffice/drawing/
include/libgoffice-1/goffice/drawing/god-anchor.h
include/libgoffice-1/goffice/drawing/god-default-attributes.h
include/libgoffice-1/goffice/drawing/god-drawing-group.h
include/libgoffice-1/goffice/drawing/god-drawing-renderer-gdk.h
include/libgoffice-1/goffice/drawing/god-drawing-view.h
include/libgoffice-1/goffice/drawing/god-drawing.h
include/libgoffice-1/goffice/drawing/god-image-store.h
include/libgoffice-1/goffice/drawing/god-image.h
include/libgoffice-1/goffice/drawing/god-paragraph-attributes.h
include/libgoffice-1/goffice/drawing/god-property-table.h
include/libgoffice-1/goffice/drawing/god-shape.h
include/libgoffice-1/goffice/drawing/god-text-model.h
include/libgoffice-1/goffice/goffice-features.h
include/libgoffice-1/goffice/goffice.h
include/libgoffice-1/goffice/graph/
include/libgoffice-1/goffice/graph/goffice-graph.h
include/libgoffice-1/goffice/graph/gog-axis-line-impl.h
include/libgoffice-1/goffice/graph/gog-axis-line.h
include/libgoffice-1/goffice/graph/gog-axis.h
include/libgoffice-1/goffice/graph/gog-chart-impl.h
include/libgoffice-1/goffice/graph/gog-chart.h
include/libgoffice-1/goffice/graph/gog-control-foocanvas.h
include/libgoffice-1/goffice/graph/gog-data-allocator.h
include/libgoffice-1/goffice/graph/gog-data-set.h
include/libgoffice-1/goffice/graph/gog-error-bar.h
include/libgoffice-1/goffice/graph/gog-graph-impl.h
include/libgoffice-1/goffice/graph/gog-graph.h
include/libgoffice-1/goffice/graph/gog-grid-line.h
include/libgoffice-1/goffice/graph/gog-grid.h
include/libgoffice-1/goffice/graph/gog-guru.h
include/libgoffice-1/goffice/graph/gog-label.h
include/libgoffice-1/goffice/graph/gog-legend.h
include/libgoffice-1/goffice/graph/gog-object-xml.h
include/libgoffice-1/goffice/graph/gog-object.h
include/libgoffice-1/goffice/graph/gog-outlined-object.h
include/libgoffice-1/goffice/graph/gog-plot-engine.h
include/libgoffice-1/goffice/graph/gog-plot-impl.h
include/libgoffice-1/goffice/graph/gog-plot.h
include/libgoffice-1/goffice/graph/gog-reg-curve.h
include/libgoffice-1/goffice/graph/gog-renderer-cairo.h
include/libgoffice-1/goffice/graph/gog-renderer-gnome-print.h
include/libgoffice-1/goffice/graph/gog-renderer-impl.h
include/libgoffice-1/goffice/graph/gog-renderer-pixbuf.h
include/libgoffice-1/goffice/graph/gog-renderer-svg.h
include/libgoffice-1/goffice/graph/gog-renderer.h
include/libgoffice-1/goffice/graph/gog-series-impl.h
include/libgoffice-1/goffice/graph/gog-series-lines.h
include/libgoffice-1/goffice/graph/gog-series.h
include/libgoffice-1/goffice/graph/gog-style.h
include/libgoffice-1/goffice/graph/gog-styled-object.h
include/libgoffice-1/goffice/graph/gog-theme.h
include/libgoffice-1/goffice/graph/gog-view.h
include/libgoffice-1/goffice/gtk/
include/libgoffice-1/goffice/gtk/go-action-combo-color.h
include/libgoffice-1/goffice/gtk/go-action-combo-pixmaps.h
include/libgoffice-1/goffice/gtk/go-action-combo-stack.h
include/libgoffice-1/goffice/gtk/go-action-combo-text.h
include/libgoffice-1/goffice/gtk/go-charmap-sel.h
include/libgoffice-1/goffice/gtk/go-color-group.h
include/libgoffice-1/goffice/gtk/go-color-palette.h
include/libgoffice-1/goffice/gtk/go-combo-box.h
include/libgoffice-1/goffice/gtk/go-combo-color.h
include/libgoffice-1/goffice/gtk/go-combo-pixmaps.h
include/libgoffice-1/goffice/gtk/go-combo-text.h
include/libgoffice-1/goffice/gtk/go-font-sel.h
include/libgoffice-1/goffice/gtk/go-format-sel.h
include/libgoffice-1/goffice/gtk/go-graph-widget.h
include/libgoffice-1/goffice/gtk/go-locale-sel.h
include/libgoffice-1/goffice/gtk/go-optionmenu.h
include/libgoffice-1/goffice/gtk/go-rotation-sel.h
include/libgoffice-1/goffice/gtk/goffice-gtk.h
include/libgoffice-1/goffice/ms-compat/
include/libgoffice-1/goffice/ms-compat/go-ms-parser.h
include/libgoffice-1/goffice/ms-compat/god-drawing-ms-client-handler.h
include/libgoffice-1/goffice/ms-compat/god-drawing-ms.h
include/libgoffice-1/goffice/ms-compat/god-image-ms.h
include/libgoffice-1/goffice/utils/
include/libgoffice-1/goffice/utils/datetime.h
include/libgoffice-1/goffice/utils/format-impl.h
include/libgoffice-1/goffice/utils/go-color.h
include/libgoffice-1/goffice/utils/go-file.h
include/libgoffice-1/goffice/utils/go-font.h
include/libgoffice-1/goffice/utils/go-format-match.h
include/libgoffice-1/goffice/utils/go-format.h
include/libgoffice-1/goffice/utils/go-geometry.h
include/libgoffice-1/goffice/utils/go-glib-extras.h
include/libgoffice-1/goffice/utils/go-gradient.h
include/libgoffice-1/goffice/utils/go-libxml-extras.h
include/libgoffice-1/goffice/utils/go-line.h
include/libgoffice-1/goffice/utils/go-marker.h
include/libgoffice-1/goffice/utils/go-math.h
include/libgoffice-1/goffice/utils/go-pattern.h
include/libgoffice-1/goffice/utils/go-rangefunc.h
include/libgoffice-1/goffice/utils/go-regression.h
include/libgoffice-1/goffice/utils/go-units.h
include/libgoffice-1/goffice/utils/goffice-utils.h
include/libgoffice-1/goffice/utils/regutf8.h
lib/goffice/
lib/goffice/${V}/
lib/goffice/${V}/plugins/
lib/goffice/${V}/plugins/plot_barcol/
lib/goffice/${V}/plugins/plot_barcol/barcol.a
lib/goffice/${V}/plugins/plot_barcol/barcol.la
lib/goffice/${V}/plugins/plot_barcol/barcol.so
lib/goffice/${V}/plugins/plot_barcol/gog-barcol-prefs.glade
lib/goffice/${V}/plugins/plot_barcol/gog-minmax-prefs.glade
lib/goffice/${V}/plugins/plot_barcol/plot-types.xml
lib/goffice/${V}/plugins/plot_barcol/plugin.xml
lib/goffice/${V}/plugins/plot_boxes/
lib/goffice/${V}/plugins/plot_boxes/boxplot.a
lib/goffice/${V}/plugins/plot_boxes/boxplot.la
lib/goffice/${V}/plugins/plot_boxes/boxplot.so
lib/goffice/${V}/plugins/plot_boxes/gog-boxplot-prefs.glade
lib/goffice/${V}/plugins/plot_boxes/plot-types.xml
lib/goffice/${V}/plugins/plot_boxes/plugin.xml
lib/goffice/${V}/plugins/plot_pie/
lib/goffice/${V}/plugins/plot_pie/gog-pie-prefs.glade
lib/goffice/${V}/plugins/plot_pie/gog-pie-series.glade
lib/goffice/${V}/plugins/plot_pie/gog-ring-prefs.glade
lib/goffice/${V}/plugins/plot_pie/pie.a
lib/goffice/${V}/plugins/plot_pie/pie.la
lib/goffice/${V}/plugins/plot_pie/pie.so
lib/goffice/${V}/plugins/plot_pie/plot-types.xml
lib/goffice/${V}/plugins/plot_pie/plugin.xml
lib/goffice/${V}/plugins/plot_radar/
lib/goffice/${V}/plugins/plot_radar/plot-types.xml
lib/goffice/${V}/plugins/plot_radar/plugin.xml
lib/goffice/${V}/plugins/plot_radar/radar.a
lib/goffice/${V}/plugins/plot_radar/radar.la
lib/goffice/${V}/plugins/plot_radar/radar.so
lib/goffice/${V}/plugins/plot_surface/
lib/goffice/${V}/plugins/plot_surface/gog-contour-prefs.glade
lib/goffice/${V}/plugins/plot_surface/plot-types.xml
lib/goffice/${V}/plugins/plot_surface/plugin.xml
lib/goffice/${V}/plugins/plot_surface/surface.a
lib/goffice/${V}/plugins/plot_surface/surface.la
lib/goffice/${V}/plugins/plot_surface/surface.so
lib/goffice/${V}/plugins/plot_xy/
lib/goffice/${V}/plugins/plot_xy/gog-bubble-prefs.glade
lib/goffice/${V}/plugins/plot_xy/plot-types.xml
lib/goffice/${V}/plugins/plot_xy/plugin.xml
lib/goffice/${V}/plugins/plot_xy/xy.a
lib/goffice/${V}/plugins/plot_xy/xy.la
lib/goffice/${V}/plugins/plot_xy/xy.so
lib/goffice/${V}/plugins/reg_linear/
lib/goffice/${V}/plugins/reg_linear/linreg.a
lib/goffice/${V}/plugins/reg_linear/linreg.la
lib/goffice/${V}/plugins/reg_linear/linreg.so
lib/goffice/${V}/plugins/reg_linear/plugin.xml
lib/goffice/${V}/plugins/reg_linear/reg-types.xml
lib/goffice/${V}/plugins/reg_logfit/
lib/goffice/${V}/plugins/reg_logfit/logfit.a
lib/goffice/${V}/plugins/reg_logfit/logfit.la
lib/goffice/${V}/plugins/reg_logfit/logfit.so
lib/goffice/${V}/plugins/reg_logfit/plugin.xml
lib/goffice/${V}/plugins/reg_logfit/reg-types.xml
lib/libgoffice-1.a
lib/libgoffice-1.la
@lib lib/libgoffice-1.so.${LIBgoffice-1_VERSION}
lib/pkgconfig/libgoffice-1.pc
share/goffice/
share/goffice/${V}/
share/goffice/${V}/glade/
share/goffice/${V}/glade/go-font-sel.glade
share/goffice/${V}/glade/go-format-sel.glade
share/goffice/${V}/glade/go-rotation-sel.glade
share/goffice/${V}/glade/gog-axis-prefs.glade
share/goffice/${V}/glade/gog-chart-prefs.glade
share/goffice/${V}/glade/gog-error-bar-prefs.glade
share/goffice/${V}/glade/gog-guru-type-selector.glade
share/goffice/${V}/glade/gog-guru.glade
share/goffice/${V}/glade/gog-object-prefs.glade
share/goffice/${V}/glade/gog-reg-curve-prefs.glade
share/goffice/${V}/glade/gog-reg-eqn-prefs.glade
share/goffice/${V}/glade/gog-style-prefs.glade
share/goffice/${V}/patterns/
share/goffice/${V}/patterns/svg-patterns.xml
share/locale/am/LC_MESSAGES/goffice.mo
share/locale/az/LC_MESSAGES/goffice.mo
share/locale/bg/LC_MESSAGES/goffice.mo
share/locale/ca/LC_MESSAGES/goffice.mo
share/locale/cs/LC_MESSAGES/goffice.mo
share/locale/da/LC_MESSAGES/goffice.mo
share/locale/de/LC_MESSAGES/goffice.mo
share/locale/el/LC_MESSAGES/goffice.mo
share/locale/en_CA/LC_MESSAGES/goffice.mo
share/locale/en_GB/LC_MESSAGES/goffice.mo
share/locale/es/LC_MESSAGES/goffice.mo
share/locale/et/LC_MESSAGES/goffice.mo
share/locale/fi/LC_MESSAGES/goffice.mo
share/locale/fr/LC_MESSAGES/goffice.mo
share/locale/ga/LC_MESSAGES/goffice.mo
share/locale/gl/LC_MESSAGES/goffice.mo
share/locale/he/LC_MESSAGES/goffice.mo
share/locale/hr/LC_MESSAGES/goffice.mo
share/locale/hu/LC_MESSAGES/goffice.mo
share/locale/it/LC_MESSAGES/goffice.mo
share/locale/ja/LC_MESSAGES/goffice.mo
share/locale/ko/LC_MESSAGES/goffice.mo
share/locale/lv/LC_MESSAGES/goffice.mo
share/locale/ml/LC_MESSAGES/goffice.mo
share/locale/mr/LC_MESSAGES/goffice.mo
share/locale/ms/LC_MESSAGES/goffice.mo
share/locale/nb/LC_MESSAGES/goffice.mo
share/locale/nl/LC_MESSAGES/goffice.mo
share/locale/nn/LC_MESSAGES/goffice.mo
share/locale/no/LC_MESSAGES/goffice.mo
share/locale/pl/LC_MESSAGES/goffice.mo
share/locale/pt/LC_MESSAGES/goffice.mo
share/locale/pt_BR/LC_MESSAGES/goffice.mo
share/locale/ro/LC_MESSAGES/goffice.mo
share/locale/ru/LC_MESSAGES/goffice.mo
share/locale/sk/LC_MESSAGES/goffice.mo
share/locale/sr/LC_MESSAGES/goffice.mo
share/locale/sr@Latn/LC_MESSAGES/goffice.mo
share/locale/sv/LC_MESSAGES/goffice.mo
share/locale/tr/LC_MESSAGES/goffice.mo
share/locale/uk/LC_MESSAGES/goffice.mo
share/locale/vi/LC_MESSAGES/goffice.mo
share/locale/zh_CN/LC_MESSAGES/goffice.mo
share/locale/zh_TW/LC_MESSAGES/goffice.mo
share/pixmaps/goffice/
share/pixmaps/goffice/area.xpm
share/pixmaps/goffice/bar-hboth.png
share/pixmaps/goffice/bar-hminus.png
share/pixmaps/goffice/bar-hplus.png
share/pixmaps/goffice/bar-none.png
share/pixmaps/goffice/bar-vboth.png
share/pixmaps/goffice/bar-vminus.png
share/pixmaps/goffice/bar-vplus.png
share/pixmaps/goffice/bar.xpm
share/pixmaps/goffice/boxplot.xpm
share/pixmaps/goffice/bubble.xpm
share/pixmaps/goffice/chart_area_1_1.png
share/pixmaps/goffice/chart_area_1_2.png
share/pixmaps/goffice/chart_area_1_3.png
share/pixmaps/goffice/chart_bar_1_1.png
share/pixmaps/goffice/chart_bar_1_2.png
share/pixmaps/goffice/chart_bar_1_3.png
share/pixmaps/goffice/chart_bar_2_1.png
share/pixmaps/goffice/chart_bar_2_2.png
share/pixmaps/goffice/chart_bar_2_3.png
share/pixmaps/goffice/chart_boxplot_1_1.png
share/pixmaps/goffice/chart_bubble_1_1.png
share/pixmaps/goffice/chart_column_1_1.png
share/pixmaps/goffice/chart_column_1_2.png
share/pixmaps/goffice/chart_column_1_3.png
share/pixmaps/goffice/chart_column_2_1.png
share/pixmaps/goffice/chart_column_2_2.png
share/pixmaps/goffice/chart_column_2_3.png
share/pixmaps/goffice/chart_column_3_1.png
share/pixmaps/goffice/chart_cone_1_1.png
share/pixmaps/goffice/chart_cone_1_2.png
share/pixmaps/goffice/chart_cone_1_3.png
share/pixmaps/goffice/chart_cone_2_1.png
share/pixmaps/goffice/chart_cone_2_2.png
share/pixmaps/goffice/chart_cone_2_3.png
share/pixmaps/goffice/chart_cone_3_1.png
share/pixmaps/goffice/chart_contour_1_1.png
share/pixmaps/goffice/chart_cylinder_1_1.png
share/pixmaps/goffice/chart_cylinder_1_2.png
share/pixmaps/goffice/chart_cylinder_1_3.png
share/pixmaps/goffice/chart_cylinder_2_1.png
share/pixmaps/goffice/chart_cylinder_2_2.png
share/pixmaps/goffice/chart_cylinder_2_3.png
share/pixmaps/goffice/chart_cylinder_3_1.png
share/pixmaps/goffice/chart_dropbar_1_1.png
share/pixmaps/goffice/chart_dropbar_1_2.png
share/pixmaps/goffice/chart_line_1_1.png
share/pixmaps/goffice/chart_line_1_2.png
share/pixmaps/goffice/chart_line_1_3.png
share/pixmaps/goffice/chart_line_2_1.png
share/pixmaps/goffice/chart_line_2_2.png
share/pixmaps/goffice/chart_line_2_3.png
share/pixmaps/goffice/chart_line_3_1.png
share/pixmaps/goffice/chart_minmax_1_1.png
share/pixmaps/goffice/chart_minmax_1_2.png
share/pixmaps/goffice/chart_minmax_2_1.png
share/pixmaps/goffice/chart_minmax_2_2.png
share/pixmaps/goffice/chart_pie_1_1.png
share/pixmaps/goffice/chart_pie_1_2.png
share/pixmaps/goffice/chart_pie_1_3.png
share/pixmaps/goffice/chart_pie_2_1.png
share/pixmaps/goffice/chart_pie_2_2.png
share/pixmaps/goffice/chart_pie_2_3.png
share/pixmaps/goffice/chart_polar_1_1.png
share/pixmaps/goffice/chart_pyramid_1_1.png
share/pixmaps/goffice/chart_pyramid_1_2.png
share/pixmaps/goffice/chart_pyramid_1_3.png
share/pixmaps/goffice/chart_pyramid_2_1.png
share/pixmaps/goffice/chart_pyramid_2_2.png
share/pixmaps/goffice/chart_pyramid_2_3.png
share/pixmaps/goffice/chart_pyramid_3_1.png
share/pixmaps/goffice/chart_radar_1_1.png
share/pixmaps/goffice/chart_radar_1_2.png
share/pixmaps/goffice/chart_radar_1_3.png
share/pixmaps/goffice/chart_ring_1_1.png
share/pixmaps/goffice/chart_ring_1_2.png
share/pixmaps/goffice/chart_scatter_1_1.png
share/pixmaps/goffice/chart_scatter_2_1.png
share/pixmaps/goffice/chart_scatter_2_2.png
share/pixmaps/goffice/chart_scatter_3_1.png
share/pixmaps/goffice/chart_scatter_3_2.png
share/pixmaps/goffice/chart_scatter_3_3.png
share/pixmaps/goffice/chart_stock_1_1.png
share/pixmaps/goffice/chart_stock_1_2.png
share/pixmaps/goffice/chart_stock_2_1.png
share/pixmaps/goffice/chart_stock_2_2.png
share/pixmaps/goffice/column.xpm
share/pixmaps/goffice/doughnut.xpm
share/pixmaps/goffice/dropbar.xpm
share/pixmaps/goffice/linegraph.xpm
share/pixmaps/goffice/minmax.xpm
share/pixmaps/goffice/pie.xpm
share/pixmaps/goffice/polar.png
share/pixmaps/goffice/radar.xpm
share/pixmaps/goffice/scatter.xpm
share/pixmaps/goffice/stock.xpm
share/pixmaps/goffice/surface.xpm