Definition at line 1649 of file SegmentationDocumentGuiAnno.h.
References CHBOX_PN_IN_VIDEO, mNegativeUDBtn, mNoPrevNextControl, mPNInVideoCB, mPositiveUDBtn, mSkippedUDBtn, mUnknownUDBtn, PrevNextAnnoControlFeedBack(), PrevNextAnnoShot(), OglGui::OglWindow::SetBorderType(), OglGui::CheckBox::SetCheckBoxListener(), UPDOWNBUT_NEGATIVE, UPDOWNBUT_POSITIVE, UPDOWNBUT_SKIPPED, and UPDOWNBUT_UNKNOWN.
Referenced by InitGUI().
01650 {
01651 if (mNoPrevNextControl)
01652 return;
01653
01654 OglGui::Window* prevNextWnd = new OglGui::Window(this,340,24);
01655 prevNextWnd->SetBorderType(BEV_ETCHED);
01656 mPNInVideoCB
01657 = new CheckBox(prevNextWnd,108,22,"StayInVideo",true,0);
01658 mPNInVideoCB->SetCheckBoxListener(this, CHBOX_PN_IN_VIDEO);
01659 mPositiveUDBtn = PrevNextAnnoShot(prevNextWnd,"P", UPDOWNBUT_POSITIVE);
01660 mSkippedUDBtn = PrevNextAnnoShot(prevNextWnd,"S", UPDOWNBUT_SKIPPED);
01661 mNegativeUDBtn = PrevNextAnnoShot(prevNextWnd,"N", UPDOWNBUT_NEGATIVE);
01662 mUnknownUDBtn = PrevNextAnnoShot(prevNextWnd,"U", UPDOWNBUT_UNKNOWN);
01663 PrevNextAnnoControlFeedBack();
01664 }
Here is the call graph for this function: