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

void Impala::Application::MediaTable::TableViewerPointCloud::UpdateAllMarks (  )  [inline]

Definition at line 201 of file TableViewerPointCloud.h.

References OglGui::ViewerPoint::cMagicNr, OglGui::ViewerPoint::GetId(), Impala::Application::MediaTable::TableDataView::GetMarkById(), Impala::Application::MediaTable::TableDataViewController::GetTableDataView(), Impala::Application::MediaTable::TableDataViewController::MarkToColor(), OglGui::OglWindow::mOglWnd, and OglGui::OglWindow::UpdateScene().

Referenced by UpdateSelectionEvent().

00202         {
00203                 LIST *obj, *objList = mOglWnd->objectList;
00204                 ForAllElements(obj, objList)
00205                 {
00206                         OGLVIEW*    view = 0;
00207                         if(obj && obj->info)
00208                                 (OGLVIEW*) obj->info;
00209                         
00210                         if (view && 
00211                                 (view->SysData2 == (void*)OglGui::ViewerPoint::cMagicNr))
00212                         {
00213                                 OglGui::ViewerPoint* vp;
00214                                 vp = (OglGui::ViewerPoint*) view->SysData1;
00215                                 if (vp)
00216                                 {
00217                                         long long id = vp->GetId();
00218                                         long row = (long) id;
00219                                         int mark = GetTableDataView()->GetMarkById(row);
00220                                         view->borderCol = MarkToColor(mark);                                            
00221                                 }
00222                         }
00223                 }
00224                 UpdateScene();          
00225         }

Here is the call graph for this function:


Generated on Fri Mar 19 10:44:12 2010 for ImpalaSrc by  doxygen 1.5.1