~kroq-gar78/ubuntu/precise/gnome-control-center/fix-885947

« back to all changes in this revision

Viewing changes to panels/network/net-vpn.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2011-05-17 10:47:27 UTC
  • mto: (206.1.1 oneiric-proposed)
  • mto: This revision was merged to the branch mainline in revision 165.
  • Revision ID: james.westby@ubuntu.com-20110517104727-ky274kr7t5a1nk9r
Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2011 Richard Hughes <richard@hughsie.com>
 
4
 *
 
5
 * Licensed under the GNU General Public License Version 2
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 */
 
21
 
 
22
#ifndef __NET_VPN_H
 
23
#define __NET_VPN_H
 
24
 
 
25
#include <glib-object.h>
 
26
 
 
27
#include "NetworkManagerVPN.h"
 
28
#include "net-object.h"
 
29
#include "nm-connection.h"
 
30
#include "nm-vpn-connection.h"
 
31
 
 
32
G_BEGIN_DECLS
 
33
 
 
34
#define NET_TYPE_VPN          (net_vpn_get_type ())
 
35
#define NET_VPN(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_VPN, NetVpn))
 
36
#define NET_VPN_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_VPN, NetVpnClass))
 
37
#define NET_IS_VPN(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_VPN))
 
38
#define NET_IS_VPN_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_VPN))
 
39
#define NET_VPN_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_VPN, NetVpnClass))
 
40
 
 
41
typedef struct _NetVpnPrivate         NetVpnPrivate;
 
42
typedef struct _NetVpn                NetVpn;
 
43
typedef struct _NetVpnClass           NetVpnClass;
 
44
 
 
45
struct _NetVpn
 
46
{
 
47
         NetObject               parent;
 
48
         NetVpnPrivate          *priv;
 
49
};
 
50
 
 
51
struct _NetVpnClass
 
52
{
 
53
        NetObjectClass               parent_class;
 
54
};
 
55
 
 
56
GType            net_vpn_get_type               (void);
 
57
NetVpn          *net_vpn_new                    (void);
 
58
void             net_vpn_set_connection         (NetVpn         *vpn,
 
59
                                                 NMConnection   *connection);
 
60
NMConnection    *net_vpn_get_connection         (NetVpn         *vpn);
 
61
const gchar     *net_vpn_get_gateway            (NetVpn         *vpn);
 
62
const gchar     *net_vpn_get_id                 (NetVpn         *vpn);
 
63
const gchar     *net_vpn_get_username           (NetVpn         *vpn);
 
64
const gchar     *net_vpn_get_password           (NetVpn         *vpn);
 
65
NMVPNConnectionState net_vpn_get_state          (NetVpn         *vpn);
 
66
 
 
67
G_END_DECLS
 
68
 
 
69
#endif /* __NET_VPN_H */
 
70