| 110 | void RecordUi::showEvent(QShowEvent*) |
| 111 | { |
| 112 | SetForegroundWindow((HWND)QWidget::winId()); |
| 113 | } |
| 114 | void RecordUi::customEvent(QEvent* e) |
| 115 | { |
| 116 | if (e->type() == static_cast<int>(QiEvent::rec_start)) RecStart(); |
| 117 | else if (e->type() == static_cast<int>(QiEvent::rec_stop)) RecStop(); |
| 118 | else if (e->type() == static_cast<int>(QiEvent::rec_close)) RecClose(); |
| 119 | } |