| 171 | } |
| 172 | |
| 173 | void InputWindow::update() |
| 174 | { |
| 175 | /* Update hotkey list */ |
| 176 | for (unsigned int row = 0; row < context->config.km->hotkey_list.size(); row++) { |
| 177 | updateHotkeyRow(row); |
| 178 | } |
| 179 | |
| 180 | /* Update input list */ |
| 181 | for (int i=0; i<KeyMapping::INPUTLIST_SIZE; i++) { |
| 182 | for (unsigned int row = 0; row < context->config.km->input_list[i].size(); row++) { |
| 183 | updateInputRow(i, row); |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | void InputWindow::slotSelect() |
| 189 | { |
no test coverage detected