summaryrefslogtreecommitdiffstats
path: root/ksim/monitors/net/netdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /ksim/monitors/net/netdialog.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/monitors/net/netdialog.h')
-rw-r--r--ksim/monitors/net/netdialog.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/ksim/monitors/net/netdialog.h b/ksim/monitors/net/netdialog.h
index b6d7801..662e727 100644
--- a/ksim/monitors/net/netdialog.h
+++ b/ksim/monitors/net/netdialog.h
@@ -20,7 +20,7 @@
#ifndef NETDIALOG_H
#define NETDIALOG_H
-#include <qtabdialog.h>
+#include <tqtabdialog.h>
class QVBoxLayout;
class QGridLayout;
@@ -36,50 +36,50 @@ class NetDialog : public QTabDialog
{
Q_OBJECT
public:
- NetDialog(QWidget *parent, const char *name = 0);
+ NetDialog(TQWidget *parent, const char *name = 0);
~NetDialog();
- const QString deviceName() const;
+ const TQString deviceName() const;
bool timer();
- const QString format() const;
+ const TQString format() const;
bool commands();
- const QString cCommand() const;
- const QString dCommand() const;
+ const TQString cCommand() const;
+ const TQString dCommand() const;
bool okClicked() { return m_clicked; }
public slots:
- void setDeviceName(const QString &);
+ void setDeviceName(const TQString &);
void setShowTimer(bool);
- void setFormat(const QString &);
+ void setFormat(const TQString &);
void setShowCommands(bool);
- void setCCommand(const QString &);
- void setDCommand(const QString &);
+ void setCCommand(const TQString &);
+ void setDCommand(const TQString &);
private slots:
void sendClicked();
private:
- QStringList createList() const;
+ TQStringList createList() const;
bool m_clicked;
- QWidget *m_generalTab;
- QLabel *m_deviceLabel;
+ TQWidget *m_generalTab;
+ TQLabel *m_deviceLabel;
KComboBox *m_deviceCombo;
- QGroupBox *m_timerBox;
- QCheckBox *m_showTimer;
+ TQGroupBox *m_timerBox;
+ TQCheckBox *m_showTimer;
KLineEdit *m_timerEdit;
- QLabel *m_hFormat;
- QLabel *m_mFormat;
- QLabel *m_sFormat;
- QWidget *m_commandTab;
- QCheckBox *m_enableCommands;
- QLabel *m_cCommand;
+ TQLabel *m_hFormat;
+ TQLabel *m_mFormat;
+ TQLabel *m_sFormat;
+ TQWidget *m_commandTab;
+ TQCheckBox *m_enableCommands;
+ TQLabel *m_cCommand;
KURLRequester *m_connectRequester;
- QLabel *m_dCommand;
+ TQLabel *m_dCommand;
KURLRequester *m_disconnectRequester;
- QGridLayout *m_generalLayout;
- QVBoxLayout *m_timerBoxLayout;
- QGridLayout *m_commandLayout;
+ TQGridLayout *m_generalLayout;
+ TQVBoxLayout *m_timerBoxLayout;
+ TQGridLayout *m_commandLayout;
};
#endif // NETDIALOG_H