| 425 | } |
| 426 | |
| 427 | void TabControl::_createItemButton() |
| 428 | { |
| 429 | Button* button = createButton(); |
| 430 | button->eventMouseButtonClick += newDelegate(this, &TabControl::notifyPressedBarButtonEvent); |
| 431 | button->_setInternalData(mItemButton.size()); // порядковый номер |
| 432 | mItemButton.push_back(button); |
| 433 | } |
| 434 | |
| 435 | int TabControl::_getTextWidth(const UString& _text) |
| 436 | { |
nothing calls this directly
no test coverage detected