Move some operations to properly find the parent window
[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 "widgets/modest-global-settings-dialog.h"
38 #include "widgets/modest-validating-entry.h"
39
40 #ifdef MAEMO_CHANGES
41 #include <hildon/hildon-gtk.h>
42 #define ModestToolkitSizeType HildonSizeType
43 #else
44 #define ModestToolkitSizeType gint
45 #endif
46
47 GtkWidget *modest_toolkit_utils_create_captioned    (GtkSizeGroup *title_size_group,
48                                                    GtkSizeGroup *value_size_group,
49                                                    const gchar *title,
50                                                    gboolean use_markup,
51                                                    GtkWidget *control);
52 GtkWidget *modest_toolkit_utils_create_vcaptioned    (GtkSizeGroup *size_group,
53                                                     const gchar *title,
54                                                     gboolean use_markup,
55                                                     GtkWidget *control);
56
57 GtkWidget *modest_toolkit_utils_create_captioned_with_size_type    (GtkSizeGroup *title_size_group,
58                                                                     GtkSizeGroup *value_size_group,
59                                                                     const gchar *title,
60                                                                     gboolean use_markup,
61                                                                     GtkWidget *control,
62                                                                     ModestToolkitSizeType size_type);
63
64 GtkWidget *modest_toolkit_utils_create_vcaptioned_with_size_type    (GtkSizeGroup *size_group,
65                                                                      const gchar *title,
66                                                                      gboolean use_markup,
67                                                                      GtkWidget *control,
68                                                                      ModestToolkitSizeType size_type);
69
70 void       modest_toolkit_utils_captioned_set_label (GtkWidget *captioned,
71                                                      const gchar *new_label,
72                                                      gboolean use_markup);
73
74 GtkWidget *modest_toolkit_utils_captioned_get_label_widget (GtkWidget *captioned);
75
76 void       modest_toolkit_utils_set_hbutton_layout (GtkSizeGroup *title_sizegroup, 
77                                                     GtkSizeGroup *value_sizegroup,
78                                                     const gchar *title, 
79                                                     GtkWidget *button);
80 void       modest_toolkit_utils_set_vbutton_layout (GtkSizeGroup *sizegroup, 
81                                                     const gchar *title, 
82                                                     GtkWidget *button);
83
84 GtkWidget *modest_toolkit_utils_create_group_box (const gchar *label, GtkWidget *contents);
85
86 gboolean   modest_toolkit_utils_select_attachments (GtkWindow *window, TnyList *att_list, gboolean include_msgs);
87
88 GtkWindow *modest_toolkit_utils_parent_window (GtkWidget *window);
89
90
91
92 #endif /*__MODEST_TOOLKIT_UTILS_H__*/