| 1699 | // [Get the widget that settings plugin parameters] |
| 1700 | |
| 1701 | void MainWindow::slotShortCut() |
| 1702 | { |
| 1703 | if(m_Parameter.GetReceiveShortCut()) |
| 1704 | { |
| 1705 | setFocusPolicy(Qt::WheelFocus); |
| 1706 | ui->actionFull_screen_F->setShortcuts(QKeySequence::FullScreen); |
| 1707 | } else { |
| 1708 | setFocusPolicy(Qt::NoFocus); |
| 1709 | ui->actionFull_screen_F->setShortcut(QKeySequence()); |
| 1710 | } |
| 1711 | } |
| 1712 | |
| 1713 | void MainWindow::on_actionOpenListRecent_triggered() |
| 1714 | { |
nothing calls this directly
no test coverage detected