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("????");
//}
|