File indexing completed on 2024-12-15 03:45:03
0001 /* 0002 SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org> 0003 0004 SPDX-License-Identifier: MIT 0005 */ 0006 0007 #ifndef KUSERFEEDBACK_CONSOLE_CONNECTDIALOG_H 0008 #define KUSERFEEDBACK_CONSOLE_CONNECTDIALOG_H 0009 0010 #include <QDialog> 0011 0012 #include <memory> 0013 0014 namespace KUserFeedback { 0015 namespace Console { 0016 0017 namespace Ui 0018 { 0019 class ConnectDialog; 0020 } 0021 0022 class ServerInfo; 0023 0024 class ConnectDialog : public QDialog 0025 { 0026 Q_OBJECT 0027 public: 0028 explicit ConnectDialog(QWidget *parent = nullptr); 0029 ~ConnectDialog() override; 0030 0031 ServerInfo serverInfo() const; 0032 void setServerInfo(const ServerInfo &serverInfo); 0033 0034 void addRecentServerInfos(const QStringList &serverInfoNames); 0035 0036 private: 0037 void serverSelected(); 0038 0039 std::unique_ptr<Ui::ConnectDialog> ui; 0040 }; 0041 0042 } 0043 } 0044 0045 #endif // KUSERFEEDBACK_CONSOLE_CONNECTDIALOG_H