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

void Impala::Application::MediaTable::TableWindow::ShowZoomView ( bool  show  )  [inline]

Definition at line 555 of file TableWindow.h.

References OglGui::OglWindow::GetOGLWND(), ILOG_WARNING, mShowZoomView, mZoomView, mZoomViewCache, and mZoomViewTargetWindow.

Referenced by KeyboardFunc(), and SetShowPreview().

00556     {
00557         if (!mZoomViewCache)
00558             ILOG_WARNING("Zoom view disabled: no cache set.");
00559         if (!mZoomView)
00560             ILOG_WARNING("Zoom view disabled: no target window set.");
00561 
00562         if (mShowZoomView = show)
00563         {
00564             oglSys.SetAlwaysDraw(mZoomViewTargetWindow->GetOGLWND(), true);
00565             viewSys.SetTags(mZoomView, visibleTag);
00566         }
00567         else
00568         {
00569             viewSys.ClearTags(mZoomView, visibleTag);
00570             mZoomView->UserData1 = (void *) -1;
00571             oglSys.SetAlwaysDraw(mZoomViewTargetWindow->GetOGLWND(), false);
00572         }
00573     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:38 2011 for ImpalaSrc by  doxygen 1.5.1