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

virtual void OglGui::StringColumns::ReshapeFunc ( int  w,
int  h 
) [inline, virtual]

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:


Generated on Fri Mar 19 12:06:50 2010 for ImpalaSrc by  doxygen 1.5.1