#include #include #include #include #include #include #include #include #include #include "xparthost_stub.h" class XPartNotepad : public TQMultiLineEdit, virtual public XPart { public: XPartNotepad(char *) { setText("This is a xpart component editor"); setReadOnly( false ); resize( 200, 200 ); TQMultiLineEdit::setFocus(); } /** needed by XPartManager to embed the part */ TQ_UINT32 windowId() { return winId(); } /** used by XPartManager to show the part */ void show() { printf("show()\n"); TQWidget::show(); } /** sent by the XPartHost to query an url */ bool openURL( const TQCString& url ) { printf("openURL %s\n", (const char *) url ); TQFile f(url); TQString s; if ( ! f.open(IO_ReadOnly) ) { return false; } TQTextStream t( &f ); while ( !t.eof() ) { s += t.readLine() + "\n"; } f.close(); setText(s); return true; } /** sent by the XPartHost to close an url */ bool closeURL() { printf("closeURL\n"); setText(""); return true; } /** called when an action has been activated. name is * the name of the * * action, state is used with Toggle actions to * precise the current 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 TQCString& extension ) { printf("query Extension : %s\n", (const char * ) extension ); return DCOPRef(); } protected: void focusInEvent( TQFocusEvent * ) { kdDebug() << "Focus in" << endl; TQMultiLineEdit::setFocus(); } void focusOutEvent( TQFocusEvent * ) { kdDebug() << "Focus Out" << endl;TQMultiLineEdit::setFocus(); } }; int main( int argc, char **argv ) { if (argc < 3) { printf("application need arguments"); return 1; } printf("args: XPartHost appId = %s , XPartHost_KPart objId = %s\n", argv[1], argv[2] ); TDEApplication app( argc, argv, "xp_notepad" ); XPartNotepad * xpn = new XPartNotepad("xp_notepad"); app.setMainWidget( xpn ); app.dcopClient()->attach(); TQCString appId = app.dcopClient()->registerAs("xp_notepad", true); XPartHost_stub xph_stub( argv[1], argv[2] ); DCOPRef xpn_dcopref( xpn ); DCOPRef xph_dcopref = xph_stub.registerXPart(xpn_dcopref); if ( xph_dcopref.isNull() ) { printf("could not register\n"); return 2; } printf("XPart registered!\n"); // Initializing actions: const char * actions = "\n" "\n" " \n" " \n" " \n" " \n" "\n"; xph_stub.createActions( actions ); return app.exec(); }