Definition at line 167 of file OglDemo.h. References OglGui::TitledWindow::BtnMax, MNAnimTab(), OglGui::Tabs::SetActiveTab(), OglGui::TitledWindow::SetContentPane(), ViewSphereTab(), and WoggelTab(). Referenced by BuildTab_Animations(). 00168 { 00169 TitledWindow* titledWnd = new TitledWindow(parent, x, y, w, h, 00170 "Animation Window", 00171 TitledWindow::BtnMax); 00172 Tabs* animTabs = new Tabs(titledWnd, 0, 0, w-8, h-32, 100); 00173 00174 titledWnd->SetContentPane(animTabs); 00175 00176 WoggelTab(animTabs); 00177 MNAnimTab(animTabs); 00178 ViewSphereTab(animTabs); 00179 00180 new FramesPerSecond(animTabs, 0, 0, 80, 24); 00181 00182 animTabs->SetActiveTab(0); 00183 return titledWnd; 00184 }
Here is the call graph for this function:
|