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
|
/*
* This file is part of the KDE libraries
* Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#ifndef KMJOB_H
#define KMJOB_H
#if !defined( _TDEPRINT_COMPILE ) && defined( __GNUC__ )
#warning internal header, do not use except if you are a TDEPrint developer
#endif
#include <tqstring.h>
#include <tqvaluevector.h>
#include <tdeprint/kmobject.h>
#include <tdelibs_export.h>
/**
* @internal
* This class is internal to TDEPrint and is not intended to be
* used outside it. Please do not make use of this header, except
* if you're a TDEPrint developer. The API might change in the
* future and binary compatibility might be broken.
*/
class TDEPRINT_EXPORT KMJob : public KMObject
{
public:
enum JobAction {
Remove = 0x01,
Move = 0x02,
Hold = 0x04,
Resume = 0x08,
Restart = 0x10,
ShowCompleted = 0x20,
All = 0xFF
};
enum JobState {
Printing = 1,
Queued = 2,
Held = 3,
Error = 4,
Cancelled = 5,
Aborted = 6,
Completed = 7,
Unknown = 8
};
enum JobType {
System = 0,
Threaded = 1
};
KMJob();
KMJob(const KMJob& j);
KMJob& operator=(const KMJob& j);
void copy(const KMJob& j);
TQString pixmap();
TQString stateString();
bool isCompleted() const { return (m_state >= Cancelled && m_state <= Completed); }
bool isActive() const { return !isCompleted(); }
// inline access functions
int id() const { return m_ID; }
void setId(int id) { m_ID = id; }
const TQString& name() const { return m_name; }
void setName(const TQString& s) { m_name = s; }
const TQString& printer() const { return m_printer; }
void setPrinter(const TQString& s) { m_printer = s; }
const TQString& owner() const { return m_owner; }
void setOwner(const TQString& s) { m_owner = s; }
int state() const { return m_state; }
void setState(int s) { m_state = s; }
int size() const { return m_size; }
void setSize(int s) { m_size = s; }
const TQString& uri() const { return m_uri; }
void setUri(const TQString& s) { m_uri = s; }
int type() const { return m_type; }
void setType(int t) { m_type = t; }
int pages() const { return m_pages; }
void setPages(int p) { m_pages = p; };
int processedPages() const { return m_processedpages; }
void setProcessedPages(int p) { m_processedpages = p; }
int processedSize() const { return m_processedsize; }
void setProcessedSize(int s) { m_processedsize = s; }
bool isRemote() const { return m_remote; }
void setRemote(bool on) { m_remote = on; }
TQString attribute(int i) const { return m_attributes[i]; }
void setAttribute(int i, const TQString& att) { m_attributes[i] = att; }
int attributeCount() const { return m_attributes.size(); }
void setAttributeCount(int c) { m_attributes.resize(c); }
protected:
void init();
protected:
// normal members
int m_ID;
TQString m_name;
TQString m_printer;
TQString m_owner;
int m_state;
int m_size;
int m_type;
int m_pages;
int m_processedsize;
int m_processedpages;
bool m_remote;
// internal members
TQString m_uri;
TQValueVector<TQString> m_attributes;
};
#endif
|