interfaces Library API Documentation

clipboarddcopinterface.cpp

00001 #include "clipboarddcopinterface.h"
00002 #include "clipboardinterface.h"
00003 
00004 #include <dcopclient.h>
00005 using namespace KTextEditor;
00006 
00007 ClipboardDCOPInterface::ClipboardDCOPInterface( ClipboardInterface *Parent, const char *name)
00008     : DCOPObject(name)
00009 {
00010     m_parent = Parent;
00011 }
00012 
00013 ClipboardDCOPInterface::~ClipboardDCOPInterface()
00014 {
00015 
00016 }
00017 
00021     void ClipboardDCOPInterface::copy ( )
00022     {
00023     m_parent->copy();
00024     }
00025 
00029     void ClipboardDCOPInterface::cut ( )
00030     {
00031     m_parent->cut();
00032     }
00033 
00037     void ClipboardDCOPInterface::paste ( )
00038     {
00039     m_parent->paste();
00040     }
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.4.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Sun Feb 27 22:16:14 2005 by doxygen 1.3.4 written by Dimitri van Heesch, © 1997-2001