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 interfaces Library Version 3.2.3.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat Jun 12 15:09:25 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003