mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 02:42:52 +00:00
55 lines
2.3 KiB
C++
55 lines
2.3 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 NEW_PRINTER_NOTIFICATION_H
|
|
#define NEW_PRINTER_NOTIFICATION_H
|
|
|
|
#include <QtDBus/QDBusContext>
|
|
#include <QThread>
|
|
|
|
class NewPrinterNotification : public QObject, protected QDBusContext
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "com.redhat.NewPrinterNotification")
|
|
public:
|
|
NewPrinterNotification();
|
|
~NewPrinterNotification();
|
|
|
|
public slots:
|
|
void GetReady();
|
|
void NewPrinter(int status, const QString &name, const QString &make, const QString &model, const QString &des, const QString &cmd);
|
|
|
|
private slots:
|
|
void init();
|
|
bool registerService();
|
|
void configurePrinter();
|
|
void searchDrivers();
|
|
void printTestPage();
|
|
void findDriver();
|
|
void installDriver();
|
|
void setupPrinter();
|
|
|
|
private:
|
|
QStringList getMissingExecutables(const QString &ppdFileName) const;
|
|
QThread *m_thread;
|
|
QString m_destName;
|
|
};
|
|
|
|
#endif // NEW_PRINTER_NOTIFICATION_H
|