Skip to content

Commit

Permalink
Support all current states of NM.DeviceState
Browse files Browse the repository at this point in the history
  • Loading branch information
milouse committed Oct 10, 2023
1 parent d77491c commit c44a288
Showing 1 changed file with 26 additions and 13 deletions.
39 changes: 26 additions & 13 deletions src/Widgets/WifiMenuItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -158,28 +158,41 @@ public class Network.WifiMenuItem : Gtk.ListBoxRow {

hide_item (error_img);
spinner.active = false;

connect_button_revealer.reveal_child = true;
connect_button_revealer.reveal_child = false;

switch (state) {
case NM.DeviceState.FAILED:
case NM.DeviceState.UNAVAILABLE: // the device is managed by NetworkManager, but is not available for use
case NM.DeviceState.UNMANAGED: // the device is recognized, but not managed by NetworkManager
case NM.DeviceState.FAILED: // the device failed to connect to the requested network and is cleaning up the connection request
case NM.DeviceState.SECONDARIES: // the device is waiting for a secondary connection (like a VPN) which must activated before the device can be activated
show_item (error_img);
state_string = _("Could not be connected to");
break;
case NM.DeviceState.PREPARE:
case NM.DeviceState.NEED_AUTH: // the device requires more information to continue connecting to the requested network
show_item (error_img);
state_string = _("Authentication details required");
connect_button_revealer.reveal_child = true;
break;
case NM.DeviceState.CONFIG: // the device is connecting to the requested network
case NM.DeviceState.IP_CONFIG: // the device is requesting IPv4 and/or IPv6 addresses and routing information from the network
case NM.DeviceState.IP_CHECK: // the device is checking whether further action is required for the requested network connection
case NM.DeviceState.PREPARE: // the device is preparing the connection to the network
spinner.active = true;
state_string = _("Connecting");
break;
case NM.DeviceState.ACTIVATED:
connect_button_revealer.reveal_child = false;
break;
default:
/* Could be a lot of various status (for now, one of:
* `DISCONNECTED', `IP_CHECK', `CONFIG', `UNKNOWN',
* `UNAVAILABLE', `IP_CONFIG', `SECONDARIES', `UNMANAGED',
* `NEED_AUTH', `DEACTIVATING'). Showing the spinner might let
* end-user try to have a look to what is going on. */
case NM.DeviceState.DEACTIVATING:
// a disconnection from the current network connection was
// requested, and the device is cleaning up resources used for
// that connection
spinner.active = true;
state_string = _("Disconnecting");
break;
case NM.DeviceState.UNKNOWN: // the device's state is unknown
case NM.DeviceState.DISCONNECTED:
connect_button_revealer.reveal_child = true;
break;
case NM.DeviceState.ACTIVATED: // the device has a network connection, either local or global
// Nothing to do
break;
}

Expand Down

0 comments on commit c44a288

Please sign in to comment.