wpa_gui-qt4: add status fields to tray message
Add extra state status fields to the tray icon message bubble. Do not display an empty message. Signed-off-by: Kel Modderman <kel@otaku42.de>
This commit is contained in:
parent
488af690b6
commit
1c63bd0c41
1 changed files with 8 additions and 1 deletions
|
@ -1203,11 +1203,18 @@ void WpaGui::showTrayStatus()
|
||||||
msg.append("GROUP:\t" + (*it).mid(pos) + "\n");
|
msg.append("GROUP:\t" + (*it).mid(pos) + "\n");
|
||||||
else if ((*it).startsWith("key_mgmt="))
|
else if ((*it).startsWith("key_mgmt="))
|
||||||
msg.append("AUTH: \t" + (*it).mid(pos) + "\n");
|
msg.append("AUTH: \t" + (*it).mid(pos) + "\n");
|
||||||
|
else if ((*it).startsWith("wpa_state="))
|
||||||
|
msg.append("STATE:\t" + (*it).mid(pos) + "\n");
|
||||||
else if ((*it).startsWith("ip_address="))
|
else if ((*it).startsWith("ip_address="))
|
||||||
msg.append("IP: \t" + (*it).mid(pos) + "\n");
|
msg.append("IP: \t" + (*it).mid(pos) + "\n");
|
||||||
|
else if ((*it).startsWith("Supplicant PAE state="))
|
||||||
|
msg.append("PAE: \t" + (*it).mid(pos) + "\n");
|
||||||
|
else if ((*it).startsWith("EAP state="))
|
||||||
|
msg.append("EAP: \t" + (*it).mid(pos) + "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
showTrayMessage(QSystemTrayIcon::Information, 10, msg);
|
if (!msg.isEmpty())
|
||||||
|
showTrayMessage(QSystemTrayIcon::Information, 10, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WpaGui::fileExit()
|
void WpaGui::fileExit()
|
||||||
|
|
Loading…
Reference in a new issue