Definition at line 52 of file TextEditLineScroller.h. References OglGui::OglWindow::ConnectTo(), OglGui::DocDimensions::DocX(), OglGui::Window::MapKeysTo(), mTextEdit, OglGui::Window::SetAllowChildScaling(), OglGui::OglWindow::SetBorderType(), OglGui::ScrollBar::SetLineIncrement(), OglGui::ScrollBar::SetScrollBarListener(), and OglGui::TextEdit::SingleLine(). 00053 { 00054 mTextEdit = new TextEdit(this, 16, 0, w-32, h, txt, 0); 00055 mTextEdit->SetBorderType(BEV_NONE); 00056 mTextEdit->SingleLine(true); 00057 mTextEdit->ConnectTo(this); 00058 mTextEdit->DocX(0); 00059 SetLineIncrement(16); 00060 SetScrollBarListener(this); 00061 MapKeysTo(mTextEdit); 00062 SetAllowChildScaling(false); 00063 }
Here is the call graph for this function:
|