| 28 | } |
| 29 | |
| 30 | void ScrollPaneHeader::onSizeChanged(EventContext*) |
| 31 | { |
| 32 | if (_c1->getSelectedIndex() == 2 || _c1->getSelectedIndex() == 3) |
| 33 | return; |
| 34 | |
| 35 | if (getHeight() > sourceSize.height) |
| 36 | _c1->setSelectedIndex(1); |
| 37 | else |
| 38 | _c1->setSelectedIndex(0); |
| 39 | } |
| 40 | |
| 41 | void ScrollPaneHeader::setRefreshStatus(int value) |
| 42 | { |
nothing calls this directly
no test coverage detected