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

void Impala::Application::VideoExcel::TableDataSource::TransformMarkedTo ( int  sourcemask,
int  targetmask 
) [inline]

Definition at line 187 of file TableDataSource.h.

References GetTotalRows(), and mMarkedRows.

Referenced by Impala::Application::VideoExcel::TableWindow::TransformMarkedSelectionTo(), and Impala::Application::VideoExcel::GridWindow::TransformMarkedSelectionTo().

00188     {
00189         for (int i=0; i<GetTotalRows(); i++)
00190         {
00191             if(mMarkedRows.find(i) != mMarkedRows.end())
00192             {
00193                 if (mMarkedRows[i] & sourcemask)
00194                 {
00195                     mMarkedRows[i] = mMarkedRows[i] & ~sourcemask;
00196                     mMarkedRows[i] = mMarkedRows[i] | targetmask;
00197                 }
00198             }
00199         }
00200     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:53:54 2010 for ImpalaSrc by  doxygen 1.5.1