| 5 | #define LINE_NUM_PANEL_WIDTH 40 |
| 6 | |
| 7 | ExtendedTextBox::ExtendedTextBox(rect_t bounds) : Lemon::GUI::TextBox(bounds, true){ |
| 8 | textBoxBounds = bounds; |
| 9 | textBoxBounds.pos.x += LINE_NUM_PANEL_WIDTH; |
| 10 | textBoxBounds.size.x -= LINE_NUM_PANEL_WIDTH; |
| 11 | normalBounds = bounds; |
| 12 | } |
| 13 | |
| 14 | void ExtendedTextBox::Paint(surface_t* surface){ |
| 15 | char num[10]; |
nothing calls this directly
no outgoing calls
no test coverage detected