diff options
author | Oz Linden <oz@lindenlab.com> | 2012-01-04 09:32:38 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-01-04 09:32:38 -0500 |
commit | 97630acce0451c85f8fcc5bcd941e5d45867ad80 (patch) | |
tree | 21584b674340e83b0001f570de257c0f7026012c /indra/llui/lltexteditor.cpp | |
parent | 1ce22e0a5dd62bc6a750fbdd39719190360af611 (diff) | |
parent | 032a5e45728597106e07d2d22de3799aaaaf4923 (diff) |
merge changes for storm-1708
Diffstat (limited to 'indra/llui/lltexteditor.cpp')
-rw-r--r-- | indra/llui/lltexteditor.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index 9bd445988d..3a23ce1cac 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -2250,6 +2250,22 @@ void LLTextEditor::insertText(const std::string &new_text) setEnabled( enabled ); } +void LLTextEditor::insertText(LLWString &new_text) +{ + BOOL enabled = getEnabled(); + setEnabled( TRUE ); + + // Delete any selected characters (the insertion replaces them) + if( hasSelection() ) + { + deleteSelection(TRUE); + } + + setCursorPos(mCursorPos + insert( mCursorPos, new_text, FALSE, LLTextSegmentPtr() )); + + setEnabled( enabled ); +} + void LLTextEditor::appendWidget(const LLInlineViewSegment::Params& params, const std::string& text, bool allow_undo) { // Save old state @@ -2838,3 +2854,13 @@ void LLTextEditor::clear() getViewModel()->setDisplay(LLWStringUtil::null); clearSegments(); } + +bool LLTextEditor::canLoadOrSaveToFile() +{ + return !mReadOnly; +} + +S32 LLTextEditor::spacesPerTab() +{ + return SPACES_PER_TAB; +} |