/* Copyright (c) 2013-2015 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef QGBA_OVERRIDE_VIEW #define QGBA_OVERRIDE_VIEW #include #ifdef M_CORE_GB extern "C" { #include "gb/overrides.h" } #endif #include "ui_OverrideView.h" struct mCoreThread; namespace QGBA { class ConfigController; class GameController; class Override; class OverrideView : public QDialog { Q_OBJECT public: OverrideView(GameController* controller, ConfigController* config, QWidget* parent = nullptr); public slots: void saveOverride(); private slots: void updateOverrides(); void gameStarted(mCoreThread*); void gameStopped(); private: Ui::OverrideView m_ui; GameController* m_controller; ConfigController* m_config; #ifdef M_CORE_GB static QList s_gbModelList; static QList s_mbcList; #endif }; } #endif