| 227 | } |
| 228 | |
| 229 | void GuiTextCtrl::onRender(Point2I offset, const RectI &updateRect) |
| 230 | { |
| 231 | renderBorder( RectI( offset, getExtent() ), mProfile ); |
| 232 | |
| 233 | GFX->getDrawUtil()->setBitmapModulation( mProfile->mFontColor ); |
| 234 | renderJustifiedText(offset, getExtent(), (char*)mText); |
| 235 | |
| 236 | //render the child controls |
| 237 | renderChildControls(offset, updateRect); |
| 238 | } |
| 239 | |
| 240 | const char *GuiTextCtrl::getScriptValue() |
| 241 | { |
nothing calls this directly
no test coverage detected