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

void Impala::Visualization::StatusOverlayWindow::ShowStatus ( String  message,
bool  value 
) [inline]

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:


Generated on Fri Mar 19 11:48:52 2010 for ImpalaSrc by  doxygen 1.5.1