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

void Impala::Visualization::GUI::ConceptTreeBrowser::Init ( int  thumbW,
int  thumbH,
double  viewscale,
ThreadSet threadset,
String  title 
) [inline, private]

Definition at line 166 of file ConceptTreeBrowser.h.

References OglGui::ScrollWnd::ContentHolder(), OglGui::DropDownWindow::DropDown(), OglGui::OglWindow::H(), mBar, mDropWnd, mKeyWordSearch, mListener, mThreadSet, mThumbHeight, mThumbWidth, mViewScale, OglGui::ScrollWnd::ReplaceContentPane(), OglGui::OglWindow::SetBorderType(), OglGui::TextField::SetTextFieldListener(), OglGui::ScrollWnd::VerticalScrollBar(), OglGui::OglWindow::W(), OglGui::OglWindow::WndHeight(), and OglGui::OglWindow::WndWidth().

00168     {
00169         int W = WndWidth();
00170         int H = WndHeight();
00171 
00172         mThumbWidth  = thumbW;
00173         mThumbHeight = thumbH;
00174         mViewScale   = viewscale;
00175         mThreadSet   = threadset;
00176         mListener    = NULL;
00177 
00178         StaticText *keyWordSearchLabel =
00179             new StaticText(this, W-300, H-22, 120, 20, "concept filter:");
00180         mKeyWordSearch = new TextField(this, W-190, H-22, 180, 20, "");
00181         mKeyWordSearch->SetTextFieldListener(this, 0);
00182 
00183         ScrollWnd* dropScrollWnd = new ScrollWnd(this,0,0,W-4,H-28,true,0,-1);
00184         dropScrollWnd->SetBorderType(0);
00185         mBar = dropScrollWnd->VerticalScrollBar();
00186 
00187         OglGui::Window* contentHolder = dropScrollWnd->ContentHolder();
00188         mDropWnd = new DropDownWindow(contentHolder, 0, W-20, W-60, 20, title);
00189         mDropWnd->DropDown(true);
00190         dropScrollWnd->ReplaceContentPane(mDropWnd);
00191     }

Here is the call graph for this function:


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