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

void OglGui::TextEdit::InsertKey ( int  c  )  [inline]

Definition at line 821 of file TextEdit.h.

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

Referenced by KeyboardFunc().

00822     {
00823         UndoableInsertKey(c);
00824         if (mCaret != mMark)
00825             DoDeleteSelection();
00826         mText.insert(mCaret, 1, c);
00827         mCaret++;
00828         mMark = mCaret;
00829         ComputeCaretPosition();
00830         PublishChange();
00831     }

Here is the call graph for this function:


Generated on Fri Mar 19 12:08:06 2010 for ImpalaSrc by  doxygen 1.5.1