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

void OglGui::TextEdit::Copy (  )  [inline]

Definition at line 907 of file TextEdit.h.

References GetSelectionLeftRight(), mCaret, OglGui::Window::mClipboardString, mMark, and mText.

Referenced by Cut(), and KeyboardFunc().

00908     {
00909         if (mCaret == mMark)
00910             return;
00911 
00912         int left,right;
00913         GetSelectionLeftRight(left, right);
00914         mClipboardString = mText.substr(left, right - left);
00915     }

Here is the call graph for this function:


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