Qt: Implement "Movie" menu

This commit is contained in:
spycrab
2017-08-27 13:55:05 +02:00
parent 4163ee42bc
commit 0e7ed3514f
4 changed files with 244 additions and 1 deletions

View File

@ -43,6 +43,8 @@ signals:
void EmulationStarted();
void EmulationPaused();
void EmulationStopped();
void ReadOnlyModeChanged(bool read_only);
void RecordingStatusChanged(bool recording);
private:
void Open();
@ -105,6 +107,12 @@ private:
void OnBootGameCubeIPL(DiscIO::Region region);
void OnImportNANDBackup();
void OnPlayRecording();
void OnStartRecording();
void OnStopRecording();
void OnExportRecording();
void OnStopComplete();
void dragEnterEvent(QDragEnterEvent* event) override;
void dropEvent(QDropEvent* event) override;