Definition at line 88 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(). 00089 { 00090 SetVisible(true); 00091 oglSys.SetAlwaysDraw(GetOGLWND(), 1); 00092 mTitle->SetText(message); 00093 mMax->SetText(""); 00094 mMin->SetText(""); 00095 mCur->SetText(value); 00096 mProgressBar->SetProgress(100); 00097 mProgressBar->SetVisible(color > 0); 00098 if (color > 0) 00099 mProgressBar->SetColors(color, color); 00100 StartRepeatTime(); 00101 }
Here is the call graph for this function:
|