1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
* vim: set et ts=8 sw=8:
*
* Copyright (C) 2008 Novell, Inc.
*
* Authors: Vincent Untz
*
* 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.
*
* The code is originally based on gnome-clock-applet-mechanism.h, which
* is under the same license and with the following copyright:
*
* Copyright (C) 2007 David Zeuthen <david@fubar.dk>
*
*/
#ifndef CPH_MECHANISM_H
#define CPH_MECHANISM_H
#include <glib-object.h>
#include <dbus/dbus-glib.h>
G_BEGIN_DECLS
#define CPH_TYPE_MECHANISM (cph_mechanism_get_type ())
#define CPH_MECHANISM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CPH_TYPE_MECHANISM, CphMechanism))
#define CPH_MECHANISM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CPH_TYPE_MECHANISM, CphMechanismClass))
#define CPH_IS_MECHANISM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CPH_TYPE_MECHANISM))
#define CPH_IS_MECHANISM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CPH_TYPE_MECHANISM))
#define CPH_MECHANISM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CPH_TYPE_MECHANISM, CphMechanismClass))
typedef struct CphMechanismPrivate CphMechanismPrivate;
typedef struct
{
GObject parent;
CphMechanismPrivate *priv;
} CphMechanism;
typedef struct
{
GObjectClass parent_class;
} CphMechanismClass;
typedef enum
{
CPH_MECHANISM_ERROR_GENERAL,
CPH_MECHANISM_ERROR_NOT_PRIVILEGED,
CPH_MECHANISM_NUM_ERRORS
} CphMechanismError;
#define CPH_MECHANISM_ERROR cph_mechanism_error_quark ()
GType cph_mechanism_error_get_type (void);
#define CPH_MECHANISM_TYPE_ERROR (cph_mechanism_error_get_type ())
GQuark cph_mechanism_error_quark (void);
GType cph_mechanism_get_type (void);
CphMechanism *cph_mechanism_new (void);
/* exported methods */
gboolean
cph_mechanism_printer_add (CphMechanism *mechanism,
const char *name,
const char *uri,
const char *ppd,
const char *info,
const char *location,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_add_with_ppd_file (CphMechanism *mechanism,
const char *name,
const char *uri,
const char *ppdfile,
const char *info,
const char *location,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_device (CphMechanism *mechanism,
const char *name,
const char *device,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_info (CphMechanism *mechanism,
const char *name,
const char *info,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_location (CphMechanism *mechanism,
const char *name,
const char *location,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_shared (CphMechanism *mechanism,
const char *name,
gboolean shared,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_job_sheets (CphMechanism *mechanism,
const char *name,
const char *start,
const char *end,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_error_policy (CphMechanism *mechanism,
const char *name,
const char *policy,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_op_policy (CphMechanism *mechanism,
const char *name,
const char *policy,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_add_option_default (CphMechanism *mechanism,
const char *name,
const char *option,
const char **values,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_delete_option_default (CphMechanism *mechanism,
const char *name,
const char *option,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_delete (CphMechanism *mechanism,
const char *name,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_default (CphMechanism *mechanism,
const char *name,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_enabled (CphMechanism *mechanism,
const char *name,
gboolean enabled,
DBusGMethodInvocation *context);
gboolean
cph_mechanism_printer_set_accept_jobs (CphMechanism *mechanism,
const char *name,
gboolean enabled,
const char *reason,
DBusGMethodInvocation *context);
G_END_DECLS
#endif /* CPH_MECHANISM_H */
|