Definition at line 50 of file mainShowVidSet.cpp. References BuildGUI(), Impala::CmdOptions::GetDouble(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetString(), OglGui::Window::GuiGeneralName(), ILOG_INFO, InitData(), OglGui::OglWindow::mOglWnd, mViewScale, Impala::Visualization::OptionsLooks(), and OglGui::View::SetTags(). 00050 : Window(0, 0, width, height, true) 00051 { 00052 CmdOptions& options = CmdOptions::GetInstance(); 00053 mViewScale = options.GetDouble("viewScale"); 00054 00055 // added by Jun Wu, on Sep 2009 00056 // adding title option, which loads title string from the .ini file. 00057 std::string title = options.GetString("title"); 00058 mOglWnd->topTitle = new char [1024]; 00059 strcpy(mOglWnd->topTitle,title.c_str()); 00060 //delete mOglWnd->topTitle;//do not release it. 00061 //mOglWnd->topTitle = "MediaMill Semantic Video Search Engine"; 00062 00063 ILOG_INFO("loading data"); 00064 InitData(); 00065 ILOG_INFO("building GUI"); 00066 View::SetTags(selectableTag | showBgTag | showBorderTag | 00067 showBorderTag |showTitleTag); 00068 00069 BuildGUI(width, height); 00070 this->GuiGeneralName("WindowShowVidSet"); 00071 OptionsLooks(this); 00072 // ILOG_INFO("STARTING MAIN LOOP"); 00073 // AppController::Instance().MainLoop(); 00074 }
Here is the call graph for this function:
|