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

void Impala::Visualization::StatusOverlayWindow::ShowStatus ( String  message,
String  value,
ULONG  color = 0 
) [inline]

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:


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