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

« back to all changes in this revision

Viewing changes to src/wireless-security-option.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_H
 
23
#define WIRELESS_SECURITY_OPTION_H
 
24
 
 
25
#include <dbus/dbus.h>
 
26
#include <gtk/gtk.h>
 
27
 
 
28
#include "cipher.h"
 
29
 
 
30
typedef struct WirelessSecurityOption WirelessSecurityOption;
 
31
 
 
32
const char *    wso_get_name (WirelessSecurityOption * opt);
 
33
 
 
34
GtkWidget *     wso_get_widget (WirelessSecurityOption * opt, GtkSignalFunc validate_cb, gpointer user_data);
 
35
 
 
36
gboolean                wso_is_wso_widget (GtkWidget * widget);
 
37
 
 
38
gboolean                wso_validate_input (WirelessSecurityOption * opt, const char * ssid, IEEE_802_11_Cipher ** out_cipher);
 
39
 
 
40
gboolean                wso_append_dbus_params (WirelessSecurityOption *opt, const char *ssid, DBusMessage *message);
 
41
 
 
42
void                    wso_free (WirelessSecurityOption * opt);
 
43
 
 
44
#endif  /* WIRELESS_SECURITY_OPTION_H */