kdeprint Library API Documentation

kprintdialogpage.h

00001 /*
00002  *  This file is part of the KDE libraries
00003  *  Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
00004  *
00005  *
00006  *  This library is free software; you can redistribute it and/or
00007  *  modify it under the terms of the GNU Library General Public
00008  *  License version 2 as published by the Free Software Foundation.
00009  *
00010  *  This library is distributed in the hope that it will be useful,
00011  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  *  Library General Public License for more details.
00014  *
00015  *  You should have received a copy of the GNU Library General Public License
00016  *  along with this library; see the file COPYING.LIB.  If not, write to
00017  *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00018  *  Boston, MA 02111-1307, USA.
00019  **/
00020 
00021 #ifndef KPRINTDIALOGPAGE_H
00022 #define KPRINTDIALOGPAGE_H
00023 
00024 #include <qwidget.h>
00025 #include <qmap.h>
00026 
00027 class KMPrinter;
00028 class DrMain;
00029 
00088 class KPrintDialogPage : public QWidget
00089 {
00090     Q_OBJECT
00091 public:
00095     KPrintDialogPage(QWidget *parent = 0, const char *name = 0);
00099     KPrintDialogPage(KMPrinter *pr, DrMain *dr = 0, QWidget *parent = 0, const char *name = 0);
00103     virtual ~KPrintDialogPage();
00104 
00113     virtual void getOptions(QMap<QString,QString>& opts, bool incldef = false);
00119     virtual void setOptions(const QMap<QString,QString>& opts);
00127     virtual bool isValid(QString& msg);
00133     int id() const              { return m_ID; }
00139     void setId(int ID)          { m_ID = ID; }
00145     QString title() const           { return m_title; }
00152     void setTitle(const QString& txt)   { m_title = txt; }
00162     bool onlyRealPrinters() const   { return m_onlyreal; }
00170     void setOnlyRealPrinters(bool on = true) { m_onlyreal = on; }
00174     DrMain* driver()            { return m_driver; }
00178     KMPrinter* printer()            { return m_printer; }
00179 
00180 protected:
00181     KMPrinter   *m_printer;
00182     DrMain      *m_driver;
00183     int         m_ID;
00184     QString     m_title;
00185     bool        m_onlyreal;
00186 };
00187 
00188 #endif
KDE Logo
This file is part of the documentation for kdeprint Library Version 3.3.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat Jan 22 16:49:59 2005 by doxygen 1.3.9.1 written by Dimitri van Heesch, © 1997-2003