]> Pileus Git - ~andy/gtk/blob - gtk/gtkprinteroption.h
9138fd6c4986e4beb9174aff95a444bf4c62b5cc
[~andy/gtk] / gtk / gtkprinteroption.h
1 /* GTK - The GIMP Toolkit
2  * gtkprinteroption.h: printer option
3  * Copyright (C) 2006, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GTK_PRINTER_OPTION_H__
22 #define __GTK_PRINTER_OPTION_H__
23
24 /* This is a "semi-private" header; it is meant only for
25  * alternate GtkPrintDialog backend modules; no stability guarantees 
26  * are made at this point
27  */
28 #ifndef GTK_PRINT_BACKEND_ENABLE_UNSUPPORTED
29 #error "GtkPrintBackend is not supported API for general use"
30 #endif
31
32 #include <glib-object.h>
33
34 G_BEGIN_DECLS
35
36 #define GTK_TYPE_PRINTER_OPTION             (gtk_printer_option_get_type ())
37 #define GTK_PRINTER_OPTION(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINTER_OPTION, GtkPrinterOption))
38 #define GTK_IS_PRINTER_OPTION(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINTER_OPTION))
39
40 typedef struct _GtkPrinterOption       GtkPrinterOption;
41 typedef struct _GtkPrinterOptionClass  GtkPrinterOptionClass;
42
43 #define GTK_PRINTER_OPTION_GROUP_IMAGE_QUALITY "ImageQuality"
44 #define GTK_PRINTER_OPTION_GROUP_FINISHING "Finishing"
45
46 typedef enum {
47   GTK_PRINTER_OPTION_TYPE_BOOLEAN,
48   GTK_PRINTER_OPTION_TYPE_PICKONE,
49   GTK_PRINTER_OPTION_TYPE_PICKONE_PASSWORD,
50   GTK_PRINTER_OPTION_TYPE_PICKONE_PASSCODE,
51   GTK_PRINTER_OPTION_TYPE_PICKONE_REAL,
52   GTK_PRINTER_OPTION_TYPE_PICKONE_INT,
53   GTK_PRINTER_OPTION_TYPE_PICKONE_STRING,
54   GTK_PRINTER_OPTION_TYPE_ALTERNATIVE,
55   GTK_PRINTER_OPTION_TYPE_STRING,
56   GTK_PRINTER_OPTION_TYPE_FILESAVE,
57   GTK_PRINTER_OPTION_TYPE_INFO
58 } GtkPrinterOptionType;
59
60 struct _GtkPrinterOption
61 {
62   GObject parent_instance;
63
64   char *name;
65   char *display_text;
66   GtkPrinterOptionType type;
67
68   char *value;
69   
70   int num_choices;
71   char **choices;
72   char **choices_display;
73   
74   gboolean activates_default;
75
76   gboolean has_conflict;
77   char *group;
78 };
79
80 struct _GtkPrinterOptionClass
81 {
82   GObjectClass parent_class;
83
84   void (*changed) (GtkPrinterOption *option);
85
86   /* Padding for future expansion */
87   void (*_gtk_reserved1) (void);
88   void (*_gtk_reserved2) (void);
89   void (*_gtk_reserved3) (void);
90   void (*_gtk_reserved4) (void);
91 };
92
93 GType   gtk_printer_option_get_type       (void) G_GNUC_CONST;
94
95 GtkPrinterOption *gtk_printer_option_new                    (const char           *name,
96                                                              const char           *display_text,
97                                                              GtkPrinterOptionType  type);
98 void              gtk_printer_option_set                    (GtkPrinterOption     *option,
99                                                              const char           *value);
100 void              gtk_printer_option_set_has_conflict       (GtkPrinterOption     *option,
101                                                              gboolean              has_conflict);
102 void              gtk_printer_option_clear_has_conflict     (GtkPrinterOption     *option);
103 void              gtk_printer_option_set_boolean            (GtkPrinterOption     *option,
104                                                              gboolean              value);
105 void              gtk_printer_option_allocate_choices       (GtkPrinterOption     *option,
106                                                              int                   num);
107 void              gtk_printer_option_choices_from_array     (GtkPrinterOption     *option,
108                                                              int                   num_choices,
109                                                              char                 *choices[],
110                                                              char                 *choices_display[]);
111 gboolean          gtk_printer_option_has_choice             (GtkPrinterOption     *option,
112                                                             const char           *choice);
113 void              gtk_printer_option_set_activates_default (GtkPrinterOption     *option,
114                                                             gboolean              activates);
115 gboolean          gtk_printer_option_get_activates_default (GtkPrinterOption     *option);
116
117
118 G_END_DECLS
119
120 #endif /* __GTK_PRINTER_OPTION_H__ */
121
122