Reimplemented from OglGui::OglWindow. Definition at line 517 of file Window.h. References mAllowRepositionViewers, mDoStatus, mInfoBox, mInfoBoxActive, mInfoBoxDraw, mMakeViewWithRect, OglGui::OglWindow::mOglWnd, OglGui::OglWindow::mRunTimeType, mViewTiler, and Impala::Core::Geometry::RectangleTiler::ResetWnd(). 00518 { 00519 if (!mOglWnd) 00520 { 00521 std::cout << "CreateOGLWND/ViewPort failed" << std::endl; 00522 return; 00523 } 00524 00525 mRunTimeType |= 4; 00526 00527 mViewTiler.ResetWnd(mOglWnd->width, mOglWnd->height); 00528 mMakeViewWithRect = false; 00529 mAllowRepositionViewers = true; 00530 00531 //todo: add skinning 00532 //mNormalColor = 0xffd2c799; 00533 //mHighlightColor = 0xffddddaa; 00534 // mOglWnd->bgCol = mNormalColor; 00535 00536 00537 mDoStatus = false; 00538 mInfoBoxActive = true; 00539 mInfoBoxDraw = false; 00540 mInfoBox = 0; 00541 }
Here is the call graph for this function:
|