summaryrefslogtreecommitdiffstats
path: root/kcharselect/kcharselectdia.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 /kcharselect/kcharselectdia.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 'kcharselect/kcharselectdia.h')
-rw-r--r--kcharselect/kcharselectdia.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kcharselect/kcharselectdia.h b/kcharselect/kcharselectdia.h
index a3a0ea1..6427c40 100644
--- a/kcharselect/kcharselectdia.h
+++ b/kcharselect/kcharselectdia.h
@@ -8,9 +8,9 @@
#define kcharselectdia_h
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qclipboard.h>
+#include <tqlayout.h>
+#include <tqlineedit.h>
+#include <tqclipboard.h>
#include <kpushbutton.h>
#include <kcharselect.h>
@@ -27,33 +27,33 @@ class KCharSelectDia : public KMainWindow
Q_OBJECT
public:
- KCharSelectDia(QWidget *parent,const char *name,const QChar &_chr,const QString &_font,int _tableNum, bool direction);
+ KCharSelectDia(TQWidget *parent,const char *name,const TQChar &_chr,const TQString &_font,int _tableNum, bool direction);
- static bool selectChar(QString &_font,QChar &_chr,int _tableNum);
+ static bool selectChar(TQString &_font,TQChar &_chr,int _tableNum);
int chr() { return vChr; }
- QString font() { return vFont; }
+ TQString font() { return vFont; }
protected:
- void closeEvent(QCloseEvent *) { _exit(); }
+ void closeEvent(TQCloseEvent *) { _exit(); }
- QGridLayout *grid;
+ TQGridLayout *grid;
KCharSelect *charSelect;
- QLineEdit *lined;
+ TQLineEdit *lined;
KPushButton *bClip,*bClear;
KPushButton *bHelp;
- QChar vChr;
- QString vFont;
+ TQChar vChr;
+ TQString vFont;
int pointSize;
bool entryDirection;
protected slots:
- void charChanged(const QChar &_chr);
- void fontSelected(const QString &_font);
+ void charChanged(const TQChar &_chr);
+ void fontSelected(const TQString &_font);
void add()
{ add(vChr); }
- void add(const QChar &_chr);
+ void add(const TQChar &_chr);
void toClip();
void toClipUTF8();
void toClipHTML();