mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-16 05:58:07 +02:00
* gnome/applet/applet-dbus-devices.c - Replace 'enc' parameter with 'capabilities' for wireless networks in dbus calls to NM - Set capabilities on WirelessNetwork objects - Receive and save type-specific device capabilities too * gnome/applet/applet-dbus-info.c gnome/applet/applet-dbus.c - Passphrase dialog no longer a singleton; new instance gets created on each request. Updates to deal with that. * gnome/applet/applet.c - (nmwa_has_encrypted_networks_helper): use AP capabilities rather than single 'encrypted' flag - (nmwa_menu_add_vpn_menu): if NM isn't connected, disable any VPN menu items - Passphrase dialog updates per above * gnome/applet/menu-items.c - (network_menu_item_update): use AP capabilities to determine encryption * gnome/applet/nm-device.[ch] - Add accessors for type-specific device capabilities * gnome/applet/other-network-dialog.c - Rework to respect device capabilities. i.e., if the device doesn't support WPA, remove that option from the security dropdown * gnome/applet/passphrase-dialog.c - Massive rework so that a new instance is created each time it's used, to support wireless network capabilities * gnome/applet/wireless-network.[ch] - Add accessors and members for wireless network capabilities * gnome/applet/wireless-security-manager.[ch] - (wsm_set_capabilities): called after creation to set which security options get shown to the user git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1238 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
48 lines
1.8 KiB
C
48 lines
1.8 KiB
C
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
|
|
*
|
|
* Dan Williams <dcbw@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* (C) Copyright 2005 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef WIRELESS_SECURITY_MANAGER_H
|
|
#define WIRELESS_SECURITY_MANAGER_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include "wireless-security-option.h"
|
|
#include "wireless-network.h"
|
|
|
|
typedef struct WirelessSecurityManager WirelessSecurityManager;
|
|
|
|
|
|
WirelessSecurityManager * wsm_new (const char * glade_file);
|
|
|
|
void wsm_free (WirelessSecurityManager *wsm);
|
|
|
|
void wsm_set_capabilities (WirelessSecurityManager *wsm, guint32 capabilities);
|
|
|
|
void wsm_update_combo (WirelessSecurityManager *wsm, GtkComboBox *combo);
|
|
|
|
GtkWidget * wsm_get_widget_for_active (WirelessSecurityManager *wsm, GtkComboBox *combo,
|
|
GtkSignalFunc validate_cb, gpointer user_data);
|
|
|
|
gboolean wsm_validate_active (WirelessSecurityManager *wsm, GtkComboBox *combo,
|
|
const char *ssid);
|
|
|
|
WirelessSecurityOption * wsm_get_option_for_active (WirelessSecurityManager *wsm, GtkComboBox *combo);
|
|
|
|
#endif /* WIRELESS_SECURITY_MANAGER_H */
|