Make sure that all timeouts in HildonBanner are removed
[hildon] / hildon / hildon-code-dialog.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef                                         HILDON_DISABLE_DEPRECATED
26
27 #ifndef                                         __HILDON_CODE_DIALOG_H__
28 #define                                         __HILDON_CODE_DIALOG_H__
29
30 #include                                        <gtk/gtk.h>
31
32 G_BEGIN_DECLS
33
34 #define                                         HILDON_TYPE_CODE_DIALOG \
35                                                 (hildon_code_dialog_get_type())
36
37 #define                                         HILDON_CODE_DIALOG(obj) \
38                                                 (G_TYPE_CHECK_INSTANCE_CAST (obj, \
39                                                 HILDON_TYPE_CODE_DIALOG, HildonCodeDialog))
40
41 #define                                         HILDON_CODE_DIALOG_CLASS(klass) \
42                                                 (G_TYPE_CHECK_CLASS_CAST ((klass),\
43                                                 HILDON_TYPE_CODE_DIALOG, HildonCodeDialogClass))
44
45 #define                                         HILDON_IS_CODE_DIALOG(obj) \
46                                                 (G_TYPE_CHECK_INSTANCE_TYPE (obj, HILDON_TYPE_CODE_DIALOG))
47
48 #define                                         HILDON_IS_CODE_DIALOG_CLASS(klass) \
49                                                 (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_CODE_DIALOG))
50
51 #define                                         HILDON_CODE_DIALOG_GET_CLASS(obj) \
52                                                 ((HildonCodeDialogClass *) G_OBJECT_GET_CLASS(obj))
53
54 typedef struct                                  _HildonCodeDialog HildonCodeDialog;
55
56 typedef struct                                  _HildonCodeDialogClass HildonCodeDialogClass;
57
58 struct                                          _HildonCodeDialog
59 {
60     GtkDialog parent;
61 };
62
63 struct _HildonCodeDialogClass
64 {
65     GtkDialogClass parent_class;
66     void (*input) (HildonCodeDialog *dialog);
67 };
68
69 GType G_GNUC_CONST
70 hildon_code_dialog_get_type                     (void);
71
72 GtkWidget*
73 hildon_code_dialog_new                          (void);
74
75 const gchar*
76 hildon_code_dialog_get_code                     (HildonCodeDialog *dialog);
77
78 void 
79 hildon_code_dialog_clear_code                   (HildonCodeDialog *dialog);
80
81 void 
82 hildon_code_dialog_set_help_text                (HildonCodeDialog *dialog,
83                                                  const gchar *text);
84
85 void
86 hildon_code_dialog_set_input_sensitive          (HildonCodeDialog *dialog, 
87                                                  gboolean sensitive);
88
89 G_END_DECLS
90
91 #endif                                          /* __HILDON_CODE_DIALOG_H__ */
92
93 #endif                                          /* HILDON_DISABLE_DEPRECATED */