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

tdeprint

  • tdeprint
  • management
kmpropdriver.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 "kmpropdriver.h"
21 #include "kmprinter.h"
22 #include "kmwizard.h"
23 
24 #include <tqlabel.h>
25 #include <tqlayout.h>
26 #include <tdelocale.h>
27 
28 KMPropDriver::KMPropDriver(TQWidget *parent, const char *name)
29 : KMPropWidget(parent,name)
30 {
31  m_manufacturer = new TQLabel("",this);
32  m_model = new TQLabel("",this);
33  m_driverinfo = new TQLabel("",this);
34  m_driverinfo->setTextFormat(TQt::RichText);
35 
36  TQLabel *l1 = new TQLabel(i18n("Manufacturer:"), this);
37  TQLabel *l2 = new TQLabel(i18n("Printer model:"), this);
38  TQLabel *l3 = new TQLabel(i18n("Driver info:"), this);
39 
40  // layout
41  TQGridLayout *main_ = new TQGridLayout(this, 4, 2, 10, 7);
42  main_->setColStretch(0,0);
43  main_->setColStretch(1,1);
44  main_->setRowStretch(3,1);
45  main_->addWidget(l1,0,0);
46  main_->addWidget(l2,1,0);
47  main_->addWidget(l3,2,0,TQt::AlignTop|TQt::AlignLeft);
48  main_->addWidget(m_manufacturer,0,1);
49  main_->addWidget(m_model,1,1);
50  main_->addWidget(m_driverinfo,2,1);
51 
52  m_pixmap = "gear";
53  m_title = i18n("Driver");
54  m_header = i18n("Driver Settings");
55 }
56 
57 KMPropDriver::~KMPropDriver()
58 {
59 }
60 
61 void KMPropDriver::setPrinter(KMPrinter *p)
62 {
63  if (p && p->isPrinter())
64  {
65  m_manufacturer->setText(p->manufacturer());
66  m_model->setText(p->model());
67  m_driverinfo->setText(p->driverInfo());
68  emit enable(true);
69  emit enableChange(p->isLocal());
70  }
71  else
72  {
73  emit enable(false);
74  m_manufacturer->setText("");
75  m_model->setText("");
76  m_driverinfo->setText("");
77  }
78 }
79 
80 void KMPropDriver::configureWizard(KMWizard *w)
81 {
82  w->configure(KMWizard::Driver,KMWizard::DriverTest,true);
83 }

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.