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

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

Definition at line 431 of file TextEdit.h.

References OglGui::OglWindow::H(), OglGui::DocDimensions::mDocH, OglGui::DocDimensions::mDocY, and mLineH.

Referenced by HandleMoveKey(), HandleScrollBarsOnDisplay(), MouseFunc(), RecomputeDocument(), and ReshapeFunc().

00432     {
00433         if (mDocY < H() - mDocH)
00434             mDocY = H() - mDocH;
00435         if (mDocY > H() - mLineH)
00436             mDocY = H() - mLineH;
00437     }

Here is the call graph for this function:


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