summaryrefslogtreecommitdiff
path: root/liba2ps/printers.h
diff options
context:
space:
mode:
Diffstat (limited to 'liba2ps/printers.h')
-rw-r--r--liba2ps/printers.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/liba2ps/printers.h b/liba2ps/printers.h
new file mode 100644
index 0000000..93d72fe
--- /dev/null
+++ b/liba2ps/printers.h
@@ -0,0 +1,96 @@
+/* printers.h - information about the printers (named outputs)
+ Copyright 1988-2017 Free Software Foundation, Inc.
+
+ 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 3, 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., 51 Franklin Street - Fifth Floor, Boston, MA
+ 02110-1301, USA. */
+
+#ifndef PRINTERS_H_
+#define PRINTERS_H_
+#include "a2ps.h"
+#include "common.h"
+
+/*
+
+ The purpose of this file is to keep the information we have on the
+ printers. The central hash table gets its info from the reading of
+ the configuration files (config.h mainly). And its main results is
+ to open the output stream, either on a file or a pipe.
+
+*/
+
+/*
+ * The whole printers world
+ * (There defs, the PPD handling etc)
+ */
+struct a2ps_job;
+struct a2ps_printers_s;
+
+/* Listing printers and PPD. */
+void a2ps_printers_list_short (struct a2ps_job * job, FILE * stream);
+void a2ps_printers_list_long (struct a2ps_job * job, FILE * stream);
+void a2ps_ppd_list_short (struct a2ps_job * job, FILE * stream);
+void a2ps_ppd_list_long (struct a2ps_job * job, FILE * stream);
+/*
+ * Output streams
+ */
+void a2ps_open_output_stream (struct a2ps_job * job);
+void a2ps_close_output_stream (struct a2ps_job * job);
+
+char *a2ps_flag_destination_to_string (struct a2ps_job * job);
+char *a2ps_destination_to_string (struct a2ps_job * job);
+
+/* Create the mem of the printers module */
+struct a2ps_printers_s *a2ps_printers_new
+ (struct a2ps_common_s * common);
+
+/* Finalize the printers module */
+void a2ps_printers_finalize (struct a2ps_printers_s * printers);
+
+/* Accessing some of the fields */
+const char * a2ps_printers_default_ppdkey_get
+ (struct a2ps_printers_s * printers);
+
+void a2ps_printers_default_ppdkey_set
+ (struct a2ps_printers_s * printers,
+ const char * key);
+
+const char * a2ps_printers_request_ppdkey_get
+ (struct a2ps_printers_s * printers);
+
+void a2ps_printers_request_ppdkey_set
+ (struct a2ps_printers_s * printers,
+ const char * key);
+
+bool a2ps_printers_add
+ (struct a2ps_printers_s * printers,
+ const char * key, char * definition);
+
+int a2ps_printers_font_known_p
+ (struct a2ps_printers_s * printers,
+ const char * name);
+
+
+/*
+ * Outputs
+ */
+void a2ps_printers_flag_output_set
+ (struct a2ps_printers_s * printers,
+ const char * output_name, bool is_printer);
+const char * a2ps_printers_flag_output_name_get
+ (struct a2ps_printers_s * printers);
+bool a2ps_printers_flag_output_is_printer_get
+ (struct a2ps_printers_s * printers);
+
+#endif /* !defined (PRINTERS_H_) */