Blob Blame History Raw
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
 *
 * 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.
 *
 * (C) Copyright 2007 - 2015 Red Hat, Inc.
 */

#ifndef NMA_UI_UTILS_H
#define NMA_UI_UTILS_H

#include <glib.h>
#include <gtk/gtk.h>
#include <nm-device.h>
#include <nm-setting.h>
#include <nm-connection.h>

const char *nma_utils_get_device_vendor (NMDevice *device);
const char *nma_utils_get_device_product (NMDevice *device);
const char *nma_utils_get_device_description (NMDevice *device);
const char *nma_utils_get_device_generic_type_name (NMDevice *device);
const char *nma_utils_get_device_type_name (NMDevice *device);

char **nma_utils_disambiguate_device_names (NMDevice **devices,
                                            int        num_devices);
char *nma_utils_get_connection_device_name (NMConnection *connection);

void nma_utils_setup_password_storage (GtkWidget *passwd_entry,
                                       NMSettingSecretFlags initial_flags,
                                       NMSetting *setting,
                                       const char *password_flags_name,
                                       gboolean with_not_required,
                                       gboolean ask_mode);
NMSettingSecretFlags nma_utils_menu_to_secret_flags (GtkWidget *passwd_entry);
void nma_utils_update_password_storage (GtkWidget *passwd_entry,
                                        NMSettingSecretFlags secret_flags,
                                        NMSetting *setting,
                                        const char *password_flags_name);

#endif /* NMA_UI_UTILS_H */