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

OglGui::Window* Impala::Application::IDash::ScreenBase::CreateLogos ( OglGui::Window w,
int  x,
int  y 
) [inline]

Definition at line 87 of file ScreenBase.h.

References OglGui::OglWindow::GetOGLWND(), ILOG_DEBUG, OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::SetBorderType(), OglGui::OglWindow::SetClipRounded(), and OglGui::OglWindow::SetRoundness().

Referenced by Impala::Application::IDash::ScreenBrowser::DoControlsPane(), and Impala::Application::IDash::ScreenBrowser::LogoAnimation().

00088     {
00089         OglGui::Window *v = new OglGui::Window(w, x, y, 340, 50);
00090         v->SetBorderType(4);
00091         v->SetRoundness(3,3,3,3);
00092         v->SetBorderFillShaded(1);
00093         v->SetClipRounded(true);
00094         std::string imname = "icons/logos.png";
00095         ILOG_DEBUG(" reading image " << imname);
00096         OGLIMAGE *image = OGLReadPNG(imname.c_str(), false);
00097         if (image != NULL)
00098         {
00099             OglGui::View *icon =
00100                 new OglGui::View(v->GetOGLWND(),image,0,0,340,50);
00101             oglSys.ReleaseOglImage(image);
00102         }
00103 
00104         return v;
00105     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:40:09 2010 for ImpalaSrc by  doxygen 1.5.1