r3165: Support local connections in Gtk+ tools
[samba.git] / source / gtk / common / gtk-smb.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB-related GTK+ functions
4    
5    Copyright (C) Jelmer Vernooij 2004
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #ifndef __GTK_SMB_H__
23 #define __GTK_SMB_H__
24
25 #ifdef HAVE_GTK
26
27 #include <gtk/gtk.h>
28
29 typedef struct _GtkRpcBindingDialog GtkRpcBindingDialog;
30
31 struct _GtkRpcBindingDialog 
32 {
33         GtkDialog dialog;
34         GtkWidget *chk_sign;
35         GtkWidget *chk_seal;
36         GtkWidget *transport_tcp_ip;
37         GtkWidget *transport_ncalrpc;
38         GtkWidget *transport_smb;
39         GtkWidget *frame_host;
40         GtkWidget *entry_host;
41         GtkWidget *entry_username;
42         GtkWidget *entry_password;
43         GtkWidget *krb5_chk_button;
44         TALLOC_CTX *mem_ctx;
45         struct sam_pipe *sam_pipe;
46 };
47
48 typedef struct _GtkRpcBindingDialogClass GtkRpcBindingDialogClass;
49
50 struct _GtkRpcBindingDialogClass
51 {
52         GtkDialogClass parent_class;
53 };
54
55 #define GTK_RPC_BINDING_DIALOG(obj)          GTK_CHECK_CAST (obj, gtk_rpc_binding_dialog_get_type (), GtkRpcBindingDialog)
56 #define GTK_RPC_BINDING_DIALOG_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_rpc_binding_dialog_class_get_type (), GtkRpcBindingDialogClass)
57 #define IS_GTK_RPC_BINDING_DIALOG(obj)       GTK_CHECK_TYPE (obj, gtk_rpc_binding_dialog_get_type ())
58
59 #endif
60
61 #endif