mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
55 lines
1013 B
C++
55 lines
1013 B
C++
// Copyright 2019 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <QDialog>
|
|
|
|
#include "UICommon/NetPlayIndex.h"
|
|
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
class QDialogButtonBox;
|
|
class QLabel;
|
|
class QLineEdit;
|
|
class QPushButton;
|
|
class QRadioButton;
|
|
class QTableWidget;
|
|
|
|
class NetPlayBrowser : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NetPlayBrowser(QWidget* parent = nullptr);
|
|
|
|
void accept() override;
|
|
signals:
|
|
void Join();
|
|
|
|
private:
|
|
void CreateWidgets();
|
|
void ConnectWidgets();
|
|
|
|
void Refresh();
|
|
|
|
void OnSelectionChanged();
|
|
|
|
QComboBox* m_region_combo;
|
|
QLabel* m_status_label;
|
|
QPushButton* m_button_refresh;
|
|
QTableWidget* m_table_widget;
|
|
QDialogButtonBox* m_button_box;
|
|
QLineEdit* m_edit_name;
|
|
QLineEdit* m_edit_game_id;
|
|
QCheckBox* m_check_hide_incompatible;
|
|
|
|
QRadioButton* m_radio_all;
|
|
QRadioButton* m_radio_private;
|
|
QRadioButton* m_radio_public;
|
|
|
|
std::vector<NetPlaySession> m_sessions;
|
|
};
|