| 350 | |
| 351 | private: |
| 352 | void onChangeSection() { |
| 353 | ListItem* item = static_cast<ListItem*>(sectionListbox()->getSelectedChild()); |
| 354 | if (!item) |
| 355 | return; |
| 356 | |
| 357 | panel()->showChild(findChild(item->getValue().c_str())); |
| 358 | m_curSection = sectionListbox()->getSelectedIndex(); |
| 359 | |
| 360 | // Load themes |
| 361 | if (item->getValue() == kSectionThemeId) |
| 362 | loadThemes(); |
| 363 | } |
| 364 | |
| 365 | void onChangeGridScope() { |
| 366 | int item = gridScope()->getSelectedItemIndex(); |
nothing calls this directly
no test coverage detected