Files
dolphin/Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientWidget.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
463 B
C++
Raw Normal View History

2019-10-23 01:49:48 +02:00
// Copyright 2019 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QWidget>
class QCheckBox;
class QLineEdit;
class QSpinBox;
class DualShockUDPClientWidget final : public QWidget
2019-10-23 01:49:48 +02:00
{
Q_OBJECT
public:
explicit DualShockUDPClientWidget();
2019-10-23 01:49:48 +02:00
private:
void CreateWidgets();
void ConnectWidgets();
QCheckBox* m_server_enabled;
QLineEdit* m_server_address;
QSpinBox* m_server_port;
};