Forgotten files
[modest] / src / widgets / modest-toolkit-utils.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30
31 #ifndef __MODEST_TOOLKIT_UTILS_H__
32 #define __MODEST_TOOLKIT_UTILS_H__
33
34 #include <gtk/gtk.h>
35 #include <stdio.h> /* for FILE* */
36 #include <tny-fs-stream.h>
37 #include <libosso.h>
38 #include "widgets/modest-global-settings-dialog.h"
39 #include "widgets/modest-validating-entry.h"
40
41 #ifdef MAEMO_CHANGES
42 #include <hildon/hildon-gtk.h>
43 #define ModestToolkitSizeType HildonSizeType
44 #else
45 #define ModestToolkitSizeType gint
46 #endif
47
48 GtkWidget *modest_toolkit_utils_create_captioned    (GtkSizeGroup *title_size_group,
49                                                    GtkSizeGroup *value_size_group,
50                                                    const gchar *title,
51                                                    gboolean use_markup,
52                                                    GtkWidget *control);
53 GtkWidget *modest_toolkit_utils_create_vcaptioned    (GtkSizeGroup *size_group,
54                                                     const gchar *title,
55                                                     gboolean use_markup,
56                                                     GtkWidget *control);
57
58 GtkWidget *modest_toolkit_utils_create_captioned_with_size_type    (GtkSizeGroup *title_size_group,
59                                                                     GtkSizeGroup *value_size_group,
60                                                                     const gchar *title,
61                                                                     gboolean use_markup,
62                                                                     GtkWidget *control,
63                                                                     ModestToolkitSizeType size_type);
64
65 GtkWidget *modest_toolkit_utils_create_vcaptioned_with_size_type    (GtkSizeGroup *size_group,
66                                                                      const gchar *title,
67                                                                      gboolean use_markup,
68                                                                      GtkWidget *control,
69                                                                      ModestToolkitSizeType size_type);
70
71 void       modest_toolkit_utils_captioned_set_label (GtkWidget *captioned,
72                                                      const gchar *new_label,
73                                                      gboolean use_markup);
74
75 GtkWidget *modest_toolkit_utils_captioned_get_label_widget (GtkWidget *captioned);
76
77 void       modest_toolkit_utils_set_hbutton_layout (GtkSizeGroup *title_sizegroup, 
78                                                     GtkSizeGroup *value_sizegroup,
79                                                     const gchar *title, 
80                                                     GtkWidget *button);
81 void       modest_toolkit_utils_set_vbutton_layout (GtkSizeGroup *sizegroup, 
82                                                     const gchar *title, 
83                                                     GtkWidget *button);
84
85 GtkWidget *modest_toolkit_utils_create_group_box (const gchar *label, GtkWidget *contents);
86
87
88
89 #endif /*__MODEST_TOOLKIT_UTILS_H__*/