]> git.sur5r.net Git - glabels/blobdiff - glabels1/src/bc.h
Organized master branch to be top-level directory for glabels, instead of
[glabels] / glabels1 / src / bc.h
diff --git a/glabels1/src/bc.h b/glabels1/src/bc.h
deleted file mode 100644 (file)
index 22441f7..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- *  (GLABELS) Label and Business Card Creation program for GNOME
- *
- *  bc.h:  GLabels barcode module header file
- *
- *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
- */
-#ifndef __BC_H__
-#define __BC_H__
-
-#include <glib.h>
-
-typedef enum {
-       GL_BARCODE_STYLE_POSTNET,
-       GL_BARCODE_STYLE_EAN,
-       GL_BARCODE_STYLE_UPC,
-       GL_BARCODE_STYLE_ISBN,
-       GL_BARCODE_STYLE_39,
-       GL_BARCODE_STYLE_128,
-       GL_BARCODE_STYLE_128C,
-       GL_BARCODE_STYLE_128B,
-       GL_BARCODE_STYLE_I25,
-       GL_BARCODE_STYLE_128RAW,
-       GL_BARCODE_STYLE_CBR,
-       GL_BARCODE_STYLE_MSI,
-       GL_BARCODE_STYLE_PLS,
-} glBarcodeStyle;
-
-typedef struct {
-       gdouble x, y, length, width;
-} glBarcodeLine;
-
-typedef struct {
-       gdouble x, y, fsize;
-       gchar c;
-} glBarcodeChar;
-
-typedef struct {
-       gdouble width, height;
-       GList *lines;           /* List of glBarcodeLine */
-       GList *chars;           /* List of glBarcodeChar */
-} glBarcode;
-
-#define GL_BARCODE_FONT_FAMILY      "Helvetica"
-#define GL_BARCODE_FONT_WEIGHT      GNOME_FONT_BOOK
-
-extern glBarcode *gl_barcode (glBarcodeStyle style,
-                             gboolean text_flag,
-                             gdouble scale,
-                             gchar * digits);
-
-extern void
- gl_barcode_free (glBarcode ** bc);
-
-extern gchar *gl_barcode_default_digits (glBarcodeStyle style);
-extern const gchar *gl_barcode_style_to_text (glBarcodeStyle style);
-extern glBarcodeStyle gl_barcode_text_to_style (const gchar * text);
-
-#endif