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

void Impala::Application::VideoExcel::TableControlBarWindow::Init ( TableWindow table,
GridWindow grid,
int  w,
int  h 
) [inline, private]

Definition at line 92 of file TableControlBarWindow.h.

References BUTTON_RESETFILTERS, CHECK_GRID, CHECK_PREVIEW, CHECK_ZOOM, mGrid, mHorZoom, mTable, OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::SetBorderType(), OglGui::Button::SetButtonListener(), and OglGui::CheckBox::SetCheckBoxListener().

00093     {
00094         mTable = table;
00095         mGrid  = grid;
00096 
00097         SetBorderType(1);
00098         SetBorderFillShaded(DEEP_SHADE_UP);
00099 
00100         Button *b = new Button(this, 120, 28, "reset filters");
00101         b->SetButtonListener(this, BUTTON_RESETFILTERS);
00102 
00103         CheckBox *c = new CheckBox(this, 130, 28, "display as grid");
00104         c->SetCheckBoxListener(this, CHECK_GRID);
00105 
00106         mHorZoom = new CheckBox(this, 130, 28, "horizontal zoom");
00107         mHorZoom->SetCheckBoxListener(this, CHECK_ZOOM);
00108         c = new CheckBox(this, 130, 28, "detailed preview");
00109         c->SetCheckBoxListener(this, CHECK_PREVIEW);     
00110     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:53:47 2010 for ImpalaSrc by  doxygen 1.5.1