Definition at line 586 of file OglDemo.h. References OglGui::TitledWindow::BtnMaxClose, OglGui::OglWindow::ConnectTo(), OglGui::TitledWindow::ContentPane(), OglGui::OglWindow::GetOGLWND(), OglGui::OglWindow::H(), OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::W(), OglGui::Window::Window(), and ZoomPanFuncs(). Referenced by TitledZoomPanLense(), and WindowKeyboardEvent(). 00587 { 00588 TitledWindow* titWnd = new TitledWindow(parent,x,y,w,h,"Pan Control", 00589 TitledWindow::BtnMaxClose); 00590 Window* pane = titWnd->ContentPane(); 00591 Window* panC = new Window(pane, 0, 0, pane->W(), pane->H()); 00592 00593 ZoomPanFuncs(panC->GetOGLWND(), target->GetOGLWND(), 1, 1, "Pan"); 00594 panC->SetBorderFillShaded(2); 00595 panC->ConnectTo(pane); 00596 return titWnd; 00597 }
Here is the call graph for this function:
|