diff options
author | Tambet Ingo <tambet@ximian.com> | 2007-02-20 15:24:42 +0000 |
---|---|---|
committer | Tambet Ingo <tambet@gmail.com> | 2007-02-20 15:24:42 +0000 |
commit | 537b30f99ef5bb6f2623dc227d39b435a58faeb6 (patch) | |
tree | c05196b04ee0f948054fd1ae6b35669f20cf5da2 /libnm-glib/nm-access-point.h | |
parent | b5e4eb771211e2a980c85212505bdc1c7507841a (diff) |
2007-02-20 Tambet Ingo <tambet@ximian.com>
* libnm-glib/nm-device-802-11-wireless.c: Add "network-added" and
"network-removed" signals.
* libnm-glib/libnm-glib.pc.in: Require NetworkManager >= 0.7.0.
* libnm-glib/nm-access-point.c: Add "strength-changed" signal, emit it
when receiving the signal from dbus.
* src/nm-device-802-11-wireless.c (get_property): Fix PROP_ACTIVE_NETWORK
property.
* src/NetworkManagerPolicy.c (state_changed): Fix a typo to make the
deactivation of the previously activated device working again.
* src/nm-activation-request.c: Remove NMActStage property and it's getter
and setter.
* src/nm-device.c (nm_device_is_activated): Remove.
state == NM_DEVICE_STATE_ACTIVATED is just as easy to use.
* include/NetworkManager.h: Remove NM_DBUS_NO_DEVICES_ERROR,
NM_DBUS_NO_DIALUP_ERROR, NM_DBUS_NO_NETWORKS_ERROR,
NM_DBUS_NO_ACTIVE_DEVICE_ERROR, NM_DBUS_NO_ACTIVE_NET_ERROR errors and
NM_DBUS_SIGNAL_STATE_CHANGE signal.
Remove NMNetworkStatus and NMActStage enums.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2345 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
Diffstat (limited to 'libnm-glib/nm-access-point.h')
-rw-r--r-- | libnm-glib/nm-access-point.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libnm-glib/nm-access-point.h b/libnm-glib/nm-access-point.h index ac30cae40..8d0b620fb 100644 --- a/libnm-glib/nm-access-point.h +++ b/libnm-glib/nm-access-point.h @@ -18,6 +18,9 @@ typedef struct { typedef struct { DBusGProxyClass parent; + + /* Signals */ + void (*strength_changed) (NMAccessPoint *ap, gint8 strength); } NMAccessPointClass; GType nm_access_point_get_type (void); |