4673c34c4db975e8846b539602641622733bf4f0
[modest] / src / widgets / modest-secureauth-combo-box.h
1 /*
2  * Copyright (C) 2007 Nokia Corporation, all rights reserved.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in the
13  *   documentation and/or other materials provided with the distribution.
14  * * Neither the name of the Nokia Corporation nor the names of its
15  *   contributors may be used to endorse or promote products derived from
16  *   this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
19  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
22  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef _MODEST_SECUREAUTH_COMBO_BOX
32 #define _MODEST_SECUREAUTH_COMBO_BOX
33
34 #include <gtk/gtkcombobox.h>
35 #include "modest-protocol-registry.h"
36
37 G_BEGIN_DECLS
38
39 #define MODEST_TYPE_SECUREAUTH_COMBO_BOX modest_secureauth_combo_box_get_type()
40
41 #define MODEST_SECUREAUTH_COMBO_BOX(obj) \
42         (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
43         MODEST_TYPE_SECUREAUTH_COMBO_BOX, ModestSecureauthComboBox))
44
45 #define MODEST_SECUREAUTH_COMBO_BOX_CLASS(klass) \
46         (G_TYPE_CHECK_CLASS_CAST ((klass), \
47         MODEST_TYPE_SECUREAUTH_COMBO_BOX, ModestSecureauthComboBoxClass))
48
49 #define EASYSETUP_IS_SECUREAUTH_COMBO_BOX(obj) \
50         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
51         MODEST_TYPE_SECUREAUTH_COMBO_BOX))
52
53 #define EASYSETUP_IS_SECUREAUTH_COMBO_BOX_CLASS(klass) \
54         (G_TYPE_CHECK_CLASS_TYPE ((klass), \
55         MODEST_TYPE_SECUREAUTH_COMBO_BOX))
56
57 #define MODEST_SECUREAUTH_COMBO_BOX_GET_CLASS(obj) \
58         (G_TYPE_INSTANCE_GET_CLASS ((obj), \
59         MODEST_TYPE_SECUREAUTH_COMBO_BOX, ModestSecureauthComboBoxClass))
60
61 typedef struct {
62         GtkComboBox parent;
63 } ModestSecureauthComboBox;
64
65 typedef struct {
66         GtkComboBoxClass parent_class;
67 } ModestSecureauthComboBoxClass;
68
69 GType modest_secureauth_combo_box_get_type (void);
70
71 ModestSecureauthComboBox* modest_secureauth_combo_box_new (void);
72
73 ModestProtocolType modest_secureauth_combo_box_get_active_secureauth (ModestSecureauthComboBox *combobox);
74
75 gboolean modest_secureauth_combo_box_set_active_secureauth (ModestSecureauthComboBox *combobox,
76                                                             ModestProtocolType secureauth);
77
78
79 G_END_DECLS
80
81 #endif /* _EASYSETUP_PROVIDER_COMBO_BOX */