r21296: remove the session specific encryption from the attributes
[samba.git] / source4 / 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 #define GTK_DISABLE_DEPRECATED
26 #include <gtk/gtk.h>
27
28 typedef struct _GtkRpcBindingDialog GtkRpcBindingDialog;
29
30 struct _GtkRpcBindingDialog 
31 {
32         GtkDialog dialog;
33         GtkWidget *chk_sign;
34         GtkWidget *chk_seal;
35         GtkWidget *transport_tcp_ip;
36         GtkWidget *transport_ncalrpc;
37         GtkWidget *transport_smb;
38         GtkWidget *frame_host;
39         GtkWidget *entry_host;
40         GtkWidget *entry_username;
41         GtkWidget *entry_userdomain;
42         GtkWidget *entry_password;
43         GtkWidget *krb5_chk_button;
44         TALLOC_CTX *mem_ctx;
45         struct dcerpc_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 /* subsystem prototypes */
60 GtkWidget *create_gtk_samba_about_dialog (const char *appname);
61 void gtk_show_ntstatus(GtkWidget *win, const char *, NTSTATUS status);
62 GtkWidget *gtk_rpc_binding_dialog_new (struct dcerpc_pipe *sam_pipe);
63 GType gtk_rpc_binding_dialog_get_type (void);
64 struct dcerpc_binding *gtk_rpc_binding_dialog_get_binding(GtkRpcBindingDialog *d, TALLOC_CTX *mem_ctx);
65 void gtk_show_werror(GtkWidget *win, const char *, WERROR err);
66 const char *gtk_rpc_binding_dialog_get_binding_string(GtkRpcBindingDialog *d, TALLOC_CTX *mem_ctx);
67 const char *gtk_rpc_binding_dialog_get_host(GtkRpcBindingDialog *d);
68
69 int gtk_event_loop(void);
70 struct event_context;
71 struct event_context *gtk_event_context(void);
72
73 struct cli_credentials;
74 void cli_credentials_set_gtk_callbacks(struct cli_credentials *creds);
75
76 #endif