25c67c608a
The Qt namespace should be used for types defined in the Qt library, not for user types. Pick-to: 6.5 Change-Id: I6df0ca054888f4a65b19a9cb44324321d1dcfad8 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
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
|