Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void OglGui::CheckBoxValueBars::SelectorPopUpAtCheckBox ( CheckBox chBox  )  [inline]

Definition at line 115 of file CheckBoxValueBars.h.

References OglGui::DropDownWindow::DropDown(), OglGui::OglWindow::GetOGLWND(), OglGui::DropDownWindow::HeaderText(), mDropSelector, mModalWnd, mTopWnd, OglGui::OglWindow::SetBackground(), OglGui::StringSelector::SetCurrentString(), OglGui::OglWindow::SetDimensions(), OglGui::StringSelector::SetStringListener(), OglGui::StaticText::SetText(), OglGui::OglWindow::SetVisible(), and OglGui::DropDownStringSelector::StrSelector().

Referenced by WindowMouseEvent().

00116     {
00117         mModalWnd->SetVisible(true);
00118         oglSys.BringToFront(mModalWnd->GetOGLWND());
00119 
00120         StringSelector* strSelector = mDropSelector->StrSelector();
00121         strSelector->SetStringListener(this,(void*)chBox);
00122         strSelector->SetDimensions(chBox->W(),RETAIN);
00123         strSelector->SetCurrentString(0,true);
00124 
00125         int x=0, y=0;
00126         chBox->OffsetXY(mTopWnd,x,y);
00127         mDropSelector->DropDown(false);
00128         mDropSelector->SetDimensions(x,y+2,RETAIN,RETAIN);
00129         mDropSelector->SetBackground(chBox->GetBorderBackground());
00130         mDropSelector->HeaderText()->SetText(chBox->GetText());
00131         mDropSelector->DropDown(true);
00132     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:26:19 2011 for ImpalaSrc by  doxygen 1.5.1