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

Impala::Visualization::StatusOverlayWindow::StatusOverlayWindow ( Window p  )  [inline]

Definition at line 25 of file StatusOverlayWindow.h.

References OglGui::OglWindow::ConnectTo(), mCur, mMax, mMin, mParent, mProgressBar, mTitle, OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::SetBorderType(), OglGui::OglWindow::SetRoundness(), OglGui::OglWindow::SetVisible(), OglGui::TOBOTTOM, OglGui::TOLEFTRIGHT, OglGui::TORIGHT, and OglGui::OglWindow::W().

00025                                    :
00026         Window(p,p->W()/3.0,p->H()/4.0,p->W()/3.0,48),
00027         RepeatTimer(1200, 1200)
00028     {
00029         mParent = p;
00030         SetVisible(false);
00031         //SetBackground(oglGUI_BG);
00032         SetRoundness(15,15,15,15);
00033         SetBorderType(4);
00034         SetBorderFillShaded(2);
00035         mProgressBar = new ProgressBar(this,0,14,W(),20);
00036         mMin = new StaticText(this,5,0,40,14,"MIN");
00037         mMax = new StaticText(this,W()-45,0,40,14,"MAX");
00038         mCur = new StaticText(this,5,0,W()-10,14,"CUR");
00039         mTitle = new StaticText(this,5,34,W()-10,14,"Particulating Splines");
00040 
00041         //ConnectTo(parent, T2B|B2B|L2L|R2R);
00042         ConnectTo(p, OglGui::TOBOTTOM | OglGui::TOLEFTRIGHT);
00043         mMin->ConnectTo(this, OglGui::TOLEFTRIGHT);
00044         mMax->ConnectTo(this, OglGui::TORIGHT);
00045         mCur->ConnectTo(this, OglGui::TOLEFTRIGHT);
00046         mTitle->ConnectTo(this, OglGui::TOLEFTRIGHT);
00047         mProgressBar->ConnectTo(this, OglGui::TOLEFTRIGHT);
00048     }

Here is the call graph for this function:


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