ui: add wifi_hidden_prompt dialog

Modal SSID + optional passphrase prompt with the same callback shape as
wifi_auth_prompt. Used by the upcoming popup "Hidden..." button.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
nemunaire 2026-04-09 12:02:41 +07:00
commit dcf0fd00a0
5 changed files with 153 additions and 7 deletions

View file

@ -7,7 +7,7 @@ typedef void (*Wifi_Auth_Cb)(void *data, const char *passphrase, Eina_Bool ok);
/* Show a modal passphrase dialog. cb is called exactly once with ok=EINA_TRUE
* + passphrase, or ok=EINA_FALSE on cancel. The dialog destroys itself. */
void wifi_auth_prompt(Evas_Object *parent, const char *ssid,
Wifi_Auth_Cb cb, void *data);
Evas_Object *wifi_auth_prompt(Evas_Object *parent, const char *ssid,
Wifi_Auth_Cb cb, void *data);
#endif