Qt: Implement fullscreen

This commit is contained in:
Connor McLaughlin
2020-01-06 16:27:39 +10:00
parent 87889a13e0
commit 207c75e6eb
4 changed files with 29 additions and 23 deletions

View File

@@ -65,13 +65,13 @@ Q_SIGNALS:
void emulationStopped();
void emulationPaused(bool paused);
void gameListRefreshed();
void toggleFullscreenRequested();
public Q_SLOTS:
void powerOffSystem();
void resetSystem();
void pauseSystem(bool paused);
void changeDisc(QString new_disc_filename);
void toggleFullscreen();
private Q_SLOTS:
void doStopThread();
@@ -106,7 +106,6 @@ private:
void updateControllerInputMap();
void updateHotkeyInputMap();
void addButtonToInputMap(const QString& binding, InputButtonHandler handler);
void updateFullscreen();
void createThread();
void stopThread();
void threadEntryPoint();