1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#include "editdcopinterface.h"
#include "editinterface.h"
#include <dcopclient.h>
using namespace KTextEditor;
EditDCOPInterface::EditDCOPInterface( EditInterface *Parent, const char *name)
: DCOPObject(name)
{
m_parent = Parent;
}
EditDCOPInterface::~EditDCOPInterface()
{
}
TQString EditDCOPInterface::text ()
{
return m_parent->text();
}
TQString EditDCOPInterface::textLine ( uint line )
{
return m_parent->textLine(line);
}
int EditDCOPInterface::numLines ()
{
return m_parent->numLines();
}
int EditDCOPInterface::length ()
{
return m_parent->length();
}
void EditDCOPInterface::setText ( const TQString &text )
{
m_parent->setText(text);
}
bool EditDCOPInterface::insertText ( uint line, uint col, const TQString &text )
{
return m_parent->insertText( line, col, text);
}
bool EditDCOPInterface::removeText ( uint startLine, uint startCol, uint endLine, uint endCol )
{
return m_parent->removeText( startLine, startCol, endLine, endCol);
}
bool EditDCOPInterface::insertLine ( uint line, const TQString &text )
{
return m_parent->insertLine( line, text);
}
bool EditDCOPInterface::removeLine ( uint line )
{
return m_parent->removeLine( line );
}
|