mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
95 lines
3.2 KiB
C++
95 lines
3.2 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2010-2012 by Daniel Nicoletti *
|
|
* dantti12@gmail.com *
|
|
* *
|
|
* 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; see the file COPYING. If not, write to *
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
* Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
#ifndef KCUPSPRINTER_H
|
|
#define KCUPSPRINTER_H
|
|
|
|
#include <QString>
|
|
|
|
#include <KIcon>
|
|
|
|
#include <KCupsConnection.h>
|
|
|
|
class KDE_EXPORT KCupsPrinter
|
|
{
|
|
Q_GADGET
|
|
Q_ENUMS(Status)
|
|
public:
|
|
typedef enum {
|
|
Idle = 3,
|
|
Printing,
|
|
Stopped
|
|
} Status;
|
|
KCupsPrinter();
|
|
explicit KCupsPrinter(const QString &printer, bool isClass = false);
|
|
|
|
QString name() const;
|
|
bool isClass() const;
|
|
bool isDefault() const;
|
|
bool isShared() const;
|
|
bool isAcceptingJobs() const;
|
|
cups_ptype_e type() const;
|
|
QString location() const;
|
|
QString info() const;
|
|
QString makeAndModel() const;
|
|
QStringList commands() const;
|
|
QStringList memberNames() const;
|
|
QString deviceUri() const;
|
|
QStringList errorPolicy() const;
|
|
QStringList errorPolicySupported() const;
|
|
QStringList opPolicy() const;
|
|
QStringList opPolicySupported() const;
|
|
QStringList jobSheetsDefault() const;
|
|
QStringList jobSheetsSupported() const;
|
|
QStringList requestingUserNameAllowed() const;
|
|
QStringList requestingUserNameDenied() const;
|
|
QString uriSupported() const;
|
|
|
|
Status state() const;
|
|
QString stateMsg() const;
|
|
int markerChangeTime() const;
|
|
QVariant argument(const QString &name) const;
|
|
|
|
/**
|
|
* Requires enum PrinterType to work properly
|
|
*
|
|
*/
|
|
KIcon icon() const;
|
|
static KIcon icon(cups_ptype_e type);
|
|
QString iconName() const;
|
|
static QString iconName(cups_ptype_e type);
|
|
|
|
protected:
|
|
KCupsPrinter(const QVariantHash &arguments);
|
|
|
|
private:
|
|
friend class KCupsRequest;
|
|
|
|
QString m_printer;
|
|
bool m_isClass;
|
|
QVariantHash m_arguments;
|
|
};
|
|
|
|
typedef QList<KCupsPrinter> KCupsPrinters;
|
|
Q_DECLARE_METATYPE(KCupsPrinters)
|
|
Q_DECLARE_METATYPE(KCupsPrinter)
|
|
Q_DECLARE_METATYPE(KCupsPrinter::Status)
|
|
|
|
#endif // KCUPSPRINTER_H
|