summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-05-17 04:25:53 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-05-17 04:25:53 -0500
commit79e6d2ee367db0c47f4a92816e908c65097df749 (patch)
tree5c395ec513e759ad87b04dd810b8f5d21041911c /ui
parent309351017d15c755940da0bba1b8c3bf6bae40b8 (diff)
downloadhorizon-79e6d2ee367db0c47f4a92816e908c65097df749.tar.gz
horizon-79e6d2ee367db0c47f4a92816e908c65097df749.tar.bz2
horizon-79e6d2ee367db0c47f4a92816e908c65097df749.tar.xz
horizon-79e6d2ee367db0c47f4a92816e908c65097df749.zip
Qt UI: Add some Wi-Fi changes from February 23rd I don't remember
Diffstat (limited to 'ui')
-rw-r--r--ui/qt5/netsimplewifipage.cc17
-rw-r--r--ui/qt5/netsimplewifipage.hh7
2 files changed, 15 insertions, 9 deletions
diff --git a/ui/qt5/netsimplewifipage.cc b/ui/qt5/netsimplewifipage.cc
index 113669b..097d893 100644
--- a/ui/qt5/netsimplewifipage.cc
+++ b/ui/qt5/netsimplewifipage.cc
@@ -33,7 +33,7 @@ NetworkSimpleWirelessPage::NetworkSimpleWirelessPage(QWidget *parent)
, control(WPACTRL_ZERO), associated(false)
#endif /* HAS_INSTALL_ENV */
{
- QVBoxLayout *layout;
+ QVBoxLayout *layout = new QVBoxLayout;
loadWatermark("network");
setTitle(tr("Select Your Network"));
@@ -41,14 +41,16 @@ NetworkSimpleWirelessPage::NetworkSimpleWirelessPage(QWidget *parent)
statusLabel = new QLabel(tr("Scanning for networks..."));
statusLabel->setWordWrap(true);
- rescanButton = new QPushButton(tr("&Rescan Networks"));
- connect(rescanButton, &QPushButton::clicked, [=](void) { doScan(); });
+ addNetButton = new QPushButton;
ssidListView = new QListWidget;
connect(ssidListView, &QListWidget::currentItemChanged,
this, &NetworkSimpleWirelessPage::networkChosen);
#ifdef HAS_INSTALL_ENV
+ rescanButton = new QPushButton(tr("&Rescan Networks"));
+ connect(rescanButton, &QPushButton::clicked, [=](void) { doScan(); });
+
exchange_item.filter = "CTRL-EVENT-SCAN-RESULTS";
exchange_item.cb = &scanResults;
notify = nullptr;
@@ -63,7 +65,6 @@ NetworkSimpleWirelessPage::NetworkSimpleWirelessPage(QWidget *parent)
passphrase->setMinimumWidth(255);
passphrase->hide();
- layout = new QVBoxLayout;
layout->addWidget(statusLabel, 0, Qt::AlignCenter);
layout->addSpacing(10);
layout->addWidget(ssidListView, 0, Qt::AlignCenter);
@@ -79,10 +80,12 @@ NetworkSimpleWirelessPage::~NetworkSimpleWirelessPage() {
#endif /* HAS_INSTALL_ENV */
}
+#ifdef HAS_INSTALL_ENV
void NetworkSimpleWirelessPage::scanDone(QString message) {
rescanButton->setEnabled(true);
statusLabel->setText(message);
}
+#endif /* HAS_INSTALL_ENV */
void NetworkSimpleWirelessPage::networkChosen(QListWidgetItem *current,
QListWidgetItem *) {
@@ -127,8 +130,8 @@ done:
return;
}
-void NetworkSimpleWirelessPage::doScan() {
#ifdef HAS_INSTALL_ENV
+void NetworkSimpleWirelessPage::doScan() {
ssidListView->clear();
rescanButton->setEnabled(false);
statusLabel->setText(tr("Scanning for networks..."));
@@ -201,11 +204,13 @@ void NetworkSimpleWirelessPage::doScan() {
return;
});
notify->setEnabled(true);
-#endif /* HAS_INSTALL_ENV */
}
+#endif /* HAS_INSTALL_ENV */
void NetworkSimpleWirelessPage::initializePage() {
+#ifdef HAS_INSTALL_ENV
doScan();
+#endif /* HAS_INSTALL_ENV */
}
bool NetworkSimpleWirelessPage::isComplete() const {
diff --git a/ui/qt5/netsimplewifipage.hh b/ui/qt5/netsimplewifipage.hh
index 59fd12b..cb49cf9 100644
--- a/ui/qt5/netsimplewifipage.hh
+++ b/ui/qt5/netsimplewifipage.hh
@@ -38,25 +38,26 @@ public:
bool validatePage();
private:
QLabel *statusLabel;
- QPushButton *rescanButton;
+ QPushButton *addNetButton;
QListWidget *ssidListView;
QLineEdit *passphrase;
- void doScan();
void networkChosen(QListWidgetItem*, QListWidgetItem*);
- void scanDone(QString message);
#ifdef HAS_INSTALL_ENV
wpactrl_t control;
wpactrl_xchg_t exchange;
wpactrl_xchgitem_t exchange_item;
+ QPushButton *rescanButton;
QSocketNotifier *notify, *connNotify;
QProgressDialog *dialog;
bool associated;
void associate();
+ void doScan();
void processAssociateMessage(int);
+ void scanDone(QString message);
int processScan(wpactrl_t *, const char *, size_t);
friend int scanResults(wpactrl_t *, char const *, size_t, void *, tain_t *);
#endif /* HAS_INSTALL_ENV */