├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── BUGS ├── COPYING ├── COPYING-gpl2 ├── COPYING-gpl3 ├── ChangeLog ├── INSTALL ├── MAINTAINERS ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── debian ├── changelog ├── clean ├── compat ├── control ├── copyright ├── docs ├── gir1.2-goffice-0.10.dirs ├── gir1.2-goffice-0.10.install ├── libgoffice-0.10-10-common.install ├── libgoffice-0.10-10.install ├── libgoffice-0.10-10.symbols ├── libgoffice-0.10-10.symbols.longdouble ├── libgoffice-0.10-dev.dirs ├── libgoffice-0.10-dev.install ├── libgoffice-0.10-dev.links ├── libgoffice-dbg.dirs ├── libgoffice-dbg.install ├── libgoffice-dbg.links ├── patches │ ├── no-nested-externs-error │ ├── refresh-config-sub-guess-0.8.17-1 │ └── series ├── rules ├── source │ └── format └── watch ├── docs ├── .gitignore ├── Changelog ├── Makefile.am └── reference │ ├── .gitignore │ ├── Makefile.am │ ├── TODO │ ├── goffice-0.10-sections.txt │ ├── goffice-docs.xml │ └── version.xml.in ├── goffice-plugins.mk ├── goffice.doap ├── goffice.mk ├── goffice ├── .gitignore ├── Makefile.am ├── app │ ├── .gitignore │ ├── error-info.c │ ├── error-info.h │ ├── file-priv.h │ ├── file.c │ ├── file.h │ ├── go-app.h │ ├── go-cmd-context-impl.h │ ├── go-cmd-context.c │ ├── go-cmd-context.h │ ├── go-conf-gsettings.c │ ├── go-conf-keyfile.c │ ├── go-conf-win32.c │ ├── go-conf.c │ ├── go-conf.h │ ├── go-doc-control-impl.h │ ├── go-doc-control.c │ ├── go-doc-control.h │ ├── go-doc-impl.h │ ├── go-doc.c │ ├── go-doc.h │ ├── go-error-stack.h │ ├── go-object.c │ ├── go-object.h │ ├── go-plugin-loader-module.c │ ├── go-plugin-loader-module.h │ ├── go-plugin-loader.c │ ├── go-plugin-loader.h │ ├── go-plugin-service-impl.h │ ├── go-plugin-service.c │ ├── go-plugin-service.h │ ├── go-plugin.c │ ├── go-plugin.h │ ├── go-service-impl.h │ ├── go-service.c │ ├── go-service.h │ ├── go-view.c │ ├── go-view.h │ ├── goffice-app.h │ ├── io-context-priv.h │ ├── io-context.c │ ├── io-context.h │ └── module-plugin-defs.h ├── canvas │ ├── goc-arc.c │ ├── goc-arc.h │ ├── goc-canvas.c │ ├── goc-canvas.h │ ├── goc-circle.c │ ├── goc-circle.h │ ├── goc-component.c │ ├── goc-component.h │ ├── goc-ellipse.c │ ├── goc-ellipse.h │ ├── goc-graph.c │ ├── goc-graph.h │ ├── goc-group.c │ ├── goc-group.h │ ├── goc-image.c │ ├── goc-image.h │ ├── goc-item.c │ ├── goc-item.h │ ├── goc-line.c │ ├── goc-line.h │ ├── goc-path.c │ ├── goc-path.h │ ├── goc-pixbuf.c │ ├── goc-pixbuf.h │ ├── goc-polygon.c │ ├── goc-polygon.h │ ├── goc-polyline.c │ ├── goc-polyline.h │ ├── goc-rectangle.c │ ├── goc-rectangle.h │ ├── goc-structs.h │ ├── goc-styled-item.c │ ├── goc-styled-item.h │ ├── goc-text.c │ ├── goc-text.h │ ├── goc-utils.c │ ├── goc-utils.h │ ├── goc-widget.c │ ├── goc-widget.h │ └── goffice-canvas.h ├── component │ ├── .gitignore │ ├── go-component-factory.c │ ├── go-component-factory.h │ ├── go-component-mime-dialog.c │ ├── go-component-mime-dialog.h │ ├── go-component.c │ ├── go-component.h │ └── goffice-component.h ├── data │ ├── .gitignore │ ├── go-data-impl.h │ ├── go-data-simple.c │ ├── go-data-simple.h │ ├── go-data.c │ ├── go-data.h │ └── goffice-data.h ├── goffice-debug.h ├── goffice-features.h.in ├── goffice-multipass.h ├── goffice-priv.h ├── goffice.c ├── goffice.h ├── graph │ ├── .gitignore │ ├── README │ ├── bar-hboth.png │ ├── bar-hminus.png │ ├── bar-hplus.png │ ├── bar-none.png │ ├── bar-vboth.png │ ├── bar-vminus.png │ ├── bar-vplus.png │ ├── goffice-graph.h │ ├── gog-3d-box-prefs.ui │ ├── gog-3d-box.c │ ├── gog-3d-box.h │ ├── gog-axis-color-map-prefs.ui │ ├── gog-axis-color-map.c │ ├── gog-axis-color-map.h │ ├── gog-axis-line-impl.h │ ├── gog-axis-line.c │ ├── gog-axis-line.h │ ├── gog-axis-prefs.ui │ ├── gog-axis.c │ ├── gog-axis.h │ ├── gog-chart-impl.h │ ├── gog-chart-map-3d.c │ ├── gog-chart-map-3d.h │ ├── gog-chart-map.c │ ├── gog-chart-map.h │ ├── gog-chart.c │ ├── gog-chart.h │ ├── gog-child-button.c │ ├── gog-child-button.h │ ├── gog-color-scale-prefs.ui │ ├── gog-color-scale.c │ ├── gog-color-scale.h │ ├── gog-data-allocator.c │ ├── gog-data-allocator.h │ ├── gog-data-set.c │ ├── gog-data-set.h │ ├── gog-equation-prefs.ui │ ├── gog-equation.c │ ├── gog-equation.h │ ├── gog-error-bar-prefs.ui │ ├── gog-error-bar.c │ ├── gog-error-bar.h │ ├── gog-graph-impl.h │ ├── gog-graph-prefs.ui │ ├── gog-graph.c │ ├── gog-graph.h │ ├── gog-grid-line.c │ ├── gog-grid-line.h │ ├── gog-grid.c │ ├── gog-grid.h │ ├── gog-guru-type-selector.ui │ ├── gog-guru.c │ ├── gog-guru.h │ ├── gog-guru.ui │ ├── gog-label.c │ ├── gog-label.h │ ├── gog-legend.c │ ├── gog-legend.h │ ├── gog-object-prefs.ui │ ├── gog-object-xml.c │ ├── gog-object-xml.h │ ├── gog-object.c │ ├── gog-object.h │ ├── gog-outlined-object.c │ ├── gog-outlined-object.h │ ├── gog-plot-engine.c │ ├── gog-plot-engine.h │ ├── gog-plot-impl.h │ ├── gog-plot-prefs.ui │ ├── gog-plot.c │ ├── gog-plot.h │ ├── gog-reg-curve-prefs.ui │ ├── gog-reg-curve.c │ ├── gog-reg-curve.h │ ├── gog-reg-eqn-prefs.ui │ ├── gog-renderer.c │ ├── gog-renderer.h │ ├── gog-series-impl.h │ ├── gog-series-labels-prefs.ui │ ├── gog-series-labels.c │ ├── gog-series-labels.h │ ├── gog-series-lines.c │ ├── gog-series-lines.h │ ├── gog-series-prefs.ui │ ├── gog-series.c │ ├── gog-series.h │ ├── gog-smoothed-curve.c │ ├── gog-smoothed-curve.h │ ├── gog-styled-object.c │ ├── gog-styled-object.h │ ├── gog-theme-editor.ui │ ├── gog-theme.c │ ├── gog-theme.h │ ├── gog-trend-line.c │ ├── gog-trend-line.h │ ├── gog-view.c │ ├── gog-view.h │ ├── new-theme-prefs.ui │ └── tests │ │ ├── .gitignore │ │ └── Makefile.am ├── gtk │ ├── .gitignore │ ├── go-3d-rotation-sel.c │ ├── go-3d-rotation-sel.h │ ├── go-3d-rotation-sel.ui │ ├── go-action-combo-color.c │ ├── go-action-combo-color.h │ ├── go-action-combo-pixmaps.c │ ├── go-action-combo-pixmaps.h │ ├── go-action-combo-stack.c │ ├── go-action-combo-stack.h │ ├── go-action-combo-text.c │ ├── go-action-combo-text.h │ ├── go-arrow-sel.c │ ├── go-arrow-sel.h │ ├── go-arrow-sel.ui │ ├── go-calendar-button.c │ ├── go-calendar-button.h │ ├── go-charmap-sel.c │ ├── go-charmap-sel.h │ ├── go-color-group.c │ ├── go-color-group.h │ ├── go-color-palette.c │ ├── go-color-palette.h │ ├── go-color-selector.c │ ├── go-color-selector.h │ ├── go-combo-box.c │ ├── go-combo-box.h │ ├── go-combo-color.c │ ├── go-combo-color.h │ ├── go-combo-pixmaps.c │ ├── go-combo-pixmaps.h │ ├── go-font-sel-dialog.c │ ├── go-font-sel-dialog.h │ ├── go-font-sel.c │ ├── go-font-sel.h │ ├── go-font-sel.ui │ ├── go-format-sel.c │ ├── go-format-sel.h │ ├── go-format-sel.ui │ ├── go-gradient-selector.c │ ├── go-gradient-selector.h │ ├── go-graph-widget.c │ ├── go-graph-widget.h │ ├── go-image-save-dialog-extra.ui │ ├── go-image-sel.c │ ├── go-image-sel.h │ ├── go-image-sel.ui │ ├── go-line-selector.c │ ├── go-line-selector.h │ ├── go-locale-sel.c │ ├── go-locale-sel.h │ ├── go-marker-selector.c │ ├── go-marker-selector.h │ ├── go-math-editor.c │ ├── go-math-editor.h │ ├── go-optionmenu.c │ ├── go-optionmenu.h │ ├── go-palette.c │ ├── go-palette.h │ ├── go-pattern-selector.c │ ├── go-pattern-selector.h │ ├── go-rotation-sel.c │ ├── go-rotation-sel.h │ ├── go-rotation-sel.ui │ ├── go-selector.c │ ├── go-selector.h │ ├── goffice-gtk.c │ ├── goffice-gtk.h │ ├── goffice-old.css │ └── goffice.css ├── math │ ├── go-R.c │ ├── go-R.h │ ├── go-accumulator.c │ ├── go-accumulator.h │ ├── go-complex.c │ ├── go-complex.h │ ├── go-cspline.c │ ├── go-cspline.h │ ├── go-decimal.c │ ├── go-decimal.h │ ├── go-distribution.c │ ├── go-distribution.h │ ├── go-dtoa.c │ ├── go-dtoa.h │ ├── go-fft.c │ ├── go-fft.h │ ├── go-math.c │ ├── go-math.h │ ├── go-matrix.c │ ├── go-matrix.h │ ├── go-matrix3x3.c │ ├── go-matrix3x3.h │ ├── go-quad.c │ ├── go-quad.h │ ├── go-rangefunc.c │ ├── go-rangefunc.h │ ├── go-regression.c │ ├── go-regression.h │ ├── go-ryu.c │ ├── go-ryu.h │ └── goffice-math.h ├── outoflinedocs.c └── utils │ ├── .gitignore │ ├── datetime.c │ ├── datetime.h │ ├── formats.c │ ├── go-bezier.c │ ├── go-bezier.h │ ├── go-cairo.c │ ├── go-cairo.h │ ├── go-color.c │ ├── go-color.h │ ├── go-editor.c │ ├── go-editor.h │ ├── go-emf.c │ ├── go-emf.h │ ├── go-file.c │ ├── go-file.h │ ├── go-font.c │ ├── go-font.h │ ├── go-format.c │ ├── go-format.h │ ├── go-gdk-pixbuf.c │ ├── go-gdk-pixbuf.h │ ├── go-geometry.c │ ├── go-geometry.h │ ├── go-glib-extras.c │ ├── go-glib-extras.h │ ├── go-gradient.c │ ├── go-gradient.h │ ├── go-image.c │ ├── go-image.h │ ├── go-libxml-extras.c │ ├── go-libxml-extras.h │ ├── go-line.c │ ├── go-line.h │ ├── go-locale.c │ ├── go-locale.h │ ├── go-marker.c │ ├── go-marker.h │ ├── go-marshalers.list │ ├── go-mml-to-itex.c │ ├── go-mml-to-itex.h │ ├── go-pango-extras.c │ ├── go-pango-extras.h │ ├── go-path.c │ ├── go-path.h │ ├── go-pattern.c │ ├── go-pattern.h │ ├── go-persist.c │ ├── go-persist.h │ ├── go-pixbuf.c │ ├── go-pixbuf.h │ ├── go-rsm.c │ ├── go-rsm.h │ ├── go-spectre.c │ ├── go-spectre.h │ ├── go-string.c │ ├── go-string.h │ ├── go-style-prefs.ui │ ├── go-style.c │ ├── go-style.h │ ├── go-styled-object.c │ ├── go-styled-object.h │ ├── go-svg.c │ ├── go-svg.h │ ├── go-undo.c │ ├── go-undo.h │ ├── go-unit.c │ ├── go-unit.h │ ├── go-units.h │ ├── goffice-utils.c │ ├── goffice-utils.h │ ├── regutf8.c │ ├── regutf8.h │ ├── svg-patterns.xml │ └── unknown_image.png ├── libgoffice.pc.in ├── mmlitex ├── Makefile.am ├── README ├── cmarkup.xsl ├── entities.xsl ├── glayout.xsl ├── mmlitex.xsl ├── scripts.xsl ├── tables.xsl └── tokens.xsl ├── pixmaps ├── .gitignore ├── README ├── boxplot.xpm ├── chart-rings-2d.svg ├── chart_cone_1_1.png ├── chart_cone_1_2.png ├── chart_cone_1_3.png ├── chart_cone_2_1.png ├── chart_cone_2_2.png ├── chart_cone_2_3.png ├── chart_cone_3_1.png ├── chart_cylinder_1_1.png ├── chart_cylinder_1_2.png ├── chart_cylinder_1_3.png ├── chart_cylinder_2_1.png ├── chart_cylinder_2_2.png ├── chart_cylinder_2_3.png ├── chart_cylinder_3_1.png ├── chart_pyramid_1_1.png ├── chart_pyramid_1_2.png ├── chart_pyramid_1_3.png ├── chart_pyramid_2_1.png ├── chart_pyramid_2_2.png ├── chart_pyramid_2_3.png ├── chart_pyramid_3_1.png ├── chart_stock_1_1.png ├── chart_stock_1_2.png ├── chart_stock_2_1.png ├── chart_stock_2_2.png ├── hist.xpm └── stock.xpm ├── plugins ├── .gitignore ├── Makefile.am ├── lasem │ ├── Makefile.am │ ├── component.c │ └── plugin.xml.in ├── plot_barcol │ ├── .gitignore │ ├── Makefile.am │ ├── area.xpm │ ├── bar.xpm │ ├── chart_area_1_1.png │ ├── chart_area_1_1.svg │ ├── chart_area_1_2.png │ ├── chart_area_1_2.svg │ ├── chart_area_1_3.png │ ├── chart_area_1_3.svg │ ├── chart_bar_1_1.png │ ├── chart_bar_1_1.svg │ ├── chart_bar_1_2.png │ ├── chart_bar_1_2.svg │ ├── chart_bar_1_3.png │ ├── chart_bar_1_3.svg │ ├── chart_bar_2_1.png │ ├── chart_bar_2_2.png │ ├── chart_bar_2_3.png │ ├── chart_column_1_1.png │ ├── chart_column_1_1.svg │ ├── chart_column_1_2.png │ ├── chart_column_1_2.svg │ ├── chart_column_1_3.png │ ├── chart_column_1_3.svg │ ├── chart_column_2_1.png │ ├── chart_column_2_2.png │ ├── chart_column_2_3.png │ ├── chart_column_3_1.png │ ├── chart_dropbar_1_1.png │ ├── chart_dropbar_1_1.svg │ ├── chart_dropbar_1_2.png │ ├── chart_dropbar_1_2.svg │ ├── chart_line_1_1.png │ ├── chart_line_1_1.svg │ ├── chart_line_1_2.png │ ├── chart_line_1_2.svg │ ├── chart_line_1_3.png │ ├── chart_line_1_3.svg │ ├── chart_line_2_1.png │ ├── chart_line_2_1.svg │ ├── chart_line_2_2.png │ ├── chart_line_2_2.svg │ ├── chart_line_2_3.png │ ├── chart_line_2_3.svg │ ├── chart_line_3_1.png │ ├── chart_minmax_1_1.png │ ├── chart_minmax_1_1.svg │ ├── chart_minmax_1_2.png │ ├── chart_minmax_1_2.svg │ ├── chart_minmax_2_1.png │ ├── chart_minmax_2_1.svg │ ├── chart_minmax_2_2.png │ ├── chart_minmax_2_2.svg │ ├── column.xpm │ ├── dropbar.xpm │ ├── gog-1.5d.c │ ├── gog-1.5d.h │ ├── gog-area-prefs.ui │ ├── gog-barcol-prefs.c │ ├── gog-barcol-prefs.ui │ ├── gog-barcol.c │ ├── gog-barcol.h │ ├── gog-dropbar.c │ ├── gog-dropbar.h │ ├── gog-line.c │ ├── gog-line.h │ ├── gog-minmax-prefs.ui │ ├── gog-minmax.c │ ├── gog-minmax.h │ ├── linegraph.xpm │ ├── minmax.xpm │ ├── plot-types.xml.in │ └── plugin.xml.in ├── plot_distrib │ ├── .gitignore │ ├── Makefile.am │ ├── chart_boxplot_1_1.png │ ├── chart_boxplot_1_1.svg │ ├── chart_boxplot_1_2.png │ ├── chart_boxplot_1_2.svg │ ├── chart_boxplot_2_1.png │ ├── chart_boxplot_2_1.svg │ ├── chart_boxplot_2_2.png │ ├── chart_boxplot_2_2.svg │ ├── chart_histogram_1_1.png │ ├── chart_histogram_1_1.svg │ ├── chart_histogram_1_2.png │ ├── chart_histogram_1_2.svg │ ├── chart_histogram_1_3.png │ ├── chart_histogram_1_3.svg │ ├── chart_histogram_1_4.png │ ├── chart_histogram_1_4.svg │ ├── chart_histogram_2_1.png │ ├── chart_histogram_2_1.svg │ ├── chart_prob_1_1.png │ ├── chart_prob_1_1.svg │ ├── dist.xpm │ ├── go-distribution-prefs.c │ ├── go-distribution-prefs.h │ ├── gog-boxplot-prefs.ui │ ├── gog-boxplot.c │ ├── gog-boxplot.h │ ├── gog-double-histogram-prefs.ui │ ├── gog-histogram-prefs.ui │ ├── gog-histogram.c │ ├── gog-histogram.h │ ├── gog-probability-plot.c │ ├── gog-probability-plot.h │ ├── plot-types.xml.in │ ├── plugin.c │ └── plugin.xml.in ├── plot_pie │ ├── .gitignore │ ├── Makefile.am │ ├── chart-pie-2d.svg │ ├── chart_pie_1_1.png │ ├── chart_pie_1_1.svg │ ├── chart_pie_1_2.png │ ├── chart_pie_1_3.png │ ├── chart_pie_2_1.png │ ├── chart_pie_2_1.svg │ ├── chart_pie_2_2.png │ ├── chart_pie_2_3.png │ ├── chart_pie_3_1.png │ ├── chart_pie_3_1.svg │ ├── chart_pie_3_2.png │ ├── chart_pie_3_2.svg │ ├── chart_ring_1_1.png │ ├── chart_ring_1_1.svg │ ├── chart_ring_1_2.png │ ├── chart_ring_1_2.svg │ ├── doughnut.xpm │ ├── gog-pie-prefs.c │ ├── gog-pie-prefs.ui │ ├── gog-pie-series.ui │ ├── gog-pie.c │ ├── gog-pie.h │ ├── gog-ring-prefs.ui │ ├── pie.xpm │ ├── plot-types.xml.in │ └── plugin.xml.in ├── plot_radar │ ├── .gitignore │ ├── Makefile.am │ ├── chart_color_polar_1_1.png │ ├── chart_color_polar_1_1.svg │ ├── chart_contour_polar_1_1.png │ ├── chart_contour_polar_1_1.svg │ ├── chart_polar_1_1.png │ ├── chart_polar_1_1.svg │ ├── chart_radar_1_1.png │ ├── chart_radar_1_1.svg │ ├── chart_radar_1_2.png │ ├── chart_radar_1_2.svg │ ├── chart_radar_1_3.png │ ├── chart_radar_1_3.svg │ ├── gog-color-polar-prefs.ui │ ├── gog-polar-prefs.ui │ ├── gog-radar.c │ ├── gog-radar.h │ ├── plot-types.xml.in │ ├── plugin.xml.in │ ├── polar.svg │ ├── polar.xpm │ └── radar.xpm ├── plot_surface │ ├── .gitignore │ ├── Makefile.am │ ├── chart_contour_1_1.png │ ├── chart_contour_1_1.svg │ ├── chart_contour_1_2.png │ ├── chart_contour_1_2.svg │ ├── chart_contour_2_1.png │ ├── chart_contour_2_1.svg │ ├── chart_contour_2_2.png │ ├── chart_contour_2_2.svg │ ├── chart_matrix_1_1.png │ ├── chart_matrix_1_1.svg │ ├── chart_matrix_1_2.png │ ├── chart_matrix_1_2.svg │ ├── chart_matrix_1_3.png │ ├── chart_matrix_1_3.svg │ ├── chart_surface_2_1.png │ ├── chart_surface_2_1.svg │ ├── chart_surface_2_2.png │ ├── chart_surface_2_2.svg │ ├── chart_surface_2_3.png │ ├── chart_surface_2_3.svg │ ├── contour.xpm │ ├── gog-contour.c │ ├── gog-contour.h │ ├── gog-matrix.c │ ├── gog-matrix.h │ ├── gog-surface.c │ ├── gog-surface.h │ ├── gog-xyz-prefs.c │ ├── gog-xyz-prefs.ui │ ├── gog-xyz-surface-prefs.c │ ├── gog-xyz-surface-prefs.ui │ ├── gog-xyz-surface.c │ ├── gog-xyz-surface.h │ ├── gog-xyz.c │ ├── gog-xyz.h │ ├── matrix.xpm │ ├── plot-types.xml.in │ ├── plugin.xml.in │ ├── surface.xpm │ ├── xl-surface.c │ └── xl-surface.h ├── plot_xy │ ├── .gitignore │ ├── Makefile.am │ ├── bubble.xpm │ ├── chart_bubble_1_1.png │ ├── chart_bubble_1_1.svg │ ├── chart_bubble_1_2.png │ ├── chart_bubble_1_2.svg │ ├── chart_colored_1_1.png │ ├── chart_colored_1_1.svg │ ├── chart_dropbar_1_3.png │ ├── chart_dropbar_1_3.svg │ ├── chart_dropbar_1_4.png │ ├── chart_dropbar_1_4.svg │ ├── chart_minmax_1_3.png │ ├── chart_minmax_1_3.svg │ ├── chart_minmax_1_4.png │ ├── chart_minmax_1_4.svg │ ├── chart_minmax_2_3.png │ ├── chart_minmax_2_3.svg │ ├── chart_minmax_2_4.png │ ├── chart_minmax_2_4.svg │ ├── chart_scatter_1_1.png │ ├── chart_scatter_1_1.svg │ ├── chart_scatter_2_1.png │ ├── chart_scatter_2_2.png │ ├── chart_scatter_3_1.png │ ├── chart_scatter_3_1.svg │ ├── chart_scatter_3_2.png │ ├── chart_scatter_3_2.svg │ ├── chart_scatter_3_3.png │ ├── chart_scatter_3_3.svg │ ├── chart_scatter_4_1.png │ ├── chart_scatter_4_1.svg │ ├── chart_scatter_4_2.png │ ├── chart_scatter_4_2.svg │ ├── chart_scatter_4_3.png │ ├── chart_scatter_4_3.svg │ ├── chart_scatter_4_4.png │ ├── chart_scatter_4_4.svg │ ├── color.xpm │ ├── dropbar.xpm │ ├── gog-bubble-prefs.c │ ├── gog-bubble-prefs.ui │ ├── gog-xy-color-prefs.ui │ ├── gog-xy-dropbar-prefs.ui │ ├── gog-xy-dropbar.c │ ├── gog-xy-dropbar.h │ ├── gog-xy-minmax.c │ ├── gog-xy-minmax.h │ ├── gog-xy-prefs.ui │ ├── gog-xy-series-prefs.ui │ ├── gog-xy.c │ ├── gog-xy.h │ ├── minmax.xpm │ ├── plot-types.xml.in │ ├── plugin.xml.in │ └── scatter.xpm ├── reg_linear │ ├── .gitignore │ ├── Makefile.am │ ├── gog-exp-reg.c │ ├── gog-exp-reg.h │ ├── gog-lin-reg.c │ ├── gog-lin-reg.h │ ├── gog-log-reg.c │ ├── gog-log-reg.h │ ├── gog-polynom-reg.c │ ├── gog-polynom-reg.h │ ├── gog-power-reg.c │ ├── gog-power-reg.h │ ├── plugin.xml.in │ └── reg-types.xml.in ├── reg_logfit │ ├── .gitignore │ ├── Makefile.am │ ├── gog-logfit.c │ ├── gog-logfit.h │ ├── plugin.xml.in │ └── reg-types.xml.in └── smoothing │ ├── .gitignore │ ├── Makefile.am │ ├── gog-exp-smooth.c │ ├── gog-exp-smooth.h │ ├── gog-exp-smooth.ui │ ├── gog-moving-avg.c │ ├── gog-moving-avg.h │ ├── gog-moving-avg.ui │ ├── plugin.c │ ├── plugin.xml.in │ └── types.xml.in ├── po ├── .gitignore ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── am.po ├── ar.po ├── ast.po ├── az.po ├── bg.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── fur.po ├── ga.po ├── gl.po ├── he.po ├── hr.po ├── hu.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── lt.po ├── lv.po ├── ml.po ├── mr.po ├── ms.po ├── nb.po ├── nl.po ├── nn.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── tr.po ├── uk.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── tests ├── .gitignore ├── Makefile.am ├── constants.c ├── go-demo.c ├── go-demo.ui ├── mf-demo.c ├── pie-demo.c ├── shapes-demo.c ├── test-decimal.c ├── test-dtoa.c ├── test-format.c ├── test-math.c └── test-quad.c └── tools ├── .gitignore ├── ChangeLog ├── Makefile.am ├── dumpdef.pl ├── embedder ├── import-R ├── import-ryu ├── introspection-identifier-filter ├── ool-docs └── resource-embedder /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-gpl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/COPYING-gpl2 -------------------------------------------------------------------------------- /COPYING-gpl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/COPYING-gpl3 -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/INSTALL -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/clean -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | NEWS 2 | README 3 | -------------------------------------------------------------------------------- /debian/gir1.2-goffice-0.10.dirs: -------------------------------------------------------------------------------- 1 | usr/lib/girepository-1.0 2 | -------------------------------------------------------------------------------- /debian/gir1.2-goffice-0.10.install: -------------------------------------------------------------------------------- 1 | usr/lib/girepository-*/GOffice-*.typelib 2 | 3 | -------------------------------------------------------------------------------- /debian/libgoffice-0.10-10-common.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-10-common.install -------------------------------------------------------------------------------- /debian/libgoffice-0.10-10.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-10.install -------------------------------------------------------------------------------- /debian/libgoffice-0.10-10.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-10.symbols -------------------------------------------------------------------------------- /debian/libgoffice-0.10-10.symbols.longdouble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-10.symbols.longdouble -------------------------------------------------------------------------------- /debian/libgoffice-0.10-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/share/gir-1.0 2 | -------------------------------------------------------------------------------- /debian/libgoffice-0.10-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-dev.install -------------------------------------------------------------------------------- /debian/libgoffice-0.10-dev.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-0.10-dev.links -------------------------------------------------------------------------------- /debian/libgoffice-dbg.dirs: -------------------------------------------------------------------------------- 1 | usr/lib/debug 2 | -------------------------------------------------------------------------------- /debian/libgoffice-dbg.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-dbg.install -------------------------------------------------------------------------------- /debian/libgoffice-dbg.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/libgoffice-dbg.links -------------------------------------------------------------------------------- /debian/patches/no-nested-externs-error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/patches/no-nested-externs-error -------------------------------------------------------------------------------- /debian/patches/refresh-config-sub-guess-0.8.17-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/patches/refresh-config-sub-guess-0.8.17-1 -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | no-nested-externs-error 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/debian/watch -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/Changelog -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = reference 2 | -------------------------------------------------------------------------------- /docs/reference/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/reference/.gitignore -------------------------------------------------------------------------------- /docs/reference/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/reference/Makefile.am -------------------------------------------------------------------------------- /docs/reference/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/reference/TODO -------------------------------------------------------------------------------- /docs/reference/goffice-0.10-sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/reference/goffice-0.10-sections.txt -------------------------------------------------------------------------------- /docs/reference/goffice-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/docs/reference/goffice-docs.xml -------------------------------------------------------------------------------- /docs/reference/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /goffice-plugins.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice-plugins.mk -------------------------------------------------------------------------------- /goffice.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice.doap -------------------------------------------------------------------------------- /goffice.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice.mk -------------------------------------------------------------------------------- /goffice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/.gitignore -------------------------------------------------------------------------------- /goffice/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/Makefile.am -------------------------------------------------------------------------------- /goffice/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/.gitignore -------------------------------------------------------------------------------- /goffice/app/error-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/error-info.c -------------------------------------------------------------------------------- /goffice/app/error-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/error-info.h -------------------------------------------------------------------------------- /goffice/app/file-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/file-priv.h -------------------------------------------------------------------------------- /goffice/app/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/file.c -------------------------------------------------------------------------------- /goffice/app/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/file.h -------------------------------------------------------------------------------- /goffice/app/go-app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-app.h -------------------------------------------------------------------------------- /goffice/app/go-cmd-context-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-cmd-context-impl.h -------------------------------------------------------------------------------- /goffice/app/go-cmd-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-cmd-context.c -------------------------------------------------------------------------------- /goffice/app/go-cmd-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-cmd-context.h -------------------------------------------------------------------------------- /goffice/app/go-conf-gsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-conf-gsettings.c -------------------------------------------------------------------------------- /goffice/app/go-conf-keyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-conf-keyfile.c -------------------------------------------------------------------------------- /goffice/app/go-conf-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-conf-win32.c -------------------------------------------------------------------------------- /goffice/app/go-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-conf.c -------------------------------------------------------------------------------- /goffice/app/go-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-conf.h -------------------------------------------------------------------------------- /goffice/app/go-doc-control-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc-control-impl.h -------------------------------------------------------------------------------- /goffice/app/go-doc-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc-control.c -------------------------------------------------------------------------------- /goffice/app/go-doc-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc-control.h -------------------------------------------------------------------------------- /goffice/app/go-doc-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc-impl.h -------------------------------------------------------------------------------- /goffice/app/go-doc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc.c -------------------------------------------------------------------------------- /goffice/app/go-doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-doc.h -------------------------------------------------------------------------------- /goffice/app/go-error-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-error-stack.h -------------------------------------------------------------------------------- /goffice/app/go-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-object.c -------------------------------------------------------------------------------- /goffice/app/go-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-object.h -------------------------------------------------------------------------------- /goffice/app/go-plugin-loader-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-loader-module.c -------------------------------------------------------------------------------- /goffice/app/go-plugin-loader-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-loader-module.h -------------------------------------------------------------------------------- /goffice/app/go-plugin-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-loader.c -------------------------------------------------------------------------------- /goffice/app/go-plugin-loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-loader.h -------------------------------------------------------------------------------- /goffice/app/go-plugin-service-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-service-impl.h -------------------------------------------------------------------------------- /goffice/app/go-plugin-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-service.c -------------------------------------------------------------------------------- /goffice/app/go-plugin-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin-service.h -------------------------------------------------------------------------------- /goffice/app/go-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin.c -------------------------------------------------------------------------------- /goffice/app/go-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-plugin.h -------------------------------------------------------------------------------- /goffice/app/go-service-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-service-impl.h -------------------------------------------------------------------------------- /goffice/app/go-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-service.c -------------------------------------------------------------------------------- /goffice/app/go-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-service.h -------------------------------------------------------------------------------- /goffice/app/go-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-view.c -------------------------------------------------------------------------------- /goffice/app/go-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/go-view.h -------------------------------------------------------------------------------- /goffice/app/goffice-app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/goffice-app.h -------------------------------------------------------------------------------- /goffice/app/io-context-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/io-context-priv.h -------------------------------------------------------------------------------- /goffice/app/io-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/io-context.c -------------------------------------------------------------------------------- /goffice/app/io-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/io-context.h -------------------------------------------------------------------------------- /goffice/app/module-plugin-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/app/module-plugin-defs.h -------------------------------------------------------------------------------- /goffice/canvas/goc-arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-arc.c -------------------------------------------------------------------------------- /goffice/canvas/goc-arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-arc.h -------------------------------------------------------------------------------- /goffice/canvas/goc-canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-canvas.c -------------------------------------------------------------------------------- /goffice/canvas/goc-canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-canvas.h -------------------------------------------------------------------------------- /goffice/canvas/goc-circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-circle.c -------------------------------------------------------------------------------- /goffice/canvas/goc-circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-circle.h -------------------------------------------------------------------------------- /goffice/canvas/goc-component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-component.c -------------------------------------------------------------------------------- /goffice/canvas/goc-component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-component.h -------------------------------------------------------------------------------- /goffice/canvas/goc-ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-ellipse.c -------------------------------------------------------------------------------- /goffice/canvas/goc-ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-ellipse.h -------------------------------------------------------------------------------- /goffice/canvas/goc-graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-graph.c -------------------------------------------------------------------------------- /goffice/canvas/goc-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-graph.h -------------------------------------------------------------------------------- /goffice/canvas/goc-group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-group.c -------------------------------------------------------------------------------- /goffice/canvas/goc-group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-group.h -------------------------------------------------------------------------------- /goffice/canvas/goc-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-image.c -------------------------------------------------------------------------------- /goffice/canvas/goc-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-image.h -------------------------------------------------------------------------------- /goffice/canvas/goc-item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-item.c -------------------------------------------------------------------------------- /goffice/canvas/goc-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-item.h -------------------------------------------------------------------------------- /goffice/canvas/goc-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-line.c -------------------------------------------------------------------------------- /goffice/canvas/goc-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-line.h -------------------------------------------------------------------------------- /goffice/canvas/goc-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-path.c -------------------------------------------------------------------------------- /goffice/canvas/goc-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-path.h -------------------------------------------------------------------------------- /goffice/canvas/goc-pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-pixbuf.c -------------------------------------------------------------------------------- /goffice/canvas/goc-pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-pixbuf.h -------------------------------------------------------------------------------- /goffice/canvas/goc-polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-polygon.c -------------------------------------------------------------------------------- /goffice/canvas/goc-polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-polygon.h -------------------------------------------------------------------------------- /goffice/canvas/goc-polyline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-polyline.c -------------------------------------------------------------------------------- /goffice/canvas/goc-polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-polyline.h -------------------------------------------------------------------------------- /goffice/canvas/goc-rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-rectangle.c -------------------------------------------------------------------------------- /goffice/canvas/goc-rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-rectangle.h -------------------------------------------------------------------------------- /goffice/canvas/goc-structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-structs.h -------------------------------------------------------------------------------- /goffice/canvas/goc-styled-item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-styled-item.c -------------------------------------------------------------------------------- /goffice/canvas/goc-styled-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-styled-item.h -------------------------------------------------------------------------------- /goffice/canvas/goc-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-text.c -------------------------------------------------------------------------------- /goffice/canvas/goc-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-text.h -------------------------------------------------------------------------------- /goffice/canvas/goc-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-utils.c -------------------------------------------------------------------------------- /goffice/canvas/goc-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-utils.h -------------------------------------------------------------------------------- /goffice/canvas/goc-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-widget.c -------------------------------------------------------------------------------- /goffice/canvas/goc-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goc-widget.h -------------------------------------------------------------------------------- /goffice/canvas/goffice-canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/canvas/goffice-canvas.h -------------------------------------------------------------------------------- /goffice/component/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/.gitignore -------------------------------------------------------------------------------- /goffice/component/go-component-factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component-factory.c -------------------------------------------------------------------------------- /goffice/component/go-component-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component-factory.h -------------------------------------------------------------------------------- /goffice/component/go-component-mime-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component-mime-dialog.c -------------------------------------------------------------------------------- /goffice/component/go-component-mime-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component-mime-dialog.h -------------------------------------------------------------------------------- /goffice/component/go-component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component.c -------------------------------------------------------------------------------- /goffice/component/go-component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/go-component.h -------------------------------------------------------------------------------- /goffice/component/goffice-component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/component/goffice-component.h -------------------------------------------------------------------------------- /goffice/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/.gitignore -------------------------------------------------------------------------------- /goffice/data/go-data-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/go-data-impl.h -------------------------------------------------------------------------------- /goffice/data/go-data-simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/go-data-simple.c -------------------------------------------------------------------------------- /goffice/data/go-data-simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/go-data-simple.h -------------------------------------------------------------------------------- /goffice/data/go-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/go-data.c -------------------------------------------------------------------------------- /goffice/data/go-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/go-data.h -------------------------------------------------------------------------------- /goffice/data/goffice-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/data/goffice-data.h -------------------------------------------------------------------------------- /goffice/goffice-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice-debug.h -------------------------------------------------------------------------------- /goffice/goffice-features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice-features.h.in -------------------------------------------------------------------------------- /goffice/goffice-multipass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice-multipass.h -------------------------------------------------------------------------------- /goffice/goffice-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice-priv.h -------------------------------------------------------------------------------- /goffice/goffice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice.c -------------------------------------------------------------------------------- /goffice/goffice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/goffice.h -------------------------------------------------------------------------------- /goffice/graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/.gitignore -------------------------------------------------------------------------------- /goffice/graph/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/README -------------------------------------------------------------------------------- /goffice/graph/bar-hboth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-hboth.png -------------------------------------------------------------------------------- /goffice/graph/bar-hminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-hminus.png -------------------------------------------------------------------------------- /goffice/graph/bar-hplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-hplus.png -------------------------------------------------------------------------------- /goffice/graph/bar-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-none.png -------------------------------------------------------------------------------- /goffice/graph/bar-vboth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-vboth.png -------------------------------------------------------------------------------- /goffice/graph/bar-vminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-vminus.png -------------------------------------------------------------------------------- /goffice/graph/bar-vplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/bar-vplus.png -------------------------------------------------------------------------------- /goffice/graph/goffice-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/goffice-graph.h -------------------------------------------------------------------------------- /goffice/graph/gog-3d-box-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-3d-box-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-3d-box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-3d-box.c -------------------------------------------------------------------------------- /goffice/graph/gog-3d-box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-3d-box.h -------------------------------------------------------------------------------- /goffice/graph/gog-axis-color-map-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-color-map-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-axis-color-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-color-map.c -------------------------------------------------------------------------------- /goffice/graph/gog-axis-color-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-color-map.h -------------------------------------------------------------------------------- /goffice/graph/gog-axis-line-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-line-impl.h -------------------------------------------------------------------------------- /goffice/graph/gog-axis-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-line.c -------------------------------------------------------------------------------- /goffice/graph/gog-axis-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-line.h -------------------------------------------------------------------------------- /goffice/graph/gog-axis-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-axis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis.c -------------------------------------------------------------------------------- /goffice/graph/gog-axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-axis.h -------------------------------------------------------------------------------- /goffice/graph/gog-chart-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart-impl.h -------------------------------------------------------------------------------- /goffice/graph/gog-chart-map-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart-map-3d.c -------------------------------------------------------------------------------- /goffice/graph/gog-chart-map-3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart-map-3d.h -------------------------------------------------------------------------------- /goffice/graph/gog-chart-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart-map.c -------------------------------------------------------------------------------- /goffice/graph/gog-chart-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart-map.h -------------------------------------------------------------------------------- /goffice/graph/gog-chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart.c -------------------------------------------------------------------------------- /goffice/graph/gog-chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-chart.h -------------------------------------------------------------------------------- /goffice/graph/gog-child-button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-child-button.c -------------------------------------------------------------------------------- /goffice/graph/gog-child-button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-child-button.h -------------------------------------------------------------------------------- /goffice/graph/gog-color-scale-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-color-scale-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-color-scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-color-scale.c -------------------------------------------------------------------------------- /goffice/graph/gog-color-scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-color-scale.h -------------------------------------------------------------------------------- /goffice/graph/gog-data-allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-data-allocator.c -------------------------------------------------------------------------------- /goffice/graph/gog-data-allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-data-allocator.h -------------------------------------------------------------------------------- /goffice/graph/gog-data-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-data-set.c -------------------------------------------------------------------------------- /goffice/graph/gog-data-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-data-set.h -------------------------------------------------------------------------------- /goffice/graph/gog-equation-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-equation-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-equation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-equation.c -------------------------------------------------------------------------------- /goffice/graph/gog-equation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-equation.h -------------------------------------------------------------------------------- /goffice/graph/gog-error-bar-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-error-bar-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-error-bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-error-bar.c -------------------------------------------------------------------------------- /goffice/graph/gog-error-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-error-bar.h -------------------------------------------------------------------------------- /goffice/graph/gog-graph-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-graph-impl.h -------------------------------------------------------------------------------- /goffice/graph/gog-graph-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-graph-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-graph.c -------------------------------------------------------------------------------- /goffice/graph/gog-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-graph.h -------------------------------------------------------------------------------- /goffice/graph/gog-grid-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-grid-line.c -------------------------------------------------------------------------------- /goffice/graph/gog-grid-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-grid-line.h -------------------------------------------------------------------------------- /goffice/graph/gog-grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-grid.c -------------------------------------------------------------------------------- /goffice/graph/gog-grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-grid.h -------------------------------------------------------------------------------- /goffice/graph/gog-guru-type-selector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-guru-type-selector.ui -------------------------------------------------------------------------------- /goffice/graph/gog-guru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-guru.c -------------------------------------------------------------------------------- /goffice/graph/gog-guru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-guru.h -------------------------------------------------------------------------------- /goffice/graph/gog-guru.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-guru.ui -------------------------------------------------------------------------------- /goffice/graph/gog-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-label.c -------------------------------------------------------------------------------- /goffice/graph/gog-label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-label.h -------------------------------------------------------------------------------- /goffice/graph/gog-legend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-legend.c -------------------------------------------------------------------------------- /goffice/graph/gog-legend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-legend.h -------------------------------------------------------------------------------- /goffice/graph/gog-object-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-object-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-object-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-object-xml.c -------------------------------------------------------------------------------- /goffice/graph/gog-object-xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-object-xml.h -------------------------------------------------------------------------------- /goffice/graph/gog-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-object.c -------------------------------------------------------------------------------- /goffice/graph/gog-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-object.h -------------------------------------------------------------------------------- /goffice/graph/gog-outlined-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-outlined-object.c -------------------------------------------------------------------------------- /goffice/graph/gog-outlined-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-outlined-object.h -------------------------------------------------------------------------------- /goffice/graph/gog-plot-engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot-engine.c -------------------------------------------------------------------------------- /goffice/graph/gog-plot-engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot-engine.h -------------------------------------------------------------------------------- /goffice/graph/gog-plot-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot-impl.h -------------------------------------------------------------------------------- /goffice/graph/gog-plot-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot.c -------------------------------------------------------------------------------- /goffice/graph/gog-plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-plot.h -------------------------------------------------------------------------------- /goffice/graph/gog-reg-curve-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-reg-curve-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-reg-curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-reg-curve.c -------------------------------------------------------------------------------- /goffice/graph/gog-reg-curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-reg-curve.h -------------------------------------------------------------------------------- /goffice/graph/gog-reg-eqn-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-reg-eqn-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-renderer.c -------------------------------------------------------------------------------- /goffice/graph/gog-renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-renderer.h -------------------------------------------------------------------------------- /goffice/graph/gog-series-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-impl.h -------------------------------------------------------------------------------- /goffice/graph/gog-series-labels-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-labels-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-series-labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-labels.c -------------------------------------------------------------------------------- /goffice/graph/gog-series-labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-labels.h -------------------------------------------------------------------------------- /goffice/graph/gog-series-lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-lines.c -------------------------------------------------------------------------------- /goffice/graph/gog-series-lines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-lines.h -------------------------------------------------------------------------------- /goffice/graph/gog-series-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/gog-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series.c -------------------------------------------------------------------------------- /goffice/graph/gog-series.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-series.h -------------------------------------------------------------------------------- /goffice/graph/gog-smoothed-curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-smoothed-curve.c -------------------------------------------------------------------------------- /goffice/graph/gog-smoothed-curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-smoothed-curve.h -------------------------------------------------------------------------------- /goffice/graph/gog-styled-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-styled-object.c -------------------------------------------------------------------------------- /goffice/graph/gog-styled-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-styled-object.h -------------------------------------------------------------------------------- /goffice/graph/gog-theme-editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-theme-editor.ui -------------------------------------------------------------------------------- /goffice/graph/gog-theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-theme.c -------------------------------------------------------------------------------- /goffice/graph/gog-theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-theme.h -------------------------------------------------------------------------------- /goffice/graph/gog-trend-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-trend-line.c -------------------------------------------------------------------------------- /goffice/graph/gog-trend-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-trend-line.h -------------------------------------------------------------------------------- /goffice/graph/gog-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-view.c -------------------------------------------------------------------------------- /goffice/graph/gog-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/gog-view.h -------------------------------------------------------------------------------- /goffice/graph/new-theme-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/new-theme-prefs.ui -------------------------------------------------------------------------------- /goffice/graph/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/tests/.gitignore -------------------------------------------------------------------------------- /goffice/graph/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/graph/tests/Makefile.am -------------------------------------------------------------------------------- /goffice/gtk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/.gitignore -------------------------------------------------------------------------------- /goffice/gtk/go-3d-rotation-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-3d-rotation-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-3d-rotation-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-3d-rotation-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-3d-rotation-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-3d-rotation-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-color.c -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-color.h -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-pixmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-pixmaps.c -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-pixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-pixmaps.h -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-stack.c -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-stack.h -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-text.c -------------------------------------------------------------------------------- /goffice/gtk/go-action-combo-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-action-combo-text.h -------------------------------------------------------------------------------- /goffice/gtk/go-arrow-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-arrow-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-arrow-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-arrow-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-arrow-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-arrow-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-calendar-button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-calendar-button.c -------------------------------------------------------------------------------- /goffice/gtk/go-calendar-button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-calendar-button.h -------------------------------------------------------------------------------- /goffice/gtk/go-charmap-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-charmap-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-charmap-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-charmap-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-color-group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-group.c -------------------------------------------------------------------------------- /goffice/gtk/go-color-group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-group.h -------------------------------------------------------------------------------- /goffice/gtk/go-color-palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-palette.c -------------------------------------------------------------------------------- /goffice/gtk/go-color-palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-palette.h -------------------------------------------------------------------------------- /goffice/gtk/go-color-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-color-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-color-selector.h -------------------------------------------------------------------------------- /goffice/gtk/go-combo-box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-box.c -------------------------------------------------------------------------------- /goffice/gtk/go-combo-box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-box.h -------------------------------------------------------------------------------- /goffice/gtk/go-combo-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-color.c -------------------------------------------------------------------------------- /goffice/gtk/go-combo-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-color.h -------------------------------------------------------------------------------- /goffice/gtk/go-combo-pixmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-pixmaps.c -------------------------------------------------------------------------------- /goffice/gtk/go-combo-pixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-combo-pixmaps.h -------------------------------------------------------------------------------- /goffice/gtk/go-font-sel-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-font-sel-dialog.c -------------------------------------------------------------------------------- /goffice/gtk/go-font-sel-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-font-sel-dialog.h -------------------------------------------------------------------------------- /goffice/gtk/go-font-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-font-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-font-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-font-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-font-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-font-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-format-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-format-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-format-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-format-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-format-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-format-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-gradient-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-gradient-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-gradient-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-gradient-selector.h -------------------------------------------------------------------------------- /goffice/gtk/go-graph-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-graph-widget.c -------------------------------------------------------------------------------- /goffice/gtk/go-graph-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-graph-widget.h -------------------------------------------------------------------------------- /goffice/gtk/go-image-save-dialog-extra.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-image-save-dialog-extra.ui -------------------------------------------------------------------------------- /goffice/gtk/go-image-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-image-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-image-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-image-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-image-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-image-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-line-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-line-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-line-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-line-selector.h -------------------------------------------------------------------------------- /goffice/gtk/go-locale-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-locale-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-locale-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-locale-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-marker-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-marker-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-marker-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-marker-selector.h -------------------------------------------------------------------------------- /goffice/gtk/go-math-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-math-editor.c -------------------------------------------------------------------------------- /goffice/gtk/go-math-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-math-editor.h -------------------------------------------------------------------------------- /goffice/gtk/go-optionmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-optionmenu.c -------------------------------------------------------------------------------- /goffice/gtk/go-optionmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-optionmenu.h -------------------------------------------------------------------------------- /goffice/gtk/go-palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-palette.c -------------------------------------------------------------------------------- /goffice/gtk/go-palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-palette.h -------------------------------------------------------------------------------- /goffice/gtk/go-pattern-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-pattern-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-pattern-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-pattern-selector.h -------------------------------------------------------------------------------- /goffice/gtk/go-rotation-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-rotation-sel.c -------------------------------------------------------------------------------- /goffice/gtk/go-rotation-sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-rotation-sel.h -------------------------------------------------------------------------------- /goffice/gtk/go-rotation-sel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-rotation-sel.ui -------------------------------------------------------------------------------- /goffice/gtk/go-selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-selector.c -------------------------------------------------------------------------------- /goffice/gtk/go-selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/go-selector.h -------------------------------------------------------------------------------- /goffice/gtk/goffice-gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/goffice-gtk.c -------------------------------------------------------------------------------- /goffice/gtk/goffice-gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/goffice-gtk.h -------------------------------------------------------------------------------- /goffice/gtk/goffice-old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/goffice-old.css -------------------------------------------------------------------------------- /goffice/gtk/goffice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/gtk/goffice.css -------------------------------------------------------------------------------- /goffice/math/go-R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-R.c -------------------------------------------------------------------------------- /goffice/math/go-R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-R.h -------------------------------------------------------------------------------- /goffice/math/go-accumulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-accumulator.c -------------------------------------------------------------------------------- /goffice/math/go-accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-accumulator.h -------------------------------------------------------------------------------- /goffice/math/go-complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-complex.c -------------------------------------------------------------------------------- /goffice/math/go-complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-complex.h -------------------------------------------------------------------------------- /goffice/math/go-cspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-cspline.c -------------------------------------------------------------------------------- /goffice/math/go-cspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-cspline.h -------------------------------------------------------------------------------- /goffice/math/go-decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-decimal.c -------------------------------------------------------------------------------- /goffice/math/go-decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-decimal.h -------------------------------------------------------------------------------- /goffice/math/go-distribution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-distribution.c -------------------------------------------------------------------------------- /goffice/math/go-distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-distribution.h -------------------------------------------------------------------------------- /goffice/math/go-dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-dtoa.c -------------------------------------------------------------------------------- /goffice/math/go-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-dtoa.h -------------------------------------------------------------------------------- /goffice/math/go-fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-fft.c -------------------------------------------------------------------------------- /goffice/math/go-fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-fft.h -------------------------------------------------------------------------------- /goffice/math/go-math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-math.c -------------------------------------------------------------------------------- /goffice/math/go-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-math.h -------------------------------------------------------------------------------- /goffice/math/go-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-matrix.c -------------------------------------------------------------------------------- /goffice/math/go-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-matrix.h -------------------------------------------------------------------------------- /goffice/math/go-matrix3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-matrix3x3.c -------------------------------------------------------------------------------- /goffice/math/go-matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-matrix3x3.h -------------------------------------------------------------------------------- /goffice/math/go-quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-quad.c -------------------------------------------------------------------------------- /goffice/math/go-quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-quad.h -------------------------------------------------------------------------------- /goffice/math/go-rangefunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-rangefunc.c -------------------------------------------------------------------------------- /goffice/math/go-rangefunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-rangefunc.h -------------------------------------------------------------------------------- /goffice/math/go-regression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-regression.c -------------------------------------------------------------------------------- /goffice/math/go-regression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-regression.h -------------------------------------------------------------------------------- /goffice/math/go-ryu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-ryu.c -------------------------------------------------------------------------------- /goffice/math/go-ryu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/go-ryu.h -------------------------------------------------------------------------------- /goffice/math/goffice-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/math/goffice-math.h -------------------------------------------------------------------------------- /goffice/outoflinedocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/outoflinedocs.c -------------------------------------------------------------------------------- /goffice/utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/.gitignore -------------------------------------------------------------------------------- /goffice/utils/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/datetime.c -------------------------------------------------------------------------------- /goffice/utils/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/datetime.h -------------------------------------------------------------------------------- /goffice/utils/formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/formats.c -------------------------------------------------------------------------------- /goffice/utils/go-bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-bezier.c -------------------------------------------------------------------------------- /goffice/utils/go-bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-bezier.h -------------------------------------------------------------------------------- /goffice/utils/go-cairo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-cairo.c -------------------------------------------------------------------------------- /goffice/utils/go-cairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-cairo.h -------------------------------------------------------------------------------- /goffice/utils/go-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-color.c -------------------------------------------------------------------------------- /goffice/utils/go-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-color.h -------------------------------------------------------------------------------- /goffice/utils/go-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-editor.c -------------------------------------------------------------------------------- /goffice/utils/go-editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-editor.h -------------------------------------------------------------------------------- /goffice/utils/go-emf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-emf.c -------------------------------------------------------------------------------- /goffice/utils/go-emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-emf.h -------------------------------------------------------------------------------- /goffice/utils/go-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-file.c -------------------------------------------------------------------------------- /goffice/utils/go-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-file.h -------------------------------------------------------------------------------- /goffice/utils/go-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-font.c -------------------------------------------------------------------------------- /goffice/utils/go-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-font.h -------------------------------------------------------------------------------- /goffice/utils/go-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-format.c -------------------------------------------------------------------------------- /goffice/utils/go-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-format.h -------------------------------------------------------------------------------- /goffice/utils/go-gdk-pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-gdk-pixbuf.c -------------------------------------------------------------------------------- /goffice/utils/go-gdk-pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-gdk-pixbuf.h -------------------------------------------------------------------------------- /goffice/utils/go-geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-geometry.c -------------------------------------------------------------------------------- /goffice/utils/go-geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-geometry.h -------------------------------------------------------------------------------- /goffice/utils/go-glib-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-glib-extras.c -------------------------------------------------------------------------------- /goffice/utils/go-glib-extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-glib-extras.h -------------------------------------------------------------------------------- /goffice/utils/go-gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-gradient.c -------------------------------------------------------------------------------- /goffice/utils/go-gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-gradient.h -------------------------------------------------------------------------------- /goffice/utils/go-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-image.c -------------------------------------------------------------------------------- /goffice/utils/go-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-image.h -------------------------------------------------------------------------------- /goffice/utils/go-libxml-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-libxml-extras.c -------------------------------------------------------------------------------- /goffice/utils/go-libxml-extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-libxml-extras.h -------------------------------------------------------------------------------- /goffice/utils/go-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-line.c -------------------------------------------------------------------------------- /goffice/utils/go-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-line.h -------------------------------------------------------------------------------- /goffice/utils/go-locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-locale.c -------------------------------------------------------------------------------- /goffice/utils/go-locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-locale.h -------------------------------------------------------------------------------- /goffice/utils/go-marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-marker.c -------------------------------------------------------------------------------- /goffice/utils/go-marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-marker.h -------------------------------------------------------------------------------- /goffice/utils/go-marshalers.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-marshalers.list -------------------------------------------------------------------------------- /goffice/utils/go-mml-to-itex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-mml-to-itex.c -------------------------------------------------------------------------------- /goffice/utils/go-mml-to-itex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-mml-to-itex.h -------------------------------------------------------------------------------- /goffice/utils/go-pango-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pango-extras.c -------------------------------------------------------------------------------- /goffice/utils/go-pango-extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pango-extras.h -------------------------------------------------------------------------------- /goffice/utils/go-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-path.c -------------------------------------------------------------------------------- /goffice/utils/go-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-path.h -------------------------------------------------------------------------------- /goffice/utils/go-pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pattern.c -------------------------------------------------------------------------------- /goffice/utils/go-pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pattern.h -------------------------------------------------------------------------------- /goffice/utils/go-persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-persist.c -------------------------------------------------------------------------------- /goffice/utils/go-persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-persist.h -------------------------------------------------------------------------------- /goffice/utils/go-pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pixbuf.c -------------------------------------------------------------------------------- /goffice/utils/go-pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-pixbuf.h -------------------------------------------------------------------------------- /goffice/utils/go-rsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-rsm.c -------------------------------------------------------------------------------- /goffice/utils/go-rsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-rsm.h -------------------------------------------------------------------------------- /goffice/utils/go-spectre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-spectre.c -------------------------------------------------------------------------------- /goffice/utils/go-spectre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-spectre.h -------------------------------------------------------------------------------- /goffice/utils/go-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-string.c -------------------------------------------------------------------------------- /goffice/utils/go-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-string.h -------------------------------------------------------------------------------- /goffice/utils/go-style-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-style-prefs.ui -------------------------------------------------------------------------------- /goffice/utils/go-style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-style.c -------------------------------------------------------------------------------- /goffice/utils/go-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-style.h -------------------------------------------------------------------------------- /goffice/utils/go-styled-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-styled-object.c -------------------------------------------------------------------------------- /goffice/utils/go-styled-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-styled-object.h -------------------------------------------------------------------------------- /goffice/utils/go-svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-svg.c -------------------------------------------------------------------------------- /goffice/utils/go-svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-svg.h -------------------------------------------------------------------------------- /goffice/utils/go-undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-undo.c -------------------------------------------------------------------------------- /goffice/utils/go-undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-undo.h -------------------------------------------------------------------------------- /goffice/utils/go-unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-unit.c -------------------------------------------------------------------------------- /goffice/utils/go-unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-unit.h -------------------------------------------------------------------------------- /goffice/utils/go-units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/go-units.h -------------------------------------------------------------------------------- /goffice/utils/goffice-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/goffice-utils.c -------------------------------------------------------------------------------- /goffice/utils/goffice-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/goffice-utils.h -------------------------------------------------------------------------------- /goffice/utils/regutf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/regutf8.c -------------------------------------------------------------------------------- /goffice/utils/regutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/regutf8.h -------------------------------------------------------------------------------- /goffice/utils/svg-patterns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/svg-patterns.xml -------------------------------------------------------------------------------- /goffice/utils/unknown_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/goffice/utils/unknown_image.png -------------------------------------------------------------------------------- /libgoffice.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/libgoffice.pc.in -------------------------------------------------------------------------------- /mmlitex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/Makefile.am -------------------------------------------------------------------------------- /mmlitex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/README -------------------------------------------------------------------------------- /mmlitex/cmarkup.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/cmarkup.xsl -------------------------------------------------------------------------------- /mmlitex/entities.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/entities.xsl -------------------------------------------------------------------------------- /mmlitex/glayout.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/glayout.xsl -------------------------------------------------------------------------------- /mmlitex/mmlitex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/mmlitex.xsl -------------------------------------------------------------------------------- /mmlitex/scripts.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/scripts.xsl -------------------------------------------------------------------------------- /mmlitex/tables.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/tables.xsl -------------------------------------------------------------------------------- /mmlitex/tokens.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/mmlitex/tokens.xsl -------------------------------------------------------------------------------- /pixmaps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/.gitignore -------------------------------------------------------------------------------- /pixmaps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/README -------------------------------------------------------------------------------- /pixmaps/boxplot.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/boxplot.xpm -------------------------------------------------------------------------------- /pixmaps/chart-rings-2d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart-rings-2d.svg -------------------------------------------------------------------------------- /pixmaps/chart_cone_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_1_1.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_1_2.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_1_3.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_2_1.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_2_2.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_2_3.png -------------------------------------------------------------------------------- /pixmaps/chart_cone_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cone_3_1.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_1_1.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_1_2.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_1_3.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_2_1.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_2_2.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_2_3.png -------------------------------------------------------------------------------- /pixmaps/chart_cylinder_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_cylinder_3_1.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_1_1.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_1_2.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_1_3.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_2_1.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_2_2.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_2_3.png -------------------------------------------------------------------------------- /pixmaps/chart_pyramid_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_pyramid_3_1.png -------------------------------------------------------------------------------- /pixmaps/chart_stock_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_stock_1_1.png -------------------------------------------------------------------------------- /pixmaps/chart_stock_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_stock_1_2.png -------------------------------------------------------------------------------- /pixmaps/chart_stock_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_stock_2_1.png -------------------------------------------------------------------------------- /pixmaps/chart_stock_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/chart_stock_2_2.png -------------------------------------------------------------------------------- /pixmaps/hist.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/hist.xpm -------------------------------------------------------------------------------- /pixmaps/stock.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/pixmaps/stock.xpm -------------------------------------------------------------------------------- /plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/.gitignore -------------------------------------------------------------------------------- /plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/Makefile.am -------------------------------------------------------------------------------- /plugins/lasem/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/lasem/Makefile.am -------------------------------------------------------------------------------- /plugins/lasem/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/lasem/component.c -------------------------------------------------------------------------------- /plugins/lasem/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/lasem/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_barcol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/.gitignore -------------------------------------------------------------------------------- /plugins/plot_barcol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_barcol/area.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/area.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/bar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/bar.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_area_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_area_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_2_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_2_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_bar_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_bar_2_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_2_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_2_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_2_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_column_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_column_3_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_dropbar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_dropbar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_dropbar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_dropbar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_dropbar_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_dropbar_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_dropbar_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_dropbar_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_3.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_2_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_2_3.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_line_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_line_3_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_1_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_1_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_2_1.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_2_2.png -------------------------------------------------------------------------------- /plugins/plot_barcol/chart_minmax_2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/chart_minmax_2_2.svg -------------------------------------------------------------------------------- /plugins/plot_barcol/column.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/column.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/dropbar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/dropbar.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-1.5d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-1.5d.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-1.5d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-1.5d.h -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-area-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-area-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-barcol-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-barcol-prefs.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-barcol-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-barcol-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-barcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-barcol.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-barcol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-barcol.h -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-dropbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-dropbar.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-dropbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-dropbar.h -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-line.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-line.h -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-minmax-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-minmax-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-minmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-minmax.c -------------------------------------------------------------------------------- /plugins/plot_barcol/gog-minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/gog-minmax.h -------------------------------------------------------------------------------- /plugins/plot_barcol/linegraph.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/linegraph.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/minmax.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/minmax.xpm -------------------------------------------------------------------------------- /plugins/plot_barcol/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_barcol/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_barcol/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_distrib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/.gitignore -------------------------------------------------------------------------------- /plugins/plot_distrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_1_1.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_1_2.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_2_1.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_2_2.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_boxplot_2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_boxplot_2_2.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_1.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_2.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_3.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_4.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_1_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_1_4.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_2_1.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_histogram_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_histogram_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_prob_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_prob_1_1.png -------------------------------------------------------------------------------- /plugins/plot_distrib/chart_prob_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/chart_prob_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_distrib/dist.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/dist.xpm -------------------------------------------------------------------------------- /plugins/plot_distrib/go-distribution-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/go-distribution-prefs.c -------------------------------------------------------------------------------- /plugins/plot_distrib/go-distribution-prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/go-distribution-prefs.h -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-boxplot-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-boxplot-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-boxplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-boxplot.c -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-boxplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-boxplot.h -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-double-histogram-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-double-histogram-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-histogram-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-histogram-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-histogram.c -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-histogram.h -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-probability-plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-probability-plot.c -------------------------------------------------------------------------------- /plugins/plot_distrib/gog-probability-plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/gog-probability-plot.h -------------------------------------------------------------------------------- /plugins/plot_distrib/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_distrib/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/plugin.c -------------------------------------------------------------------------------- /plugins/plot_distrib/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_distrib/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_pie/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/.gitignore -------------------------------------------------------------------------------- /plugins/plot_pie/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_pie/chart-pie-2d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart-pie-2d.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_1_1.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_1_2.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_1_3.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_2_1.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_2_2.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_2_3.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_3_1.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_3_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_3_1.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_3_2.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_pie_3_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_pie_3_2.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_ring_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_ring_1_1.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_ring_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_ring_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_pie/chart_ring_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_ring_1_2.png -------------------------------------------------------------------------------- /plugins/plot_pie/chart_ring_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/chart_ring_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_pie/doughnut.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/doughnut.xpm -------------------------------------------------------------------------------- /plugins/plot_pie/gog-pie-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-pie-prefs.c -------------------------------------------------------------------------------- /plugins/plot_pie/gog-pie-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-pie-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_pie/gog-pie-series.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-pie-series.ui -------------------------------------------------------------------------------- /plugins/plot_pie/gog-pie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-pie.c -------------------------------------------------------------------------------- /plugins/plot_pie/gog-pie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-pie.h -------------------------------------------------------------------------------- /plugins/plot_pie/gog-ring-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/gog-ring-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_pie/pie.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/pie.xpm -------------------------------------------------------------------------------- /plugins/plot_pie/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_pie/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_pie/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_radar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/.gitignore -------------------------------------------------------------------------------- /plugins/plot_radar/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_radar/chart_color_polar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_color_polar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_color_polar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_color_polar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_radar/chart_contour_polar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_contour_polar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_contour_polar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_contour_polar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_radar/chart_polar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_polar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_polar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_polar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_1.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_2.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_3.png -------------------------------------------------------------------------------- /plugins/plot_radar/chart_radar_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/chart_radar_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_radar/gog-color-polar-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/gog-color-polar-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_radar/gog-polar-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/gog-polar-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_radar/gog-radar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/gog-radar.c -------------------------------------------------------------------------------- /plugins/plot_radar/gog-radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/gog-radar.h -------------------------------------------------------------------------------- /plugins/plot_radar/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_radar/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_radar/polar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/polar.svg -------------------------------------------------------------------------------- /plugins/plot_radar/polar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/polar.xpm -------------------------------------------------------------------------------- /plugins/plot_radar/radar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_radar/radar.xpm -------------------------------------------------------------------------------- /plugins/plot_surface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/.gitignore -------------------------------------------------------------------------------- /plugins/plot_surface/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_1_1.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_1_2.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_2_1.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_2_2.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_contour_2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_contour_2_2.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_1.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_2.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_3.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_matrix_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_matrix_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_1.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_1.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_2.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_2.svg -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_3.png -------------------------------------------------------------------------------- /plugins/plot_surface/chart_surface_2_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/chart_surface_2_3.svg -------------------------------------------------------------------------------- /plugins/plot_surface/contour.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/contour.xpm -------------------------------------------------------------------------------- /plugins/plot_surface/gog-contour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-contour.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-contour.h -------------------------------------------------------------------------------- /plugins/plot_surface/gog-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-matrix.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-matrix.h -------------------------------------------------------------------------------- /plugins/plot_surface/gog-surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-surface.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-surface.h -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-prefs.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-surface-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-surface-prefs.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-surface-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-surface-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-surface.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz-surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz-surface.h -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz.c -------------------------------------------------------------------------------- /plugins/plot_surface/gog-xyz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/gog-xyz.h -------------------------------------------------------------------------------- /plugins/plot_surface/matrix.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/matrix.xpm -------------------------------------------------------------------------------- /plugins/plot_surface/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_surface/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_surface/surface.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/surface.xpm -------------------------------------------------------------------------------- /plugins/plot_surface/xl-surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/xl-surface.c -------------------------------------------------------------------------------- /plugins/plot_surface/xl-surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_surface/xl-surface.h -------------------------------------------------------------------------------- /plugins/plot_xy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/.gitignore -------------------------------------------------------------------------------- /plugins/plot_xy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/Makefile.am -------------------------------------------------------------------------------- /plugins/plot_xy/bubble.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/bubble.xpm -------------------------------------------------------------------------------- /plugins/plot_xy/chart_bubble_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_bubble_1_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_bubble_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_bubble_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_bubble_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_bubble_1_2.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_bubble_1_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_bubble_1_2.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_colored_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_colored_1_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_colored_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_colored_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_dropbar_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_dropbar_1_3.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_dropbar_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_dropbar_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_dropbar_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_dropbar_1_4.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_dropbar_1_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_dropbar_1_4.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_1_3.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_1_3.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_1_4.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_1_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_1_4.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_2_3.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_2_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_2_3.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_2_4.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_minmax_2_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_minmax_2_4.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_1_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_1_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_1_1.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_2_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_2_2.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_1.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_2.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_2.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_3.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_3_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_3_3.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_1.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_1.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_2.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_2.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_3.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_3.svg -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_4.png -------------------------------------------------------------------------------- /plugins/plot_xy/chart_scatter_4_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/chart_scatter_4_4.svg -------------------------------------------------------------------------------- /plugins/plot_xy/color.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/color.xpm -------------------------------------------------------------------------------- /plugins/plot_xy/dropbar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/dropbar.xpm -------------------------------------------------------------------------------- /plugins/plot_xy/gog-bubble-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-bubble-prefs.c -------------------------------------------------------------------------------- /plugins/plot_xy/gog-bubble-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-bubble-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-color-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-color-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-dropbar-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-dropbar-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-dropbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-dropbar.c -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-dropbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-dropbar.h -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-minmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-minmax.c -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-minmax.h -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy-series-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy-series-prefs.ui -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy.c -------------------------------------------------------------------------------- /plugins/plot_xy/gog-xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/gog-xy.h -------------------------------------------------------------------------------- /plugins/plot_xy/minmax.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/minmax.xpm -------------------------------------------------------------------------------- /plugins/plot_xy/plot-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/plot-types.xml.in -------------------------------------------------------------------------------- /plugins/plot_xy/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/plugin.xml.in -------------------------------------------------------------------------------- /plugins/plot_xy/scatter.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/plot_xy/scatter.xpm -------------------------------------------------------------------------------- /plugins/reg_linear/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/.gitignore -------------------------------------------------------------------------------- /plugins/reg_linear/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/Makefile.am -------------------------------------------------------------------------------- /plugins/reg_linear/gog-exp-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-exp-reg.c -------------------------------------------------------------------------------- /plugins/reg_linear/gog-exp-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-exp-reg.h -------------------------------------------------------------------------------- /plugins/reg_linear/gog-lin-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-lin-reg.c -------------------------------------------------------------------------------- /plugins/reg_linear/gog-lin-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-lin-reg.h -------------------------------------------------------------------------------- /plugins/reg_linear/gog-log-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-log-reg.c -------------------------------------------------------------------------------- /plugins/reg_linear/gog-log-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-log-reg.h -------------------------------------------------------------------------------- /plugins/reg_linear/gog-polynom-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-polynom-reg.c -------------------------------------------------------------------------------- /plugins/reg_linear/gog-polynom-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-polynom-reg.h -------------------------------------------------------------------------------- /plugins/reg_linear/gog-power-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-power-reg.c -------------------------------------------------------------------------------- /plugins/reg_linear/gog-power-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/gog-power-reg.h -------------------------------------------------------------------------------- /plugins/reg_linear/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/plugin.xml.in -------------------------------------------------------------------------------- /plugins/reg_linear/reg-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_linear/reg-types.xml.in -------------------------------------------------------------------------------- /plugins/reg_logfit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/.gitignore -------------------------------------------------------------------------------- /plugins/reg_logfit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/Makefile.am -------------------------------------------------------------------------------- /plugins/reg_logfit/gog-logfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/gog-logfit.c -------------------------------------------------------------------------------- /plugins/reg_logfit/gog-logfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/gog-logfit.h -------------------------------------------------------------------------------- /plugins/reg_logfit/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/plugin.xml.in -------------------------------------------------------------------------------- /plugins/reg_logfit/reg-types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/reg_logfit/reg-types.xml.in -------------------------------------------------------------------------------- /plugins/smoothing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/.gitignore -------------------------------------------------------------------------------- /plugins/smoothing/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/Makefile.am -------------------------------------------------------------------------------- /plugins/smoothing/gog-exp-smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-exp-smooth.c -------------------------------------------------------------------------------- /plugins/smoothing/gog-exp-smooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-exp-smooth.h -------------------------------------------------------------------------------- /plugins/smoothing/gog-exp-smooth.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-exp-smooth.ui -------------------------------------------------------------------------------- /plugins/smoothing/gog-moving-avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-moving-avg.c -------------------------------------------------------------------------------- /plugins/smoothing/gog-moving-avg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-moving-avg.h -------------------------------------------------------------------------------- /plugins/smoothing/gog-moving-avg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/gog-moving-avg.ui -------------------------------------------------------------------------------- /plugins/smoothing/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/plugin.c -------------------------------------------------------------------------------- /plugins/smoothing/plugin.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/plugin.xml.in -------------------------------------------------------------------------------- /plugins/smoothing/types.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/plugins/smoothing/types.xml.in -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/az.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/constants.c -------------------------------------------------------------------------------- /tests/go-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/go-demo.c -------------------------------------------------------------------------------- /tests/go-demo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/go-demo.ui -------------------------------------------------------------------------------- /tests/mf-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/mf-demo.c -------------------------------------------------------------------------------- /tests/pie-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/pie-demo.c -------------------------------------------------------------------------------- /tests/shapes-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/shapes-demo.c -------------------------------------------------------------------------------- /tests/test-decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/test-decimal.c -------------------------------------------------------------------------------- /tests/test-dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/test-dtoa.c -------------------------------------------------------------------------------- /tests/test-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/test-format.c -------------------------------------------------------------------------------- /tests/test-math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/test-math.c -------------------------------------------------------------------------------- /tests/test-quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tests/test-quad.c -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /tools/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/ChangeLog -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/dumpdef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/dumpdef.pl -------------------------------------------------------------------------------- /tools/embedder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/embedder -------------------------------------------------------------------------------- /tools/import-R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/import-R -------------------------------------------------------------------------------- /tools/import-ryu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/import-ryu -------------------------------------------------------------------------------- /tools/introspection-identifier-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/introspection-identifier-filter -------------------------------------------------------------------------------- /tools/ool-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/ool-docs -------------------------------------------------------------------------------- /tools/resource-embedder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/goffice/HEAD/tools/resource-embedder --------------------------------------------------------------------------------