Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void OglGui::TextEdit::InsertString ( string  str  )  [inline]

Definition at line 833 of file TextEdit.h.

References ComputeCaretPosition(), DoDeleteSelection(), mCaret, mMark, mText, PublishChange(), and UndoableInsertString().

Referenced by Paste().

00834     {
00835         UndoableInsertString(str);
00836         if (mCaret != mMark)
00837             DoDeleteSelection();
00838         mText.insert(mCaret, str);
00839         mMark = mCaret += str.length();
00840         ComputeCaretPosition();
00841         PublishChange();
00842     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:27:05 2011 for ImpalaSrc by  doxygen 1.5.1