mirror of https://github.com/mgba-emu/mgba.git
Qt: Move scripting classes into folder
This commit is contained in:
parent
5349cab4b2
commit
f3209e1942
|
@ -250,13 +250,13 @@ endif()
|
||||||
|
|
||||||
if(ENABLE_SCRIPTING)
|
if(ENABLE_SCRIPTING)
|
||||||
list(APPEND SOURCE_FILES
|
list(APPEND SOURCE_FILES
|
||||||
ScriptingController.cpp
|
scripting/ScriptingController.cpp
|
||||||
ScriptingTextBuffer.cpp
|
scripting/ScriptingTextBuffer.cpp
|
||||||
ScriptingTextBufferModel.cpp
|
scripting/ScriptingTextBufferModel.cpp
|
||||||
ScriptingView.cpp)
|
scripting/ScriptingView.cpp)
|
||||||
|
|
||||||
list(APPEND UI_FILES
|
list(APPEND UI_FILES
|
||||||
ScriptingView.ui)
|
scripting/ScriptingView.ui)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(TARGET Qt6::Core)
|
if(TARGET Qt6::Core)
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
#include "ReportView.h"
|
#include "ReportView.h"
|
||||||
#include "ROMInfo.h"
|
#include "ROMInfo.h"
|
||||||
#include "SaveConverter.h"
|
#include "SaveConverter.h"
|
||||||
#include "ScriptingView.h"
|
#include "scripting/ScriptingView.h"
|
||||||
#include "SensorView.h"
|
#include "SensorView.h"
|
||||||
#include "ShaderSelector.h"
|
#include "ShaderSelector.h"
|
||||||
#include "ShortcutController.h"
|
#include "ShortcutController.h"
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "LogController.h"
|
#include "LogController.h"
|
||||||
#include "SettingsView.h"
|
#include "SettingsView.h"
|
||||||
#ifdef ENABLE_SCRIPTING
|
#ifdef ENABLE_SCRIPTING
|
||||||
#include "ScriptingController.h"
|
#include "scripting/ScriptingController.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace QGBA {
|
namespace QGBA {
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
* 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
|
* 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/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
#include "ScriptingController.h"
|
#include "scripting/ScriptingController.h"
|
||||||
|
|
||||||
#include "CoreController.h"
|
#include "CoreController.h"
|
||||||
#include "ScriptingTextBuffer.h"
|
#include "scripting/ScriptingTextBuffer.h"
|
||||||
#include "ScriptingTextBufferModel.h"
|
#include "scripting/ScriptingTextBufferModel.h"
|
||||||
|
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
* 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
|
* 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/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
#include "ScriptingView.h"
|
#include "scripting/ScriptingView.h"
|
||||||
|
|
||||||
#include "GBAApp.h"
|
#include "GBAApp.h"
|
||||||
#include "ConfigController.h"
|
#include "ConfigController.h"
|
||||||
#include "ScriptingController.h"
|
#include "scripting/ScriptingController.h"
|
||||||
#include "ScriptingTextBuffer.h"
|
#include "scripting/ScriptingTextBuffer.h"
|
||||||
#include "ScriptingTextBufferModel.h"
|
#include "scripting/ScriptingTextBufferModel.h"
|
||||||
|
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
Loading…
Reference in New Issue