• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeprint
 

tdeprint

  • tdeprint
kpdriverpage.cpp
1 /*
2  * This file is part of the KDE libraries
3  * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License version 2 as published by the Free Software Foundation.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB. If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  **/
19 
20 #include "kpdriverpage.h"
21 #include "driverview.h"
22 #include "driver.h"
23 
24 #include <tqlayout.h>
25 #include <tdelocale.h>
26 
27 KPDriverPage::KPDriverPage(KMPrinter *p, DrMain *d, TQWidget *parent, const char *name)
28 : KPrintDialogPage(p,d,parent,name)
29 {
30  setTitle(i18n("Driver Settings"));
31 
32  m_view = new DriverView(this);
33  m_view->setAllowFixed(false);
34  if (driver()) m_view->setDriver(driver());
35 
36  TQVBoxLayout *lay1 = new TQVBoxLayout(this, 0, 0);
37  lay1->addWidget(m_view);
38 }
39 
40 KPDriverPage::~KPDriverPage()
41 {
42 }
43 
44 bool KPDriverPage::isValid(TQString& msg)
45 {
46  if (m_view->hasConflict())
47  {
48  msg = i18n("<qt>Some options selected are in conflict. You must resolve these conflicts "
49  "before continuing. See <b>Driver Settings</b> tab for detailed information.</qt>");
50  return false;
51  }
52  return true;
53 }
54 
55 void KPDriverPage::setOptions(const TQMap<TQString,TQString>& opts)
56 {
57  m_view->setOptions(opts);
58 }
59 
60 void KPDriverPage::getOptions(TQMap<TQString,TQString>& opts, bool incldef)
61 {
62  m_view->getOptions(opts,incldef);
63 }
KPrintDialogPage
This class is intended to be used as base class for customized print dialog page.
Definition: kprintdialogpage.h:91

tdeprint

Skip menu "tdeprint"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

tdeprint

Skip menu "tdeprint"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeprint by doxygen 1.9.1
This website is maintained by Timothy Pearson.