interfaces
selectionextdcopinterface.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _SELECTION_EXT_DCOP_INTERFACE_H_
00023 #define _SELECTION_EXT_DCOP_INTERFACE_H_
00024
00025 #include "selectioninterfaceext.h"
00026
00027 #include <qstring.h>
00028 #include <dcopobject.h>
00029 #include <dcopref.h>
00030
00031 namespace KTextEditor {
00036 class KTEXTEDITOR_EXPORT SelectionExtDCOPInterface : virtual public DCOPObject
00037 {
00038 K_DCOP
00039 public:
00040 SelectionExtDCOPInterface( SelectionInterfaceExt *parent, const char *name );
00041 virtual ~SelectionExtDCOPInterface();
00042 k_dcop:
00044 int selStartLine();
00046 int selStartCol();
00048 int selEndLine();
00050 int selEndCol();
00051 private:
00052 SelectionInterfaceExt *m_parent;
00053 };
00054
00055 }
00056
00057 #endif // _SELECTION_EXT_DCOP_INTERFACE_H_