Modified webpage: now tinymail repository is in gitorious.
[modest] / src / widgets / modest-limit-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_LIMIT_RETRIEVE_COMBO_BOX
32 #define _MODEST_LIMIT_RETRIEVE_COMBO_BOX
33
34 #include <gtk/gtk.h>
35
36 G_BEGIN_DECLS
37
38 #define MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX modest_limit_retrieve_combo_box_get_type()
39
40 #define MODEST_LIMIT_RETRIEVE_COMBO_BOX(obj) \
41         (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
42         MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX, ModestLimitRetrieveComboBox))
43
44 #define MODEST_LIMIT_RETRIEVE_COMBO_BOX_CLASS(klass) \
45         (G_TYPE_CHECK_CLASS_CAST ((klass), \
46         MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX, ModestLimitRetrieveComboBoxClass))
47
48 #define MODEST_IS_LIMIT_RETRIEVE_COMBO_BOX(obj) \
49         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
50         MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX))
51
52 #define MODEST_IS_LIMIT_RETRIEVE_COMBO_BOX_CLASS(klass) \
53         (G_TYPE_CHECK_CLASS_TYPE ((klass), \
54         MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX))
55
56 #define MODEST_LIMIT_RETRIEVE_COMBO_BOX_GET_CLASS(obj) \
57         (G_TYPE_INSTANCE_GET_CLASS ((obj), \
58         MODEST_TYPE_LIMIT_RETRIEVE_COMBO_BOX, ModestLimitRetrieveComboBoxClass))
59
60 typedef struct {
61         GtkComboBox parent;
62 } ModestLimitRetrieveComboBox;
63
64 typedef struct {
65         GtkComboBoxClass parent_class;
66 } ModestLimitRetrieveComboBoxClass;
67
68 GType modest_limit_retrieve_combo_box_get_type (void);
69
70 ModestLimitRetrieveComboBox* modest_limit_retrieve_combo_box_new (void);
71
72 gint modest_limit_retrieve_combo_box_get_active_limit_retrieve (ModestLimitRetrieveComboBox *combobox);
73
74 gboolean modest_limit_retrieve_combo_box_set_active_limit_retrieve (ModestLimitRetrieveComboBox *combobox, gint limit_retrieve);
75
76
77 G_END_DECLS
78
79 #endif /* _MODEST_LIMIT_RETRIEVE_COMBO_BOX */