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

template<class ArrayT>
void Impala::Application::WindowShow< ArrayT >::RequestNext ( int  inc  )  [inline]

Definition at line 91 of file mainShow.cpp.

References Impala::Application::WindowShow< ArrayT >::mCurNr, Impala::Application::WindowShow< ArrayT >::NrImages(), and Impala::Application::WindowShow< ArrayT >::ShowCurImage().

Referenced by Impala::Application::WindowShow< ArrayT >::KeyboardFunc(), and Impala::Application::WindowShow< ArrayT >::WindowShow().

00092     {
00093         int newNr = mCurNr + inc;
00094         if (newNr < 0)
00095             newNr = 0;
00096         if (newNr >= NrImages())
00097             newNr = NrImages() - 1;
00098         if (newNr != mCurNr)
00099         {
00100             mCurNr = newNr;
00101             ShowCurImage("");
00102         }
00103     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:37:36 2010 for ImpalaSrc by  doxygen 1.5.1