Source: ktexteditor/clipboarddcopinterface.h


Annotated List
Files
Globals
Hierarchy
Index
#ifndef Clipboard_DCOP_INTERFACE_H
#define Clipboard_DCOP_INTERFACE_H

#include 
#include 
#include 
#include 
//#include "editdcopinterface.moc"
namespace KTextEditor
{
	class ClipboardInterface;
	/**
	This is the main interface to the @ref ClipboardInterface of KTextEdit.
	This will provide a consistant dcop interface to all KDE applications that use it.
	@short DCOP interface to @ref ClipboardInterface.
	@author Ian Reinhart Geiser 
	*/
	class ClipboardDCOPInterface : virtual public DCOPObject
	{
	K_DCOP

	public:
		/**
		Construct a new interface object for the text editor.
		@param ParentClipboardInterface - The parent @ref ClipboardInterface object
		that will provide us with the functions for the interface.
		*/
		ClipboardDCOPInterface( ClipboardInterface *Parent, const char *name );
		/**
		Destructor
		Cleans up the object.
		*/
		virtual ~ClipboardDCOPInterface();
	k_dcop:
	/**
	* copies selected text
	*/
	void copy ( );
	/**
	* cuts selected text
	*/
	void cut ( );
	/**
	* pastes selected text
	*/
	void paste ( );
	private:
		ClipboardInterface *m_parent;
	};
};
#endif



Generated by: dfaure on faure on Tue Apr 16 08:51:19 2002, using kdoc 2.0a53.