Definition at line 53 of file Columns.h. References OglGui::OglWindow::ConnectTo(), OglGui::ColumnHeaders::CreateHeader(), OglGui::OglWindow::H(), OglGui::L2L, mHeaders, mLabelWidth, OglGui::R2R, OglGui::OglWindow::SetDimensions(), OglGui::T2B, and OglGui::OglWindow::X(). 00054 { 00055 if (labelW==-1) 00056 labelW = mLabelWidth; 00057 00058 SizableStaticText* colHdr = mHeaders->CreateHeader(str,labelW); 00059 00060 int hdrH = mHeaders->H(); 00061 wnd->SetDimensions(colHdr->X(),0,labelW,H()-hdrH); 00062 wnd->ConnectTo(mHeaders,T2B); 00063 wnd->ConnectTo(colHdr,L2L|R2R); 00064 }
Here is the call graph for this function:
|