diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /superkaramba/src/textfield.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-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/textfield.h')
-rw-r--r-- | superkaramba/src/textfield.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/superkaramba/src/textfield.h b/superkaramba/src/textfield.h index b24fff3..13177b7 100644 --- a/superkaramba/src/textfield.h +++ b/superkaramba/src/textfield.h @@ -10,9 +10,9 @@ #ifndef TEXTFIELD_H #define TEXTFIELD_H -#include <qstring.h> -#include <qcolor.h> -#include <qfont.h> +#include <tqstring.h> +#include <tqcolor.h> +#include <tqfont.h> /** * @@ -28,29 +28,29 @@ public: TextField& operator=(const TextField& ); void setFontSize( int ); - void setColor(QColor clr); - void setBGColor(QColor clr); - void setFont( const QString& ); + void setColor(TQColor clr); + void setBGColor(TQColor clr); + void setFont( const TQString& ); void setAlignment( int ); - void setAlignment( const QString& ); + void setAlignment( const TQString& ); void setFixedPitch( bool ); void setShadow( int ); int getFontSize() const; - QColor getColor() const; - QColor getBGColor() const; - QString getFont() const; + TQColor getColor() const; + TQColor getBGColor() const; + TQString getFont() const; int getAlignment() const; - QString getAlignmentAsString() const; + TQString getAlignmentAsString() const; bool getFixedPitch() const; int getShadow() const; int getLineHeight() const; protected: int alignment; - QFont font; - QColor color; - QColor bgColor; + TQFont font; + TQColor color; + TQColor bgColor; int shadow; int lineHeight; |