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:
|