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

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

Definition at line 926 of file TextEdit.h.

References OglGui::OglWindow::H(), mHorizontalScrollBar, OglGui::OglWindow::mOglWnd, mVerticalScrollBar, and OglGui::OglWindow::W().

Referenced by DisplayFunc(), and InitDisplayFunc().

00927     {
00928         int x = 0, y = 0, w = W(), h = H();
00929         if (mHorizontalScrollBar)
00930         {
00931             y = mHorizontalScrollBar->H();
00932             h -= mHorizontalScrollBar->H();
00933         }
00934         if (mVerticalScrollBar)
00935             w -= mVerticalScrollBar->W();
00936         oglSys.StartScissor(mOglWnd, x, y, w, h);
00937 
00938     }

Here is the call graph for this function:


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