diff options
Diffstat (limited to 'kommander/widgets/textedit.h')
-rw-r--r-- | kommander/widgets/textedit.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kommander/widgets/textedit.h b/kommander/widgets/textedit.h index 7f842343..4f118ffd 100644 --- a/kommander/widgets/textedit.h +++ b/kommander/widgets/textedit.h @@ -21,8 +21,8 @@ #include <ktextedit.h> /* QT INCLUDES */ -#include <qstringlist.h> -#include <qstring.h> +#include <tqstringlist.h> +#include <tqstring.h> /* OTHER INCLUDES */ #include <kommanderwidget.h> @@ -31,40 +31,40 @@ class QShowEvent; class KOMMANDER_EXPORT TextEdit: public KTextEdit, public KommanderWidget { - Q_OBJECT Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false) - Q_PROPERTY(QStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false) + Q_OBJECT Q_PROPERTY(TQString populationText READ populationText WRITE setPopulationText DESIGNABLE false) + Q_PROPERTY(TQStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false) Q_PROPERTY(bool KommanderWidget READ isKommanderWidget) public: - TextEdit(QWidget *, const char *); + TextEdit(TQWidget *, const char *); virtual ~TextEdit(); virtual bool isKommanderWidget() const; - virtual void setAssociatedText(const QStringList &); - virtual QStringList associatedText() const; - virtual QString currentState() const; - virtual QString populationText() const; - virtual void setPopulationText(const QString &); + virtual void setAssociatedText(const TQStringList &); + virtual TQStringList associatedText() const; + virtual TQString currentState() const; + virtual TQString populationText() const; + virtual void setPopulationText(const TQString &); - virtual QString handleDCOP(int function, const QStringList& args); + virtual TQString handleDCOP(int function, const TQStringList& args); virtual bool isFunctionSupported(int function); public slots: virtual void setTextChanged(); - virtual void setWidgetText(const QString &); + virtual void setWidgetText(const TQString &); virtual void populate(); signals: void widgetOpened(); - void widgetTextChanged(const QString&); + void widgetTextChanged(const TQString&); void contextMenuRequested(int xpos, int ypos); void lostFocus(); void gotFocus(); protected: - void showEvent(QShowEvent* e); - void contextMenuEvent( QContextMenuEvent * e ); - void focusOutEvent( QFocusEvent* e); - void focusInEvent( QFocusEvent* e); + void showEvent(TQShowEvent* e); + void contextMenuEvent( TQContextMenuEvent * e ); + void focusOutEvent( TQFocusEvent* e); + void focusInEvent( TQFocusEvent* e); }; #endif |