Merge pull request #15 from Cacodemon345/esckeyfix
Make Escape key work
This commit is contained in:
@@ -94,6 +94,14 @@ int main(int argc, char* argv[]) {
|
|||||||
|
|
||||||
main_window = new MainWindow();
|
main_window = new MainWindow();
|
||||||
main_window->show();
|
main_window->show();
|
||||||
|
main_window->setFocus();
|
||||||
|
app.installEventFilter(main_window);
|
||||||
|
auto widgetList = app.allWidgets();
|
||||||
|
for (auto curWidget : widgetList)
|
||||||
|
{
|
||||||
|
curWidget->setFocusPolicy(Qt::NoFocus);
|
||||||
|
}
|
||||||
|
main_window->setFocusPolicy(Qt::StrongFocus);
|
||||||
|
|
||||||
pc_init(argc, argv);
|
pc_init(argc, argv);
|
||||||
if (! pc_init_modules()) {
|
if (! pc_init_modules()) {
|
||||||
|
@@ -13,11 +13,11 @@ extern "C" {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#include <QWindow>
|
#include <QWindow>
|
||||||
#include <QDebug>
|
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
#include <QFocusEvent>
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
@@ -28,6 +28,8 @@ extern "C" {
|
|||||||
#ifdef __unix__
|
#ifdef __unix__
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/keysym.h>
|
#include <X11/keysym.h>
|
||||||
|
#undef KeyPress
|
||||||
|
#undef KeyRelease
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern void qt_mouse_capture(int);
|
extern void qt_mouse_capture(int);
|
||||||
@@ -94,6 +96,16 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
ui->actionKeyboard_requires_capture->setChecked(kbd_req_capture);
|
ui->actionKeyboard_requires_capture->setChecked(kbd_req_capture);
|
||||||
ui->actionRight_CTRL_is_left_ALT->setChecked(rctrl_is_lalt);
|
ui->actionRight_CTRL_is_left_ALT->setChecked(rctrl_is_lalt);
|
||||||
|
|
||||||
|
setFocusPolicy(Qt::StrongFocus);
|
||||||
|
ui->gles->setFocusPolicy(Qt::NoFocus);
|
||||||
|
ui->sw->setFocusPolicy(Qt::NoFocus);
|
||||||
|
ui->ogl->setFocusPolicy(Qt::NoFocus);
|
||||||
|
ui->stackedWidget->setFocusPolicy(Qt::NoFocus);
|
||||||
|
ui->centralwidget->setFocusPolicy(Qt::NoFocus);
|
||||||
|
menuBar()->setFocusPolicy(Qt::NoFocus);
|
||||||
|
menuWidget()->setFocusPolicy(Qt::NoFocus);
|
||||||
|
statusBar()->setFocusPolicy(Qt::NoFocus);
|
||||||
|
|
||||||
video_setblit(qt_blit);
|
video_setblit(qt_blit);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -683,6 +695,23 @@ void MainWindow::getTitle(wchar_t *title)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool MainWindow::eventFilter(QObject* receiver, QEvent* event)
|
||||||
|
{
|
||||||
|
if (this->keyboardGrabber() == this) {
|
||||||
|
if (event->type() == QEvent::KeyPress) {
|
||||||
|
event->accept();
|
||||||
|
this->keyPressEvent((QKeyEvent*)event);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (event->type() == QEvent::KeyRelease) {
|
||||||
|
event->accept();
|
||||||
|
this->keyReleaseEvent((QKeyEvent*)event);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return QMainWindow::eventFilter(receiver, event);
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::refreshMediaMenu() {
|
void MainWindow::refreshMediaMenu() {
|
||||||
mm->refresh(ui->menuMedia);
|
mm->refresh(ui->menuMedia);
|
||||||
}
|
}
|
||||||
@@ -715,6 +744,7 @@ void MainWindow::keyPressEvent(QKeyEvent* event)
|
|||||||
if (keyboard_ismsexit()) {
|
if (keyboard_ismsexit()) {
|
||||||
plat_mouse_capture(0);
|
plat_mouse_capture(0);
|
||||||
}
|
}
|
||||||
|
event->accept();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::blitToWidget(int x, int y, int w, int h)
|
void MainWindow::blitToWidget(int x, int y, int w, int h)
|
||||||
@@ -742,3 +772,13 @@ void MainWindow::on_actionHardware_Renderer_OpenGL_triggered() {
|
|||||||
void MainWindow::on_actionHardware_Renderer_OpenGL_ES_triggered() {
|
void MainWindow::on_actionHardware_Renderer_OpenGL_ES_triggered() {
|
||||||
ui->stackedWidget->setCurrentIndex(2);
|
ui->stackedWidget->setCurrentIndex(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::focusInEvent(QFocusEvent* event)
|
||||||
|
{
|
||||||
|
this->grabKeyboard();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::focusOutEvent(QFocusEvent* event)
|
||||||
|
{
|
||||||
|
this->releaseKeyboard();
|
||||||
|
}
|
@@ -4,6 +4,7 @@
|
|||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QEvent>
|
#include <QEvent>
|
||||||
|
#include <QFocusEvent>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
@@ -63,6 +64,9 @@ private slots:
|
|||||||
protected:
|
protected:
|
||||||
void keyPressEvent(QKeyEvent* event) override;
|
void keyPressEvent(QKeyEvent* event) override;
|
||||||
void keyReleaseEvent(QKeyEvent* event) override;
|
void keyReleaseEvent(QKeyEvent* event) override;
|
||||||
|
void focusInEvent(QFocusEvent* event) override;
|
||||||
|
void focusOutEvent(QFocusEvent* event) override;
|
||||||
|
bool eventFilter(QObject* receiver, QEvent* event) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
|
Reference in New Issue
Block a user