/* -*- Mode: C; c-file-style: "gnu"; tab-width: 8 -*- */ /* Copyright (C) 2004 Carlos Garnacho * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * Authors: Carlos Garnacho Parro */ #ifndef __CONNECTION_H #define __CONNECTION_H #include "gst.h" #include "essid-list.h" #include "config.h" typedef struct _GstConnectionDialog GstConnectionDialog; struct _GstConnectionDialog { OobsIface *iface; gboolean changed; gboolean standalone; GtkWidget *dialog; /* notebook pages */ GtkWidget *notebook; GtkWidget *general_page; GtkWidget *modem_page; GtkWidget *options_page; GtkWidget *connection_configured; GtkWidget *roaming_configured; #ifdef HAVE_LIBIW_H GstEssidList *essid_list; #endif /* ethernet */ GtkWidget *bootproto_combo; GtkWidget *address; GtkWidget *netmask; GtkWidget *gateway; /* wireless */ GtkWidget *essid; GtkWidget *key_type_combo; GtkWidget *wep_key; /* plip */ GtkWidget *local_address; GtkWidget *remote_address; /* ppp */ GtkWidget *ppp_type_combo; GtkWidget *ppp_type_box; GtkWidget *login; GtkWidget *password; GtkWidget *phone_number; GtkWidget *dial_prefix; GtkWidget *pppoe_interface_combo; GtkWidget *apn; GtkWidget *pppoe_settings_table; GtkWidget *modem_settings_table; GtkWidget *modem_isp_table; GtkWidget *gprs_isp_table; GtkWidget *ppp_login; GtkWidget *ppp_password; GtkWidget *serial_port; GtkWidget *detect_modem; GtkWidget *ppp_phone_number; GtkWidget *ppp_dial_prefix; GtkWidget *volume; GtkWidget *dial_type; GtkWidget *default_gw; GtkWidget *peerdns; GtkWidget *persist; /* frames */ GtkWidget *wireless_frame; GtkWidget *ethernet_frame; GtkWidget *plip_frame; GtkWidget *isp_frame; GtkWidget *account_frame; GtkWidget *ok_button; }; GstConnectionDialog *connection_dialog_init (GstTool*); void connection_dialog_prepare (GstConnectionDialog*, OobsIface*); void connection_dialog_set_sensitive (GstConnectionDialog*, gboolean); void connection_save (GstConnectionDialog*); void connection_check_fields (GstConnectionDialog*); void connection_check_netmask (GtkWidget*, GtkWidget*); gchar *connection_detect_modem (void); void connection_dialog_hide (GstConnectionDialog *dialog); gchar *connection_get_config_method (GstConnectionDialog *dialog); void connection_set_config_method (GstConnectionDialog *dialog, const gchar *method); gchar *connection_combo_get_value (GtkComboBox *combo); void connection_dialog_update (GstConnectionDialog *gcd); #endif /* __CONNECTION_H */