Mercurial > geeqie.yaz
annotate src/desktop_file.c @ 1690:7f9a99258d13
Fixing libexiv2 bug
author | mow |
---|---|
date | Mon, 03 Aug 2009 12:34:57 +0000 |
parents | 80ba6b99478f |
children | fad7d30676c3 |
rev | line source |
---|---|
1479 | 1 /* |
2 * Geeqie | |
3 * (C) 2004 John Ellis | |
4 * Copyright (C) 2008 - 2009 The Geeqie Team | |
5 * | |
6 * Author: Vladimir Nadvornik | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 #include "main.h" | |
14 #include "desktop_file.h" | |
15 | |
16 #include "editors.h" | |
17 #include "filedata.h" | |
18 #include "misc.h" | |
19 #include "ui_misc.h" | |
20 #include "ui_fileops.h" | |
21 #include "ui_utildlg.h" | |
22 #include "pixbuf_util.h" | |
23 #include "window.h" | |
24 #include "utilops.h" | |
25 #include "layout_util.h" | |
26 | |
27 #define CONFIG_WINDOW_DEF_WIDTH 700 | |
28 #define CONFIG_WINDOW_DEF_HEIGHT 400 | |
29 | |
30 | |
31 | |
32 typedef struct _EditorWindow EditorWindow; | |
33 struct _EditorWindow | |
34 { | |
35 GtkWidget *window; | |
36 GtkWidget *entry; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
37 GtkWidget *save_button; |
1479 | 38 GtkTextBuffer *buffer; |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
39 gchar *desktop_name; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
40 gboolean modified; |
1479 | 41 }; |
42 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
43 typedef struct _EditorListWindow EditorListWindow; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
44 struct _EditorListWindow |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
45 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
46 GtkWidget *window; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
47 GtkWidget *view; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
48 GenericDialog *gd; /* any open confirm dialogs ? */ |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
49 }; |
1479 | 50 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
51 typedef struct _EditorWindowDel_Data EditorWindowDel_Data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
52 struct _EditorWindowDel_Data |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
53 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
54 EditorListWindow *ewl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
55 gchar *path; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
56 }; |
1479 | 57 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
58 static EditorListWindow *editor_list_window = NULL; |
1479 | 59 |
60 static gboolean editor_window_save(EditorWindow *ew) | |
61 { | |
1637
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
62 gchar *dir; |
1479 | 63 gchar *path; |
64 gchar *text; | |
65 GtkTextIter start, end; | |
66 GError *error = NULL; | |
67 gboolean ret = TRUE; | |
68 const gchar *name = gtk_entry_get_text(GTK_ENTRY(ew->entry)); | |
69 | |
70 if (!name || !name[0]) | |
71 { | |
72 file_util_warning_dialog(_("Can't save"), _("Please specify file name."), GTK_STOCK_DIALOG_ERROR, NULL); | |
73 return FALSE; | |
74 } | |
75 | |
76 gtk_text_buffer_get_bounds(ew->buffer, &start, &end); | |
77 text = gtk_text_buffer_get_text(ew->buffer, &start, &end, FALSE); | |
78 | |
1637
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
79 dir = g_build_filename(get_rc_dir(), "applications", NULL); |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
80 path = g_build_filename(dir, name, NULL); |
1479 | 81 |
1637
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
82 if (!recursive_mkdir_if_not_exists(dir, 0755)) |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
83 { |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
84 file_util_warning_dialog(_("Can't save"), _("Could not create directory"), GTK_STOCK_DIALOG_ERROR, NULL); |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
85 ret = FALSE; |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
86 } |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
87 |
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
88 if (ret && !g_file_set_contents(path, text, -1, &error)) |
1479 | 89 { |
90 file_util_warning_dialog(_("Can't save"), error->message, GTK_STOCK_DIALOG_ERROR, NULL); | |
91 g_error_free(error); | |
92 ret = FALSE; | |
93 } | |
94 | |
95 g_free(path); | |
1637
80ba6b99478f
make sure that a directory exists on saving desktop files
nadvornik
parents:
1625
diff
changeset
|
96 g_free(dir); |
1479 | 97 g_free(text); |
98 layout_editors_reload_all(); | |
99 return ret; | |
100 } | |
101 | |
102 static void editor_window_close_cb(GtkWidget *widget, gpointer data) | |
103 { | |
104 EditorWindow *ew = data; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
105 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
106 g_free(ew->desktop_name); |
1479 | 107 gtk_widget_destroy(ew->window); |
108 g_free(ew); | |
109 } | |
110 | |
111 static gint editor_window_delete_cb(GtkWidget *w, GdkEventAny *event, gpointer data) | |
112 { | |
113 editor_window_close_cb(w, data); | |
114 return TRUE; | |
115 } | |
116 | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
117 static void editor_window_save_cb(GtkWidget *widget, gpointer data) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
118 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
119 EditorWindow *ew = data; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
120 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
121 if (ew->modified) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
122 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
123 editor_window_save(ew); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
124 } |
1569 | 125 |
126 gtk_widget_set_sensitive(ew->save_button, FALSE); | |
127 ew->modified = FALSE; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
128 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
129 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
130 static void editor_window_text_modified_cb(GtkWidget *widget, gpointer data) |
1479 | 131 { |
132 EditorWindow *ew = data; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
133 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
134 if (gtk_text_buffer_get_modified(ew->buffer)) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
135 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
136 gtk_widget_set_sensitive(ew->save_button, TRUE); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
137 ew->modified = TRUE; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
138 } |
1479 | 139 } |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
140 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
141 static void editor_window_entry_changed_cb(GtkWidget *widget, gpointer data) |
1479 | 142 { |
143 EditorWindow *ew = data; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
144 const gchar *content = gtk_entry_get_text(GTK_ENTRY(ew->entry)); |
1491 | 145 gboolean modified = ew->modified; |
146 | |
147 if (!modified) | |
148 { | |
149 modified = (!ew->desktop_name && *content); | |
150 } | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
151 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
152 if (!modified) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
153 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
154 modified = strcmp(ew->desktop_name, content); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
155 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
156 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
157 gtk_widget_set_sensitive(ew->save_button, modified); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
158 ew->modified = modified; |
1479 | 159 } |
160 | |
161 static void editor_window_new(const gchar *src_path, const gchar *desktop_name) | |
162 { | |
163 EditorWindow *ew; | |
164 GtkWidget *win_vbox; | |
165 GtkWidget *hbox; | |
166 GtkWidget *button; | |
167 GtkWidget *ct_button; | |
168 GtkWidget *button_hbox; | |
169 GtkWidget *scrolled; | |
170 GtkWidget *text_view; | |
171 gchar *text; | |
172 gsize size; | |
173 | |
174 ew = g_new0(EditorWindow, 1); | |
175 | |
176 | |
177 ew->window = window_new(GTK_WINDOW_TOPLEVEL, "Desktop", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Desktop file")); | |
178 gtk_window_set_type_hint(GTK_WINDOW(ew->window), GDK_WINDOW_TYPE_HINT_DIALOG); | |
179 | |
180 g_signal_connect(G_OBJECT(ew->window), "delete_event", | |
181 G_CALLBACK(editor_window_delete_cb), ew); | |
182 | |
183 gtk_window_set_default_size(GTK_WINDOW(ew->window), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT); | |
184 gtk_window_set_resizable(GTK_WINDOW(ew->window), TRUE); | |
185 gtk_container_set_border_width(GTK_CONTAINER(ew->window), PREF_PAD_BORDER); | |
186 | |
187 win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); | |
188 gtk_container_add(GTK_CONTAINER(ew->window), win_vbox); | |
189 gtk_widget_show(win_vbox); | |
190 | |
191 hbox = gtk_hbox_new(FALSE, PREF_PAD_SPACE); | |
192 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0); | |
193 gtk_widget_show(hbox); | |
194 | |
195 ew->entry = gtk_entry_new(); | |
196 gtk_box_pack_start(GTK_BOX(hbox), ew->entry, TRUE, TRUE, 0); | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
197 ew->desktop_name = NULL; |
1479 | 198 if (desktop_name) |
199 { | |
200 gtk_entry_set_text(GTK_ENTRY(ew->entry), desktop_name); | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
201 ew->desktop_name = g_strdup(desktop_name); |
1479 | 202 } |
203 gtk_widget_show(ew->entry); | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
204 g_signal_connect(G_OBJECT(ew->entry), "changed", G_CALLBACK(editor_window_entry_changed_cb), ew); |
1479 | 205 |
206 button_hbox = gtk_hbutton_box_new(); | |
207 gtk_button_box_set_layout(GTK_BUTTON_BOX(button_hbox), GTK_BUTTONBOX_END); | |
208 gtk_box_set_spacing(GTK_BOX(button_hbox), PREF_PAD_BUTTON_GAP); | |
209 gtk_box_pack_end(GTK_BOX(hbox), button_hbox, FALSE, FALSE, 0); | |
210 gtk_widget_show(button_hbox); | |
211 | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
212 ew->save_button = pref_button_new(NULL, GTK_STOCK_SAVE, NULL, FALSE, |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
213 G_CALLBACK(editor_window_save_cb), ew); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
214 gtk_container_add(GTK_CONTAINER(button_hbox), ew->save_button); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
215 GTK_WIDGET_SET_FLAGS(ew->save_button, GTK_CAN_DEFAULT); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
216 gtk_widget_set_sensitive(ew->save_button, FALSE); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
217 gtk_widget_show(ew->save_button); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
218 ct_button = ew->save_button; |
1479 | 219 |
1569 | 220 button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE, |
1479 | 221 G_CALLBACK(editor_window_close_cb), ew); |
222 gtk_container_add(GTK_CONTAINER(button_hbox), button); | |
223 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
224 gtk_widget_show(button); | |
225 | |
226 if (!generic_dialog_get_alternative_button_order(ew->window)) | |
227 { | |
228 gtk_box_reorder_child(GTK_BOX(button_hbox), ct_button, -1); | |
229 } | |
230 | |
231 | |
232 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
233 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
234 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
235 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
236 gtk_box_pack_start(GTK_BOX(win_vbox), scrolled, TRUE, TRUE, 5); | |
237 gtk_widget_show(scrolled); | |
238 | |
239 text_view = gtk_text_view_new(); | |
240 gtk_container_add(GTK_CONTAINER(scrolled), text_view); | |
241 gtk_widget_show(text_view); | |
242 | |
243 ew->buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view)); | |
244 if (g_file_get_contents(src_path, &text, &size, NULL)) | |
245 { | |
246 gtk_text_buffer_set_text(ew->buffer, text, size); | |
247 } | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
248 gtk_text_buffer_set_modified(ew->buffer, FALSE); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
249 g_signal_connect(G_OBJECT(ew->buffer), "modified-changed", |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
250 G_CALLBACK(editor_window_text_modified_cb), ew); |
1479 | 251 |
252 gtk_widget_show(ew->window); | |
253 } | |
254 | |
255 | |
256 static void editor_list_window_close_cb(GtkWidget *widget, gpointer data) | |
257 { | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
258 gtk_widget_destroy(editor_list_window->window); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
259 g_free(editor_list_window); |
1479 | 260 editor_list_window = NULL; |
261 } | |
262 | |
263 static gboolean editor_list_window_delete(GtkWidget *widget, GdkEventAny *event, gpointer data) | |
264 { | |
265 editor_list_window_close_cb(NULL, NULL); | |
266 return TRUE; | |
267 } | |
268 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
269 static void editor_list_window_delete_dlg_cancel(GenericDialog *gd, gpointer data); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
270 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
271 static void editor_list_window_delete_dlg_cancel(GenericDialog *gd, gpointer data) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
272 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
273 EditorWindowDel_Data *ewdl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
274 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
275 ewdl->ewl->gd = NULL; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
276 g_free(ewdl->path); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
277 g_free(ewdl); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
278 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
279 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
280 static void editor_list_window_delete_dlg_ok_cb(GenericDialog *gd, gpointer data) |
1479 | 281 { |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
282 EditorWindowDel_Data *ewdl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
283 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
284 if (!unlink_file(ewdl->path)) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
285 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
286 gchar *text = g_strdup_printf(_("Unable to delete file:\n%s"), ewdl->path); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
287 warning_dialog(_("File deletion failed"), text, GTK_STOCK_DIALOG_WARNING, NULL); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
288 g_free(text); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
289 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
290 else |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
291 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
292 /* refresh list */ |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
293 layout_editors_reload_all(); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
294 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
295 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
296 editor_list_window_delete_dlg_cancel(gd, data); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
297 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
298 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
299 static void editor_list_window_delete_cb(GtkWidget *widget, gpointer data) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
300 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
301 EditorListWindow *ewl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
302 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(ewl->view)); |
1479 | 303 GtkTreeIter iter; |
304 | |
305 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
306 { | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
307 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(ewl->view)); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
308 gchar *path; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
309 gchar *key; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
310 gchar *text; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
311 EditorWindowDel_Data *ewdl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
312 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
313 gtk_tree_model_get(store, &iter, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
314 DESKTOP_FILE_COLUMN_PATH, &path, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
315 DESKTOP_FILE_COLUMN_KEY, &key, -1); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
316 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
317 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
318 ewdl = g_new(EditorWindowDel_Data, 1); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
319 ewdl->ewl = ewl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
320 ewdl->path = path; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
321 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
322 if (ewl->gd) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
323 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
324 GenericDialog *gd = ewl->gd; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
325 editor_list_window_delete_dlg_cancel(ewl->gd, ewl->gd->data); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
326 generic_dialog_close(gd); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
327 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
328 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
329 ewl->gd = generic_dialog_new(_("Delete file"), "dlg_confirm", |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
330 NULL, TRUE, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
331 editor_list_window_delete_dlg_cancel, ewdl); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
332 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
333 generic_dialog_add_button(ewl->gd, GTK_STOCK_DELETE, NULL, editor_list_window_delete_dlg_ok_cb, TRUE); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
334 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
335 text = g_strdup_printf(_("About to delete the file:\n %s"), path); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
336 generic_dialog_add_message(ewl->gd, GTK_STOCK_DIALOG_QUESTION, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
337 _("Delete file"), text); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
338 g_free(text); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
339 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
340 gtk_widget_show(ewl->gd->dialog); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
341 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
342 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
343 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
344 static void editor_list_window_edit_cb(GtkWidget *widget, gpointer data) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
345 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
346 EditorListWindow *ewl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
347 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(ewl->view)); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
348 GtkTreeIter iter; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
349 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
350 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
351 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
352 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(ewl->view)); |
1479 | 353 gchar *path; |
354 gchar *key; | |
355 | |
356 gtk_tree_model_get(store, &iter, | |
357 DESKTOP_FILE_COLUMN_PATH, &path, | |
358 DESKTOP_FILE_COLUMN_KEY, &key, -1); | |
359 editor_window_new(path, key); | |
360 g_free(key); | |
361 g_free(path); | |
362 } | |
363 } | |
364 | |
365 static void editor_list_window_new_cb(GtkWidget *widget, gpointer data) | |
366 { | |
367 editor_window_new(DESKTOP_FILE_TEMPLATE, _("new.desktop")); | |
368 } | |
369 | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
370 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
371 static gint editor_list_window_sort_cb(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer data) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
372 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
373 gint n = GPOINTER_TO_INT(data); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
374 gint ret = 0; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
375 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
376 switch (n) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
377 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
378 case DESKTOP_FILE_COLUMN_KEY: |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
379 case DESKTOP_FILE_COLUMN_NAME: |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
380 case DESKTOP_FILE_COLUMN_PATH: |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
381 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
382 gchar *s1, *s2; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
383 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
384 gtk_tree_model_get(model, a, n, &s1, -1); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
385 gtk_tree_model_get(model, b, n, &s2, -1); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
386 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
387 if (!s1 || !s2) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
388 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
389 if (!s1 && !s2) break; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
390 ret = s1 ? 1 : -1; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
391 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
392 else |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
393 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
394 ret = g_utf8_collate(s1, s2); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
395 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
396 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
397 g_free(s1); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
398 g_free(s2); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
399 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
400 break; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
401 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
402 case DESKTOP_FILE_COLUMN_HIDDEN: |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
403 { |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
404 gint *v1, *v2; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
405 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
406 gtk_tree_model_get(model, a, n, &v1, -1); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
407 gtk_tree_model_get(model, b, n, &v2, -1); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
408 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
409 if (v1 == v2) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
410 ret = 0; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
411 else if (v1 < v2) |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
412 ret = 1; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
413 else |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
414 ret = -1; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
415 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
416 break; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
417 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
418 default: |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
419 g_return_val_if_reached(0); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
420 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
421 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
422 return ret; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
423 } |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
424 |
1479 | 425 static void editor_list_window_create(void) |
426 { | |
427 GtkWidget *win_vbox; | |
428 GtkWidget *hbox; | |
429 GtkWidget *button; | |
430 GtkWidget *scrolled; | |
431 GtkCellRenderer *renderer; | |
432 GtkTreeSelection *selection; | |
433 GtkTreeViewColumn *column; | |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
434 GtkTreeModel *store; |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
435 GtkTreeSortable *sortable; |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
436 EditorListWindow *ewl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
437 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
438 editor_list_window = ewl = g_new0(EditorListWindow, 1); |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
439 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
440 ewl->window = window_new(GTK_WINDOW_TOPLEVEL, "editors", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Editors")); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
441 gtk_window_set_type_hint(GTK_WINDOW(ewl->window), GDK_WINDOW_TYPE_HINT_DIALOG); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
442 g_signal_connect(G_OBJECT(ewl->window), "delete_event", |
1479 | 443 G_CALLBACK(editor_list_window_delete), NULL); |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
444 gtk_window_set_default_size(GTK_WINDOW(ewl->window), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
445 gtk_window_set_resizable(GTK_WINDOW(ewl->window), TRUE); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
446 gtk_container_set_border_width(GTK_CONTAINER(ewl->window), PREF_PAD_BORDER); |
1479 | 447 |
448 win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
449 gtk_container_add(GTK_CONTAINER(ewl->window), win_vbox); |
1479 | 450 gtk_widget_show(win_vbox); |
451 | |
452 hbox = gtk_hbutton_box_new(); | |
453 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); | |
454 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP); | |
455 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0); | |
456 gtk_widget_show(hbox); | |
457 | |
458 | |
459 button = pref_button_new(NULL, GTK_STOCK_NEW, NULL, FALSE, | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
460 G_CALLBACK(editor_list_window_new_cb), ewl); |
1479 | 461 gtk_container_add(GTK_CONTAINER(hbox), button); |
462 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
463 gtk_widget_show(button); | |
464 | |
465 button = pref_button_new(NULL, GTK_STOCK_EDIT, NULL, FALSE, | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
466 G_CALLBACK(editor_list_window_edit_cb), ewl); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
467 gtk_container_add(GTK_CONTAINER(hbox), button); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
468 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
469 gtk_widget_show(button); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
470 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
471 button = pref_button_new(NULL, GTK_STOCK_DELETE, NULL, FALSE, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
472 G_CALLBACK(editor_list_window_delete_cb), ewl); |
1479 | 473 gtk_container_add(GTK_CONTAINER(hbox), button); |
474 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
475 gtk_widget_show(button); | |
476 | |
477 button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE, | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
478 G_CALLBACK(editor_list_window_close_cb), ewl); |
1479 | 479 gtk_container_add(GTK_CONTAINER(hbox), button); |
480 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
481 gtk_widget_show(button); | |
482 | |
483 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
484 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
485 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
486 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
487 gtk_box_pack_start(GTK_BOX(win_vbox), scrolled, TRUE, TRUE, 5); | |
488 gtk_widget_show(scrolled); | |
489 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
490 ewl->view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(desktop_file_list)); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
491 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ewl->view)); |
1479 | 492 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE); |
493 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
494 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(ewl->view), FALSE); |
1479 | 495 |
496 column = gtk_tree_view_column_new(); | |
1625 | 497 gtk_tree_view_column_set_title(column, _("Desktop file")); |
1479 | 498 gtk_tree_view_column_set_resizable(column, TRUE); |
499 renderer = gtk_cell_renderer_text_new(); | |
500 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1625 | 501 gtk_tree_view_column_add_attribute(column, renderer, "text", DESKTOP_FILE_COLUMN_KEY); |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
502 gtk_tree_view_append_column(GTK_TREE_VIEW(ewl->view), column); |
1625 | 503 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_KEY); |
1479 | 504 |
505 column = gtk_tree_view_column_new(); | |
506 gtk_tree_view_column_set_title(column, _("Hidden")); | |
507 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
508 renderer = gtk_cell_renderer_toggle_new(); | |
1499
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
509 g_object_set(G_OBJECT(renderer), |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
510 "activatable", FALSE, // not clickable for now |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
511 "xalign", 0.5, // centered |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
512 NULL); |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
513 gtk_tree_view_column_pack_start(column, renderer, TRUE); // TRUE needed for centering |
1479 | 514 gtk_tree_view_column_add_attribute(column, renderer, "active", DESKTOP_FILE_COLUMN_HIDDEN); |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
515 gtk_tree_view_append_column(GTK_TREE_VIEW(ewl->view), column); |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
516 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_HIDDEN); |
1499
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
517 gtk_tree_view_column_set_alignment(column, 0.5); |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
518 |
1479 | 519 column = gtk_tree_view_column_new(); |
1625 | 520 gtk_tree_view_column_set_title(column, _("Name")); |
1479 | 521 gtk_tree_view_column_set_resizable(column, TRUE); |
522 renderer = gtk_cell_renderer_text_new(); | |
523 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1625 | 524 gtk_tree_view_column_add_attribute(column, renderer, "text", DESKTOP_FILE_COLUMN_NAME); |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
525 gtk_tree_view_append_column(GTK_TREE_VIEW(ewl->view), column); |
1625 | 526 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_NAME); |
1479 | 527 |
528 column = gtk_tree_view_column_new(); | |
529 gtk_tree_view_column_set_title(column, _("Path")); | |
530 gtk_tree_view_column_set_resizable(column, TRUE); | |
531 renderer = gtk_cell_renderer_text_new(); | |
532 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
533 gtk_tree_view_column_add_attribute(column, renderer, "text", DESKTOP_FILE_COLUMN_PATH); | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
534 gtk_tree_view_append_column(GTK_TREE_VIEW(ewl->view), column); |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
535 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_PATH); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
536 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
537 /* set up sorting */ |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
538 store = gtk_tree_view_get_model(GTK_TREE_VIEW(ewl->view)); |
1490
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
539 sortable = GTK_TREE_SORTABLE(store); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
540 gtk_tree_sortable_set_sort_func(sortable, DESKTOP_FILE_COLUMN_KEY, editor_list_window_sort_cb, |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
541 GINT_TO_POINTER(DESKTOP_FILE_COLUMN_KEY), NULL); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
542 gtk_tree_sortable_set_sort_func(sortable, DESKTOP_FILE_COLUMN_HIDDEN, editor_list_window_sort_cb, |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
543 GINT_TO_POINTER(DESKTOP_FILE_COLUMN_HIDDEN), NULL); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
544 gtk_tree_sortable_set_sort_func(sortable, DESKTOP_FILE_COLUMN_NAME, editor_list_window_sort_cb, |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
545 GINT_TO_POINTER(DESKTOP_FILE_COLUMN_NAME), NULL); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
546 gtk_tree_sortable_set_sort_func(sortable, DESKTOP_FILE_COLUMN_PATH, editor_list_window_sort_cb, |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
547 GINT_TO_POINTER(DESKTOP_FILE_COLUMN_PATH), NULL); |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
548 |
b924293cf6c8
Desktop files window: make columns sortable, replace Apply and OK buttons by one Save button which is made sensitive when needed.
zas_
parents:
1479
diff
changeset
|
549 /* set initial sort order */ |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
550 //gtk_tree_sortable_set_sort_column_id(sortable, DESKTOP_FILE_COLUMN_KEY, GTK_SORT_ASCENDING); |
1479 | 551 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
552 gtk_container_add(GTK_CONTAINER(scrolled), ewl->view); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
553 gtk_widget_show(ewl->view); |
1479 | 554 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
555 gtk_widget_show(ewl->window); |
1479 | 556 } |
557 | |
558 /* | |
559 *----------------------------------------------------------------------------- | |
560 * config window show (public) | |
561 *----------------------------------------------------------------------------- | |
562 */ | |
563 | |
564 void show_editor_list_window(void) | |
565 { | |
566 if (editor_list_window) | |
567 { | |
568 gtk_window_present(GTK_WINDOW(editor_list_window)); | |
569 return; | |
570 } | |
571 | |
572 editor_list_window_create(); | |
573 } | |
1611 | 574 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |