| 1723 | } |
| 1724 | |
| 1725 | void ConfigMainWindow::showFullView(void) |
| 1726 | { |
| 1727 | singleViewAction->setEnabled(true); |
| 1728 | singleViewAction->setChecked(false); |
| 1729 | splitViewAction->setEnabled(true); |
| 1730 | splitViewAction->setChecked(false); |
| 1731 | fullViewAction->setEnabled(false); |
| 1732 | fullViewAction->setChecked(true); |
| 1733 | |
| 1734 | backAction->setEnabled(false); |
| 1735 | |
| 1736 | menuList->hide(); |
| 1737 | menuList->setRootMenu(0); |
| 1738 | configList->mode = fullMode; |
| 1739 | if (configList->rootEntry == &rootmenu) |
| 1740 | configList->updateListAll(); |
| 1741 | else |
| 1742 | configList->setRootMenu(&rootmenu); |
| 1743 | configList->setFocus(); |
| 1744 | } |
| 1745 | |
| 1746 | /* |
| 1747 | * ask for saving configuration before quitting |
nothing calls this directly
no test coverage detected