[gnome-shell/wip/aggregate-menu: 57/75] network: Remove the global wireless kill-switch
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/aggregate-menu: 57/75] network: Remove the global wireless kill-switch
- Date: Mon, 1 Jul 2013 18:12:52 +0000 (UTC)
commit b948415620c02da3aad0e424d1ba41631a146cd8
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Fri Apr 26 00:28:08 2013 -0400
network: Remove the global wireless kill-switch
This will eventually be implemented separately with an Airplane Mode
toggle, but for now, remove it.
js/ui/status/network.js | 122 -----------------------------------------------
1 files changed, 0 insertions(+), 122 deletions(-)
---
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 1e98168..218ad61 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -117,53 +117,6 @@ const NMNetworkMenuItem = new Lang.Class({
}
});
-const NMWirelessSectionTitleMenuItem = new Lang.Class({
- Name: 'NMWirelessSectionTitleMenuItem',
- Extends: PopupMenu.PopupSwitchMenuItem,
-
- _init: function(client) {
- this.parent(_("Wi-Fi"), false, { style_class: 'popup-subtitle-menu-item' });
-
- this._client = client;
- this._client.connect('notify::wireless-enabled', Lang.bind(this, this._propertyChanged));
- this._client.connect('notify::wireless-hardware-enabled', Lang.bind(this, this._propertyChanged));
-
- this._propertyChanged();
- },
-
- updateForDevice: function(device) {
- // we show the switch
- // - if there not just one device
- // - if the switch is off (but it can be turned on)
- // - if the device is activated or disconnected
- if (!this._hardwareEnabled) {
- this.setStatus(_("hardware disabled"));
- } else if (device && this._softwareEnabled) {
- let text = device.getStatusLabel();
- this.setStatus(text);
- } else
- this.setStatus(null);
- },
-
- activate: function(event) {
- this.parent(event);
-
- this._client.wireless_set_enabled(this._switch.state);
- },
-
- _propertyChanged: function() {
- this._softwareEnabled = this._client.wireless_enabled;
- this._hardwareEnabled = this._client.wireless_hardware_enabled;
-
- let enabled = this._softwareEnabled && this._hardwareEnabled;
- this.setToggleState(enabled);
- if (!this._hardwareEnabled)
- /* Translators: this indicates that wireless or wwan is disabled by hardware killswitch */
- this.setStatus(_("disabled"));
-
- this.emit('enabled-changed', enabled);
- }
-});
const NMDevice = new Lang.Class({
Name: 'NMDevice',
@@ -370,11 +323,6 @@ const NMDevice = new Lang.Class({
return this._device.connection_valid(connection);
},
- setEnabled: function(enabled) {
- // do nothing by default, we want to keep the conneciton list visible
- // in the majority of cases (wired, wwan)
- },
-
_firmwareChanged: function() {
if (this._firmwareChangedId) {
GObject.Object.prototype.disconnect.call(this._device, this._firmwareChangedId);
@@ -526,7 +474,6 @@ const NMDevice = new Lang.Class({
this._updateStatusItem();
this._queueCreateSection();
- this.emit('state-changed');
},
_updateStatusItem: function() {
@@ -536,8 +483,6 @@ const NMDevice = new Lang.Class({
_substateChanged: function() {
this.statusItem.setStatus(this.getStatusLabel());
-
- this.emit('state-changed');
}
});
Signals.addSignalMethods(NMDevice.prototype);
@@ -590,7 +535,6 @@ const NMDeviceModem = new Lang.Class({
_init: function(client, device, connections) {
device._description = _("Mobile broadband");
- this._enabled = true;
this.mobileDevice = null;
this._capabilities = device.current_capabilities;
@@ -627,23 +571,6 @@ const NMDeviceModem = new Lang.Class({
this.parent(client, device, connections);
},
- setEnabled: function(enabled) {
- this._enabled = enabled;
- if (this.category == NMConnectionCategory.WWAN) {
- if (enabled) {
- // prevent "network unavailable" statuses
- this.statusItem.setStatus(null);
- } else
- this.statusItem.setStatus(this.getStatusLabel());
- }
-
- this.parent(enabled);
- },
-
- get connected() {
- return this._enabled && this._device.state == NetworkManager.DeviceState.ACTIVATED;
- },
-
destroy: function() {
if (this._operatorNameId) {
this.mobileDevice.disconnect(this._operatorNameId);
@@ -780,11 +707,6 @@ const NMDeviceWireless = new Lang.Class({
this.parent();
},
- setEnabled: function(enabled) {
- this.statusItem.actor.visible = enabled;
- this.section.actor.visible = enabled;
- },
-
activate: function() {
if (this._activeConnection)
// nothing to do
@@ -1494,9 +1416,7 @@ const NMApplet = new Lang.Class({
this._devices.wireless = {
section: new PopupMenu.PopupMenuSection(),
devices: [ ],
- item: this._makeWirelessToggle()
};
- this._devices.wireless.section.addMenuItem(this._devices.wireless.item);
this.menu.addMenuItem(this._devices.wireless.section);
this._devices.wwan = {
@@ -1536,41 +1456,6 @@ const NMApplet = new Lang.Class({
}
},
- _makeWirelessToggle: function() {
- let item = new NMWirelessSectionTitleMenuItem(this._client);
- item.connect('enabled-changed', Lang.bind(this, function(item, enabled) {
- let devices = this._devices.wireless.devices;
- devices.forEach(function(dev) {
- dev.setEnabled(enabled);
- });
- this._syncSectionTitle('wireless');
- }));
- return item;
- },
-
- _syncSectionTitle: function(category) {
- let devices = this._devices[category].devices;
- let item = this._devices[category].item;
-
- // Sync the relation between the section title
- // item (the one with the airplane mode switch)
- // and the individual device switches
- if (item) {
- if (devices.length == 1) {
- let dev = devices[0];
- dev.statusItem.actor.hide();
- item.updateForDevice(dev);
- } else {
- devices.forEach(function(dev) {
- dev.statusItem.actor.show();
- });
-
- // remove status text from the section title item
- item.updateForDevice(null);
- }
- }
- },
-
_readDevices: function() {
let devices = this._client.get_devices() || [ ];
for (let i = 0; i < devices.length; ++i) {
@@ -1637,9 +1522,6 @@ const NMApplet = new Lang.Class({
_addDeviceWrapper: function(wrapper) {
wrapper._activationFailedId = wrapper.connect('activation-failed',
Lang.bind(this, this._onActivationFailed));
- wrapper._deviceStateChangedId = wrapper.connect('state-changed', Lang.bind(this, function(dev) {
- this._syncSectionTitle(dev.category);
- }));
let section = this._devices[wrapper.category].section;
section.addMenuItem(wrapper.statusItem);
@@ -1647,8 +1529,6 @@ const NMApplet = new Lang.Class({
let devices = this._devices[wrapper.category].devices;
devices.push(wrapper);
-
- this._syncSectionTitle(wrapper.category);
},
_deviceRemoved: function(client, device) {
@@ -1675,8 +1555,6 @@ const NMApplet = new Lang.Class({
let devices = this._devices[wrapper.category].devices;
let pos = devices.indexOf(wrapper);
devices.splice(pos, 1);
-
- this._syncSectionTitle(wrapper.category)
},
_getSupportedActiveConnections: function() {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]