2011-01-24 15:46:58 -05:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
2010-12-15 19:22:15 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Richard Hughes <richard@hughsie.com>
|
|
|
|
*
|
|
|
|
* Licensed under the GNU General Public License Version 2
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PANEL_COMMON_H
|
|
|
|
#define PANEL_COMMON_H
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2011-02-21 10:05:22 +00:00
|
|
|
#include <NetworkManager.h>
|
2012-07-17 16:00:40 +01:00
|
|
|
#include <gtk/gtk.h>
|
2010-12-15 19:22:15 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-02-06 17:15:07 -05:00
|
|
|
const gchar *panel_device_to_icon_name (NMDevice *device,
|
|
|
|
gboolean symbolic);
|
2017-02-13 21:39:18 +01:00
|
|
|
gint panel_device_get_sort_category (NMDevice *device);
|
2012-05-14 08:07:06 +02:00
|
|
|
const gchar *panel_ap_mode_to_localized_string (NM80211Mode mode);
|
2016-04-29 16:05:54 +02:00
|
|
|
const gchar *panel_vpn_state_to_localized_string (NMVpnConnectionState type);
|
2013-02-04 16:50:53 -05:00
|
|
|
void panel_set_device_status (GtkBuilder *builder,
|
|
|
|
const gchar *label_name,
|
|
|
|
NMDevice *nm_device,
|
|
|
|
const gchar *speed);
|
2012-07-17 16:00:40 +01:00
|
|
|
gboolean panel_set_device_widget_details (GtkBuilder *builder,
|
|
|
|
const gchar *widget_suffix,
|
|
|
|
const gchar *value);
|
2012-07-17 16:15:13 +01:00
|
|
|
gboolean panel_set_device_widget_header (GtkBuilder *builder,
|
|
|
|
const gchar *widget_suffix,
|
|
|
|
const gchar *value);
|
2012-07-18 14:57:26 +01:00
|
|
|
void panel_set_device_widgets (GtkBuilder *builder,
|
|
|
|
NMDevice *device);
|
2012-09-08 16:58:14 -04:00
|
|
|
void panel_unset_device_widgets (GtkBuilder *builder);
|
2016-04-29 16:05:54 +02:00
|
|
|
gchar *panel_get_ip4_address_as_string (NMIPConfig *config, const gchar *what);
|
|
|
|
gchar *panel_get_ip4_dns_as_string (NMIPConfig *config);
|
|
|
|
gchar *panel_get_ip6_address_as_string (NMIPConfig *config);
|
2010-12-15 19:22:15 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* PANEL_COMMON_H */
|