Reimplemented from OglGui::Window. Definition at line 229 of file StringColumns.h. References OglGui::OglWindow::H(), OglGui::DocDimensions::mDocH, OglGui::DocDimensions::mDocY, mItemHeight, mOldH, and OglGui::Window::ReshapeFunc(). 00230 { 00231 Window::ReshapeFunc(w,h); 00232 00233 // Anchor text at upper left corner 00234 mDocY += (h - mOldH); 00235 mOldH = h; 00236 if (mDocY < H() - mDocH) 00237 mDocY = H() - mDocH; 00238 if (mDocY > H() - mItemHeight) 00239 mDocY = H() - mItemHeight; 00240 }
Here is the call graph for this function:
|