• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • interfaces
 

interfaces

  • interfaces
  • ktexteditor
viewcursordcopinterface.cpp
1 #include "viewcursordcopinterface.h"
2 #include "viewcursorinterface.h"
3 
4 #include <tqpoint.h>
5 
6 #include <dcopclient.h>
7 using namespace KTextEditor;
8 
9 ViewCursorDCOPInterface::ViewCursorDCOPInterface( ViewCursorInterface *Parent, const char *name)
10  : DCOPObject(name)
11 {
12  m_parent = Parent;
13 }
14 
15 ViewCursorDCOPInterface::~ViewCursorDCOPInterface()
16 {
17 
18 }
19 
20 uint ViewCursorDCOPInterface::viewCursorInterfaceNumber ()
21 {
22  return m_parent->viewCursorInterfaceNumber ();
23 }
24 
25 ::TQPoint ViewCursorDCOPInterface::cursorCoordinates ()
26 {
27  return m_parent->cursorCoordinates ();
28 }
29 
30 void ViewCursorDCOPInterface::cursorPosition (uint line, uint col)
31 {
32  m_parent->cursorPosition (&line, &col);
33 }
34 
35 void ViewCursorDCOPInterface::cursorPositionReal (uint line, uint col)
36 {
37  m_parent->cursorPositionReal (&line, &col);
38 }
39 
40 bool ViewCursorDCOPInterface::setCursorPosition (uint line, uint col)
41 {
42  return m_parent->setCursorPosition ( line, col);
43 }
44 
45 bool ViewCursorDCOPInterface::setCursorPositionReal (uint line, uint col)
46 {
47  return m_parent->setCursorPositionReal ( line, col);
48 }
49 
50 uint ViewCursorDCOPInterface::cursorLine ()
51 {
52  return m_parent->cursorLine ();
53 }
54 
55 uint ViewCursorDCOPInterface::cursorColumn ()
56 {
57  return m_parent->cursorColumn ();
58 }
59 
60 uint ViewCursorDCOPInterface::cursorColumnReal ()
61 {
62  return m_parent->cursorColumnReal ();
63 }
64 
65 void ViewCursorDCOPInterface::cursorPositionChanged ()
66 {
67  m_parent->cursorPositionChanged ();
68 }

interfaces

Skip menu "interfaces"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

interfaces

Skip menu "interfaces"
  • arts
  • dcop
  • dnssd
  • interfaces
  •     interface
  •     library
  •   kspeech
  •   ktexteditor
  • kabc
  • kate
  • kcmshell
  • kdecore
  • kded
  • kdefx
  • kdeprint
  • kdesu
  • kdeui
  • kdoctools
  • khtml
  • kimgio
  • kinit
  • kio
  •   bookmarks
  •   httpfilter
  •   kfile
  •   kio
  •   kioexec
  •   kpasswdserver
  •   kssl
  • kioslave
  •   http
  • kjs
  • kmdi
  •   kmdi
  • knewstuff
  • kparts
  • krandr
  • kresources
  • kspell2
  • kunittest
  • kutils
  • kwallet
  • libkmid
  • libkscreensaver
Generated for interfaces by doxygen 1.8.1.2
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |