140 lines
4.5 KiB
C
140 lines
4.5 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
/* NetworkManager Applet -- allow user control over networking
|
|
*
|
|
* 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.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright 2007 - 2014 Red Hat, Inc.
|
|
*/
|
|
|
|
#include "nm-default.h"
|
|
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
|
|
#include "ws-dynamic-wep.h"
|
|
#include "wireless-security.h"
|
|
#include "eap-method.h"
|
|
|
|
struct _WirelessSecurityDynamicWEP {
|
|
WirelessSecurity parent;
|
|
|
|
GtkComboBox *auth_combo;
|
|
GtkLabel *auth_label;
|
|
GtkGrid *grid;
|
|
GtkBox *method_box;
|
|
|
|
GtkSizeGroup *size_group;
|
|
};
|
|
|
|
static void
|
|
destroy (WirelessSecurity *parent)
|
|
{
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
|
|
g_clear_object (&self->size_group);
|
|
}
|
|
|
|
static GtkWidget *
|
|
get_widget (WirelessSecurity *parent)
|
|
{
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
return GTK_WIDGET (self->grid);
|
|
}
|
|
|
|
static gboolean
|
|
validate (WirelessSecurity *parent, GError **error)
|
|
{
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
return ws_802_1x_validate (self->auth_combo, error);
|
|
}
|
|
|
|
static void
|
|
add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group)
|
|
{
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
|
|
g_clear_object (&self->size_group);
|
|
self->size_group = g_object_ref (group);
|
|
|
|
ws_802_1x_add_to_size_group (self->size_group, self->auth_label, self->auth_combo);
|
|
}
|
|
|
|
static void
|
|
fill_connection (WirelessSecurity *parent, NMConnection *connection)
|
|
{
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
NMSettingWirelessSecurity *s_wireless_sec;
|
|
|
|
ws_802_1x_fill_connection (self->auth_combo, connection);
|
|
|
|
s_wireless_sec = nm_connection_get_setting_wireless_security (connection);
|
|
g_assert (s_wireless_sec);
|
|
|
|
g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "ieee8021x", NULL);
|
|
}
|
|
|
|
static void
|
|
auth_combo_changed_cb (GtkWidget *combo, gpointer user_data)
|
|
{
|
|
WirelessSecurity *parent = WIRELESS_SECURITY (user_data);
|
|
WirelessSecurityDynamicWEP *self = (WirelessSecurityDynamicWEP *) parent;
|
|
|
|
ws_802_1x_auth_combo_changed (combo,
|
|
parent,
|
|
self->method_box,
|
|
self->size_group);
|
|
}
|
|
|
|
WirelessSecurityDynamicWEP *
|
|
ws_dynamic_wep_new (NMConnection *connection,
|
|
gboolean is_editor,
|
|
gboolean secrets_only)
|
|
{
|
|
WirelessSecurity *parent;
|
|
WirelessSecurityDynamicWEP *self;
|
|
|
|
parent = wireless_security_init (sizeof (WirelessSecurityDynamicWEP),
|
|
get_widget,
|
|
validate,
|
|
add_to_size_group,
|
|
fill_connection,
|
|
destroy,
|
|
"/org/gnome/ControlCenter/network/ws-dynamic-wep.ui");
|
|
if (!parent)
|
|
return NULL;
|
|
self = (WirelessSecurityDynamicWEP *) parent;
|
|
|
|
self->auth_combo = GTK_COMBO_BOX (gtk_builder_get_object (parent->builder, "auth_combo"));
|
|
self->auth_label = GTK_LABEL (gtk_builder_get_object (parent->builder, "auth_label"));
|
|
self->grid = GTK_GRID (gtk_builder_get_object (parent->builder, "grid"));
|
|
self->method_box = GTK_BOX (gtk_builder_get_object (parent->builder, "method_box"));
|
|
|
|
wireless_security_set_adhoc_compatible (parent, FALSE);
|
|
wireless_security_set_hotspot_compatible (parent, FALSE);
|
|
|
|
ws_802_1x_auth_combo_init (parent,
|
|
self->auth_combo,
|
|
self->auth_label,
|
|
(GCallback) auth_combo_changed_cb,
|
|
connection,
|
|
is_editor,
|
|
secrets_only);
|
|
auth_combo_changed_cb (GTK_WIDGET (self->auth_combo), (gpointer) parent);
|
|
|
|
return self;
|
|
}
|
|
|