diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /interfaces/kregexpeditor | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'interfaces/kregexpeditor')
-rw-r--r-- | interfaces/kregexpeditor/kregexpeditorinterface.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/interfaces/kregexpeditor/kregexpeditorinterface.h b/interfaces/kregexpeditor/kregexpeditorinterface.h index f1267d711..01fab0fdf 100644 --- a/interfaces/kregexpeditor/kregexpeditorinterface.h +++ b/interfaces/kregexpeditor/kregexpeditorinterface.h @@ -1,7 +1,7 @@ #ifndef __kregexpeditorinterface_h__ #define __kregexpeditorinterface_h__ -#include <qstring.h> +#include <tqstring.h> /** * A graphical editor for regular expressions. @@ -22,7 +22,7 @@ * regular expression dialog: * * \code - * QDialog *editorDialog = KParts::ComponentFactory::createInstanceFromQuery<QDialog>( "KRegExpEditor/KRegExpEditor" ); + * TQDialog *editorDialog = KParts::ComponentFactory::createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor" ); * if ( editorDialog ) { * // kdeutils was installed, so the dialog was found fetch the editor interface * KRegExpEditorInterface *editor = static_cast<KRegExpEditorInterface *>( editorDialog->qt_cast( "KRegExpEditorInterface" ) ); @@ -41,16 +41,16 @@ * * Note: signals and slots must be connected to the editorDialog object, not to the editor object: * \code - * connect( editorDialog, SIGNAL( canUndo( bool ) ), undoBut, SLOT( setEnabled( bool ) ) ); + * connect( editorDialog, TQT_SIGNAL( canUndo( bool ) ), undoBut, TQT_SLOT( setEnabled( bool ) ) ); * \endcode * * If you want to create an instance of the editor widget, i.e. not the * dialog, then you must do it in the following way: * * \code - * QWidget *editorWidget = - * KParts::ComponentFactory::createInstanceFromQuery<QWidget>( - * "KRegExpEditor/KRegExpEditor", QString::null, parent ); + * TQWidget *editorWidget = + * KParts::ComponentFactory::createInstanceFromQuery<TQWidget>( + * "KRegExpEditor/KRegExpEditor", TQString::null, parent ); * if ( editorWidget ) { * // kdeutils was installed, so the widget was found fetch the editor interface * KRegExpEditorInterface *editor = static_cast<KRegExpEditorInterface *>( editorWidget->qt_cast( "KRegExpEditorInterface" ) ); @@ -75,7 +75,7 @@ public: * returns the regular expression of the editor in Qt3 QRegExp * syntax. Note, there is also a 'regexp' Qt property available. */ - virtual QString regExp() const = 0; + virtual TQString regExp() const = 0; protected: // These are signals: in classes that actually implement the interface. @@ -103,9 +103,9 @@ public: /** * Set the regular expression for the editor. The syntax must be Qt3 - * QRegExp syntax. + * TQRegExp syntax. */ - virtual void setRegExp( const QString ®exp ) = 0; + virtual void setRegExp( const TQString ®exp ) = 0; virtual void redo() = 0; virtual void undo() = 0; @@ -116,7 +116,7 @@ public: * this method will be used to give the widget a text to show matches of * the regular expression on. */ - virtual void setMatchText( const QString& ) = 0; + virtual void setMatchText( const TQString& ) = 0; /** * This method allows for future changes that will not break binary @@ -130,7 +130,7 @@ public: * * Conclusion: You should not use this method in this version of KDE! */ - virtual void doSomething( QString method, void* arguments ) = 0; + virtual void doSomething( TQString method, void* arguments ) = 0; }; #endif |