2021-01-22 00:51:24 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QString>
|
2021-04-15 00:07:40 +01:00
|
|
|
#include "common/settings.h"
|
2021-09-21 01:59:09 +01:00
|
|
|
#include "core/core.h"
|
2021-01-22 00:51:24 +00:00
|
|
|
#include "yuzu/configuration/configure_input_player_widget.h"
|
|
|
|
#include "yuzu/debugger/controller.h"
|
|
|
|
|
2021-09-21 01:59:09 +01:00
|
|
|
ControllerDialog::ControllerDialog(QWidget* parent) : QWidget(parent, Qt::Dialog) {
|
2021-01-22 00:51:24 +00:00
|
|
|
setObjectName(QStringLiteral("Controller"));
|
|
|
|
setWindowTitle(tr("Controller P1"));
|
|
|
|
resize(500, 350);
|
|
|
|
setMinimumSize(500, 350);
|
|
|
|
// Remove the "?" button from the titlebar and enable the maximize button
|
|
|
|
setWindowFlags((windowFlags() & ~Qt::WindowContextHelpButtonHint) |
|
|
|
|
Qt::WindowMaximizeButtonHint);
|
|
|
|
|
2021-02-04 14:54:27 +00:00
|
|
|
widget = new PlayerControlPreview(this);
|
2021-09-21 01:59:09 +01:00
|
|
|
widget->SetController(Core::System::GetInstance().HIDCore().GetEmulatedController(
|
|
|
|
Core::HID::NpadIdType::Player1));
|
2021-01-22 00:51:24 +00:00
|
|
|
QLayout* layout = new QVBoxLayout(this);
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
layout->addWidget(widget);
|
|
|
|
setLayout(layout);
|
|
|
|
|
|
|
|
// Configure focus so that widget is focusable and the dialog automatically forwards focus to
|
|
|
|
// it.
|
|
|
|
setFocusProxy(widget);
|
|
|
|
widget->setFocusPolicy(Qt::StrongFocus);
|
|
|
|
widget->setFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction* ControllerDialog::toggleViewAction() {
|
|
|
|
if (toggle_view_action == nullptr) {
|
2021-02-14 20:57:47 +00:00
|
|
|
toggle_view_action = new QAction(tr("&Controller P1"), this);
|
2021-01-22 00:51:24 +00:00
|
|
|
toggle_view_action->setCheckable(true);
|
|
|
|
toggle_view_action->setChecked(isVisible());
|
|
|
|
connect(toggle_view_action, &QAction::toggled, this, &ControllerDialog::setVisible);
|
|
|
|
}
|
|
|
|
|
|
|
|
return toggle_view_action;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerDialog::showEvent(QShowEvent* ev) {
|
|
|
|
if (toggle_view_action) {
|
|
|
|
toggle_view_action->setChecked(isVisible());
|
|
|
|
}
|
|
|
|
QWidget::showEvent(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerDialog::hideEvent(QHideEvent* ev) {
|
|
|
|
if (toggle_view_action) {
|
|
|
|
toggle_view_action->setChecked(isVisible());
|
|
|
|
}
|
|
|
|
QWidget::hideEvent(ev);
|
|
|
|
}
|