Definition at line 804 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(). 00805 { 00806 int bits = 0; 00807 if (mVideoCheckBox->GetSelected()) 00808 bits |= 1; 00809 if (mPunsOnly->PositiveCheckBox()->GetSelected()) 00810 bits |= 2; 00811 if (mPunsOnly->NegativeCheckBox()->GetSelected()) 00812 bits |= 4; 00813 if (mPunsOnly->SkipCheckBox()->GetSelected()) 00814 bits |= 8; 00815 if (mRkfCheckBox->GetSelected()) 00816 bits |= 16; 00817 return bits; 00818 }
Here is the call graph for this function: ![]()
|