Definition at line 708 of file SegmentationDocumentGuiAnno.h. References DrawFramesLine(), FindFrameShot(), Impala::Visualization::TimeLineViewStrip::FirstVisibleFrame(), Impala::Visualization::TimeLineViewStrip::LastVisibleFrame(), and mShots. Referenced by WindowDisplayEvent(). 00709 { 00710 if (!sTL) 00711 return; 00712 int fVisFr = sTL->FirstVisibleFrame(); 00713 int lVisFr = sTL->LastVisibleFrame(); 00714 int fVisShot = FindFrameShot(fVisFr); 00715 int lVisShot = FindFrameShot(lVisFr); 00716 for (int i = fVisShot; i<lVisShot+1 && i<mShots.size()-1; i++) 00717 { 00718 int fFrame = mShots[i]+1; 00719 int lFrame = mShots[i+1]; 00720 DrawFramesLine(sTL,fFrame,lFrame,2,y,y,(i%2) ? col1 : col2); 00721 } 00722 }
Here is the call graph for this function:
|