You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/xparts/xpart_notepad/xp_notepad.cpp

115 lines
2.8 KiB

#include <dcopclient.h>
#include <kapplication.h>
#include <tqmultilineedit.h>
#include <tqfile.h>
#include <tqtextstream.h>
#include <stdio.h>
#include <iostream.h>
#include <xpart.h>
#include <kdebug.h>
#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 */
Q_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] );
KApplication 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 =
"<!DOCTYPE actionList SYSTEM \"actionlist.dtd\">\n"
"<Actionlist>\n"
" <Action name=\"open_url\" />\n"
" <Action name=\"close_url\" />\n"
" <Action name=\"nonexistant\" />\n"
" <XMLFile location=\"./xp_notepad.rc\" />\n"
"</Actionlist>\n";
xph_stub.createActions( actions );
return app.exec();
}