| 56 | } |
| 57 | |
| 58 | void HotkeyLineEdit::focusInEvent(QFocusEvent* event) |
| 59 | { |
| 60 | // 清空之前的内容 |
| 61 | cleanHotKey(); |
| 62 | // 设置焦点时监听键盘事件 |
| 63 | grabKeyboard(); |
| 64 | QLineEdit::focusInEvent(event); |
| 65 | } |
| 66 | |
| 67 | void HotkeyLineEdit::focusOutEvent(QFocusEvent* event) |
| 68 | { |
nothing calls this directly
no outgoing calls
no test coverage detected