summaryrefslogtreecommitdiff
path: root/source4/gtk/common
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-07-11 20:16:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:58 -0500
commit805ebe10848316f357553cac516187475989abae (patch)
tree338cb9d2ad213a6887b72bb65851c3af30d5f629 /source4/gtk/common
parentec3a86254b41988b453da33112c9309f1ec2eb36 (diff)
downloadsamba-805ebe10848316f357553cac516187475989abae.tar.gz
samba-805ebe10848316f357553cac516187475989abae.tar.bz2
samba-805ebe10848316f357553cac516187475989abae.zip
r1455: More Gtk+ updates:
- Start working on 'gwsam' - Add GtkSelectDomainDialog and GtkSelectHostDialog (This used to be commit bea47671aa791f3c4d22263f9444aea1a73f47f1)
Diffstat (limited to 'source4/gtk/common')
-rw-r--r--source4/gtk/common/gtk-smb.c77
-rw-r--r--source4/gtk/common/gtk-smb.h4
-rw-r--r--source4/gtk/common/select.c280
-rw-r--r--source4/gtk/common/select.h77
4 files changed, 404 insertions, 34 deletions
diff --git a/source4/gtk/common/gtk-smb.c b/source4/gtk/common/gtk-smb.c
index 7d7de18e76..d1c1eaa806 100644
--- a/source4/gtk/common/gtk-smb.c
+++ b/source4/gtk/common/gtk-smb.c
@@ -19,19 +19,8 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <string.h>
-#include <stdio.h>
-
-#include <gdk/gdkkeysyms.h>
-#include <gtk/gtk.h>
#include "includes.h"
+#include "gtk-smb.h"
void gtk_show_werror(GtkWidget *win, WERROR err)
{
@@ -55,8 +44,15 @@ void gtk_show_ntstatus(GtkWidget *win, NTSTATUS status)
gtk_widget_destroy (dialog);
}
-static void gtk_rpc_binding_dialog_class_init (GtkRpcBindingDialogClass *class)
+static void on_browse_activate (GtkButton *button, gpointer user_data)
{
+ GtkRpcBindingDialog *rbd = user_data;
+ GtkSelectHostDialog *shd = gtk_select_host_dialog_new(TRUE);
+ if(gtk_dialog_run(GTK_DIALOG(shd)) == GTK_RESPONSE_ACCEPT) {
+ gtk_entry_set_text(GTK_ENTRY(rbd->entry_host), gtk_select_host_dialog_get_host(shd));
+ }
+
+ gtk_widget_destroy(GTK_WIDGET(shd));
}
static void gtk_rpc_binding_dialog_init (GtkRpcBindingDialog *gtk_rpc_binding_dialog)
@@ -79,6 +75,7 @@ static void gtk_rpc_binding_dialog_init (GtkRpcBindingDialog *gtk_rpc_binding_di
GtkWidget *table1;
GtkWidget *lbl_username;
GtkWidget *lbl_password;
+ GtkWidget *btn_browse;
GtkWidget *label9;
GtkWidget *chk_button;
GtkWidget *lbl_credentials;
@@ -139,6 +136,14 @@ static void gtk_rpc_binding_dialog_init (GtkRpcBindingDialog *gtk_rpc_binding_di
gtk_widget_show (gtk_rpc_binding_dialog->entry_host);
gtk_box_pack_start (GTK_BOX (hbox1), gtk_rpc_binding_dialog->entry_host, TRUE, TRUE, 0);
+ btn_browse = gtk_button_new_with_label ("Browse");
+ gtk_widget_show (btn_browse);
+ gtk_box_pack_start (GTK_BOX (hbox1), btn_browse, TRUE, TRUE, 0);
+
+ g_signal_connect ((gpointer) btn_browse, "pressed",
+ G_CALLBACK (on_browse_activate),
+ gtk_rpc_binding_dialog);
+
label2 = gtk_label_new ("Host");
gtk_widget_show (label2);
gtk_frame_set_label_widget (GTK_FRAME (frame_host), label2);
@@ -245,7 +250,7 @@ GType gtk_rpc_binding_dialog_get_type ()
sizeof (GtkRpcBindingDialogClass),
NULL,
NULL,
- (GClassInitFunc) gtk_rpc_binding_dialog_class_init,
+ NULL,
NULL,
NULL,
sizeof(GtkRpcBindingDialog),
@@ -282,12 +287,14 @@ const char *gtk_rpc_binding_dialog_get_binding(GtkRpcBindingDialog *d, char *pip
char *options = NULL;
char *binding = NULL;
+ /* Format: TRANSPORT:host:[\pipe\foo,foo,foo] */
+
host = gtk_entry_get_text(GTK_ENTRY(d->entry_host));
if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(d->transport_tcp_ip)))
transport = "ncacn_tcp";
else
transport = "ncacn_np";
- // Format: TRANSPORT:host:[\pipe\foo,foo,foo]
+
if(pipe != NULL) {
options = talloc_asprintf(d->mem_ctx, "\\pipe\\%s", pipe);
}
@@ -309,44 +316,46 @@ const char *gtk_rpc_binding_dialog_get_binding(GtkRpcBindingDialog *d, char *pip
GtkWidget* create_gtk_samba_about_dialog (char *appname)
{
+ GtkWidget *samba_about_dialog;
GtkWidget *dialog_vbox1;
GtkWidget *image1;
GtkWidget *label1;
+ GtkWidget *label3;
GtkWidget *label2;
GtkWidget *dialog_action_area1;
- GtkWidget *closebutton1;
- GtkWidget *aboutwin;
+ GtkWidget *okbutton1;
- aboutwin = gtk_dialog_new ();
- gtk_window_set_title (GTK_WINDOW (aboutwin), "About");
- gtk_window_set_resizable (GTK_WINDOW (aboutwin), FALSE);
+ samba_about_dialog = gtk_dialog_new ();
+ gtk_window_set_title (GTK_WINDOW (samba_about_dialog), "About");
- dialog_vbox1 = GTK_DIALOG (aboutwin)->vbox;
+ dialog_vbox1 = GTK_DIALOG (samba_about_dialog)->vbox;
gtk_widget_show (dialog_vbox1);
- /* FIXME: Samba logo ?
- image1 = create_pixmap (aboutwin, "samba.png");
+/* FIXME image1 = create_pixmap (samba_about_dialog, "slmed.png");
gtk_widget_show (image1);
- gtk_box_pack_start (GTK_BOX (dialog_vbox1), image1, FALSE, TRUE, 0); */
+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), image1, TRUE, TRUE, 0);*/
label1 = gtk_label_new (appname);
gtk_widget_show (label1);
gtk_box_pack_start (GTK_BOX (dialog_vbox1), label1, FALSE, FALSE, 0);
- gtk_label_set_use_markup (GTK_LABEL (label1), TRUE);
- label2 = gtk_label_new_with_mnemonic ("(C) 2004 Jelmer Vernooij <jelmer@samba.org>\nPart of Samba\nhttp://www.samba.org/\n");
+ label3 = gtk_label_new_with_mnemonic ("Part of Samba <http://www.samba.org/>");
+ gtk_widget_show (label3);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), label3, FALSE, FALSE, 0);
+
+ label2 = gtk_label_new ("\302\251 1992-2004 The Samba Team");
gtk_widget_show (label2);
- gtk_box_pack_start (GTK_BOX (dialog_vbox1), label2, TRUE, FALSE, 0);
- gtk_label_set_use_markup (GTK_LABEL (label2), TRUE);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), label2, FALSE, FALSE, 0);
- dialog_action_area1 = GTK_DIALOG (aboutwin)->action_area;
+ dialog_action_area1 = GTK_DIALOG (samba_about_dialog)->action_area;
gtk_widget_show (dialog_action_area1);
gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END);
- closebutton1 = gtk_button_new_from_stock ("gtk-close");
- gtk_widget_show (closebutton1);
- gtk_dialog_add_action_widget (GTK_DIALOG (aboutwin), closebutton1, GTK_RESPONSE_CLOSE);
- GTK_WIDGET_SET_FLAGS (closebutton1, GTK_CAN_DEFAULT);
+ okbutton1 = gtk_button_new_from_stock ("gtk-ok");
+ gtk_widget_show (okbutton1);
+ gtk_dialog_add_action_widget (GTK_DIALOG (samba_about_dialog), okbutton1, GTK_RESPONSE_OK);
+ GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT);
- return aboutwin;
+ return samba_about_dialog;
}
+
diff --git a/source4/gtk/common/gtk-smb.h b/source4/gtk/common/gtk-smb.h
index cbc587c8e9..e9b62d94da 100644
--- a/source4/gtk/common/gtk-smb.h
+++ b/source4/gtk/common/gtk-smb.h
@@ -22,6 +22,8 @@
#ifndef __GTK_SMB_H__
#define __GTK_SMB_H__
+#ifdef HAVE_GTK
+
#include <gtk/gtk.h>
typedef struct _GtkRpcBindingDialog GtkRpcBindingDialog;
@@ -51,3 +53,5 @@ struct _GtkRpcBindingDialogClass
#define IS_GTK_RPC_BINDING_DIALOG(obj) GTK_CHECK_TYPE (obj, gtk_rpc_binding_dialog_get_type ())
#endif
+
+#endif
diff --git a/source4/gtk/common/select.c b/source4/gtk/common/select.c
new file mode 100644
index 0000000000..4e4d14dbe2
--- /dev/null
+++ b/source4/gtk/common/select.c
@@ -0,0 +1,280 @@
+/*
+ Unix SMB/CIFS implementation.
+ SMB-related GTK+ functions
+
+ Copyright (C) Jelmer Vernooij 2004
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+#include "gtk-smb.h"
+
+/* GtkSelectDomainDialog */
+
+const char *gtk_select_domain_dialog_get_domain(GtkSelectDomainDialog *d)
+{
+ return gtk_entry_get_text(GTK_ENTRY(d->entry_domain));
+}
+
+void gtk_select_domain_dialog_init (GtkSelectDomainDialog *select_domain_dialog)
+{
+ GtkWidget *dialog_vbox1;
+ GtkWidget *hbox1;
+ GtkWidget *label1;
+ GtkWidget *scrolledwindow1;
+ GtkWidget *dialog_action_area1;
+ GtkWidget *cancelbutton1;
+ GtkWidget *okbutton1;
+ GtkCellRenderer *renderer;
+ GtkTreeViewColumn *curcol;
+
+ gtk_window_set_title (GTK_WINDOW (select_domain_dialog), "Select Domain");
+
+ dialog_vbox1 = GTK_DIALOG (select_domain_dialog)->vbox;
+ gtk_widget_show (dialog_vbox1);
+
+ hbox1 = gtk_hbox_new (FALSE, 0);
+ gtk_widget_show (hbox1);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0);
+
+ label1 = gtk_label_new ("Domain:");
+ gtk_widget_show (label1);
+ gtk_box_pack_start (GTK_BOX (hbox1), label1, FALSE, FALSE, 0);
+
+ select_domain_dialog->entry_domain = gtk_entry_new ();
+ gtk_widget_show (select_domain_dialog->entry_domain);
+ gtk_box_pack_start (GTK_BOX (hbox1), select_domain_dialog->entry_domain, TRUE, TRUE, 0);
+
+ scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL);
+ gtk_widget_show (scrolledwindow1);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), scrolledwindow1, TRUE, TRUE, 0);
+
+ select_domain_dialog->list_domains = gtk_tree_view_new ();
+ gtk_widget_show (select_domain_dialog->list_domains);
+ gtk_container_add (GTK_CONTAINER (scrolledwindow1), select_domain_dialog->list_domains);
+
+ curcol = gtk_tree_view_column_new ();
+ gtk_tree_view_column_set_title(curcol, "Name");
+ renderer = gtk_cell_renderer_text_new();
+ gtk_tree_view_column_pack_start(curcol, renderer, True);
+ gtk_tree_view_append_column(GTK_TREE_VIEW(select_domain_dialog->list_domains), curcol);
+ gtk_tree_view_column_add_attribute(curcol, renderer, "text", 0);
+
+ select_domain_dialog->store_domains = gtk_list_store_new(1, G_TYPE_STRING);
+ gtk_tree_view_set_model(GTK_TREE_VIEW(select_domain_dialog->list_domains), GTK_TREE_MODEL(select_domain_dialog->store_domains));
+ g_object_unref(select_domain_dialog->store_domains);
+
+ dialog_action_area1 = GTK_DIALOG (select_domain_dialog)->action_area;
+ gtk_widget_show (dialog_action_area1);
+ gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END);
+
+ cancelbutton1 = gtk_button_new_from_stock ("gtk-cancel");
+ gtk_widget_show (cancelbutton1);
+ gtk_dialog_add_action_widget (GTK_DIALOG (select_domain_dialog), cancelbutton1, GTK_RESPONSE_CANCEL);
+ GTK_WIDGET_SET_FLAGS (cancelbutton1, GTK_CAN_DEFAULT);
+
+ okbutton1 = gtk_button_new_from_stock ("gtk-ok");
+ gtk_widget_show (okbutton1);
+ gtk_dialog_add_action_widget (GTK_DIALOG (select_domain_dialog), okbutton1, GTK_RESPONSE_OK);
+ GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT);
+}
+
+struct policy_handle gtk_select_domain_dialog_get_handle(GtkSelectDomainDialog *d)
+{
+ struct policy_handle h;
+
+
+ /* FIXME */
+ return h;
+}
+
+GType gtk_select_domain_dialog_get_type ()
+{
+ static GType mytype = 0;
+
+ if (!mytype)
+ {
+ static const GTypeInfo myinfo =
+ {
+ sizeof (GtkSelectDomainDialogClass),
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ sizeof(GtkSelectDomainDialog),
+ 0,
+ (GInstanceInitFunc) gtk_select_domain_dialog_init,
+ };
+
+ mytype = g_type_register_static (GTK_TYPE_DIALOG,
+ "GtkSelectDomainDialog", &myinfo, 0);
+ }
+
+ return mytype;
+}
+
+GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe)
+{
+ GtkSelectDomainDialog *d = gtk_type_new (gtk_select_domain_dialog_get_type ());
+ NTSTATUS status;
+ struct samr_EnumDomains r;
+ struct samr_Connect cr;
+ struct samr_Close dr;
+ struct policy_handle handle;
+ uint32_t resume_handle = 0;
+ int i;
+ TALLOC_CTX *mem_ctx = talloc_init("gtk_select_domain_dialog_new");
+
+ d->sam_pipe = sam_pipe;
+
+ cr.in.system_name = 0;
+ cr.in.access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
+ cr.out.handle = &handle;
+
+ status = dcerpc_samr_Connect(sam_pipe, mem_ctx, &cr);
+ if (!NT_STATUS_IS_OK(status)) {
+ gtk_show_ntstatus(NULL, status);
+ talloc_destroy(mem_ctx);
+ return GTK_WIDGET(d);
+ }
+
+ r.in.handle = &handle;
+ r.in.resume_handle = &resume_handle;
+ r.in.buf_size = (uint32_t)-1;
+ r.out.resume_handle = &resume_handle;
+
+ status = dcerpc_samr_EnumDomains(sam_pipe, mem_ctx, &r);
+ if (!NT_STATUS_IS_OK(status)) {
+ gtk_show_ntstatus(NULL, status);
+ } else if (r.out.sam) {
+ for (i=0;i<r.out.sam->count;i++) {
+ GtkTreeIter iter;
+ printf("- %s\n", r.out.sam->entries[i].name.name);
+ gtk_list_store_append(d->store_domains, &iter);
+ gtk_list_store_set (d->store_domains, &iter, 0, r.out.sam->entries[i].name.name, -1);
+ }
+ }
+
+ dr.in.handle = &handle;
+ dr.out.handle = &handle;
+
+ status = dcerpc_samr_Close(sam_pipe, mem_ctx, &dr);
+ if (!NT_STATUS_IS_OK(status)) {
+ gtk_show_ntstatus(NULL, status);
+ talloc_destroy(mem_ctx);
+ return GTK_WIDGET ( d );
+ }
+
+ talloc_destroy(mem_ctx);
+
+ return GTK_WIDGET ( d );
+}
+
+
+/* GtkSelectHostDialog */
+const char *gtk_select_host_dialog_get_host (GtkSelectHostDialog *d)
+{
+ return gtk_entry_get_text(GTK_ENTRY(d->entry_host));
+}
+
+void gtk_select_host_dialog_init (GtkSelectHostDialog *select_host_dialog)
+{
+ GtkWidget *dialog_vbox2;
+ GtkWidget *hbox2;
+ GtkWidget *label2;
+ GtkWidget *entry_host;
+ GtkWidget *scrolledwindow2;
+ GtkWidget *dialog_action_area2;
+ GtkWidget *cancelbutton2;
+ GtkWidget *okbutton2;
+
+ gtk_window_set_title (GTK_WINDOW (select_host_dialog), "Select Host");
+
+ dialog_vbox2 = GTK_DIALOG (select_host_dialog)->vbox;
+ gtk_widget_show (dialog_vbox2);
+
+ hbox2 = gtk_hbox_new (FALSE, 0);
+ gtk_widget_show (hbox2);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox2), hbox2, TRUE, TRUE, 0);
+
+ label2 = gtk_label_new ("Host");
+ gtk_widget_show (label2);
+ gtk_box_pack_start (GTK_BOX (hbox2), label2, FALSE, FALSE, 0);
+
+ select_host_dialog->entry_host = gtk_entry_new ();
+ gtk_widget_show (select_host_dialog->entry_host);
+ gtk_box_pack_start (GTK_BOX (hbox2), select_host_dialog->entry_host, TRUE, TRUE, 0);
+
+ scrolledwindow2 = gtk_scrolled_window_new (NULL, NULL);
+ gtk_widget_show (scrolledwindow2);
+ gtk_box_pack_start (GTK_BOX (dialog_vbox2), scrolledwindow2, TRUE, TRUE, 0);
+
+ select_host_dialog->tree_host = gtk_tree_view_new ();
+ gtk_widget_show (select_host_dialog->tree_host);
+ gtk_container_add (GTK_CONTAINER (scrolledwindow2), select_host_dialog->tree_host);
+
+ select_host_dialog->store_host = gtk_tree_store_new(1, G_TYPE_STRING);
+ gtk_tree_view_set_model(GTK_TREE_VIEW(select_host_dialog->tree_host), GTK_TREE_MODEL(select_host_dialog->store_host));
+ g_object_unref(select_host_dialog->store_host);
+
+ dialog_action_area2 = GTK_DIALOG (select_host_dialog)->action_area;
+ gtk_widget_show (dialog_action_area2);
+ gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area2), GTK_BUTTONBOX_END);
+
+ cancelbutton2 = gtk_button_new_from_stock ("gtk-cancel");
+ gtk_widget_show (cancelbutton2);
+ gtk_dialog_add_action_widget (GTK_DIALOG (select_host_dialog), cancelbutton2, GTK_RESPONSE_CANCEL);
+ GTK_WIDGET_SET_FLAGS (cancelbutton2, GTK_CAN_DEFAULT);
+
+ okbutton2 = gtk_button_new_from_stock ("gtk-ok");
+ gtk_widget_show (okbutton2);
+ gtk_dialog_add_action_widget (GTK_DIALOG (select_host_dialog), okbutton2, GTK_RESPONSE_OK);
+ GTK_WIDGET_SET_FLAGS (okbutton2, GTK_CAN_DEFAULT);
+}
+
+GType gtk_select_host_dialog_get_type ()
+{
+ static GType mytype = 0;
+
+ if (!mytype)
+ {
+ static const GTypeInfo myinfo =
+ {
+ sizeof (GtkSelectHostDialogClass),
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ sizeof(GtkSelectHostDialog),
+ 0,
+ (GInstanceInitFunc) gtk_select_host_dialog_init,
+ };
+
+ mytype = g_type_register_static (GTK_TYPE_DIALOG,
+ "GtkSelectHostDialog", &myinfo, 0);
+ }
+
+ return mytype;
+}
+
+GtkWidget *gtk_select_host_dialog_new (BOOL nocredentials)
+{
+ return GTK_WIDGET ( gtk_type_new (gtk_select_host_dialog_get_type ()));
+}
+
+
diff --git a/source4/gtk/common/select.h b/source4/gtk/common/select.h
new file mode 100644
index 0000000000..b89712ffe0
--- /dev/null
+++ b/source4/gtk/common/select.h
@@ -0,0 +1,77 @@
+/*
+ Unix SMB/CIFS implementation.
+ SMB-related GTK+ functions
+
+ Copyright (C) Jelmer Vernooij 2004
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#ifndef __GTK_SELECT_H__
+#define __GTK_SELECT_H__
+
+#ifdef HAVE_GTK
+
+#include <gtk/gtk.h>
+
+typedef struct _GtkSelectDomainDialog GtkSelectDomainDialog;
+
+struct _GtkSelectDomainDialog
+{
+ GtkDialog dialog;
+ GtkWidget *entry_domain;
+ GtkWidget *list_domains;
+ GtkListStore *store_domains;
+ TALLOC_CTX *mem_ctx;
+ struct dcerpc_pipe *sam_pipe;
+};
+
+typedef struct _GtkSelectDomainDialogClass GtkSelectDomainDialogClass;
+
+struct _GtkSelectDomainDialogClass
+{
+ GtkDialogClass parent_class;
+};
+
+#define GTK_SELECT_DOMAIN_DIALOG(obj) GTK_CHECK_CAST (obj, gtk_rpc_binding_dialog_get_type (), GtkSelectDomainDialog)
+#define GTK_SELECT_DOMAIN_DIALOG_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_rpc_binding_dialog_class_get_type (), GtkSelectDomainDialogClass)
+#define IS_GTK_SELECT_DOMAIN_DIALOG(obj) GTK_CHECK_TYPE (obj, gtk_rpc_binding_dialog_get_type ())
+
+typedef struct _GtkSelectHostDialog GtkSelectHostDialog;
+
+struct _GtkSelectHostDialog
+{
+ GtkDialog dialog;
+ GtkWidget *entry_host;
+ GtkWidget *tree_host;
+ GtkTreeStore *store_host;
+ struct dcerpc_pipe *sam_pipe;
+ TALLOC_CTX *mem_ctx;
+};
+
+typedef struct _GtkSelectHostDialogClass GtkSelectHostDialogClass;
+
+struct _GtkSelectHostDialogClass
+{
+ GtkDialogClass parent_class;
+};
+
+#define GTK_SELECT_HOST_DIALOG(obj) GTK_CHECK_CAST (obj, gtk_rpc_binding_dialog_get_type (), GtkSelectHostDialog)
+#define GTK_SELECT_HOST_DIALOG_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_rpc_binding_dialog_class_get_type (), GtkSelectHostDialogClass)
+#define IS_GTK_SELECT_HOST_DIALOG(obj) GTK_CHECK_TYPE (obj, gtk_rpc_binding_dialog_get_type ())
+
+#endif
+
+#endif