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/src/interfaces/xpart.h

37 lines
1021 B

#ifndef __xtdeparts_part_h__
#define __xtdeparts_part_h__
#include <dcopobject.h>
#include <dcopref.h>
#include <tqglobal.h>
class XPart : public DCOPObject
{
K_DCOP
k_dcop:
/** The XPartManager uses the windowId() to embed the part. */
virtual TQ_UINT32 windowId() = 0;
/** Called when the part should display itself */
virtual void show() = 0;
/** sent by the XPartHost to request url opening */
virtual bool openURL( const TQCString& url ) = 0;
/** sent by the XPartHost to close the url */
virtual bool closeURL() = 0;
/** Called when an action (previously registered with
* XPartHost::createActions()) has been activated. Name is the name of the
* action, state is used with Toggle actions to precise the current state.
*/
virtual ASYNC activateAction( const TQString &name, int state ) = 0;
/** Are extentions available -> browser extension / TextEditor ? */
virtual DCOPRef queryExtension( const TQCString& extension ) = 0;
};
#endif