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

interfaces/ktexteditor

  • interfaces
  • ktexteditor
selectiondcopinterface.cpp
1 #include "selectiondcopinterface.h"
2 #include "selectioninterface.h"
3 
4 #include <dcopclient.h>
5 using namespace KTextEditor;
6 
7 SelectionDCOPInterface::SelectionDCOPInterface( SelectionInterface *Parent, const char *name)
8  : DCOPObject(name)
9 {
10  m_parent = Parent;
11 }
12 
13 SelectionDCOPInterface::~SelectionDCOPInterface()
14 {
15 
16 }
17 
21  bool SelectionDCOPInterface::setSelection ( uint startLine, uint startCol, uint endLine, uint endCol )
22  {
23  return m_parent->setSelection ( startLine, startCol, endLine, endCol );
24  }
25 
29  bool SelectionDCOPInterface::clearSelection ()
30  {
31  return m_parent->clearSelection();
32  }
33 
37  bool SelectionDCOPInterface::hasSelection ()
38  {
39  return m_parent->hasSelection();
40  }
41 
45  TQString SelectionDCOPInterface::selection ()
46  {
47  return m_parent->selection();
48  }
49 
53  bool SelectionDCOPInterface::removeSelectedText ()
54  {
55  return m_parent->removeSelectedText();
56  }
57 
61  bool SelectionDCOPInterface::selectAll ()
62  {
63  return m_parent->selectAll();
64  }

interfaces/ktexteditor

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

interfaces/ktexteditor

Skip menu "interfaces/ktexteditor"
  • 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/ktexteditor by doxygen 1.8.3.1
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |