Definition at line 45 of file CheckBoxValueBars.h. References OglGui::DynamicList::AddWindow(), OglGui::CheckBoxValueBar::ChBox(), OglGui::OglWindow::ConnectTo(), OglGui::L2L, mCheckBoxWidth, OglGui::CheckBoxValueBar::MenuBtn(), mOptions, OglGui::R2R, OglGui::Window::SetWindowListener(), and OglGui::OglWindow::W(). Referenced by Impala::Visualization::SimilarityTimeLineVideo::BuildConceptControl(). 00046 { 00047 bool menuBtn = mOptions != 0; 00048 CheckBoxValueBar* chBoxVB = 00049 new CheckBoxValueBar(this,W(),22,str,color,mCheckBoxWidth,menuBtn); 00050 chBoxVB->ConnectTo(this,L2L|R2R); 00051 if (mOptions) 00052 chBoxVB->MenuBtn()->SetWindowListener(this,(void*)chBoxVB->ChBox()); 00053 this->AddWindow(chBoxVB); 00054 return chBoxVB; 00055 }
Here is the call graph for this function:
|