2015-01-04 23:06:57 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
#ifndef _CITRA_QT_MAIN_HXX_
|
|
|
|
#define _CITRA_QT_MAIN_HXX_
|
|
|
|
|
2015-04-29 09:31:41 +05:30
|
|
|
#include <memory>
|
2014-04-01 07:56:50 +05:30
|
|
|
#include <QMainWindow>
|
|
|
|
|
|
|
|
#include "ui_main.h"
|
|
|
|
|
|
|
|
class GImageInfo;
|
|
|
|
class GRenderWindow;
|
2015-04-17 04:05:09 +05:30
|
|
|
class EmuThread;
|
2015-02-05 22:23:25 +05:30
|
|
|
class ProfilerWidget;
|
2014-04-19 04:00:53 +05:30
|
|
|
class DisassemblerWidget;
|
|
|
|
class RegistersWidget;
|
|
|
|
class CallstackWidget;
|
2014-05-18 02:08:10 +05:30
|
|
|
class GPUCommandStreamWidget;
|
2014-05-18 21:22:22 +05:30
|
|
|
class GPUCommandListWidget;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
class GMainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
// TODO: Make use of this!
|
|
|
|
enum {
|
|
|
|
UI_IDLE,
|
|
|
|
UI_EMU_BOOTING,
|
|
|
|
UI_EMU_RUNNING,
|
|
|
|
UI_EMU_STOPPING,
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
GMainWindow();
|
|
|
|
~GMainWindow();
|
|
|
|
|
2015-04-29 09:31:41 +05:30
|
|
|
signals:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal that is emitted when a new EmuThread has been created and an emulation session is
|
|
|
|
* about to start. At this time, the core system emulation has been initialized, and all
|
|
|
|
* emulation handles and memory should be valid.
|
|
|
|
*
|
|
|
|
* @param emu_thread Pointer to the newly created EmuThread (to be used by widgets that need to
|
|
|
|
* access/change emulation state).
|
|
|
|
*/
|
|
|
|
void EmulationStarting(EmuThread* emu_thread);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal that is emitted when emulation is about to stop. At this time, the EmuThread and core
|
|
|
|
* system emulation handles and memory are still valid, but are about become invalid.
|
|
|
|
*/
|
|
|
|
void EmulationStopping();
|
2015-04-17 04:05:09 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
private:
|
2014-08-15 12:29:31 +05:30
|
|
|
void BootGame(std::string filename);
|
2015-04-28 08:43:57 +05:30
|
|
|
void ShutdownGame();
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-10-26 10:26:13 +05:30
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
private slots:
|
2014-05-01 09:16:57 +05:30
|
|
|
void OnStartGame();
|
|
|
|
void OnPauseGame();
|
|
|
|
void OnStopGame();
|
|
|
|
void OnMenuLoadFile();
|
|
|
|
void OnMenuLoadSymbolMap();
|
2014-04-01 07:56:50 +05:30
|
|
|
void OnOpenHotkeysDialog();
|
|
|
|
void OnConfigure();
|
2015-01-06 20:39:30 +05:30
|
|
|
void OnDisplayTitleBars(bool);
|
2014-04-13 04:31:33 +05:30
|
|
|
void ToggleWindowMode();
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::MainWindow ui;
|
|
|
|
|
|
|
|
GRenderWindow* render_window;
|
2015-04-29 09:31:41 +05:30
|
|
|
|
|
|
|
std::unique_ptr<EmuThread> emu_thread;
|
2014-04-19 04:00:53 +05:30
|
|
|
|
2015-02-05 22:23:25 +05:30
|
|
|
ProfilerWidget* profilerWidget;
|
2014-04-19 04:00:53 +05:30
|
|
|
DisassemblerWidget* disasmWidget;
|
|
|
|
RegistersWidget* registersWidget;
|
|
|
|
CallstackWidget* callstackWidget;
|
2014-05-18 02:08:10 +05:30
|
|
|
GPUCommandStreamWidget* graphicsWidget;
|
2014-05-18 21:22:22 +05:30
|
|
|
GPUCommandListWidget* graphicsCommandsWidget;
|
2014-04-01 07:56:50 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CITRA_QT_MAIN_HXX_
|