summaryrefslogtreecommitdiff
path: root/src/yuzu/main.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-02-17 15:49:52 -0500
committerbunnei <bunneidev@gmail.com>2020-02-25 21:23:00 -0500
commitb2a38cce4ef7e4d98b981ba7e7f2a1e3a9ed7ece (patch)
tree8e0fcf14c990ba6a9cf24bbde75a45b99cbef905 /src/yuzu/main.h
parent667f026c9570b772719d2ada94cc40d420113c23 (diff)
frontent: qt: main: Various updates/refactoring for separate presentation thread.
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r--src/yuzu/main.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index 8eba2172c..a67125567 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -78,6 +78,9 @@ public:
std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc;
+ bool DropAction(QDropEvent* event);
+ void AcceptDropEvent(QDropEvent* event);
+
signals:
/**
@@ -264,8 +267,4 @@ protected:
void dropEvent(QDropEvent* event) override;
void dragEnterEvent(QDragEnterEvent* event) override;
void dragMoveEvent(QDragMoveEvent* event) override;
-
- // Overrides used to forward signals to the render window when the focus moves out.
- void keyPressEvent(QKeyEvent* event) override;
- void keyReleaseEvent(QKeyEvent* event) override;
};