Definition at line 94 of file TitledWindow.h.
References OglGui::ALLSIDES, OglGui::OglWindow::ConnectTo(), GetClientArea(), mContent, OglGui::Window::SetAllowReposition(), and OglGui::OglWindow::SetDimensions().
Referenced by Impala::Application::SDash::SurveillanceApp::BuildMonitorAll(), OglGui::OglDemo::BuildTab_GalaxyGrid(), OglGui::ColorTargetModalDialog::ColorTargetModalDialog(), Init(), OglGui::InfoViewer::Init(), OglGui::OglDemo::RotateSelectedViews(), Impala::Visualization::DirImViewer3D::SetUpCameraControl3D(), OglGui::OglDemo::Titled4Woggels(), OglGui::OglDemo::TitledAnimations(), OglGui::OglDemo::TitledCamera3DControl(), OglGui::OglDemo::TitledControlTreeView(), OglGui::OglDemo::TitledFancyTreeView(), OglGui::OglDemo::TitledGalaxy(), and OglGui::OglDemo::TitledViewControl().
00096 {
00097 if (delOldContent && mContent){
00098 delete mContent;
00099 mContent = 0;
00100 }
00101 if ((mContent = nwPane) && doLayoutAndConnect){
00102 int clX, clY, clW, clH;
00103
00104 GetClientArea(clX, clY, clW, clH);
00105 mContent->SetDimensions(clX, clY, clW, clH);
00106 mContent->ConnectTo(this, ALLSIDES);
00107 mContent->SetAllowReposition(false);
00108 }
00109 }
Here is the call graph for this function: