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

virtual void OglGui::TextArea::ReshapeFunc ( INT  width,
INT  height 
) [inline, virtual]

Definition at line 151 of file TextArea.h.

References cLineHeight, CreateScrollBar(), mNrLines, mScrollBar, mText, OglGui::Window::ReshapeFunc(), and SetText().

00152     {
00153         Window::ReshapeFunc(width, height);
00154         if (height / cLineHeight != mNrLines)
00155         {
00156             if ((mNrLines = height / cLineHeight) > 1)
00157             {
00158                 if (!mScrollBar)
00159                     CreateScrollBar();
00160             }
00161         }
00162         SetText(mText);
00163     }

Here is the call graph for this function:


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