File: DocWrapper.cpp

package info (click to toggle)
juffed 0.10-89-g3690b60-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,160 kB
  • sloc: cpp: 21,060; ansic: 446; xml: 329; sh: 68; makefile: 16
file content (139 lines) | stat: -rw-r--r-- 2,583 bytes parent folder | download | duplicates (5)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include "DocWrapper.h"
#include "NullDoc.h"
#include "Log.h"
#include "Constants.h"

void DocWrapper::setDoc(Juff::Document* doc) {
	doc_ = ( doc == NULL ? NullDoc::instance() : doc );
}

bool DocWrapper::usesTabs() {
	return EditorSettings::get(EditorSettings::UseTabs);
}

int DocWrapper::tabWidth() {
	return EditorSettings::get(EditorSettings::TabWidth);
}

QString DocWrapper::fileName() {
	if ( !doc_->isNull() && !doc_->isNoname() ) {
		return doc_->fileName();
	}
	else {
		return "";
	}
}

long DocWrapper::selectionStart() {
	if ( doc_->isNull() ) {
		return 0;
	}
	else {
		return doc_->positionGetSelectionStart();
	}
}

long DocWrapper::selectionEnd() {
	if ( doc_->isNull() ) {
		return 0;
	}
	else {
		return doc_->positionGetSelectionEnd();
	}
}

void DocWrapper::createSelection(const QVariant& start, const QVariant& end) {
//	LOGGER;
	if ( !doc_->isNull() ) {
		doc_->positionSetSelection(start.toInt(), end.toInt());
	}
}

void DocWrapper::moveCursor(const QVariant& pos) {
	if ( !doc_->isNull() ) {
		doc_->positionSetCursor(pos.toInt());
	}
}

long DocWrapper::cursorPosition() {
	if ( !doc_->isNull() ) {
		return doc_->positionGetCursor();
	}
	else {
		return 0;
	}
}

QString DocWrapper::selectedText() {
	if ( !doc_->isNull() ) {
		QString text;
		if ( doc_->getSelectedText(text) ) {
			return text;
		}
	}
	return "";
}

QString DocWrapper::text() {
	if ( !doc_->isNull() ) {
		QString text;
		if ( doc_->getText(text) ) {
			return text;
		}
	}
	return "";
}

QString DocWrapper::currentLineText() {
	if ( !doc_->isNull() ) {
		QString text;
		int row, col;
		if ( doc_->getCursorPos(row, col) && doc_->getTextLine(row, text) ) {
//			return text.remove(LineSeparatorRx);
			return text;
		}
	}
	return "";
}

int DocWrapper::currentLineLength() {
	return currentLineText().length();
}

long DocWrapper::currentLinePosition() {
	if ( !doc_->isNull() ) {
		int row, col;
		if ( doc_->getCursorPos(row, col) ) {
			return cursorPosition() - col;
		}
	}
	return 0;
}

void DocWrapper::replaceContent(const QVariant& value, const QVariant& start, const QVariant& end, const QVariant& no_indent) {
	if ( doc_->isNull() ) {
		return;
	}
	
	Q_UNUSED(no_indent);
	QString str = value.toString();
	createSelection(start, end);
	doc_->replaceSelectedText(str);
}

int DocWrapper::eol() {
	if ( doc_->isNull() ) {
		return -1;
	}
	
	switch ( doc_->eol() ) {
		case Juff::Document::EolWin : return 0;
		case Juff::Document::EolMac : return 1;
		case Juff::Document::EolUnix : return 2;
		default : return -1;
	}
}

//void DocWrapper::abr() {
//	qDebug("????");
//}