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