Definition at line 930 of file SegmentationDocumentGuiAnno.h. References InAnnoHistory(), mAnnoHistory, mAnnoHistoryPos, mAnnoHistoryVSB, mAnnoHistoryVSBAdjusting, OglGui::ValueScrollBar::SetMinMaxValue(), and OglGui::ValueScrollBar::SetValue(). Referenced by DoAnno(). 00931 { 00932 AnnoHistory annoHist = {fileIdx, frameIdx, rankIdx}; 00933 if (!InAnnoHistory(&annoHist)) 00934 { 00935 mAnnoHistory.push_back(annoHist); 00936 mAnnoHistoryPos = mAnnoHistory.size(); 00937 if (!mAnnoHistoryVSB) 00938 return; 00939 mAnnoHistoryVSBAdjusting = true; 00940 mAnnoHistoryVSB->SetMinMaxValue(0,mAnnoHistoryPos); 00941 mAnnoHistoryVSB->SetValue(mAnnoHistoryPos); 00942 mAnnoHistoryVSBAdjusting = false; 00943 } 00944 }
Here is the call graph for this function:
|