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

void Impala::Visualization::SimilarityTableSetRank::ShowFloatWnd ( Plot::Plot plot,
int  idx,
double  x,
double  y 
) [inline]

Definition at line 403 of file SimilarityTableSetRank.h.

References Impala::Visualization::ImagesWindow::AddImage(), FindImSetId(), Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Get1(), mFloatIdx, mFloatWnd, mKeyframeSet, mSelectedRanking, Impala::Visualization::ImagesWindow::RemoveImages(), OglGui::OglWindow::SetDimensions(), OglGui::OglWindow::SetVisible(), ShowImageInfo(), Impala::Visualization::Plot::Plot::Window2Pixel(), OglGui::OglWindow::X(), and OglGui::OglWindow::Y().

Referenced by OnMouse().

00404     {
00405         if (!mFloatWnd)
00406             return;
00407         ShowImageInfo(idx);
00408         if (mFloatIdx != idx)
00409         {
00410             mFloatWnd->RemoveImages();
00411             Quid quid = mSelectedRanking->Get1(idx);
00412             int imSetId = FindImSetId(quid);
00413             mFloatWnd->AddImage(imSetId,mKeyframeSet);
00414             mFloatIdx = idx;
00415         }
00416         double wX, wY;
00417         plot->Window2Pixel(x,y,wX,wY);
00418         mFloatWnd->SetDimensions(plot->X()+wX+8,
00419                                  plot->Y()+wY-200,RETAIN,RETAIN);
00420         mFloatWnd->SetVisible(true);
00421     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:48:06 2010 for ImpalaSrc by  doxygen 1.5.1