Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtprintinfo / objects / PrintObj / Queue.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: Queue.h /main/3 1995/11/06 09:47:44 rswiston $ */
24 /*                                                                      *
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30
31 #ifndef QUEUE_H
32 #define QUEUE_H
33
34 #include "BaseObj.h"
35 #include "dtprintinfomsg.h"
36
37 // Object Class Name
38 extern const char *QUEUE;
39
40 // Actions
41 extern const char *START_QUEUE;
42 extern const char *STOP_QUEUE;
43 #ifndef aix
44 extern const char *START_PRINTING;
45 extern const char *STOP_PRINTING;
46 #endif
47
48 // Attributes
49 extern const char *ICON_NAME;
50 extern const char *PRINTER_QUEUE;
51 extern const char *QUEUE_DEVICE;
52
53 // Status Commands
54 extern const char *GET_QUEUE_STATUS;
55 extern const char *GET_DEVICE_STATUS;
56
57 class Queue : public BaseObj {
58
59    friend int Start(BaseObj *, char **output, BaseObj *requestor);
60    friend int Stop(BaseObj *, char **output, BaseObj *requestor);
61 #ifndef aix
62    friend int StartPrint(BaseObj *, char **output, BaseObj *requestor);
63    friend int StopPrint(BaseObj *, char **output, BaseObj *requestor);
64 #endif
65
66  protected:
67
68    static int Start(BaseObj *, char **output, BaseObj *requestor);
69    static int Stop(BaseObj *, char **output, BaseObj *requestor);
70 #ifndef aix
71    static int StartPrint(BaseObj *, char **output, BaseObj *requestor);
72    static int StopPrint(BaseObj *, char **output, BaseObj *requestor);
73 #endif
74
75    boolean _loaded_attributes;
76
77    void InitChildren();
78    void LoadAttributes(int numAttributes, Attribute **attributes);
79    void ParseOutput(char *, int);
80
81    void ProcessJobs(char *jobs = NULL);
82
83    boolean is_remote;
84    boolean remote_up;
85 #ifdef aix
86    char **local_devices;
87    int n_devices;
88 #endif
89    char *remote_server;
90    char *remote_printer;
91
92  public:
93
94    Queue(BaseObj *parent, char *name);
95    virtual ~Queue();
96
97    const char *Server();
98    const char *RemotePrinter();
99 #ifdef aix
100    char *Device(int index = 0);
101    int NumberDevices();
102 #endif
103    boolean IsRemote();
104    boolean RemoteUp() { return remote_up; }
105    void ParseRemoteStatus(char *output);
106
107    virtual const char *const ObjectClassName() { return QUEUE; }
108
109 };
110
111 #endif // QUEUE_H