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

void Impala::Visualization::SegmentationDocumentGuiAnno::GuiRankingControl (  )  [inline, private]

Definition at line 1627 of file SegmentationDocumentGuiAnno.h.

References BUT_RANK_ALL, BUT_RANK_NOT_ANN, CHBOX_RANK_MODE, InBoxButton(), mNoRankSlider, mRankAllBtn, mRankChBox, mRankNotAnnoBtn, mRankVSB, OglGui::CheckBox::SetCheckBoxListener(), and OglGui::ValueScrollBar::SetValueScrollBarListener().

Referenced by InitGUI().

01628     {
01629         int sz = mNoRankSlider ? 160 : 290;
01630         OglGui::Window* rankWnd = new OglGui::Window(this,sz,24);
01631         // Rank mode
01632         mRankChBox = new CheckBox(rankWnd,0,0,130,24,"Rank",false,4);
01633         mRankChBox->SetCheckBoxListener(this, CHBOX_RANK_MODE);
01634         // Rank all shots including annotated ones
01635         mRankAllBtn = InBoxButton(mRankChBox,60,32,"All",BUT_RANK_ALL);
01636         // Rank only shots without annotation
01637         mRankNotAnnoBtn = InBoxButton(mRankChBox,92,36,"!Ann",BUT_RANK_NOT_ANN);
01638         if (!mNoRankSlider)        // Ranking scrollbar
01639         {        
01640             mRankVSB = new ValueScrollBar(rankWnd,130,0,160,24,0,100,0);
01641             mRankVSB->SetValueScrollBarListener(this);
01642         }
01643     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:25:00 2011 for ImpalaSrc by  doxygen 1.5.1