diff options
Diffstat (limited to 'xparts/xpart_notepad/xp_notepad.cpp')
-rw-r--r-- | xparts/xpart_notepad/xp_notepad.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/xparts/xpart_notepad/xp_notepad.cpp b/xparts/xpart_notepad/xp_notepad.cpp index 57173bbb..18295111 100644 --- a/xparts/xpart_notepad/xp_notepad.cpp +++ b/xparts/xpart_notepad/xp_notepad.cpp @@ -1,8 +1,8 @@ #include <dcopclient.h> #include <kapplication.h> -#include <qmultilineedit.h> -#include <qfile.h> -#include <qtextstream.h> +#include <tqmultilineedit.h> +#include <tqfile.h> +#include <tqtextstream.h> #include <stdio.h> #include <iostream.h> #include <xpart.h> @@ -10,7 +10,7 @@ #include "xparthost_stub.h" -class XPartNotepad : public QMultiLineEdit, virtual public XPart +class XPartNotepad : public TQMultiLineEdit, virtual public XPart { public: @@ -19,7 +19,7 @@ public: setText("This is a xpart component editor"); setReadOnly( false ); resize( 200, 200 ); - QMultiLineEdit::setFocus(); + TQMultiLineEdit::setFocus(); } /** needed by XPartManager to embed the part */ @@ -28,17 +28,17 @@ public: /** used by XPartManager to show the part */ void show() - { printf("show()\n"); QWidget::show(); } + { printf("show()\n"); TQWidget::show(); } /** sent by the XPartHost to query an url */ - bool openURL( const QCString& url ) + bool openURL( const TQCString& url ) { printf("openURL %s\n", (const char *) url ); - QFile f(url); - QString s; + TQFile f(url); + TQString s; if ( ! f.open(IO_ReadOnly) ) { return false; } - QTextStream t( &f ); + TQTextStream t( &f ); while ( !t.eof() ) { s += t.readLine() + "\n"; } @@ -56,20 +56,20 @@ public: * * action, state is used with Toggle actions to * precise the current state. * */ - void activateAction( const QString &name, int state ) + void activateAction( const TQString &name, int state ) { printf("activateAction: %s, %d\n", name.latin1(), state ); } /** are extentions available -> browser extension * / TextEditor ? */ - DCOPRef queryExtension( const QCString& extension ) + DCOPRef queryExtension( const TQCString& extension ) { printf("query Extension : %s\n", (const char * ) extension ); return DCOPRef(); } protected: - void focusInEvent( QFocusEvent * ) - { kdDebug() << "Focus in" << endl; QMultiLineEdit::setFocus(); } - void focusOutEvent( QFocusEvent * ) - { kdDebug() << "Focus Out" << endl;QMultiLineEdit::setFocus(); } + void focusInEvent( TQFocusEvent * ) + { kdDebug() << "Focus in" << endl; TQMultiLineEdit::setFocus(); } + void focusOutEvent( TQFocusEvent * ) + { kdDebug() << "Focus Out" << endl;TQMultiLineEdit::setFocus(); } }; int main( int argc, char **argv ) @@ -84,7 +84,7 @@ int main( int argc, char **argv ) XPartNotepad * xpn = new XPartNotepad("xp_notepad"); app.setMainWidget( xpn ); app.dcopClient()->attach(); - QCString appId = app.dcopClient()->registerAs("xp_notepad", true); + TQCString appId = app.dcopClient()->registerAs("xp_notepad", true); XPartHost_stub xph_stub( argv[1], argv[2] ); DCOPRef xpn_dcopref( xpn ); |