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

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

Definition at line 206 of file TableDataView.h.

References GetFilteredRows(), and MarkRow().

Referenced by MarkAllFilteredRows(), Impala::Application::MediaTable::TableWindow::MouseFunc(), and Impala::Application::MediaTable::GridWindow::MouseFunc().

00207     {
00208         if (stop <= start)
00209         {
00210             int t = stop;
00211             stop  = start;
00212             start = t;
00213         }
00214         if (start < 0)
00215             start = 0;
00216 
00217         if (stop >= GetFilteredRows())
00218             stop = GetFilteredRows()-1;
00219 
00220         for (int i=start; i<=stop; i++)
00221             MarkRow(i, markstate, mark);
00222     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:32 2011 for ImpalaSrc by  doxygen 1.5.1