/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */ /* 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 __GST_NETWORK_TOOL_H #define __GST_NETWORK_TOOL_H G_BEGIN_DECLS #include #include #include "address-list.h" #include "locations-combo.h" #include "connection.h" #define GST_TYPE_NETWORK_TOOL (gst_network_tool_get_type ()) #define GST_NETWORK_TOOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NETWORK_TOOL, GstNetworkTool)) #define GST_NETWORK_TOOL_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GST_TYPE_NETWORK_TOOL, GstNetworkToolClass)) #define GST_IS_NETWORK_TOOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NETWORK_TOOL)) #define GST_IS_NETWORK_TOOL_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), GST_TYPE_NETWORK_TOOL)) #define GST_NETWORK_TOOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_NETWORK_TOOL, GstNetworkToolClass)) typedef struct _GstNetworkTool GstNetworkTool; typedef struct _GstNetworkToolClass GstNetworkToolClass; struct _GstNetworkTool { GstTool parent_instance; /* config */ OobsHostsConfig *hosts_config; OobsIfacesConfig *ifaces_config; /* gui */ GstAddressList *dns; GstAddressList *search; /* bus, used for NM integration */ DBusConnection *bus_connection; GtkTreeModel *interfaces_model; GtkTreeView *interfaces_list; GtkTreeView *host_aliases_list; GstLocationsCombo *location; GtkEntry *hostname; GtkEntry *domain; GstConnectionDialog *dialog; GtkWidget *host_aliases_dialog; }; struct _GstNetworkToolClass { GstToolClass parent_class; }; GType gst_network_tool_get_type (void); GstTool *gst_network_tool_new (void); G_END_DECLS #endif /* __GST_NETWORK_TOOL_H */