| 10 | { |
| 11 | |
| 12 | bool FlatMenuPage::OnButtonClicked(OptionsShell& shell, int idc) |
| 13 | { |
| 14 | if (idc == CloseIdc() || idc == IDC_CANCEL) |
| 15 | { |
| 16 | shell.PopPage(); |
| 17 | return true; |
| 18 | } |
| 19 | bool handled = OnNav(shell, idc); |
| 20 | if (handled && ContainsCycleIdc(idc, m_cycle, m_cycleSize)) |
| 21 | m_lastNavIdc = idc; |
| 22 | return handled; |
| 23 | } |
| 24 | |
| 25 | void FlatMenuPage::OnReshown(OptionsShell& shell) |
| 26 | { |