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

virtual void Impala::Visualization::SegmentationDocumentGuiAnno::UpDownButtonSelectionEvent ( UpDownButton src,
bool  isUpBtn,
void *  userData 
) [inline, virtual]

Reimplemented from OglGui::UpDownButtonListener.

Definition at line 627 of file SegmentationDocumentGuiAnno.h.

References GoToNextAnno(), mPrevNextAnnoStayInVideo, NEGATIVE_BIT, POSITIVE_BIT, SKIPPED_BIT, UNKNOWN_BIT, UPDOWNBUT_NEGATIVE, UPDOWNBUT_POSITIVE, UPDOWNBUT_SKIPPED, and UPDOWNBUT_UNKNOWN.

00628     {
00629         int updownBut = (long long) userData;
00630         int bit = 0;
00631         if (updownBut == UPDOWNBUT_POSITIVE)
00632             bit = POSITIVE_BIT;
00633         else if (updownBut == UPDOWNBUT_SKIPPED)
00634             bit = SKIPPED_BIT;
00635         else if (updownBut == UPDOWNBUT_NEGATIVE)
00636             bit = NEGATIVE_BIT;
00637         else if (updownBut == UPDOWNBUT_UNKNOWN)
00638             bit = UNKNOWN_BIT;
00639         if (bit)
00640             GoToNextAnno(bit, isUpBtn, mPrevNextAnnoStayInVideo);
00641     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:46:33 2010 for ImpalaSrc by  doxygen 1.5.1