2022-03-13 17:58:39 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2022 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include <QtWidgets/QItemDelegate>
|
|
|
|
#include <QtGui/QStandardItemModel>
|
|
|
|
|
|
|
|
#include "ui_DEV9SettingsWidget.h"
|
|
|
|
|
|
|
|
#include "DEV9/net.h"
|
|
|
|
|
|
|
|
class SettingsDialog;
|
|
|
|
|
|
|
|
class IPValidator : public QValidator
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit IPValidator(QObject* parent = nullptr, bool allowEmpty = false);
|
|
|
|
virtual State validate(QString& input, int& pos) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static const QRegularExpression intermediateRegex;
|
|
|
|
static const QRegularExpression finalRegex;
|
|
|
|
|
|
|
|
bool m_allowEmpty;
|
|
|
|
};
|
|
|
|
|
|
|
|
class IPItemDelegate : public QItemDelegate
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit IPItemDelegate(QObject* parent = nullptr);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const;
|
|
|
|
void setEditorData(QWidget* editor, const QModelIndex& index) const;
|
|
|
|
void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const;
|
|
|
|
void updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DEV9SettingsWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void onEthEnabledChanged(int state);
|
|
|
|
void onEthDeviceTypeChanged(int index);
|
|
|
|
void onEthDeviceChanged(int index);
|
|
|
|
void onEthDHCPInterceptChanged(int state);
|
|
|
|
void onEthIPChanged(QLineEdit* sender, const char* section, const char* key);
|
|
|
|
void onEthAutoChanged(QCheckBox* sender, int state, QLineEdit* input, const char* section, const char* key);
|
|
|
|
void onEthDNSModeChanged(QComboBox* sender, int index, QLineEdit* input, const char* section, const char* key);
|
|
|
|
void onEthHostAdd();
|
|
|
|
void onEthHostDel();
|
|
|
|
void onEthHostEdit(QStandardItem* item);
|
|
|
|
|
|
|
|
void onHddEnabledChanged(int state);
|
|
|
|
void onHddBrowseFileClicked();
|
|
|
|
void onHddFileEdit();
|
|
|
|
void onHddSizeSlide(int i);
|
|
|
|
void onHddSizeSpin(int i);
|
|
|
|
void onHddCreateClicked();
|
|
|
|
|
|
|
|
public:
|
|
|
|
DEV9SettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
|
|
~DEV9SettingsWidget();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* event);
|
|
|
|
bool eventFilter(QObject* object, QEvent* event);
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct HostEntryUi
|
|
|
|
{
|
|
|
|
std::string Url;
|
|
|
|
std::string Desc;
|
|
|
|
std::string Address = "0.0.0.0";
|
|
|
|
bool Enabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
void AddAdapter(const AdapterEntry& adapter);
|
|
|
|
void RefreshHostList();
|
|
|
|
int CountHostsConfig();
|
|
|
|
void AddNewHostConfig(const HostEntryUi& host);
|
|
|
|
void DeleteHostConfig(int index);
|
|
|
|
|
|
|
|
SettingsDialog* m_dialog;
|
|
|
|
|
|
|
|
Ui::DEV9SettingsWidget m_ui;
|
|
|
|
|
|
|
|
QStandardItemModel* m_ethHost_model;
|
|
|
|
QSortFilterProxyModel* m_ethHosts_proxy;
|
|
|
|
|
|
|
|
std::vector<Pcsx2Config::DEV9Options::NetApi> m_api_list;
|
|
|
|
std::vector<const char*> m_api_namelist;
|
|
|
|
std::vector<const char*> m_api_valuelist;
|
|
|
|
std::vector<std::vector<AdapterEntry>> m_adapter_list;
|
2021-10-25 22:29:18 +00:00
|
|
|
|
|
|
|
AdapterOptions m_adapter_options{AdapterOptions::None};
|
|
|
|
|
|
|
|
//Use by per-game ui only
|
|
|
|
Pcsx2Config::DEV9Options::NetApi m_global_api{Pcsx2Config::DEV9Options::NetApi::Unset};
|
2022-03-13 17:58:39 +00:00
|
|
|
};
|