mirror of https://github.com/mgba-emu/mgba.git
Qt: Move Gamepad events into input/
This commit is contained in:
parent
4580e8d2e9
commit
8ec856e10c
|
@ -103,11 +103,11 @@ set(SOURCE_FILES
|
|||
GBAApp.cpp
|
||||
GBAKeyEditor.cpp
|
||||
GIFView.cpp
|
||||
GamepadAxisEvent.cpp
|
||||
GamepadButtonEvent.cpp
|
||||
GamepadHatEvent.cpp
|
||||
IOViewer.cpp
|
||||
input/Gamepad.cpp
|
||||
input/GamepadAxisEvent.cpp
|
||||
input/GamepadButtonEvent.cpp
|
||||
input/GamepadHatEvent.cpp
|
||||
input/InputDriver.cpp
|
||||
input/InputSource.cpp
|
||||
input/InputMapper.cpp
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (c) 2013-2014 Jeffrey Pfau
|
||||
/* Copyright (c) 2013-2023 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
|
||||
|
@ -6,8 +6,7 @@
|
|||
#include "InputController.h"
|
||||
|
||||
#include "ConfigController.h"
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
#include "InputProfile.h"
|
||||
#include "LogController.h"
|
||||
#include "utils.h"
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#pragma once
|
||||
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "GamepadHatEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
#include "input/GamepadHatEvent.h"
|
||||
#include "input/InputMapper.h"
|
||||
|
||||
#include <QImage>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#pragma once
|
||||
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
|
||||
#include <mgba/gba/interface.h>
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#include "KeyEditor.h"
|
||||
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
#include "ShortcutController.h"
|
||||
|
||||
#include <QCoreApplication>
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#pragma once
|
||||
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "GamepadHatEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
#include "input/GamepadHatEvent.h"
|
||||
|
||||
#include <QLineEdit>
|
||||
#include <QTimer>
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
#include "LoadSaveState.h"
|
||||
|
||||
#include "CoreController.h"
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
#include "VFileDevice.h"
|
||||
#include "utils.h"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "SensorView.h"
|
||||
|
||||
#include "CoreController.h"
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
#include "InputController.h"
|
||||
#include "utils.h"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "ShortcutController.h"
|
||||
|
||||
#include "ConfigController.h"
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
#include "InputProfile.h"
|
||||
|
||||
#include <QAction>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "ActionMapper.h"
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
|
||||
#include <QHash>
|
||||
#include <QMap>
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#include "ShortcutView.h"
|
||||
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "InputController.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
#include "ShortcutController.h"
|
||||
#include "ShortcutModel.h"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#pragma once
|
||||
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/* Copyright (c) 2013-2015 Jeffrey Pfau
|
||||
/* Copyright (c) 2013-2023 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/. */
|
||||
#include "GamepadAxisEvent.h"
|
||||
#include "input/GamepadAxisEvent.h"
|
||||
|
||||
#include "InputController.h"
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
/* Copyright (c) 2013-2015 Jeffrey Pfau
|
||||
/* Copyright (c) 2013-2023 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/. */
|
||||
#include "GamepadButtonEvent.h"
|
||||
#include "input/GamepadButtonEvent.h"
|
||||
|
||||
#include "InputController.h"
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
/* Copyright (c) 2013-2017 Jeffrey Pfau
|
||||
/* Copyright (c) 2013-2023 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/. */
|
||||
#include "GamepadHatEvent.h"
|
||||
#include "input/GamepadHatEvent.h"
|
||||
|
||||
#include "InputController.h"
|
||||
|
Loading…
Reference in New Issue