3 * Copyright (C) 2001-2009 Jim Evins <evins@snaught.com>.
5 * This file is part of gLabels.
7 * gLabels is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * gLabels is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with gLabels. If not, see <http://www.gnu.org/licenses/>.
23 #include <glib/gi18n.h>
27 #include <libglabels.h>
28 #include "merge-init.h"
29 #include "template-history.h"
30 #include "font-history.h"
31 #include "xml-label.h"
34 #include "file-util.h"
38 /*============================================*/
40 /*============================================*/
41 static gchar *output = "output.pdf";
42 static gint n_copies = 1;
43 static gint n_sheets = 1;
44 static gint first = 1;
45 static gboolean outline_flag = FALSE;
46 static gboolean reverse_flag = FALSE;
47 static gboolean crop_marks_flag = FALSE;
48 static gchar *input = NULL;
49 static gchar **remaining_args = NULL;
51 static GOptionEntry option_entries[] = {
52 {"output", 'o', 0, G_OPTION_ARG_STRING, &output,
53 N_("set output filename (default=\"output.pdf\")"), N_("filename")},
54 {"sheets", 's', 0, G_OPTION_ARG_INT, &n_sheets,
55 N_("number of sheets (default=1)"), N_("sheets")},
56 {"copies", 'c', 0, G_OPTION_ARG_INT, &n_copies,
57 N_("number of copies (default=1)"), N_("copies")},
58 {"first", 'f', 0, G_OPTION_ARG_INT, &first,
59 N_("first label on first sheet (default=1)"), N_("first")},
60 {"outline", 'l', 0, G_OPTION_ARG_NONE, &outline_flag,
61 N_("print outlines (to test printer alignment)"), NULL},
62 {"reverse", 'r', 0, G_OPTION_ARG_NONE, &reverse_flag,
63 N_("print in reverse (i.e. a mirror image)"), NULL},
64 {"cropmarks", 'C', 0, G_OPTION_ARG_NONE, &crop_marks_flag,
65 N_("print crop marks"), NULL},
66 {"input", 'i', 0, G_OPTION_ARG_STRING, &input,
67 N_("input file for merging"), N_("filename")},
68 { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY,
69 &remaining_args, NULL, N_("[FILE...]") },
75 /*****************************************************************************/
77 /*****************************************************************************/
79 main (int argc, char **argv)
81 GOptionContext *option_context;
82 GList *p, *file_list = NULL;
84 glLabel *label = NULL;
85 glMerge *merge = NULL;
86 const lglTemplate *template;
87 lglTemplateFrame *frame;
88 glXMLLabelStatus status;
93 bindtextdomain (GETTEXT_PACKAGE, GLABELS_LOCALE_DIR);
94 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
95 textdomain (GETTEXT_PACKAGE);
97 option_context = g_option_context_new (NULL);
98 g_option_context_set_summary (option_context,
99 _("Print files created with gLabels."));
100 g_option_context_add_main_entries (option_context, option_entries, GETTEXT_PACKAGE);
103 /* Initialize minimal gnome program */
104 gtk_init_check (&argc, &argv);
105 if (!g_option_context_parse (option_context, &argc, &argv, &error))
107 g_print(_("%s\nRun '%s --help' to see a full list of available command line options.\n"),
108 error->message, argv[0]);
109 g_error_free (error);
114 /* create file list */
115 if (remaining_args != NULL) {
118 num_args = g_strv_length (remaining_args);
119 for (i = 0; i < num_args; ++i) {
120 utf8_filename = g_filename_to_utf8 (remaining_args[i], -1, NULL, NULL, NULL);
122 file_list = g_list_append (file_list, utf8_filename);
124 g_strfreev (remaining_args);
125 remaining_args = NULL;
128 /* initialize components */
133 gl_template_history_init ();
134 gl_font_history_init ();
136 /* now print the files */
137 for (p = file_list; p; p = p->next) {
138 g_print ("LABEL FILE = %s\n", (gchar *) p->data);
139 label = gl_xml_label_open (p->data, &status);
142 if ( status == XML_LABEL_OK ) {
144 merge = gl_label_get_merge (label);
147 gl_merge_set_src(merge, input);
148 gl_label_set_merge(label, merge, FALSE);
151 _("cannot perform document merge with glabels file %s\n"),
155 abs_fn = gl_file_util_make_absolute ( output );
156 template = gl_label_get_template (label);
157 frame = (lglTemplateFrame *)template->frames->data;
159 print_op = gl_print_op_new (label);
160 gl_print_op_set_filename (print_op, abs_fn);
161 gl_print_op_set_n_copies (print_op, n_copies);
162 gl_print_op_set_first (print_op, first);
163 gl_print_op_set_outline_flag (print_op, outline_flag);
164 gl_print_op_set_reverse_flag (print_op, reverse_flag);
165 gl_print_op_set_crop_marks_flag (print_op, crop_marks_flag);
168 gl_print_op_set_n_sheets (print_op,
169 ceil ((double)(first-1 + n_copies * gl_merge_get_record_count(merge))
170 / lgl_template_frame_get_n_labels (frame)));
174 gl_print_op_set_n_sheets (print_op, n_sheets);
175 gl_print_op_set_last (print_op,
176 lgl_template_frame_get_n_labels (frame));
178 gtk_print_operation_run (GTK_PRINT_OPERATION (print_op),
179 GTK_PRINT_OPERATION_ACTION_EXPORT,
183 g_object_unref (label);
186 fprintf ( stderr, _("cannot open glabels file %s\n"),
191 g_list_free (file_list);
200 * Local Variables: -- emacs
202 * c-basic-offset: 8 -- emacs
203 * tab-width: 8 -- emacs
204 * indent-tabs-mode: nil -- emacs