Fixes NB#106423, added proper license information
[modest] / src / widgets / modest-retrieve-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_RETRIEVE_COMBO_BOX
32 #define _MODEST_RETRIEVE_COMBO_BOX
33
34 #include <gtk/gtkcombobox.h>
35 #include "modest-protocol-registry.h"
36 #include <modest-account-settings.h>
37
38 G_BEGIN_DECLS
39
40 #define MODEST_TYPE_RETRIEVE_COMBO_BOX modest_retrieve_combo_box_get_type()
41
42 #define MODEST_RETRIEVE_COMBO_BOX(obj) \
43         (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
44         MODEST_TYPE_RETRIEVE_COMBO_BOX, ModestRetrieveComboBox))
45
46 #define MODEST_RETRIEVE_COMBO_BOX_CLASS(klass) \
47         (G_TYPE_CHECK_CLASS_CAST ((klass), \
48         MODEST_TYPE_RETRIEVE_COMBO_BOX, ModestRetrieveComboBoxClass))
49
50 #define MODEST_IS_RETRIEVE_COMBO_BOX(obj) \
51         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
52         MODEST_TYPE_RETRIEVE_COMBO_BOX))
53
54 #define MODEST_IS_RETRIEVE_COMBO_BOX_CLASS(klass) \
55         (G_TYPE_CHECK_CLASS_TYPE ((klass), \
56         MODEST_TYPE_RETRIEVE_COMBO_BOX))
57
58 #define MODEST_RETRIEVE_COMBO_BOX_GET_CLASS(obj) \
59         (G_TYPE_INSTANCE_GET_CLASS ((obj), \
60         MODEST_TYPE_RETRIEVE_COMBO_BOX, ModestRetrieveComboBoxClass))
61
62 typedef struct {
63         GtkComboBox parent;
64 } ModestRetrieveComboBox;
65
66 typedef struct {
67         GtkComboBoxClass parent_class;
68 } ModestRetrieveComboBoxClass;
69
70 GType modest_retrieve_combo_box_get_type (void);
71
72 ModestRetrieveComboBox* modest_retrieve_combo_box_new (void);
73
74 void modest_retrieve_combo_box_fill (ModestRetrieveComboBox *combobox, ModestProtocolType protocol);
75
76 ModestAccountRetrieveType modest_retrieve_combo_box_get_active_retrieve_conf (ModestRetrieveComboBox *combobox);
77
78 gboolean modest_retrieve_combo_box_set_active_retrieve_conf (ModestRetrieveComboBox *combobox, 
79                                                              ModestAccountRetrieveType retrieve_type);
80
81
82 G_END_DECLS
83
84 #endif /* _MODEST_RETRIEVE_COMBO_BOX */