| 1698 | } |
| 1699 | |
| 1700 | void ConfigMainWindow::showSplitView(void) |
| 1701 | { |
| 1702 | singleViewAction->setEnabled(true); |
| 1703 | singleViewAction->setChecked(false); |
| 1704 | splitViewAction->setEnabled(false); |
| 1705 | splitViewAction->setChecked(true); |
| 1706 | fullViewAction->setEnabled(true); |
| 1707 | fullViewAction->setChecked(false); |
| 1708 | |
| 1709 | backAction->setEnabled(false); |
| 1710 | |
| 1711 | configList->mode = menuMode; |
| 1712 | if (configList->rootEntry == &rootmenu) |
| 1713 | configList->updateListAll(); |
| 1714 | else |
| 1715 | configList->setRootMenu(&rootmenu); |
| 1716 | configList->setAllOpen(true); |
| 1717 | configApp->processEvents(); |
| 1718 | menuList->mode = symbolMode; |
| 1719 | menuList->setRootMenu(&rootmenu); |
| 1720 | menuList->setAllOpen(true); |
| 1721 | menuList->show(); |
| 1722 | menuList->setFocus(); |
| 1723 | } |
| 1724 | |
| 1725 | void ConfigMainWindow::showFullView(void) |
| 1726 | { |
nothing calls this directly
no test coverage detected