Qt: Implement GC TAS input window

This commit is contained in:
Rukai
2018-01-28 00:35:02 +11:00
committed by Lucas Kent
parent 1e8f4ce84f
commit 3f1ffbad0d
13 changed files with 509 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class DragEnterEvent;
class GraphicsWindow;
class RegisterWidget;
class WatchWidget;
class GCTASInputWindow;
class MainWindow final : public QMainWindow
{
@ -120,6 +121,7 @@ private:
void OnStartRecording();
void OnStopRecording();
void OnExportRecording();
void ShowTASInput();
void EnableScreenSaver(bool enable);
@ -146,6 +148,7 @@ private:
NetPlayDialog* m_netplay_dialog;
NetPlaySetupDialog* m_netplay_setup_dialog;
GraphicsWindow* m_graphics_window;
std::array<GCTASInputWindow*, 4> m_gc_tas_input_windows{};
BreakpointWidget* m_breakpoint_widget;
LogWidget* m_log_widget;