mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
34 lines
612 B
C
34 lines
612 B
C
|
// Copyright (C) 2018 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef NICSELECTOR_H
|
||
|
#define NICSELECTOR_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QHostAddress>
|
||
|
#include <QList>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
namespace Ui {
|
||
|
class NicSelector;
|
||
|
}
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class NicSelector : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit NicSelector(QWidget *parent = nullptr);
|
||
|
~NicSelector();
|
||
|
|
||
|
QHostAddress selectedIp() const;
|
||
|
quint16 selectedPort() const;
|
||
|
|
||
|
private:
|
||
|
Ui::NicSelector *ui = nullptr;
|
||
|
QList<QHostAddress> availableAddresses;
|
||
|
};
|
||
|
|
||
|
#endif // NICSELECTOR_H
|