diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kdeprint/kmjob.h | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/kmjob.h')
-rw-r--r-- | kdeprint/kmjob.h | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/kdeprint/kmjob.h b/kdeprint/kmjob.h new file mode 100644 index 000000000..7ea5cf10b --- /dev/null +++ b/kdeprint/kmjob.h @@ -0,0 +1,130 @@ +/* + * This file is part of the KDE libraries + * Copyright (c) 2001 Michael Goffioul <kdeprint@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( _KDEPRINT_COMPILE ) && defined( __GNUC__ ) +#warning internal header, do not use except if you are a KDEPrint developer +#endif + +#include <qstring.h> +#include <qvaluevector.h> +#include <kdeprint/kmobject.h> +#include <kdelibs_export.h> + +/** + * @internal + * This class is internal to KDEPrint and is not intended to be + * used outside it. Please do not make use of this header, except + * if you're a KDEPrint developer. The API might change in the + * future and binary compatibility might be broken. + */ +class KDEPRINT_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); + QString pixmap(); + QString 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 QString& name() const { return m_name; } + void setName(const QString& s) { m_name = s; } + const QString& printer() const { return m_printer; } + void setPrinter(const QString& s) { m_printer = s; } + const QString& owner() const { return m_owner; } + void setOwner(const QString& 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 QString& uri() const { return m_uri; } + void setUri(const QString& 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; } + + QString attribute(int i) const { return m_attributes[i]; } + void setAttribute(int i, const QString& 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; + QString m_name; + QString m_printer; + QString 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 + QString m_uri; + QValueVector<QString> m_attributes; +}; + +#endif |