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

void Impala::Application::VideoExcel::TableDataSource::MarkRange ( int  start,
int  stop,
int  markstate,
bool  mark = true 
) [inline]

Definition at line 172 of file TableDataSource.h.

References GetEndRow(), and MarkRow().

Referenced by MarkAllRows(), MarkVisibleRows(), Impala::Application::VideoExcel::TableWindow::MouseFunc(), and Impala::Application::VideoExcel::GridWindow::MouseFunc().

00173     {
00174         if (stop <= start)
00175         {
00176             int t = stop;
00177             stop  = start;
00178             start = t;
00179         }
00180         if (start < 0) start = 0;
00181         if (stop >= GetEndRow()) stop = GetEndRow()-1;
00182 
00183         for (int i=start; i<=stop; i++)
00184             MarkRow(i, markstate, mark);
00185     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:16:44 2011 for ImpalaSrc by  doxygen 1.5.1