summaryrefslogtreecommitdiffstats
path: root/kdeprint/tools
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeprint/tools
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/tools')
-rw-r--r--kdeprint/tools/escputil/escpwidget.cpp94
-rw-r--r--kdeprint/tools/escputil/escpwidget.h10
2 files changed, 52 insertions, 52 deletions
diff --git a/kdeprint/tools/escputil/escpwidget.cpp b/kdeprint/tools/escputil/escpwidget.cpp
index 103ad111b..ef0e2390b 100644
--- a/kdeprint/tools/escputil/escpwidget.cpp
+++ b/kdeprint/tools/escputil/escpwidget.cpp
@@ -19,11 +19,11 @@
#include "escpwidget.h"
-#include <qpushbutton.h>
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qcheckbox.h>
-#include <qaccel.h>
+#include <tqpushbutton.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqcheckbox.h>
+#include <tqaccel.h>
#include <kdemacros.h>
#include <klocale.h>
#include <kmessagebox.h>
@@ -37,12 +37,12 @@
class EscpFactory : public KLibFactory
{
public:
- EscpFactory(QObject *parent = 0, const char *name = 0) : KLibFactory(parent, name) {}
+ EscpFactory(TQObject *parent = 0, const char *name = 0) : KLibFactory(parent, name) {}
protected:
- QObject* createObject(QObject *parent = 0, const char *name = 0, const char * className = "QObject", const QStringList& args = QStringList())
+ TQObject* createObject(TQObject *parent = 0, const char *name = 0, const char * className = "TQObject", const TQStringList& args = TQStringList())
{
Q_UNUSED(className);
- KDialogBase *dlg = new KDialogBase(static_cast<QWidget*>(parent), name, true, i18n("EPSON InkJet Printer Utilities"), KDialogBase::Close);
+ KDialogBase *dlg = new KDialogBase(static_cast<TQWidget*>(parent), name, true, i18n("EPSON InkJet Printer Utilities"), KDialogBase::Close);
EscpWidget *w = new EscpWidget(dlg);
if (args.count() > 0)
w->setDevice(args[0]);
@@ -62,49 +62,49 @@ extern "C"
}
}
-EscpWidget::EscpWidget(QWidget *parent, const char *name)
-: QWidget(parent, name)
+EscpWidget::EscpWidget(TQWidget *parent, const char *name)
+: TQWidget(parent, name)
{
m_hasoutput = false;
- connect(&m_proc, SIGNAL(processExited(KProcess*)), SLOT(slotProcessExited(KProcess*)));
- connect(&m_proc, SIGNAL(receivedStdout(KProcess*,char*,int)), SLOT(slotReceivedStdout(KProcess*,char*,int)));
- connect(&m_proc, SIGNAL(receivedStderr(KProcess*,char*,int)), SLOT(slotReceivedStderr(KProcess*,char*,int)));
+ connect(&m_proc, TQT_SIGNAL(processExited(KProcess*)), TQT_SLOT(slotProcessExited(KProcess*)));
+ connect(&m_proc, TQT_SIGNAL(receivedStdout(KProcess*,char*,int)), TQT_SLOT(slotReceivedStdout(KProcess*,char*,int)));
+ connect(&m_proc, TQT_SIGNAL(receivedStderr(KProcess*,char*,int)), TQT_SLOT(slotReceivedStderr(KProcess*,char*,int)));
- QPushButton *cleanbtn = new QPushButton(this, "-c");
+ QPushButton *cleanbtn = new TQPushButton(this, "-c");
cleanbtn->setPixmap(DesktopIcon("exec"));
- QPushButton *nozzlebtn = new QPushButton(this, "-n");
+ QPushButton *nozzlebtn = new TQPushButton(this, "-n");
nozzlebtn->setPixmap(DesktopIcon("exec"));
- QPushButton *alignbtn = new QPushButton(this, "-a");
+ QPushButton *alignbtn = new TQPushButton(this, "-a");
alignbtn->setPixmap(DesktopIcon("exec"));
- QPushButton *inkbtn = new QPushButton(this, "-i");
+ QPushButton *inkbtn = new TQPushButton(this, "-i");
inkbtn->setPixmap(DesktopIcon("kdeprint_inklevel"));
- QPushButton *identbtn = new QPushButton(this, "-d");
+ QPushButton *identbtn = new TQPushButton(this, "-d");
identbtn->setPixmap(DesktopIcon("exec"));
QFont f(font());
f.setBold(true);
- m_printer = new QLabel(this);
+ m_printer = new TQLabel(this);
m_printer->setFont(f);
- m_device = new QLabel(this);
+ m_device = new TQLabel(this);
m_device->setFont(f);
- m_useraw = new QCheckBox(i18n("&Use direct connection (might need root permissions)"), this);
+ m_useraw = new TQCheckBox(i18n("&Use direct connection (might need root permissions)"), this);
- connect(cleanbtn, SIGNAL(clicked()), SLOT(slotButtonClicked()));
- connect(nozzlebtn, SIGNAL(clicked()), SLOT(slotButtonClicked()));
- connect(alignbtn, SIGNAL(clicked()), SLOT(slotButtonClicked()));
- connect(inkbtn, SIGNAL(clicked()), SLOT(slotButtonClicked()));
- connect(identbtn, SIGNAL(clicked()), SLOT(slotButtonClicked()));
+ connect(cleanbtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotButtonClicked()));
+ connect(nozzlebtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotButtonClicked()));
+ connect(alignbtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotButtonClicked()));
+ connect(inkbtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotButtonClicked()));
+ connect(identbtn, TQT_SIGNAL(clicked()), TQT_SLOT(slotButtonClicked()));
- QLabel *printerlab = new QLabel(i18n("Printer:"), this);
+ QLabel *printerlab = new TQLabel(i18n("Printer:"), this);
printerlab->setAlignment(AlignRight|AlignVCenter);
- QLabel *devicelab = new QLabel(i18n("Device:"), this);
+ QLabel *devicelab = new TQLabel(i18n("Device:"), this);
devicelab->setAlignment(AlignRight|AlignVCenter);
- QLabel *cleanlab = new QLabel(i18n("Clea&n print head"), this);
- QLabel *nozzlelab = new QLabel(i18n("&Print a nozzle test pattern"), this);
- QLabel *alignlab = new QLabel(i18n("&Align print head"), this);
- QLabel *inklab = new QLabel(i18n("&Ink level"), this);
- QLabel *identlab = new QLabel(i18n("P&rinter identification"), this);
+ QLabel *cleanlab = new TQLabel(i18n("Clea&n print head"), this);
+ QLabel *nozzlelab = new TQLabel(i18n("&Print a nozzle test pattern"), this);
+ QLabel *alignlab = new TQLabel(i18n("&Align print head"), this);
+ QLabel *inklab = new TQLabel(i18n("&Ink level"), this);
+ QLabel *identlab = new TQLabel(i18n("P&rinter identification"), this);
cleanlab->setAlignment(AlignLeft|AlignVCenter|ShowPrefix);
nozzlelab->setAlignment(AlignLeft|AlignVCenter|ShowPrefix);
@@ -112,17 +112,17 @@ EscpWidget::EscpWidget(QWidget *parent, const char *name)
inklab->setAlignment(AlignLeft|AlignVCenter|ShowPrefix);
identlab->setAlignment(AlignLeft|AlignVCenter|ShowPrefix);
- cleanbtn->setAccel(QAccel::shortcutKey(cleanlab->text()));
- nozzlebtn->setAccel(QAccel::shortcutKey(nozzlelab->text()));
- alignbtn->setAccel(QAccel::shortcutKey(alignlab->text()));
- inkbtn->setAccel(QAccel::shortcutKey(inklab->text()));
- identbtn->setAccel(QAccel::shortcutKey(identlab->text()));
+ cleanbtn->setAccel(TQAccel::shortcutKey(cleanlab->text()));
+ nozzlebtn->setAccel(TQAccel::shortcutKey(nozzlelab->text()));
+ alignbtn->setAccel(TQAccel::shortcutKey(alignlab->text()));
+ inkbtn->setAccel(TQAccel::shortcutKey(inklab->text()));
+ identbtn->setAccel(TQAccel::shortcutKey(identlab->text()));
KSeparator *sep = new KSeparator(this);
sep->setFixedHeight(10);
- QGridLayout *l0 = new QGridLayout(this, 8, 2, 10, 10);
- QGridLayout *l1 = new QGridLayout(0, 2, 2, 0, 5);
+ QGridLayout *l0 = new TQGridLayout(this, 8, 2, 10, 10);
+ QGridLayout *l1 = new TQGridLayout(0, 2, 2, 0, 5);
l0->addMultiCellLayout(l1, 0, 0, 0, 1);
l1->addWidget(printerlab, 0, 0);
l1->addWidget(devicelab, 1, 0);
@@ -144,7 +144,7 @@ EscpWidget::EscpWidget(QWidget *parent, const char *name)
l0->setColStretch(1, 1);
}
-void EscpWidget::startCommand(const QString& arg)
+void EscpWidget::startCommand(const TQString& arg)
{
bool useUSB(false);
@@ -192,9 +192,9 @@ void EscpWidget::startCommand(const QString& arg)
m_proc << "-u";
m_proc << arg << "-q";
- m_errorbuffer = m_outbuffer = QString::null;
+ m_errorbuffer = m_outbuffer = TQString::null;
m_hasoutput = ( arg == "-i" || arg == "-d" );
- for ( QValueList<QCString>::ConstIterator it=m_proc.args().begin(); it!=m_proc.args().end(); ++it )
+ for ( TQValueList<TQCString>::ConstIterator it=m_proc.args().begin(); it!=m_proc.args().end(); ++it )
kdDebug() << "ARG: " << *it << endl;
if (m_proc.start(KProcess::NotifyOnExit, KProcess::AllOutput))
setEnabled(false);
@@ -231,13 +231,13 @@ void EscpWidget::slotProcessExited(KProcess*)
void EscpWidget::slotReceivedStdout(KProcess*, char *buf, int len)
{
- QString bufstr = QCString(buf, len);
+ QString bufstr = TQCString(buf, len);
m_outbuffer.append(bufstr);
}
void EscpWidget::slotReceivedStderr(KProcess*, char *buf, int len)
{
- QString bufstr = QCString(buf, len);
+ QString bufstr = TQCString(buf, len);
m_errorbuffer.append(bufstr);
}
@@ -247,12 +247,12 @@ void EscpWidget::slotButtonClicked()
startCommand(arg);
}
-void EscpWidget::setPrinterName(const QString& p)
+void EscpWidget::setPrinterName(const TQString& p)
{
m_printer->setText(p);
}
-void EscpWidget::setDevice(const QString& dev)
+void EscpWidget::setDevice(const TQString& dev)
{
m_deviceURL = dev;
m_device->setText(dev);
diff --git a/kdeprint/tools/escputil/escpwidget.h b/kdeprint/tools/escputil/escpwidget.h
index 6de9f2c00..ce895f260 100644
--- a/kdeprint/tools/escputil/escpwidget.h
+++ b/kdeprint/tools/escputil/escpwidget.h
@@ -20,7 +20,7 @@
#ifndef ESCPWIDGET_H
#define ESCPWIDGET_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kprocess.h>
#include <kurl.h>
@@ -32,9 +32,9 @@ class EscpWidget : public QWidget
Q_OBJECT
public:
- EscpWidget(QWidget *parent = 0, const char *name = 0);
- void setDevice(const QString&);
- void setPrinterName(const QString&);
+ EscpWidget(TQWidget *parent = 0, const char *name = 0);
+ void setDevice(const TQString&);
+ void setPrinterName(const TQString&);
protected slots:
void slotReceivedStdout(KProcess*, char*, int);
@@ -43,7 +43,7 @@ protected slots:
void slotButtonClicked();
protected:
- void startCommand(const QString& arg);
+ void startCommand(const TQString& arg);
private:
KProcess m_proc;