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

int Impala::Visualization::SimilarityTableSetRank::OptionBits (  )  [inline, private]

Definition at line 679 of file SimilarityTableSetRank.h.

References OglGui::CheckBox::GetSelected(), mPunsOnly, mRkfCheckBox, mVideoCheckBox, Impala::Visualization::PunsOnlyControl::NegativeCheckBox(), Impala::Visualization::PunsOnlyControl::PositiveCheckBox(), and Impala::Visualization::PunsOnlyControl::SkipCheckBox().

Referenced by HandleNewFile().

00680     {
00681         int bits = 0;
00682         if (mVideoCheckBox->GetSelected())
00683             bits |= 1;
00684         if (mPunsOnly->PositiveCheckBox()->GetSelected())
00685             bits |= 2;
00686         if (mPunsOnly->NegativeCheckBox()->GetSelected())
00687             bits |= 4;
00688         if (mPunsOnly->SkipCheckBox()->GetSelected())
00689             bits |= 8;
00690         if (mRkfCheckBox->GetSelected())
00691             bits |= 16;
00692         return bits;
00693     }

Here is the call graph for this function:


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