├── docs ├── libglabels │ ├── libglabels-3.0.types │ ├── libglabels-3.0-overrides.txt │ ├── tmpl │ │ ├── libglabels.sgml │ │ ├── str.sgml │ │ ├── xml-vendor.sgml │ │ ├── xml-paper.sgml │ │ ├── vendor.sgml │ │ ├── xml-category.sgml │ │ ├── category.sgml │ │ ├── paper.sgml │ │ ├── xml-template.sgml │ │ └── units.sgml │ └── libglabels-3.0-docs.sgml ├── libglbarcode │ ├── libglbarcode-3.0.types │ ├── libglbarcode-3.0-overrides.txt │ ├── tmpl │ │ ├── lgl-barcode-create.sgml │ │ ├── lgl-barcode-render-to-cairo.sgml │ │ └── lgl-barcode-type.sgml │ ├── libglbarcode-3.0-docs.sgml │ └── libglbarcode-3.0-sections.txt └── Makefile.am ├── data ├── man │ ├── glabels-3-batch.1 │ ├── Makefile.am │ └── glabels-3.1 ├── pixmaps │ ├── ex-1layout.png │ ├── ex-2layouts.png │ ├── ex-cd-size.png │ ├── ex-rect-size.png │ ├── glabels-logo.png │ ├── new-confirm.png │ ├── new-rotate.png │ ├── new-select.png │ ├── ex-round-size.png │ ├── ex-ellipse-size.png │ ├── template-designer.png │ └── Makefile.am ├── icons │ ├── 16x16 │ │ ├── apps │ │ │ └── glabels-3.0.png │ │ ├── actions │ │ │ ├── glabels-box.png │ │ │ ├── glabels-line.png │ │ │ ├── glabels-text.png │ │ │ ├── glabels-arrow.png │ │ │ ├── glabels-barcode.png │ │ │ ├── glabels-ellipse.png │ │ │ ├── glabels-image.png │ │ │ ├── glabels-merge.png │ │ │ ├── glabels-pencil.png │ │ │ ├── glabels-align-top.png │ │ │ ├── glabels-flip-vert.png │ │ │ ├── glabels-order-top.png │ │ │ ├── glabels-align-bottom.png │ │ │ ├── glabels-align-left.png │ │ │ ├── glabels-align-right.png │ │ │ ├── glabels-bucket-fill.png │ │ │ ├── glabels-center-horiz.png │ │ │ ├── glabels-center-vert.png │ │ │ ├── glabels-flip-horiz.png │ │ │ ├── glabels-order-bottom.png │ │ │ ├── glabels-rotate-left.png │ │ │ ├── glabels-rotate-right.png │ │ │ ├── glabels-align-hcenter.png │ │ │ ├── glabels-align-vcenter.png │ │ │ └── glabels-object-properties.png │ │ └── Makefile.am │ ├── 22x22 │ │ ├── apps │ │ │ └── glabels-3.0.png │ │ ├── actions │ │ │ ├── glabels-align-text-top.png │ │ │ ├── glabels-align-text-bottom.png │ │ │ └── glabels-align-text-middle.png │ │ └── Makefile.am │ ├── 24x24 │ │ ├── apps │ │ │ └── glabels-3.0.png │ │ ├── actions │ │ │ ├── glabels-box.png │ │ │ ├── glabels-line.png │ │ │ ├── glabels-text.png │ │ │ ├── glabels-arrow.png │ │ │ ├── glabels-barcode.png │ │ │ ├── glabels-ellipse.png │ │ │ ├── glabels-hchain.png │ │ │ ├── glabels-image.png │ │ │ ├── glabels-merge.png │ │ │ ├── glabels-pencil.png │ │ │ ├── glabels-vchain.png │ │ │ ├── glabels-bucket-fill.png │ │ │ ├── glabels-align-text-top.png │ │ │ ├── glabels-hchain-broken.png │ │ │ ├── glabels-vchain-broken.png │ │ │ ├── glabels-align-text-bottom.png │ │ │ ├── glabels-align-text-middle.png │ │ │ └── glabels-object-properties.png │ │ └── Makefile.am │ ├── 32x32 │ │ ├── apps │ │ │ └── glabels-3.0.png │ │ └── Makefile.am │ ├── 48x48 │ │ ├── apps │ │ │ └── glabels-3.0.png │ │ ├── mimetypes │ │ │ └── application-x-glabels.png │ │ └── Makefile.am │ ├── scalable │ │ └── Makefile.am │ └── Makefile.am ├── Makefile.am ├── mime │ ├── glabels-3.0.xml.in │ └── Makefile.am ├── desktop │ ├── glabels-3.0.desktop.in │ └── Makefile.am ├── appdata │ ├── Makefile.am │ └── glabels-3.appdata.xml.in ├── ui │ └── Makefile.am └── schemas │ └── Makefile.am ├── src ├── cursors │ ├── cursor_box.png │ ├── cursor_image.png │ ├── cursor_line.png │ ├── cursor_text.png │ ├── cursor_barcode.png │ ├── cursor_ellipse.png │ └── Makefile.am ├── marshal.list ├── pixmaps │ ├── Makefile.am │ ├── checkerboard.xpm │ ├── cursor_box.xbm │ ├── cursor_line.xbm │ ├── cursor_text.xbm │ ├── cursor_image.xbm │ ├── cursor_barcode.xbm │ ├── cursor_ellipse.xbm │ ├── cursor_box_mask.xbm │ ├── cursor_line_mask.xbm │ ├── cursor_text_mask.xbm │ ├── cursor_image_mask.xbm │ ├── cursor_barcode_mask.xbm │ ├── cursor_ellipse_mask.xbm │ ├── collate.xpm │ └── nocollate.xpm ├── merge-init.h ├── warning-handler.h ├── critical-error-handler.h ├── prefs.h ├── cairo-ellipse-path.h ├── builder-util.h ├── xml-label-04.h ├── font-history.h ├── mini-preview-pixbuf.h ├── units-util.h ├── template-history.h ├── cairo-markup-path.h ├── recent.h ├── combo-util.h ├── cairo-label-path.h ├── pixbuf-util.h ├── font-util.h ├── bc-builtin.h ├── bc-iec16022.h ├── bc-iec18004.h ├── bc-zint.h ├── bc-gnubarcode.h ├── file-util.h ├── ui-util.h ├── mini-preview-pixbuf-cache.h ├── str-util.h ├── xml-label.h ├── pixbuf-cache.h ├── view-text.h ├── view-image.h ├── view-barcode.h ├── svg-cache.h ├── view-box.h └── ui.h ├── help ├── C │ ├── figures │ │ ├── glabels-logo.png │ │ ├── merge-ex1-1.png │ │ ├── merge-ex1-2.png │ │ ├── merge-ex1-3.png │ │ ├── merge-ex1-4.png │ │ ├── merge-ex2-1.png │ │ ├── merge-ex2-2.png │ │ ├── merge-ex2-3.png │ │ ├── merge-ex2-4.png │ │ ├── merge-ex3-1.png │ │ ├── merge-ex3-2.png │ │ ├── merge-ex3-3.png │ │ ├── merge-ex3-4.png │ │ ├── print-copies.png │ │ ├── print-merge.png │ │ ├── layouts-cdlabel.png │ │ ├── skip-fields-output.png │ │ ├── object-editor-sidebar.png │ │ ├── skip-fields-screenshot.png │ │ ├── glabels-template-cd-label.png │ │ ├── glabels-template-layout.png │ │ ├── glabels-template-rect-label.png │ │ ├── glabels-template-circle-label.png │ │ ├── glabels-template-ellipse-label.png │ │ └── introduction-glabels-main-window.png │ ├── merge-ex4.page │ ├── newlabel.page │ ├── merge.page │ ├── customtemplate.page │ ├── multifile.page │ ├── labelprop.page │ ├── about.page │ └── license.page ├── cs │ └── figures │ │ ├── merge-ex1-1.png │ │ ├── merge-ex1-2.png │ │ ├── merge-ex1-3.png │ │ ├── merge-ex1-4.png │ │ ├── merge-ex2-1.png │ │ ├── merge-ex2-2.png │ │ ├── merge-ex2-3.png │ │ ├── merge-ex2-4.png │ │ ├── merge-ex3-1.png │ │ ├── print-merge.png │ │ ├── print-copies.png │ │ ├── skip-fields-output.png │ │ ├── object-editor-sidebar.png │ │ └── skip-fields-screenshot.png ├── de │ └── figures │ │ ├── merge-ex1-1.png │ │ ├── merge-ex1-2.png │ │ ├── merge-ex1-3.png │ │ ├── merge-ex1-4.png │ │ ├── merge-ex2-1.png │ │ ├── merge-ex2-2.png │ │ ├── merge-ex2-3.png │ │ ├── merge-ex2-4.png │ │ ├── print-merge.png │ │ ├── print-copies.png │ │ ├── object-editor-sidebar.png │ │ └── introduction-glabels-main-window.png ├── fr │ └── figures │ │ ├── merge-ex1-1.png │ │ ├── merge-ex1-2.png │ │ ├── merge-ex1-3.png │ │ ├── merge-ex1-4.png │ │ ├── merge-ex2-1.png │ │ ├── merge-ex2-2.png │ │ ├── merge-ex2-3.png │ │ ├── merge-ex2-4.png │ │ ├── merge-ex3-1.png │ │ ├── merge-ex3-2.png │ │ ├── merge-ex3-3.png │ │ ├── merge-ex3-4.png │ │ ├── print-merge.png │ │ ├── print-copies.png │ │ ├── skip-fields-output.png │ │ ├── object-editor-sidebar.png │ │ ├── skip-fields-screenshot.png │ │ ├── glabels-template-cd-label.png │ │ ├── glabels-template-circle-label.png │ │ ├── glabels-template-rect-label.png │ │ ├── glabels-template-ellipse-label.png │ │ └── introduction-glabels-main-window.png └── Makefile.am ├── MAINTAINERS ├── ChangeLog ├── po ├── POTFILES.skip └── LINGUAS ├── libglabels ├── libglabels-3.0.pc.in ├── lgl-str.h ├── Makefile.am ├── libglabels.h ├── lgl-xml-paper.h ├── libglabels-private.h ├── lgl-xml-vendor.h ├── lgl-xml-category.h ├── lgl-vendor.h ├── lgl-category.h └── lgl-units.h ├── libglbarcode ├── libglbarcode-3.0.pc.in ├── Makefile.am ├── libglbarcode.h ├── lgl-barcode-render-to-cairo.h ├── lgl-barcode-code39.h ├── lgl-barcode-onecode.h ├── lgl-barcode-postnet.h ├── lgl-barcode-create.h └── lgl-barcode-type.h ├── MESSAGE-OF-DOOM ├── templates ├── mayspies-templates.xml ├── categories.xml ├── avery-other-templates.xml ├── canon-other-templates.xml ├── uline-us-templates.xml ├── microapp-templates.xml ├── cablelabel-templates.xml ├── Makefile.am ├── maco-us-templates.xml └── desmat-templates.xml ├── autogen.sh ├── Makefile.am ├── glabels.doap ├── README ├── COPYING-TEMPLATES └── COPYING.README_FIRST /docs/libglabels/libglabels-3.0.types: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/libglbarcode/libglbarcode-3.0.types: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/libglabels/libglabels-3.0-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/libglbarcode/libglbarcode-3.0-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/man/glabels-3-batch.1: -------------------------------------------------------------------------------- 1 | .so man1/glabels-3.1 2 | -------------------------------------------------------------------------------- /src/cursors/cursor_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_box.png -------------------------------------------------------------------------------- /data/pixmaps/ex-1layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-1layout.png -------------------------------------------------------------------------------- /data/pixmaps/ex-2layouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-2layouts.png -------------------------------------------------------------------------------- /data/pixmaps/ex-cd-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-cd-size.png -------------------------------------------------------------------------------- /data/pixmaps/ex-rect-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-rect-size.png -------------------------------------------------------------------------------- /data/pixmaps/glabels-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/glabels-logo.png -------------------------------------------------------------------------------- /data/pixmaps/new-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/new-confirm.png -------------------------------------------------------------------------------- /data/pixmaps/new-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/new-rotate.png -------------------------------------------------------------------------------- /data/pixmaps/new-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/new-select.png -------------------------------------------------------------------------------- /src/cursors/cursor_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_image.png -------------------------------------------------------------------------------- /src/cursors/cursor_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_line.png -------------------------------------------------------------------------------- /src/cursors/cursor_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_text.png -------------------------------------------------------------------------------- /data/pixmaps/ex-round-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-round-size.png -------------------------------------------------------------------------------- /help/C/figures/glabels-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-logo.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex1-1.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex1-2.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex1-3.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex1-4.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex2-1.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex2-2.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex2-3.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex2-4.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex3-1.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex3-2.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex3-3.png -------------------------------------------------------------------------------- /help/C/figures/merge-ex3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/merge-ex3-4.png -------------------------------------------------------------------------------- /help/C/figures/print-copies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/print-copies.png -------------------------------------------------------------------------------- /help/C/figures/print-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/print-merge.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex1-1.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex1-2.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex1-3.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex1-4.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex2-1.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex2-2.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex2-3.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex2-4.png -------------------------------------------------------------------------------- /help/cs/figures/merge-ex3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/merge-ex3-1.png -------------------------------------------------------------------------------- /help/cs/figures/print-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/print-merge.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex1-1.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex1-2.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex1-3.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex1-4.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex2-1.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex2-2.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex2-3.png -------------------------------------------------------------------------------- /help/de/figures/merge-ex2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/merge-ex2-4.png -------------------------------------------------------------------------------- /help/de/figures/print-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/print-merge.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex1-1.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex1-2.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex1-3.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex1-4.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex2-1.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex2-2.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex2-3.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex2-4.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex3-1.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex3-2.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex3-3.png -------------------------------------------------------------------------------- /help/fr/figures/merge-ex3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/merge-ex3-4.png -------------------------------------------------------------------------------- /help/fr/figures/print-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/print-merge.png -------------------------------------------------------------------------------- /src/cursors/cursor_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_barcode.png -------------------------------------------------------------------------------- /src/cursors/cursor_ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/src/cursors/cursor_ellipse.png -------------------------------------------------------------------------------- /data/pixmaps/ex-ellipse-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/ex-ellipse-size.png -------------------------------------------------------------------------------- /data/pixmaps/template-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/pixmaps/template-designer.png -------------------------------------------------------------------------------- /help/C/figures/layouts-cdlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/layouts-cdlabel.png -------------------------------------------------------------------------------- /help/cs/figures/print-copies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/print-copies.png -------------------------------------------------------------------------------- /help/de/figures/print-copies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/print-copies.png -------------------------------------------------------------------------------- /help/fr/figures/print-copies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/print-copies.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/glabels-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/apps/glabels-3.0.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/glabels-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/22x22/apps/glabels-3.0.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/glabels-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/apps/glabels-3.0.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/glabels-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/32x32/apps/glabels-3.0.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/glabels-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/48x48/apps/glabels-3.0.png -------------------------------------------------------------------------------- /help/C/figures/skip-fields-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/skip-fields-output.png -------------------------------------------------------------------------------- /help/cs/figures/skip-fields-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/skip-fields-output.png -------------------------------------------------------------------------------- /help/fr/figures/skip-fields-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/skip-fields-output.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-box.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-line.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-text.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-box.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-line.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-text.png -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in. 2 | 3 | SUBDIRS = \ 4 | libglabels \ 5 | libglbarcode 6 | -------------------------------------------------------------------------------- /help/C/figures/object-editor-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/object-editor-sidebar.png -------------------------------------------------------------------------------- /help/C/figures/skip-fields-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/skip-fields-screenshot.png -------------------------------------------------------------------------------- /help/cs/figures/object-editor-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/object-editor-sidebar.png -------------------------------------------------------------------------------- /help/de/figures/object-editor-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/object-editor-sidebar.png -------------------------------------------------------------------------------- /help/fr/figures/object-editor-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/object-editor-sidebar.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-arrow.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-barcode.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-ellipse.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-image.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-merge.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-pencil.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-arrow.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-barcode.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-ellipse.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-hchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-hchain.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-image.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-merge.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-pencil.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-vchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-vchain.png -------------------------------------------------------------------------------- /help/C/figures/glabels-template-cd-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-template-cd-label.png -------------------------------------------------------------------------------- /help/C/figures/glabels-template-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-template-layout.png -------------------------------------------------------------------------------- /help/cs/figures/skip-fields-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/cs/figures/skip-fields-screenshot.png -------------------------------------------------------------------------------- /help/fr/figures/skip-fields-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/skip-fields-screenshot.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-top.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-flip-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-flip-vert.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-order-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-order-top.png -------------------------------------------------------------------------------- /help/C/figures/glabels-template-rect-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-template-rect-label.png -------------------------------------------------------------------------------- /help/fr/figures/glabels-template-cd-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/glabels-template-cd-label.png -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | Jim Evins 2 | E-mail: evins snaught.com 3 | Userid: jimevins 4 | 5 | Mario Blättermann 6 | E-mail: mariobl gnome.org 7 | Userid: mariobl 8 | -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-bottom.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-left.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-right.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-bucket-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-bucket-fill.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-center-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-center-horiz.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-center-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-center-vert.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-flip-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-flip-horiz.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-order-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-order-bottom.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-rotate-left.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-rotate-right.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-bucket-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-bucket-fill.png -------------------------------------------------------------------------------- /help/C/figures/glabels-template-circle-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-template-circle-label.png -------------------------------------------------------------------------------- /help/C/figures/glabels-template-ellipse-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/glabels-template-ellipse-label.png -------------------------------------------------------------------------------- /help/fr/figures/glabels-template-circle-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/glabels-template-circle-label.png -------------------------------------------------------------------------------- /help/fr/figures/glabels-template-rect-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/glabels-template-rect-label.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-hcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-hcenter.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-align-vcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-align-vcenter.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/glabels-align-text-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/22x22/actions/glabels-align-text-top.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-align-text-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-align-text-top.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-hchain-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-hchain-broken.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-vchain-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-vchain-broken.png -------------------------------------------------------------------------------- /help/C/figures/introduction-glabels-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/C/figures/introduction-glabels-main-window.png -------------------------------------------------------------------------------- /help/fr/figures/glabels-template-ellipse-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/glabels-template-ellipse-label.png -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | The ChangeLog file is autogenerated when creating a distribution. 2 | 3 | If you are seeing this, use 'git log' to view the change history. 4 | 5 | -------------------------------------------------------------------------------- /data/icons/16x16/actions/glabels-object-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/16x16/actions/glabels-object-properties.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/glabels-align-text-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/22x22/actions/glabels-align-text-bottom.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/glabels-align-text-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/22x22/actions/glabels-align-text-middle.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-align-text-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-align-text-bottom.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-align-text-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-align-text-middle.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/glabels-object-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/24x24/actions/glabels-object-properties.png -------------------------------------------------------------------------------- /data/icons/48x48/mimetypes/application-x-glabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/data/icons/48x48/mimetypes/application-x-glabels.png -------------------------------------------------------------------------------- /help/de/figures/introduction-glabels-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/de/figures/introduction-glabels-main-window.png -------------------------------------------------------------------------------- /help/fr/figures/introduction-glabels-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-evins/glabels-gtk/HEAD/help/fr/figures/introduction-glabels-main-window.png -------------------------------------------------------------------------------- /data/man/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | man_MANS = glabels-3.1 glabels-3-batch.1 4 | 5 | EXTRA_DIST = $(man_MANS) 6 | -------------------------------------------------------------------------------- /src/marshal.list: -------------------------------------------------------------------------------- 1 | VOID:VOID 2 | VOID:INT 3 | VOID:INT,INT 4 | VOID:INT,UINT 5 | VOID:DOUBLE 6 | VOID:DOUBLE,DOUBLE 7 | VOID:OBJECT 8 | VOID:STRING 9 | VOID:UINT,BOOLEAN 10 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | SUBDIRS = \ 4 | appdata \ 5 | desktop \ 6 | icons \ 7 | man \ 8 | mime \ 9 | pixmaps \ 10 | schemas \ 11 | ui 12 | 13 | 14 | -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | # List of source files containing translatable strings that should be ignored. 2 | 3 | data/schemas/org.gnome.glabels-3.gschema.xml.in 4 | 5 | # Keep distcheck happy 6 | sub/data/schemas/org.gnome.glabels-3.gschema.xml.in 7 | -------------------------------------------------------------------------------- /data/icons/32x32/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | size = 32x32 3 | appiconsdir = $(datadir)/icons/hicolor/$(size)/apps 4 | 5 | appicons_DATA = \ 6 | apps/glabels-3.0.png 7 | 8 | noinst_DATA = 9 | 10 | EXTRA_DIST = $(appicons_DATA) \ 11 | $(noinst_DATA) 12 | -------------------------------------------------------------------------------- /data/mime/glabels-3.0.xml.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <_comment>gLabels Project File 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libglabels/libglabels-3.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: LIBGLABELS 7 | Description: GLabels Template Library 8 | Requires: glib-2.0 gobject-2.0 libxml-2.0 9 | Version: @VERSION@ 10 | Libs: -L${libdir} -lglabels-3.0 11 | Cflags: -I${includedir}/@LIBGLABELS_BRANCH@ 12 | 13 | -------------------------------------------------------------------------------- /data/desktop/glabels-3.0.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | _Name=gLabels Label Designer 3 3 | _Comment=Create labels, business cards and media covers 4 | _Keywords=label;card;print;office;barcode; 5 | Exec=glabels-3 %F 6 | Icon=glabels-3.0 7 | Terminal=false 8 | Type=Application 9 | Categories=Office;GTK; 10 | StartupNotify=true 11 | MimeType=application/x-glabels; 12 | -------------------------------------------------------------------------------- /data/mime/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | xml_in_files=$(GLABELS_BRANCH).xml.in 4 | xml_files = $(xml_in_files:.xml.in=.xml) 5 | @INTLTOOL_XML_RULE@ 6 | 7 | mimedir = $(datadir)/mime/packages 8 | mime_DATA = $(xml_files) 9 | 10 | EXTRA_DIST = \ 11 | $(xml_in_files) 12 | 13 | CLEANFILES = \ 14 | $(xml_files) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/libglabels.sgml: -------------------------------------------------------------------------------- 1 | 2 | libglabels 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /libglbarcode/libglbarcode-3.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: LIBGLBARCODE 7 | Description: GLabels Built-In Barcode Library 8 | Requires: glib-2.0 cairo pangocairo 9 | Version: @VERSION@ 10 | Libs: -L${libdir} -lglbarcode-3.0 11 | Libs.private: -lm 12 | Cflags: -I${includedir}/@LIBGLBARCODE_BRANCH@ 13 | 14 | -------------------------------------------------------------------------------- /data/appdata/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | @INTLTOOL_XML_RULE@ 4 | 5 | APPDATA_IN_FILES = glabels-3.appdata.xml.in 6 | APPDATA_FILES =$(APPDATA_IN_FILES:.appdata.xml.in=.appdata.xml) 7 | 8 | appdatadir = $(datadir)/appdata 9 | appdata_DATA = $(APPDATA_FILES) 10 | 11 | EXTRA_DIST = $(APPDATA_IN_FILES) 12 | 13 | CLEANFILES = $(APPDATA_FILES) 14 | 15 | -------------------------------------------------------------------------------- /data/desktop/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | @INTLTOOL_DESKTOP_RULE@ 4 | 5 | DESKTOP_IN_FILES = $(GLABELS_BRANCH).desktop.in 6 | DESKTOP_FILES =$(DESKTOP_IN_FILES:.desktop.in=.desktop) 7 | 8 | desktopdir = $(datadir)/applications 9 | desktop_DATA = $(DESKTOP_FILES) 10 | 11 | EXTRA_DIST = $(DESKTOP_IN_FILES) 12 | 13 | CLEANFILES = $(DESKTOP_FILES) 14 | 15 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # glabels translations 2 | # 3 | # please keep this list sorted alphabetically 4 | # 5 | ar 6 | bs 7 | ca 8 | ca@valencia 9 | cs 10 | da 11 | de 12 | el 13 | en_GB 14 | eo 15 | es 16 | fi 17 | fr 18 | gl 19 | hu 20 | id 21 | it 22 | ja 23 | ko 24 | lv 25 | nb 26 | nl 27 | oc 28 | pt 29 | pt_BR 30 | ro 31 | ru 32 | sk 33 | sl 34 | sr 35 | sr@latin 36 | sv 37 | tr 38 | zh_CN 39 | zh_HK 40 | zh_TW 41 | -------------------------------------------------------------------------------- /MESSAGE-OF-DOOM: -------------------------------------------------------------------------------- 1 | *** IMPORTANT *** 2 | 3 | This is an unstable (development) version of glabels. 4 | It is for testing purposes only. 5 | 6 | Please, DO NOT use it in a production environment. 7 | It will probably crash and you will lose your data. 8 | 9 | If you are looking for a stable release of glabels, it can be downloaded from: 10 | 11 | http://glabels.org/download 12 | 13 | *** END OF WARNING *** 14 | 15 | 16 | -------------------------------------------------------------------------------- /data/icons/48x48/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | size = 48x48 3 | appiconsdir = $(datadir)/icons/hicolor/$(size)/apps 4 | mimetypeiconsdir = $(datadir)/icons/hicolor/$(size)/mimetypes 5 | 6 | appicons_DATA = \ 7 | apps/glabels-3.0.png 8 | 9 | mimetypeicons_DATA = \ 10 | mimetypes/application-x-glabels.png 11 | 12 | noinst_DATA = 13 | 14 | EXTRA_DIST = $(appicons_DATA) \ 15 | $(mimetypeicons_DATA) \ 16 | $(noinst_DATA) 17 | -------------------------------------------------------------------------------- /data/icons/scalable/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | size = scalable 3 | appiconsdir = $(datadir)/icons/hicolor/$(size)/apps 4 | mimetypeiconsdir = $(datadir)/icons/hicolor/$(size)/mimetypes 5 | 6 | appicons_DATA = \ 7 | apps/glabels-3.0.svg 8 | 9 | mimetypeicons_DATA = \ 10 | mimetypes/application-x-glabels.svg 11 | 12 | noinst_DATA = 13 | 14 | EXTRA_DIST = $(appicons_DATA) \ 15 | $(mimetypeicons_DATA) \ 16 | $(noinst_DATA) 17 | -------------------------------------------------------------------------------- /src/pixmaps/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = \ 3 | collate.xpm \ 4 | nocollate.xpm \ 5 | checkerboard.xpm \ 6 | cursor_text.xbm \ 7 | cursor_text_mask.xbm \ 8 | cursor_box.xbm \ 9 | cursor_box_mask.xbm \ 10 | cursor_line.xbm \ 11 | cursor_line_mask.xbm \ 12 | cursor_ellipse.xbm \ 13 | cursor_ellipse_mask.xbm \ 14 | cursor_image.xbm \ 15 | cursor_image_mask.xbm \ 16 | cursor_barcode.xbm \ 17 | cursor_barcode_mask.xbm 18 | 19 | -------------------------------------------------------------------------------- /data/ui/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | builderdir = $(datadir)/$(GLABELS_BRANCH)/ui/ 4 | 5 | builder_DATA = \ 6 | property-bar.ui \ 7 | print-op-dialog-custom-widget.ui \ 8 | media-select.ui \ 9 | new-label-dialog.ui \ 10 | merge-properties-dialog.ui \ 11 | template-designer.ui \ 12 | prefs-dialog.ui \ 13 | object-editor.ui \ 14 | label-properties-dialog.ui 15 | 16 | EXTRA_DIST = $(builder_DATA) 17 | -------------------------------------------------------------------------------- /data/schemas/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | gsettings_files = \ 3 | org.gnome.glabels-3.gschema.xml.in 4 | 5 | gsettings_SCHEMAS = $(gsettings_files:.xml.in=.xml) 6 | 7 | @INTLTOOL_XML_NOMERGE_RULE@ 8 | @GSETTINGS_RULES@ 9 | 10 | 11 | EXTRA_DIST = \ 12 | $(gsettings_files) 13 | 14 | CLEANFILES = \ 15 | $(gsettings_SCHEMAS) 16 | 17 | DISTCLEANFILES = \ 18 | $(gsettings_files) \ 19 | $(gsettings_SCHEMAS) 20 | 21 | MAINTAINERCLEANFILES = \ 22 | $(DISTCLEANFILES) \ 23 | $(gsettings_SCHEMAS:.xml=.valid) 24 | -------------------------------------------------------------------------------- /data/pixmaps/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | glabels_pixmapsdir = $(datadir)/$(GLABELS_BRANCH)/pixmaps 4 | 5 | glabels_pixmaps_DATA = \ 6 | glabels-logo.png \ 7 | new-select.png \ 8 | new-rotate.png \ 9 | new-confirm.png \ 10 | template-designer.png \ 11 | ex-rect-size.png \ 12 | ex-ellipse-size.png \ 13 | ex-round-size.png \ 14 | ex-cd-size.png \ 15 | ex-1layout.png \ 16 | ex-2layouts.png 17 | 18 | EXTRA_DIST = $(glabels_pixmaps_DATA) 19 | -------------------------------------------------------------------------------- /data/icons/22x22/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | size = 22x22 3 | appiconsdir = $(datadir)/icons/hicolor/$(size)/apps 4 | actioniconsdir = $(datadir)/$(GLABELS_BRANCH)/icons/hicolor/$(size)/actions 5 | 6 | appicons_DATA = \ 7 | apps/glabels-3.0.png 8 | 9 | actionicons_DATA = \ 10 | actions/glabels-align-text-bottom.png \ 11 | actions/glabels-align-text-middle.png \ 12 | actions/glabels-align-text-top.png 13 | 14 | noinst_DATA = 15 | 16 | EXTRA_DIST = $(appicons_DATA) \ 17 | $(actionicons_DATA) \ 18 | $(noinst_DATA) 19 | -------------------------------------------------------------------------------- /data/icons/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable 3 | 4 | gtk_update_icon_cache = $(GTK_UPDATE_ICON_CACHE) -f -t $(datadir)/icons/hicolor 5 | 6 | install-data-hook: update-icon-cache 7 | uninstall-hook: update-icon-cache 8 | update-icon-cache: 9 | @-if test -z "$(DESTDIR)"; then \ 10 | echo "Updating Gtk icon cache."; \ 11 | $(gtk_update_icon_cache); \ 12 | else \ 13 | echo "*** Icon cache not updated. After (un)install, run this:"; \ 14 | echo "*** $(gtk_update_icon_cache)"; \ 15 | fi 16 | -------------------------------------------------------------------------------- /templates/mayspies-templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Run this to generate all the initial makefiles, etc. 3 | 4 | srcdir=`dirname $0` 5 | test -z "$srcdir" && srcdir=. 6 | 7 | PKG_NAME="glabels" 8 | 9 | (test -f $srcdir/configure.ac \ 10 | && test -f $srcdir/README \ 11 | && test -d $srcdir/src) || { 12 | echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" 13 | echo " top-level $PKG_NAME directory" 14 | exit 1 15 | } 16 | 17 | which gnome-autogen.sh || { 18 | echo "You need to install gnome-common from the GNOME CVS" 19 | exit 1 20 | } 21 | 22 | USE_GNOME2_MACROS=1 23 | USE_COMMON_DOC_BUILD=yes 24 | 25 | . gnome-autogen.sh 26 | 27 | -------------------------------------------------------------------------------- /docs/libglbarcode/tmpl/lgl-barcode-create.sgml: -------------------------------------------------------------------------------- 1 | 2 | Barcode Factory 3 | 4 | 5 | Basic end-user barcode creation API 6 | 7 | 8 | 9 | This section describes a simple API to select and create #glBarcode structures using a built-in 10 | barcode backend. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | @type: 30 | @text_flag: 31 | @checksum_flag: 32 | @w: 33 | @h: 34 | @data: 35 | @Returns: 36 | 37 | 38 | -------------------------------------------------------------------------------- /docs/libglbarcode/tmpl/lgl-barcode-render-to-cairo.sgml: -------------------------------------------------------------------------------- 1 | 2 | Cairo Renderer 3 | 4 | 5 | Render barcode to cairo context 6 | 7 | 8 | 9 | This section describes the cairo barcode renderer. 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | @bc: 29 | @cr: 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | @bc: 38 | @cr: 39 | 40 | 41 | -------------------------------------------------------------------------------- /help/C/merge-ex4.page: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | Create address labels from a vCard file. 11 | 12 | 13 | Jim Evins 14 | evins@snaught.com 15 | 16 | 17 | Mario Blättermann 18 | mario.blaettermann@gmail.com 19 | 20 | 21 |

Creative Commons Share Alike 3.0

22 |
23 |
24 | 25 | Example 4: Address Labels Using a vCard file 26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /src/cursors/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | CURSOR_IMAGES = \ 3 | cursor_barcode.png \ 4 | cursor_box.png \ 5 | cursor_ellipse.png \ 6 | cursor_image.png \ 7 | cursor_line.png \ 8 | cursor_text.png 9 | 10 | VARIABLES1 = \ 11 | cursor_barcode_pixdata $(srcdir)/cursor_barcode.png \ 12 | cursor_box_pixdata $(srcdir)/cursor_box.png \ 13 | cursor_ellipse_pixdata $(srcdir)/cursor_ellipse.png \ 14 | cursor_image_pixdata $(srcdir)/cursor_image.png \ 15 | cursor_line_pixdata $(srcdir)/cursor_line.png \ 16 | cursor_text_pixdata $(srcdir)/cursor_text.png 17 | 18 | noinst_DATA = cursor_pixdata.h 19 | CLEANFILES = $(noinst_DATA) 20 | 21 | cursor_pixdata.h: $(CURSOR_IMAGES) 22 | $(AM_V_GEN) $(GDK_PIXBUF_CSOURCE) \ 23 | --struct --build-list $(VARIABLES1) > $(srcdir)/cursor_pixdata.h || \ 24 | ( rm -f $(srcdir)/cursor_pixdata.h && false ) 25 | 26 | EXTRA_DIST = $(CURSOR_IMAGES) cursor_pixdata.h 27 | -------------------------------------------------------------------------------- /src/pixmaps/checkerboard.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * checkerboard_xpm[] = { 3 | "24 24 2 1", 4 | " c #CCCCCC", 5 | ". c #000000", 6 | ".. .. .. .. .. .. ", 7 | ".. .. .. .. .. .. ", 8 | " .. .. .. .. .. ..", 9 | " .. .. .. .. .. ..", 10 | ".. .. .. .. .. .. ", 11 | ".. .. .. .. .. .. ", 12 | " .. .. .. .. .. ..", 13 | " .. .. .. .. .. ..", 14 | ".. .. .. .. .. .. ", 15 | ".. .. .. .. .. .. ", 16 | " .. .. .. .. .. ..", 17 | " .. .. .. .. .. ..", 18 | ".. .. .. .. .. .. ", 19 | ".. .. .. .. .. .. ", 20 | " .. .. .. .. .. ..", 21 | " .. .. .. .. .. ..", 22 | ".. .. .. .. .. .. ", 23 | ".. .. .. .. .. .. ", 24 | " .. .. .. .. .. ..", 25 | " .. .. .. .. .. ..", 26 | ".. .. .. .. .. .. ", 27 | ".. .. .. .. .. .. ", 28 | " .. .. .. .. .. ..", 29 | " .. .. .. .. .. .."}; 30 | -------------------------------------------------------------------------------- /templates/categories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/libglbarcode/libglbarcode-3.0-docs.sgml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | ]> 8 | 9 | 10 | 11 | LibGlbarcode 3.0 Reference Manual 12 | 13 | 14 | 15 | LibGlbarcode Overview 16 | 17 | &libglbarcode-intro; 18 | 19 | 20 | 21 | 22 | API Reference 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/str.sgml: -------------------------------------------------------------------------------- 1 | 2 | String Utility Functions 3 | 4 | 5 | String utility functions provided by libglabels 6 | 7 | 8 | 9 | This section defines string utility functions used by libglabels and of 10 | possible use to a user of libglabels. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | @s1: 30 | @s2: 31 | @Returns: 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | @s1: 40 | @s2: 41 | @Returns: 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | @x: 50 | @Returns: 51 | 52 | 53 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/xml-vendor.sgml: -------------------------------------------------------------------------------- 1 | 2 | XML Vendor Functions 3 | 4 | 5 | Functions to parse glabels XML vendor descriptions 6 | 7 | 8 | 9 | This section describes several functions for parsing vendor XML description files. 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | @utf8_filename: 29 | @Returns: 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | @vendors_doc: 38 | @Returns: 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | @vendor_node: 47 | @Returns: 48 | 49 | 50 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/xml-paper.sgml: -------------------------------------------------------------------------------- 1 | 2 | XML Paper Functions 3 | 4 | 5 | Functions to parse glabels XML paper definition files 6 | 7 | 8 | 9 | This section describes a number of functions for parsing glabels 10 | XML paper definition files. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | @utf8_filename: 30 | @Returns: 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | @papers_doc: 39 | @Returns: 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | @paper_node: 48 | @Returns: 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_box.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_box_width 32 2 | #define cursor_box_height 32 3 | #define cursor_box_x_hot 7 4 | #define cursor_box_y_hot 7 5 | static unsigned char cursor_box_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 10 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x80, 0xff, 0x7f, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x80, 0x01, 0x60, 12 | 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 13 | 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 14 | 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 15 | 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0x01, 0x60, 0x00, 0x80, 0xff, 0x7f, 16 | 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_line.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_line_width 32 2 | #define cursor_line_height 32 3 | #define cursor_line_x_hot 7 4 | #define cursor_line_y_hot 7 5 | static unsigned char cursor_line_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x08, 10 | 0x80, 0x00, 0x00, 0x0c, 0x80, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x03, 11 | 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x60, 0x00, 12 | 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0c, 0x00, 13 | 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x80, 0x01, 0x00, 14 | 0x00, 0xc0, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 15 | 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_text.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_text_width 32 2 | #define cursor_text_height 32 3 | #define cursor_text_x_hot 7 4 | #define cursor_text_y_hot 7 5 | static unsigned char cursor_text_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 10 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0x01, 11 | 0x00, 0xc0, 0x9c, 0x01, 0x00, 0x40, 0x1c, 0x01, 0x00, 0x00, 0x1c, 0x00, 12 | 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, 13 | 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, 14 | 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x3e, 0x00, 15 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_image.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_image_width 32 2 | #define cursor_image_height 32 3 | #define cursor_image_x_hot 7 4 | #define cursor_image_y_hot 7 5 | static unsigned char cursor_image_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 10 | 0x80, 0xf0, 0xff, 0x7f, 0x80, 0x10, 0x00, 0x40, 0x00, 0x10, 0x00, 0x40, 11 | 0x00, 0x10, 0x00, 0x4c, 0x00, 0x10, 0x00, 0x52, 0x00, 0x10, 0x08, 0x4c, 12 | 0x00, 0x10, 0x14, 0x40, 0x00, 0x10, 0x22, 0x40, 0x00, 0x10, 0x41, 0x40, 13 | 0x00, 0x90, 0xc1, 0x40, 0x00, 0x10, 0x41, 0x40, 0x00, 0xf0, 0xc1, 0x7f, 14 | 0x00, 0x10, 0x41, 0x40, 0x00, 0x10, 0x41, 0x40, 0x00, 0x10, 0x41, 0x40, 15 | 0x00, 0x10, 0x7f, 0x40, 0x00, 0x10, 0x00, 0x40, 0x00, 0x10, 0x00, 0x40, 16 | 0x00, 0xf0, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_barcode.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_barcode_width 32 2 | #define cursor_barcode_height 32 3 | #define cursor_barcode_x_hot 7 4 | #define cursor_barcode_y_hot 7 5 | static unsigned char cursor_barcode_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 10 | 0x80, 0x00, 0x00, 0x00, 0x80, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 11 | 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 12 | 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 13 | 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 14 | 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 0x00, 0xa0, 0xad, 0x5a, 15 | 0x00, 0xa0, 0xad, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_ellipse.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_ellipse_width 32 2 | #define cursor_ellipse_height 32 3 | #define cursor_ellipse_x_hot 7 4 | #define cursor_ellipse_y_hot 7 5 | static unsigned char cursor_ellipse_bits[] = { 6 | 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 7 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 8 | 0x80, 0x00, 0x00, 0x00, 0xfe, 0x3f, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 9 | 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 10 | 0x80, 0x00, 0x7c, 0x00, 0x80, 0x00, 0xef, 0x01, 0x00, 0x80, 0x01, 0x03, 11 | 0x00, 0xc0, 0x00, 0x06, 0x00, 0x60, 0x00, 0x0c, 0x00, 0x20, 0x00, 0x08, 12 | 0x00, 0x30, 0x00, 0x18, 0x00, 0x30, 0x00, 0x18, 0x00, 0x10, 0x00, 0x10, 13 | 0x00, 0x30, 0x00, 0x18, 0x00, 0x30, 0x00, 0x18, 0x00, 0x20, 0x00, 0x08, 14 | 0x00, 0x60, 0x00, 0x0c, 0x00, 0xc0, 0x00, 0x06, 0x00, 0x80, 0x01, 0x03, 15 | 0x00, 0x00, 0xef, 0x01, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /templates/avery-other-templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_box_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_box_mask_width 32 2 | #define cursor_box_mask_height 32 3 | #define cursor_box_mask_x_hot 7 4 | #define cursor_box_mask_y_hot 7 5 | static unsigned char cursor_box_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 10 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0xc1, 0xff, 0xff, 11 | 0x00, 0xc0, 0xff, 0xff, 0x00, 0xc0, 0xff, 0xff, 0x00, 0xc0, 0xff, 0xff, 12 | 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 13 | 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 14 | 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0x03, 0xf0, 15 | 0x00, 0xc0, 0x03, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0xc0, 0xff, 0xff, 16 | 0x00, 0xc0, 0xff, 0xff, 0x00, 0xc0, 0xff, 0xff}; 17 | -------------------------------------------------------------------------------- /data/icons/24x24/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | size = 24x24 3 | appiconsdir = $(datadir)/icons/hicolor/$(size)/apps 4 | actioniconsdir = $(datadir)/$(GLABELS_BRANCH)/icons/hicolor/$(size)/actions 5 | 6 | appicons_DATA = \ 7 | apps/glabels-3.0.png 8 | 9 | actionicons_DATA = \ 10 | actions/glabels-align-text-bottom.png \ 11 | actions/glabels-align-text-middle.png \ 12 | actions/glabels-align-text-top.png \ 13 | actions/glabels-arrow.png \ 14 | actions/glabels-barcode.png \ 15 | actions/glabels-box.png \ 16 | actions/glabels-bucket-fill.png \ 17 | actions/glabels-ellipse.png \ 18 | actions/glabels-hchain-broken.png \ 19 | actions/glabels-hchain.png \ 20 | actions/glabels-image.png \ 21 | actions/glabels-line.png \ 22 | actions/glabels-merge.png \ 23 | actions/glabels-pencil.png \ 24 | actions/glabels-object-properties.png \ 25 | actions/glabels-text.png \ 26 | actions/glabels-vchain-broken.png \ 27 | actions/glabels-vchain.png 28 | 29 | noinst_DATA = 30 | 31 | EXTRA_DIST = $(appicons_DATA) \ 32 | $(actionicons_DATA) \ 33 | $(noinst_DATA) 34 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/vendor.sgml: -------------------------------------------------------------------------------- 1 | 2 | The lglVendor Structure 3 | 4 | 5 | Vendor definitions 6 | 7 | 8 | 9 | This section describes a structure for representing vendor data. 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | This structure defines a vendor. 26 | 27 | 28 | @name: Vendor name. (e.g. "Avery") 29 | @url: URL to vendor website 30 | 31 | 32 | 33 | 34 | 35 | 36 | @name: 37 | @Returns: 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | @orig: 46 | @Returns: 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | @vendor: 55 | 56 | 57 | -------------------------------------------------------------------------------- /docs/libglabels/tmpl/xml-category.sgml: -------------------------------------------------------------------------------- 1 | 2 | XML Category Functions 3 | 4 | 5 | Functions to parse glabels XML category definition files 6 | 7 | 8 | 9 | This section describes a number of functions for parsing glabels 10 | XML category definition files. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | @utf8_filename: 30 | @Returns: 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | @categories_doc: 39 | @Returns: 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | @category_node: 48 | @Returns: 49 | 50 | 51 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_line_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_line_mask_width 32 2 | #define cursor_line_mask_height 32 3 | #define cursor_line_mask_x_hot 7 4 | #define cursor_line_mask_y_hot 7 5 | static unsigned char cursor_line_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x08, 0xc0, 0x01, 0x00, 0x1c, 10 | 0xc0, 0x01, 0x00, 0x1e, 0xc0, 0x01, 0x00, 0x0f, 0xc0, 0x01, 0x80, 0x07, 11 | 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00, 0xf0, 0x00, 12 | 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x1e, 0x00, 13 | 0x00, 0x00, 0x0f, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00, 0xc0, 0x03, 0x00, 14 | 0x00, 0xe0, 0x01, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 15 | 0x00, 0x3c, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_text_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_text_mask_width 32 2 | #define cursor_text_mask_height 32 3 | #define cursor_text_mask_x_hot 7 4 | #define cursor_text_mask_y_hot 7 5 | static unsigned char cursor_text_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 10 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0xe1, 0xff, 0x03, 0xc0, 0xe1, 0xff, 0x03, 11 | 0x00, 0xe0, 0xff, 0x03, 0x00, 0xe0, 0xbe, 0x03, 0x00, 0x60, 0x3e, 0x03, 12 | 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3e, 0x00, 13 | 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3e, 0x00, 14 | 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x7f, 0x00, 15 | 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_image_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_image_mask_width 32 2 | #define cursor_image_mask_height 32 3 | #define cursor_image_mask_x_hot 7 4 | #define cursor_image_mask_y_hot 7 5 | static unsigned char cursor_image_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0xf9, 0xff, 0xff, 10 | 0xc0, 0xf9, 0xff, 0xff, 0xc0, 0xf9, 0xff, 0xff, 0xc0, 0xf9, 0xff, 0xff, 11 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 12 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 13 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 14 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 15 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff, 16 | 0x00, 0xf8, 0xff, 0xff, 0x00, 0xf8, 0xff, 0xff}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_barcode_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_barcode_mask_width 32 2 | #define cursor_barcode_mask_height 32 3 | #define cursor_barcode_mask_x_hot 7 4 | #define cursor_barcode_mask_y_hot 7 5 | static unsigned char cursor_barcode_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 10 | 0xc0, 0xf1, 0xff, 0xff, 0xc0, 0xf1, 0xff, 0xff, 0xc0, 0xf1, 0xff, 0xff, 11 | 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 12 | 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 13 | 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 14 | 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 15 | 0x00, 0xf0, 0xff, 0xff, 0x00, 0xf0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /src/pixmaps/cursor_ellipse_mask.xbm: -------------------------------------------------------------------------------- 1 | #define cursor_ellipse_mask_width 32 2 | #define cursor_ellipse_mask_height 32 3 | #define cursor_ellipse_mask_x_hot 7 4 | #define cursor_ellipse_mask_y_hot 7 5 | static unsigned char cursor_ellipse_mask_bits[] = { 6 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 7 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 8 | 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 9 | 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0xfe, 0x00, 10 | 0xc0, 0x81, 0xff, 0x03, 0xc0, 0xc1, 0xff, 0x07, 0xc0, 0xe1, 0xff, 0x0f, 11 | 0x00, 0xf0, 0x83, 0x1f, 0x00, 0xf0, 0x01, 0x1f, 0x00, 0xf8, 0x00, 0x3e, 12 | 0x00, 0x78, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x3c, 13 | 0x00, 0x78, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x3c, 0x00, 0xf8, 0x00, 0x3e, 14 | 0x00, 0xf0, 0x01, 0x1f, 0x00, 0xf0, 0x83, 0x1f, 0x00, 0xe0, 0xff, 0x0f, 15 | 0x00, 0xc0, 0xff, 0x07, 0x00, 0x80, 0xff, 0x03, 0x00, 0x00, 0xfe, 0x00, 16 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 17 | -------------------------------------------------------------------------------- /templates/canon-other-templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 |