summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/input.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 /superkaramba/src/input.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 'superkaramba/src/input.h')
-rw-r--r--superkaramba/src/input.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/superkaramba/src/input.h b/superkaramba/src/input.h
index 15c16e0..0c9ad71 100644
--- a/superkaramba/src/input.h
+++ b/superkaramba/src/input.h
@@ -24,12 +24,12 @@
#include <meter.h>
#include <sklineedit.h>
-#include <qpainter.h>
-#include <qcolor.h>
-#include <qlineedit.h>
-#include <qwidget.h>
-#include <qstring.h>
-#include <qfont.h>
+#include <tqpainter.h>
+#include <tqcolor.h>
+#include <tqlineedit.h>
+#include <tqwidget.h>
+#include <tqstring.h>
+#include <tqfont.h>
#include "textfield.h"
@@ -42,21 +42,21 @@ public:
~Input();
- void mUpdate(QPainter *p);
+ void mUpdate(TQPainter *p);
- void setValue(QString text);
- QString getStringValue() const;
+ void setValue(TQString text);
+ TQString getStringValue() const;
- void setBGColor(QColor c);
- QColor getBGColor() const;
- void setColor(QColor c);
- QColor getColor() const;
- void setFontColor(QColor fontColor);
- QColor getFontColor() const;
- void setSelectionColor(QColor selectionColor);
- QColor getSelectionColor() const;
- void setSelectedTextColor(QColor selectedTextColor);
- QColor getSelectedTextColor() const;
+ void setBGColor(TQColor c);
+ TQColor getBGColor() const;
+ void setColor(TQColor c);
+ TQColor getColor() const;
+ void setFontColor(TQColor fontColor);
+ TQColor getFontColor() const;
+ void setSelectionColor(TQColor selectionColor);
+ TQColor getSelectionColor() const;
+ void setSelectedTextColor(TQColor selectedTextColor);
+ TQColor getSelectedTextColor() const;
void setTextProps(TextField*);
void hide();
@@ -68,8 +68,8 @@ public:
void setWidth(int iw);
void setHeight(int ih);
- void setFont(QString f);
- QString getFont() const;
+ void setFont(TQString f);
+ TQString getFont() const;
void setFontSize(int size);
int getFontSize() const;
@@ -78,7 +78,7 @@ public:
private:
SKLineEdit *edit;
- QFont font;
+ TQFont font;
};
#endif