~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to panels/network/panel-common.h

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) 2010 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 PANEL_COMMON_H
 
23
#define PANEL_COMMON_H
 
24
 
 
25
#include <glib-object.h>
 
26
#include <NetworkManager.h>
 
27
#include <NetworkManagerVPN.h>
 
28
#include <nm-device.h>
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
const gchar     *panel_device_to_icon_name              (NMDevice *device);
 
33
const gchar     *panel_device_to_localized_string       (NMDevice *device);
 
34
const gchar     *panel_device_to_sortable_string        (NMDevice *device);
 
35
const gchar     *panel_ap_mode_to_localized_string      (NM80211Mode mode);
 
36
const gchar     *panel_device_state_to_localized_string (NMDevice *device);
 
37
const gchar     *panel_vpn_state_to_localized_string    (NMVPNConnectionState type);
 
38
 
 
39
G_END_DECLS
 
40
 
 
41
#endif /* PANEL_COMMON_H */
 
42