1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3 * irreco_theme_save_dlg.c
4 * Copyright (C) 2008 Pekka Gehör (pegu6@msn.com)
6 * irreco_theme_save_dlg.c is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * irreco_theme_save_dlg.c is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 * See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "irreco_theme_save_dlg.h"
21 #include "irreco_theme_creator_backgrounds.h"
22 #include "irreco_theme_creator_dlg.h"
23 #include "irreco_theme_button.h"
24 #include <hildon/hildon-banner.h>
25 #include <hildon/hildon-color-button.h>
26 #include <hildon/hildon-file-chooser-dialog.h>
28 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
30 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
31 gboolean
_save_theme_to_dir(IrrecoThemeSaveDlg
*self
);
32 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
33 /* Construction & Destruction */
34 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
37 * @name Construction & Destruction
42 G_DEFINE_TYPE (IrrecoThemeSaveDlg
, irreco_theme_save_dlg
,
43 IRRECO_TYPE_INTERNAL_DLG
)
46 static void irreco_theme_save_dlg_constructed(GObject
*object
)
48 IrrecoThemeSaveDlg
*self
;
54 irreco_theme_save_dlg_parent_class
)->constructed(object
);
56 self
= IRRECO_THEME_SAVE_DLG(object
);
58 /* Construct dialog. */
59 gtk_window_set_title(GTK_WINDOW(self
), _("Theme Save"));
60 gtk_window_set_modal(GTK_WINDOW(self
), TRUE
);
61 gtk_window_set_destroy_with_parent(GTK_WINDOW(self
), TRUE
);
62 gtk_dialog_set_has_separator(GTK_DIALOG(self
), FALSE
);
65 gtk_dialog_add_buttons(GTK_DIALOG(self
),
66 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
67 GTK_STOCK_SAVE
, GTK_RESPONSE_OK
,
71 label
= gtk_label_new("Select save location");
73 self
->radio1
= gtk_radio_button_new_with_label (NULL
, "MMC1");
74 self
->radio2
= gtk_radio_button_new_with_label_from_widget(
76 self
->radio1
), "MMC2");
77 self
->radio3
= gtk_radio_button_new_with_label_from_widget(
79 self
->radio2
), "DEVICE");
81 gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(self
)->vbox
), label
);
83 if(irreco_is_dir("/media/mmc1")) {
84 gtk_box_pack_start_defaults(GTK_BOX(
85 GTK_DIALOG(self
)->vbox
),
89 if(irreco_is_dir("/media/mmc2")) {
90 gtk_box_pack_start_defaults(GTK_BOX(
91 GTK_DIALOG(self
)->vbox
),
98 gtk_widget_show_all(GTK_WIDGET(self
));
103 irreco_theme_save_dlg_init (IrrecoThemeSaveDlg
*object
)
110 irreco_theme_save_dlg_finalize (GObject
*object
)
112 /* TODO: Add deinitalization code here */
113 IrrecoThemeSaveDlg
*self
;
116 self
= IRRECO_THEME_SAVE_DLG(object
);
117 G_OBJECT_CLASS (irreco_theme_save_dlg_parent_class
)->finalize (object
);
122 irreco_theme_save_dlg_class_init (IrrecoThemeSaveDlgClass
*klass
)
124 GObjectClass
* object_class
= G_OBJECT_CLASS (klass
);
125 object_class
->finalize
= irreco_theme_save_dlg_finalize
;
126 object_class
->constructed
= irreco_theme_save_dlg_constructed
;
130 irreco_theme_save_dlg_new(IrrecoData
*irreco_data
, GtkWindow
*parent
)
132 IrrecoThemeSaveDlg
*self
;
136 self
= g_object_new(IRRECO_TYPE_THEME_SAVE_DLG
,
137 "irreco-data", irreco_data
, NULL
);
138 irreco_dlg_set_parent(IRRECO_DLG(self
), parent
);
140 IRRECO_RETURN_PTR(self
);
144 irreco_theme_save_dlg_create(IrrecoData
*irreco_data
, GtkWindow
*parent_window
)
147 IRRECO_RETURN_PTR(irreco_theme_save_dlg_new(
148 irreco_data
, parent_window
));
153 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
154 /* Private Functions */
155 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
157 * @name Private Functions
161 gboolean
_save_theme_to_dir(IrrecoThemeSaveDlg
*self
)
163 gboolean rvalue
= FALSE
;
165 gchar
*folder
= NULL
;
166 IrrecoThemeManager
*theme_manager
= self
->irreco_data
->theme_manager
;
167 IrrecoTheme
*same_theme
= NULL
;
168 gint delete_mode
= 0;
169 gchar
*same_theme_folder
= NULL
;
170 GString
*message
= g_string_new(NULL
);
172 gchar
*redy_theme_name
;
175 /* Create Theme Folder */
176 theme_path
= g_string_new("");
177 theme_name
= g_string_new(self
->theme
->name
->str
);
179 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(self
->radio1
))) {
180 folder
= "/media/mmc1/irreco/";
181 } else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(self
->radio2
))) {
182 folder
= "/media/mmc2/irreco/";
184 folder
= IRRECO_THEME_DIR
;
187 /* Call IrrecoThemeSave */
188 if(!irreco_is_dir(folder
)) {
189 g_mkdir(folder
, 0777);
194 /* parse the theme name */
195 g_string_ascii_down(theme_name
);
196 redy_theme_name
= g_strdup(theme_name
->str
);
197 g_strdelimit(redy_theme_name
, " ", '_');
198 g_strdelimit(redy_theme_name
, ",-|> <.", 'a');
199 g_string_printf(theme_path
, "%s%s", folder
, redy_theme_name
);
201 IRRECO_STRING_TABLE_FOREACH_DATA(theme_manager
->themes
,
202 IrrecoTheme
*, theme
)
204 if (g_str_equal(self
->theme
->name
->str
,
206 if (g_str_equal(theme
->source
->str
, "deb")) {
207 g_string_printf(message
,
208 _("The \"%s\" theme already exists.\n"
209 "Can't overwrite \"Built In themes\"\n"
210 "Please remove it first from the\n"
211 "Application Manager or change the name of the theme"),
213 irreco_error_dlg(GTK_WINDOW(self
),
220 /*Check theme folder path*/
221 else if (g_str_equal(theme_path
->str
,
222 g_strconcat(theme
->path
->str
, "/", NULL
))){
223 if (g_str_equal(theme
->source
->str
, "deb")) {
224 g_string_printf(message
,
225 _("This theme replaces \"%s\" theme.\n"
226 "Can't overwrite \"Built In themes\"\n"
227 "Please remove it first from the\n"
228 "Application Manager or change the name of the theme"),
231 irreco_error_dlg(GTK_WINDOW(self
),
236 same_theme_folder
= g_strdup(theme
->name
->str
);
238 IRRECO_STRING_TABLE_FOREACH_END
240 if (delete_mode
== 1) {
241 g_string_printf(message
,
242 _("The \"%s\" theme already exists.\n"
243 "Do you want to edit this theme?"),
244 same_theme
->name
->str
);
245 } else if (delete_mode
== 2) {
246 g_string_printf(message
,
247 _("This theme replaces \"%s\" theme.\n"
248 "Do you want to continue?"),
250 } else if (delete_mode
== 3) {
251 g_string_printf(message
,
252 _("This theme replaces themes\n"
253 "\"%s\" and \"%s\"\n"
254 "Do you want to continue?"),
255 same_theme
->name
->str
,
258 /* Check whether a theme folder already exists */
259 if (delete_mode
!= 0) {
261 if (!irreco_yes_no_dlg(
262 GTK_WINDOW(self
), message
->str
)) {
266 /* Remove theme folder and then make it again*/
267 if (delete_mode
== 1 || delete_mode
== 3) {
268 /*gchar *rm_cmd = g_strconcat("rm -r ",
269 same_theme->path->str, NULL);*/
270 gchar
*rm_cmd
= g_strconcat("rm -r ",
271 theme_path
->str
, NULL
);
275 if (delete_mode
== 2 || delete_mode
== 3) {
276 irreco_theme_manager_remove_theme(
277 self
->irreco_data
->theme_manager
,
279 g_free(same_theme_folder
);
284 g_mkdir(theme_path
->str
, 0777);
287 irreco_theme_save(self
->theme
, theme_path
->str
);
292 g_string_free(theme_name
, TRUE
);
293 g_string_free(message
, TRUE
);
294 g_string_free(theme_path
, TRUE
);
296 IRRECO_RETURN_BOOL(rvalue
);
301 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
303 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
306 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
307 /* Public Functions */
308 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
311 irreco_theme_save_dlg_run(IrrecoData
*irreco_data
, IrrecoTheme
*irreco_theme
,
312 GtkWindow
*parent_window
)
314 IrrecoThemeSaveDlg
*self
;
316 gboolean loop
= TRUE
;
317 gboolean rvalue
= FALSE
;
321 self
= (IrrecoThemeSaveDlg
*)irreco_theme_save_dlg_create(
322 irreco_data
, parent_window
);
323 self
->irreco_data
= irreco_data
;
324 self
->theme
= irreco_theme
;
327 response
= gtk_dialog_run(GTK_DIALOG(self
));
329 case GTK_RESPONSE_OK
:
331 if (_save_theme_to_dir(self
)) {
339 case GTK_RESPONSE_CANCEL
:
340 IRRECO_DEBUG("GTK_RESPONSE_CANCEL\n");
346 IRRECO_DEBUG("default\n");
352 gtk_widget_destroy(GTK_WIDGET(self
));
354 IRRECO_RETURN_BOOL(rvalue
);