~dylanmccall/ubuntu/oneiric/network-manager-applet/lp852961-disable-autostart-for-gnome-shell

« back to all changes in this revision

Viewing changes to src/wso-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2007-06-15 12:46:22 UTC
  • Revision ID: james.westby@ubuntu.com-20070615124622-01cyrnf0uxxun4lz
Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
 
2
 *
 
3
 * Dan Williams <dcbw@redhat.com>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 *
 
19
 * (C) Copyright 2005 Red Hat, Inc.
 
20
 */
 
21
 
 
22
#ifndef WIRELESS_SECURITY_OPTION_PRIVATE_H
 
23
#define WIRELESS_SECURITY_OPTION_PRIVATE_H
 
24
 
 
25
#include <glib.h>
 
26
#include <glib/gi18n.h>
 
27
#include <gtk/gtk.h>
 
28
#include <glade/glade.h>
 
29
#include <dbus/dbus.h>
 
30
 
 
31
#include "cipher.h"
 
32
 
 
33
#define WS_TAG_MAGIC    0xa7f4
 
34
#define WS_TAG_NAME             "ws-tag"
 
35
 
 
36
typedef struct OptData OptData;
 
37
 
 
38
struct WirelessSecurityOption
 
39
{
 
40
        /* Human readable name for the option */
 
41
        char *          name;
 
42
 
 
43
        /* Corresponding IEEE_802_11_Cipher objects */
 
44
        GSList *                ciphers;
 
45
 
 
46
        /* Notebook widget for this option */
 
47
        const char *    widget_name;
 
48
        GtkWidget *     widget;
 
49
 
 
50
        /* The Glade UI for this option */
 
51
        GladeXML *      uixml;
 
52
 
 
53
        /* Option-specific data */
 
54
        OptData *               data;
 
55
 
 
56
        /* Option-specific data free function */
 
57
        void                    (*data_free_func)(WirelessSecurityOption *opt);
 
58
 
 
59
        /* Validate the option's input */
 
60
        gboolean                (*validate_input_func)(WirelessSecurityOption *opt, const char *ssid, IEEE_802_11_Cipher ** out_cipher);
 
61
 
 
62
        /* Widget creation function */
 
63
        GtkWidget *     (*widget_create_func)(WirelessSecurityOption *opt, GtkSignalFunc validate_cb, gpointer user_data);
 
64
 
 
65
        /* DBUS params append function for building up a suitable
 
66
         * dbus message describing this particular security option
 
67
         */
 
68
        gboolean                (*append_dbus_params_func)(WirelessSecurityOption *opt, const char *ssid, DBusMessage *message);
 
69
};
 
70
 
 
71
 
 
72
gboolean                wso_validate_helper (WirelessSecurityOption *opt, const char *ssid, const char *input, IEEE_802_11_Cipher ** out_cipher);
 
73
GtkWidget *     wso_widget_helper (WirelessSecurityOption *opt);
 
74
 
 
75
void                    wso_wep_auth_combo_setup (WirelessSecurityOption *opt, GtkComboBox * combo);
 
76
int                     wso_wep_auth_combo_get_auth_alg (WirelessSecurityOption *opt, GtkComboBox * combo);
 
77
void                    wso_wep_auth_combo_cleanup (WirelessSecurityOption *opt, GtkComboBox * combo);
 
78
 
 
79
#define WPA_KEY_TYPE_NAME_COL           0
 
80
#define WPA_KEY_TYPE_CIPHER_COL 1
 
81
 
 
82
GtkTreeModel *  wso_wpa_create_key_type_model (int capabilities, gboolean wpa_eap, int *num_added);
 
83
 
 
84
 
 
85
#endif  /* WIRELESS_SECURITY_OPTION_PRIVATE_H */