Definition at line 71 of file StatusOverlayWindow.h. References OglGui::OglWindow::GetOGLWND(), mCur, mMax, mMin, mProgressBar, mTitle, OglGui::ProgressBar::SetColors(), OglGui::ProgressBar::SetProgress(), OglGui::StaticText::SetText(), OglGui::OglWindow::SetVisible(), and OglGui::RepeatTimer::StartRepeatTime(). 00072 { 00073 SetVisible(true); 00074 oglSys.SetAlwaysDraw(GetOGLWND(), 1); 00075 mTitle->SetText(message); 00076 mMax->SetText(""); 00077 mMin->SetText(""); 00078 mProgressBar->SetVisible(true); 00079 mCur->SetText(value ? "enabled" : "disabled"); 00080 if (value) 00081 mProgressBar->SetColors(oglDARKGREEN, oglDARKGREEN); 00082 else 00083 mProgressBar->SetColors(oglDARKRED, oglDARKRED); 00084 mProgressBar->SetProgress(100); 00085 StartRepeatTime(); 00086 }
Here is the call graph for this function:
|