ui: remove unused wifi_list/wifi_status stubs
The popup builds its network list inline in e_mod_popup.c and shows status via labels there; these stubs were never wired up. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c115148f4a
commit
480476f59d
5 changed files with 0 additions and 45 deletions
|
|
@ -11,10 +11,8 @@ e_iwd_sources = [
|
|||
'iwd/iwd_device.c',
|
||||
'iwd/iwd_network.c',
|
||||
'iwd/iwd_labels.c',
|
||||
'ui/wifi_list.c',
|
||||
'ui/wifi_auth.c',
|
||||
'ui/wifi_hidden.c',
|
||||
'ui/wifi_status.c',
|
||||
]
|
||||
|
||||
shared_module('module',
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
#include "wifi_list.h"
|
||||
|
||||
/* TODO: Genlist of networks, sorted (known first, then signal desc),
|
||||
* with security icon, signal bars, and click → connect/auth flow. */
|
||||
|
||||
Evas_Object *
|
||||
wifi_list_add(Evas_Object *parent)
|
||||
{
|
||||
Evas_Object *gl = elm_genlist_add(parent);
|
||||
return gl;
|
||||
}
|
||||
|
||||
void wifi_list_refresh(Evas_Object *list EINA_UNUSED) { /* TODO */ }
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
#ifndef WIFI_LIST_H
|
||||
#define WIFI_LIST_H
|
||||
|
||||
#include <Elementary.h>
|
||||
|
||||
Evas_Object *wifi_list_add(Evas_Object *parent);
|
||||
void wifi_list_refresh(Evas_Object *list);
|
||||
|
||||
#endif
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
#include "wifi_status.h"
|
||||
|
||||
/* TODO: current connection summary widget (SSID, signal, IP, Disconnect). */
|
||||
|
||||
Evas_Object *
|
||||
wifi_status_add(Evas_Object *parent)
|
||||
{
|
||||
Evas_Object *box = elm_box_add(parent);
|
||||
return box;
|
||||
}
|
||||
|
||||
void wifi_status_refresh(Evas_Object *o EINA_UNUSED) { /* TODO */ }
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
#ifndef WIFI_STATUS_H
|
||||
#define WIFI_STATUS_H
|
||||
|
||||
#include <Elementary.h>
|
||||
|
||||
Evas_Object *wifi_status_add(Evas_Object *parent);
|
||||
void wifi_status_refresh(Evas_Object *o);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue