diff options
Diffstat (limited to 'kdeprint/management/kmjobviewer.h')
-rw-r--r-- | kdeprint/management/kmjobviewer.h | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/kdeprint/management/kmjobviewer.h b/kdeprint/management/kmjobviewer.h new file mode 100644 index 000000000..69a3f27d6 --- /dev/null +++ b/kdeprint/management/kmjobviewer.h @@ -0,0 +1,127 @@ +/* + * 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 KMJOBVIEWER_H +#define KMJOBVIEWER_H + +#if !defined( _KDEPRINT_COMPILE ) && defined( __GNUC__ ) +#warning internal header, do not use except if you are a KDEPrint developer +#endif + +#include <kmainwindow.h> +#include "kmprinterpage.h" +#include "kpreloadobject.h" + +class KMJobManager; +class KMJob; +class KListView; +class JobItem; +class QPopupMenu; +class QListViewItem; +class KMPrinter; +class QTimer; +class QLineEdit; +class QCheckBox; + +/** + * @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 KMJobViewer : public KMainWindow, public KMPrinterPage, public KPReloadObject +{ + Q_OBJECT +public: + KMJobViewer(QWidget *parent = 0, const char *name = 0); + ~KMJobViewer(); + + void setPrinter(const QString& prname); + void setPrinter(KMPrinter *p); + void refresh(bool reload = false); + QString printer() const; + bool isSticky() const; + +signals: + void jobsShown(KMJobViewer*, bool hasJobs); + void refreshClicked(); + void printerChanged(KMJobViewer*, const QString& prname); + void viewerDestroyed(KMJobViewer*); + +public slots: + void pluginActionActivated(int); + +protected slots: + void slotSelectionChanged(); + void slotHold(); + void slotResume(); + void slotRemove(); + void slotRestart(); + void slotRightClicked(QListViewItem*,const QPoint&,int); + void slotMove(int prID); + void slotPrinterSelected(int); + void slotShowCompleted(bool); + void slotRefresh(); + void slotClose(); + void slotShowMoveMenu(); + void slotShowPrinterMenu(); + void slotUserOnly(bool); + void slotUserChanged(); + void slotConfigure(); + void slotDropped( QDropEvent*, QListViewItem* ); + +protected: + void init(); + void updateJobs(); + void initActions(); + JobItem* findItem(const QString& uri); + void jobSelection(QPtrList<KMJob>& l); + void send(int cmd, const QString& name, const QString& arg = QString::null); + void loadPrinters(); + void loadPluginActions(); + void removePluginActions(); + void reload(); + //void aboutToReload(); + void closeEvent(QCloseEvent*); + void triggerRefresh(); + void addToManager(); + void removeFromManager(); + void buildPrinterMenu(QPopupMenu *menu, bool use_all = false, bool use_specials = false); + void updateCaption(); + void updateStatusBar(); + +private: + KListView *m_view; + QPtrList<KMJob> m_jobs; + QPtrList<JobItem> m_items; + QPopupMenu *m_pop; + QPtrList<KMPrinter> m_printers; + QString m_prname; + int m_type; + QString m_username; + QLineEdit *m_userfield; + QCheckBox *m_stickybox; + bool m_standalone; +}; + +inline QString KMJobViewer::printer() const +{ return m_prname; } + +#endif |