summaryrefslogtreecommitdiff
path: root/glabels1/src/prop_bc_style.h
diff options
context:
space:
mode:
Diffstat (limited to 'glabels1/src/prop_bc_style.h')
-rw-r--r--glabels1/src/prop_bc_style.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/glabels1/src/prop_bc_style.h b/glabels1/src/prop_bc_style.h
deleted file mode 100644
index 13065e4..0000000
--- a/glabels1/src/prop_bc_style.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * (GLABELS) Label and Business Card Creation program for GNOME
- *
- * prop_bc_style.h: barcode style selection widget 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 __PROP_BC_STYLE_H__
-#define __PROP_BC_STYLE_H__
-
-#include <gnome.h>
-#include "bc.h"
-
-#define GL_TYPE_PROP_BC_STYLE (gl_prop_bc_style_get_type ())
-#define GL_PROP_BC_STYLE(obj) \
- (GTK_CHECK_CAST((obj), GL_TYPE_PROP_BC_STYLE, glPropBCStyle ))
-#define GL_PROP_BC_STYLE_CLASS(klass) \
- (GTK_CHECK_CLASS_CAST ((klass), GL_TYPE_PROP_BC_STYLE, glPropBCStyleClass))
-#define GL_IS_PROP_BC_STYLE(obj) \
- (GTK_CHECK_TYPE ((obj), GL_TYPE_PROP_BC_STYLE))
-#define GL_IS_PROP_BC_STYLE_CLASS(klass) \
- (GTK_CHECK_CLASS_TYPE ((klass), GL_TYPE_PROP_BC_STYLE))
-
-typedef struct _glPropBCStyle glPropBCStyle;
-typedef struct _glPropBCStyleClass glPropBCStyleClass;
-
-struct _glPropBCStyle {
- GtkVBox parent_widget;
-
- GtkWidget *postnet_radio;
- GtkWidget *ean_radio;
- GtkWidget *upc_radio;
- GtkWidget *isbn_radio;
- GtkWidget *code39_radio;
- GtkWidget *code128_radio;
- GtkWidget *code128c_radio;
- GtkWidget *code128b_radio;
- GtkWidget *i25_radio;
- GtkWidget *cbr_radio;
- GtkWidget *msi_radio;
- GtkWidget *pls_radio;
-
- GtkWidget *text_check;
-};
-
-struct _glPropBCStyleClass {
- GtkVBoxClass parent_class;
-
- void (*changed) (glPropBCStyle * prop, gpointer user_data);
-};
-
-extern guint gl_prop_bc_style_get_type (void);
-
-extern GtkWidget *gl_prop_bc_style_new (gchar * label);
-
-extern void gl_prop_bc_style_get_params (glPropBCStyle * prop_style,
- glBarcodeStyle * style,
- gboolean * text_flag);
-
-extern void gl_prop_bc_style_set_params (glPropBCStyle * prop_style,
- glBarcodeStyle style,
- gboolean text_flag);
-
-#endif