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

void Impala::Application::MediaTable::TableWindowCell::Init ( Window parent,
TableDataView source,
TableViewCache cache,
String  column 
) [inline, private]

Definition at line 114 of file TableWindowCell.h.

References OglGui::OglWindow::ConnectTo(), DISPLAY_TEXT, OglGui::OglWindow::GetOGLWND(), OglGui::OglWindow::H(), OglGui::L2L, mColumn, mCurrentDisplayMode, mDisplayAsDot, mDisplayAsText, mFillBgColor, mParent, mSource, mViewCache, OglGui::R2R, OglGui::OglWindow::ScaleTo(), OglGui::StaticText::SetCentered(), OglGui::OglWindow::SetVisible(), and OglGui::OglWindow::W().

00116     {
00117         mParent             = parent;
00118         mSource             = source;
00119         mColumn             = column;
00120         mViewCache          = cache;
00121         mFillBgColor        = 0;
00122         mCurrentDisplayMode = DISPLAY_TEXT;
00123         ConnectTo(parent, OglGui::L2L|OglGui::R2R);
00124         SetVisible(false);
00125 
00126         mDisplayAsText = new StaticText(this, 0, 0, W(), H(), "");
00127         mDisplayAsText->ConnectTo(this);
00128         mDisplayAsText->SetVisible(true);
00129         mDisplayAsText->SetCentered(false);
00130 
00131         // 1, 1, W()-2, H()-2);
00132         mDisplayAsDot = new Window(this, W() / 2 - 4, H() / 2 - 4, 8, 8);
00133         mDisplayAsDot->ScaleTo(this);
00134         mDisplayAsDot->SetVisible(false);
00135 
00136         oglSys.SetNoMouseInput(mDisplayAsText->GetOGLWND(),1);
00137         oglSys.SetNoMouseInput(mDisplayAsDot->GetOGLWND(),1);
00138     }

Here is the call graph for this function:


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