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:
|