7f377df70efbb55f4afa9b5cefd923e206433383
[modest] / src / modest-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_UTILS_H__
32 #define __MODEST_UTILS_H__
33
34 #include <gtk/gtk.h>
35 #include <stdio.h> /* for FILE* */
36 #include <tny-fs-stream.h>
37 #include <modest-protocol.h>
38 #include "widgets/modest-validating-entry.h"
39
40 typedef enum {
41         MODEST_UTILS_GET_SUPPORTED_SECURE_AUTHENTICATION_ERROR_CANCELED
42 } ModestUtilsGetSupportedSecureAuthenticationError;
43
44 typedef enum _ModestSortDialogType {
45         MODEST_SORT_HEADERS,
46 } ModestSortDialogType;
47
48 GQuark modest_utils_get_supported_secure_authentication_error_quark (void);
49
50
51 /**
52  * modest_utils_folder_writable:
53  * @filename: a string
54  *
55  * Checks if @filename is in a writable folder
56  *
57  * Returns: %TRUE if @filename is writable, %FALSE otherwise
58  */
59 gboolean modest_utils_folder_writable (const gchar *filename);
60
61 /**
62  * modest_utils_file_exists:
63  * @filename: a string
64  *
65  * Checks if @filename exists
66  *
67  * Returns: %TRUE if @filename currently exists, %FALSE otherwise
68  */
69 gboolean modest_utils_file_exists (const gchar *filename);
70
71 /**
72  * modest_utils_create_temp_stream:
73  * @orig_name: a string with the original name of the extension, or %NULL
74  * @hash_base: if %NULL, subdir will be random. If not, it will be a hash
75  * of this.
76  * @path: a string with the created file path. 
77  *
78  * Creates a temporary fs stream, in a random subdir of /tmp or /var/tmp.
79  *
80  * Returns: a #TnyFsStream, or %NULL if operation failed.  Note that it is 
81  * possible that the file already exists but it is not writable. In that case,
82  * the function would return NULL and @path would contain its path.
83  */
84 TnyFsStream *modest_utils_create_temp_stream (const gchar *orig_name, const gchar *hash_base, gchar **path);
85
86 /**
87  * modest_utils_get_supported_secure_authentication_methods:
88  * @proto: the protocol
89  * @hostname: hostname of the mail server to check
90  * @port: mail server port
91  * @username: username of the account to check for
92  * @parent_window: a GtkWindow that can be used a parent for progress indication
93  *
94  * Get a list of supported authentication methods of the server
95  *  
96  * Returns: GList* of the method names. This list needs to be freed using g_list_free.
97  *
98  */
99
100 GList* modest_utils_get_supported_secure_authentication_methods (ModestProtocolType proto, 
101         const gchar* hostname, gint port, const gchar* username, GtkWindow *parent_window, GError** error);
102
103 /** modest_show_information_note_in_main_context_and_forget:
104  * @parent_window: The window for which the note should be transient.
105  * @message: The text to show.
106  * 
107  * This calls modest_maemo_show_information_note_and_forget() in an idle handler.
108  * This should be used when you are not sure that you are in the main context, 
109  * because you should try to use GTK+ UI code only in the main context.
110  */
111 void modest_utils_show_information_note_in_main_context_and_forget (GtkWindow *parent_window, const gchar* message);
112
113 /** modest_show_dialog_and_forget:
114  * @parent_window: The window for which the note should be transient.
115  * @message: The dialog to show.
116  * 
117  * Show the dialog and destroy it when it is closed, without 
118  * blocking. Use this when you don't want to use gtk_dialog_run(), which might lead 
119  * to hangs.
120  */
121 void modest_utils_show_dialog_and_forget (GtkWindow *parent_window, GtkDialog *dialog);
122
123 /**
124  * modest_toggle_action_set_active_block_notify:
125  * @action: a #GtkToggleAction
126  * @value: a #gboolean
127  *
128  * updates the toggle action active status, but blocking the notification of the changes.
129  */
130 void modest_utils_toggle_action_set_active_block_notify (GtkToggleAction *action, gboolean value);
131
132 /**
133  * modest_utils_run_sort_dialog:
134  * @parent_window: the modest window the dialog has been requested from
135  * @type: a #ModestSortDialogType
136  *
137  * raises a sort dialog for this window
138  */
139 void modest_utils_run_sort_dialog (GtkWindow *parent_window, ModestSortDialogType type);
140
141
142 /**
143  * modest_list_index:
144  * @list: a #TnyList
145  * @object: a #GObject
146  *
147  * finds the index of @object in @list
148  *
149  * Returns: the index of @object, or -1 if @object is not in @list
150  */
151 gint modest_list_index (TnyList *list, GObject *object);
152
153 /**
154  * modest_utils_get_available_space:
155  * @maildir_path: the path of the maildir folder, or %NULL to
156  * get the space available in local folders
157  *
158  * Obtains the space available in the local folder.
159  *
160  * Returns: a #guint64
161  */
162 guint64 modest_utils_get_available_space (const gchar *maildir_path);
163
164 /**
165  * modest_images_cache_get_id:
166  * @account: a #TnyAccount
167  * @uri: an uri string
168  *
169  * obtains the hash corresponding to an image external resource to be
170  * stored in image cache.
171  *
172  * Returns: a newly allocated string containing the hash key
173  */
174 gchar *modest_images_cache_get_id (const gchar *account, const gchar *uri);
175
176
177 /**
178  * modest_utils_get_account_name_from_recipient:
179  * @from: the result of a call to tny_header_dup_from
180  *
181  * returns the account name that corresponds to the given from address
182  *
183  * Returns: a newly allocated string containing the account name or
184  * %NULL in case of error
185  */
186 gchar *modest_utils_get_account_name_from_recipient (const gchar *from, gchar **mailbox);
187
188 void modest_utils_on_entry_invalid_character (ModestValidatingEntry *self, 
189                                               const gchar* character,
190                                               gpointer user_data);
191
192 /**
193  * modest_utils_open_mcc_mapping_file:
194  * @translated: a #gboolean pointer
195  *
196  * open the mcc mapping file, or %NULL if it fails. It also
197  * sets @translated to %TRUE if the file is translated
198  *
199  * Returns: file ptr or %NULL in case of error
200  */
201 FILE* modest_utils_open_mcc_mapping_file (gboolean from_lc_messages, gboolean *translated);
202
203 typedef enum {
204         MODEST_UTILS_COUNTRY_MODEL_COLUMN_NAME = 0,
205         MODEST_UTILS_COUNTRY_MODEL_COLUMN_MCC = 1,
206         MODEST_UTILS_COUNTRY_MODEL_N_COLUMNS
207 } ModestUtilsCountryModelColumns;
208
209 /**
210  * modest_utils_create_country_model:
211  * @locale_mcc: a #gboolean
212  *
213  * creates the countries tree model used in wizard from the mcc
214  * files.
215  *
216  * Returns: an empty #GtkTreeModel with the columns enumerated in
217  *  #ModestUtilsCountryModelColumns
218  */
219 GtkTreeModel *modest_utils_create_country_model (void);
220
221 /**
222  * modest_utils_fill_country_model:
223  * @model: a #GtkTreeModel (obtained with modest_utils_create_country_model
224  * @locale_mcc: a #gboolean
225  *
226  * fills the countries tree model used in wizard from the mcc
227  * files.
228  *
229  */
230 void modest_utils_fill_country_model (GtkTreeModel *model, gint *locale_mcc);
231
232
233
234 #endif /*__MODEST_MAEMO_UTILS_H__*/