You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PayloadAPP/homepagedlg.h

35 lines
679 B
C

#ifndef HOMEPAGEDLG_H
#define HOMEPAGEDLG_H
#include <QWidget>
#include <unordered_map>
namespace Ui {
class HomePageDlg;
}
class HomePageDlg : public QWidget
{
Q_OBJECT
public:
explicit HomePageDlg(QWidget *parent = nullptr);
~HomePageDlg();
QPixmap m_pixmap;
void getUrl(std::unordered_map<QString,QString>& urlMap);
private:
Ui::HomePageDlg *ui;
void initSettingUrl();
QString _lLinkIp;
QString _adHocNetwork;
QString _satelliteComm;
std::unordered_map<QString,QString> _urlMap;
signals:
void sendUrl(std::unordered_map<QString,QString> urlMap);
private slots:
void on_pushButton_clicked();
};
#endif // HOMEPAGEDLG_H