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

void OglGui::WindowTimeLine::ViewIdxPointLine ( int  idx,
int  pX,
int  lX,
bool  drawPoint,
bool  drawLine 
) [inline, protected]

Definition at line 375 of file WindowTimeLine.h.

References HideView(), OglGui::ZoomShiftRuler::mAxisY, mViewOffY, mViews, and OglGui::OglWindow::W().

Referenced by LayoutViews().

00376     {
00377         int w = W();
00378         if (drawPoint)
00379         {
00380             HideView(mViews[idx]);
00381             if (pX > 0 && pX < w)
00382             {
00383                 glPointSize(3);
00384                 DrawPoint(pX, mAxisY+mViewOffY[idx]);
00385                 glPointSize(1);
00386             }
00387         }
00388         if (drawLine && ((lX > 0 && lX < w) || (pX >0 && pX < w)))
00389             DrawLine(lX, mAxisY, pX, mAxisY+mViewOffY[idx]);
00390     }

Here is the call graph for this function:


Generated on Fri Mar 19 12:11:25 2010 for ImpalaSrc by  doxygen 1.5.1