Mercurial > geeqie.yaz
annotate src/desktop_file.c @ 1543:c8ac214a2fca
fixed ambiguous strings
author | nadvornik |
---|---|
date | Sun, 12 Apr 2009 08:36:53 +0000 |
parents | 56b534d71872 |
children | 6245009414c9 |
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 { | |
62 gchar *path; | |
63 gchar *text; | |
64 GtkTextIter start, end; | |
65 GError *error = NULL; | |
66 gboolean ret = TRUE; | |
67 const gchar *name = gtk_entry_get_text(GTK_ENTRY(ew->entry)); | |
68 | |
69 if (!name || !name[0]) | |
70 { | |
71 file_util_warning_dialog(_("Can't save"), _("Please specify file name."), GTK_STOCK_DIALOG_ERROR, NULL); | |
72 return FALSE; | |
73 } | |
74 | |
75 gtk_text_buffer_get_bounds(ew->buffer, &start, &end); | |
76 text = gtk_text_buffer_get_text(ew->buffer, &start, &end, FALSE); | |
77 | |
78 path = g_build_filename(get_rc_dir(), "applications", name, NULL); | |
79 | |
80 if (!g_file_set_contents(path, text, -1, &error)) | |
81 { | |
82 file_util_warning_dialog(_("Can't save"), error->message, GTK_STOCK_DIALOG_ERROR, NULL); | |
83 g_error_free(error); | |
84 ret = FALSE; | |
85 } | |
86 | |
87 g_free(path); | |
88 g_free(text); | |
89 layout_editors_reload_all(); | |
90 return ret; | |
91 } | |
92 | |
93 static void editor_window_close_cb(GtkWidget *widget, gpointer data) | |
94 { | |
95 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
|
96 |
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
|
97 g_free(ew->desktop_name); |
1479 | 98 gtk_widget_destroy(ew->window); |
99 g_free(ew); | |
100 } | |
101 | |
102 static gint editor_window_delete_cb(GtkWidget *w, GdkEventAny *event, gpointer data) | |
103 { | |
104 editor_window_close_cb(w, data); | |
105 return TRUE; | |
106 } | |
107 | |
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
|
108 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
|
109 { |
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
|
110 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
|
111 |
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
|
112 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
|
113 { |
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
|
114 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
|
115 } |
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
|
116 } |
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 |
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 static void editor_window_text_modified_cb(GtkWidget *widget, gpointer data) |
1479 | 119 { |
120 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
|
121 |
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 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
|
123 { |
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 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
|
125 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
|
126 } |
1479 | 127 } |
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 static void editor_window_entry_changed_cb(GtkWidget *widget, gpointer data) |
1479 | 130 { |
131 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
|
132 const gchar *content = gtk_entry_get_text(GTK_ENTRY(ew->entry)); |
1491 | 133 gboolean modified = ew->modified; |
134 | |
135 if (!modified) | |
136 { | |
137 modified = (!ew->desktop_name && *content); | |
138 } | |
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
|
139 |
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 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
|
141 { |
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
|
142 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
|
143 } |
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 |
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
|
145 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
|
146 ew->modified = modified; |
1479 | 147 } |
148 | |
149 static void editor_window_new(const gchar *src_path, const gchar *desktop_name) | |
150 { | |
151 EditorWindow *ew; | |
152 GtkWidget *win_vbox; | |
153 GtkWidget *hbox; | |
154 GtkWidget *button; | |
155 GtkWidget *ct_button; | |
156 GtkWidget *button_hbox; | |
157 GtkWidget *scrolled; | |
158 GtkWidget *text_view; | |
159 gchar *text; | |
160 gsize size; | |
161 | |
162 ew = g_new0(EditorWindow, 1); | |
163 | |
164 | |
165 ew->window = window_new(GTK_WINDOW_TOPLEVEL, "Desktop", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Desktop file")); | |
166 gtk_window_set_type_hint(GTK_WINDOW(ew->window), GDK_WINDOW_TYPE_HINT_DIALOG); | |
167 | |
168 g_signal_connect(G_OBJECT(ew->window), "delete_event", | |
169 G_CALLBACK(editor_window_delete_cb), ew); | |
170 | |
171 gtk_window_set_default_size(GTK_WINDOW(ew->window), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT); | |
172 gtk_window_set_resizable(GTK_WINDOW(ew->window), TRUE); | |
173 gtk_container_set_border_width(GTK_CONTAINER(ew->window), PREF_PAD_BORDER); | |
174 | |
175 win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); | |
176 gtk_container_add(GTK_CONTAINER(ew->window), win_vbox); | |
177 gtk_widget_show(win_vbox); | |
178 | |
179 hbox = gtk_hbox_new(FALSE, PREF_PAD_SPACE); | |
180 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0); | |
181 gtk_widget_show(hbox); | |
182 | |
183 ew->entry = gtk_entry_new(); | |
184 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
|
185 ew->desktop_name = NULL; |
1479 | 186 if (desktop_name) |
187 { | |
188 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
|
189 ew->desktop_name = g_strdup(desktop_name); |
1479 | 190 } |
191 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
|
192 g_signal_connect(G_OBJECT(ew->entry), "changed", G_CALLBACK(editor_window_entry_changed_cb), ew); |
1479 | 193 |
194 button_hbox = gtk_hbutton_box_new(); | |
195 gtk_button_box_set_layout(GTK_BUTTON_BOX(button_hbox), GTK_BUTTONBOX_END); | |
196 gtk_box_set_spacing(GTK_BOX(button_hbox), PREF_PAD_BUTTON_GAP); | |
197 gtk_box_pack_end(GTK_BOX(hbox), button_hbox, FALSE, FALSE, 0); | |
198 gtk_widget_show(button_hbox); | |
199 | |
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
|
200 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
|
201 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
|
202 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
|
203 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
|
204 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
|
205 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
|
206 ct_button = ew->save_button; |
1479 | 207 |
208 button = pref_button_new(NULL, GTK_STOCK_CANCEL, NULL, FALSE, | |
209 G_CALLBACK(editor_window_close_cb), ew); | |
210 gtk_container_add(GTK_CONTAINER(button_hbox), button); | |
211 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
212 gtk_widget_show(button); | |
213 | |
214 if (!generic_dialog_get_alternative_button_order(ew->window)) | |
215 { | |
216 gtk_box_reorder_child(GTK_BOX(button_hbox), ct_button, -1); | |
217 } | |
218 | |
219 | |
220 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
221 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
222 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
223 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
224 gtk_box_pack_start(GTK_BOX(win_vbox), scrolled, TRUE, TRUE, 5); | |
225 gtk_widget_show(scrolled); | |
226 | |
227 text_view = gtk_text_view_new(); | |
228 gtk_container_add(GTK_CONTAINER(scrolled), text_view); | |
229 gtk_widget_show(text_view); | |
230 | |
231 ew->buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view)); | |
232 if (g_file_get_contents(src_path, &text, &size, NULL)) | |
233 { | |
234 gtk_text_buffer_set_text(ew->buffer, text, size); | |
235 } | |
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
|
236 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
|
237 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
|
238 G_CALLBACK(editor_window_text_modified_cb), ew); |
1479 | 239 |
240 gtk_widget_show(ew->window); | |
241 } | |
242 | |
243 | |
244 static void editor_list_window_close_cb(GtkWidget *widget, gpointer data) | |
245 { | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
246 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
|
247 g_free(editor_list_window); |
1479 | 248 editor_list_window = NULL; |
249 } | |
250 | |
251 static gboolean editor_list_window_delete(GtkWidget *widget, GdkEventAny *event, gpointer data) | |
252 { | |
253 editor_list_window_close_cb(NULL, NULL); | |
254 return TRUE; | |
255 } | |
256 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
257 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
|
258 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
259 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
|
260 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
261 EditorWindowDel_Data *ewdl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
262 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
263 ewdl->ewl->gd = NULL; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
264 g_free(ewdl->path); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
265 g_free(ewdl); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
266 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
267 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
268 static void editor_list_window_delete_dlg_ok_cb(GenericDialog *gd, gpointer data) |
1479 | 269 { |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
270 EditorWindowDel_Data *ewdl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
271 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
272 if (!unlink_file(ewdl->path)) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
273 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
274 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
|
275 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
|
276 g_free(text); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
277 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
278 else |
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 /* refresh list */ |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
281 layout_editors_reload_all(); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
282 } |
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 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
|
285 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
286 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
287 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
|
288 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
289 EditorListWindow *ewl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
290 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(ewl->view)); |
1479 | 291 GtkTreeIter iter; |
292 | |
293 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
294 { | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
295 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
|
296 gchar *path; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
297 gchar *key; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
298 gchar *text; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
299 EditorWindowDel_Data *ewdl; |
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 gtk_tree_model_get(store, &iter, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
302 DESKTOP_FILE_COLUMN_PATH, &path, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
303 DESKTOP_FILE_COLUMN_KEY, &key, -1); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
304 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
305 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
306 ewdl = g_new(EditorWindowDel_Data, 1); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
307 ewdl->ewl = ewl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
308 ewdl->path = path; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
309 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
310 if (ewl->gd) |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
311 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
312 GenericDialog *gd = ewl->gd; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
313 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
|
314 generic_dialog_close(gd); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
315 } |
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 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
|
318 NULL, TRUE, |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
319 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
|
320 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
321 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
|
322 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
323 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
|
324 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
|
325 _("Delete file"), text); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
326 g_free(text); |
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 gtk_widget_show(ewl->gd->dialog); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
329 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
330 } |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
331 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
332 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
|
333 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
334 EditorListWindow *ewl = data; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
335 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
|
336 GtkTreeIter iter; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
337 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
338 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
|
339 { |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
340 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(ewl->view)); |
1479 | 341 gchar *path; |
342 gchar *key; | |
343 | |
344 gtk_tree_model_get(store, &iter, | |
345 DESKTOP_FILE_COLUMN_PATH, &path, | |
346 DESKTOP_FILE_COLUMN_KEY, &key, -1); | |
347 editor_window_new(path, key); | |
348 g_free(key); | |
349 g_free(path); | |
350 } | |
351 } | |
352 | |
353 static void editor_list_window_new_cb(GtkWidget *widget, gpointer data) | |
354 { | |
355 editor_window_new(DESKTOP_FILE_TEMPLATE, _("new.desktop")); | |
356 } | |
357 | |
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
|
358 |
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
|
359 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
|
360 { |
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
|
361 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
|
362 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
|
363 |
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
|
364 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
|
365 { |
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
|
366 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
|
367 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
|
368 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
|
369 { |
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 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
|
371 |
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 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
|
373 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
|
374 |
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 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
|
376 { |
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 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
|
378 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
|
379 } |
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 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
|
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 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
|
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 |
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 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
|
386 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
|
387 } |
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 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
|
389 |
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 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
|
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 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
|
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 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
|
395 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
|
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 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
|
398 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
|
399 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
|
400 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
|
401 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
|
402 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
|
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 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
|
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 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
|
407 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
|
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 |
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 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
|
411 } |
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 |
1479 | 413 static void editor_list_window_create(void) |
414 { | |
415 GtkWidget *win_vbox; | |
416 GtkWidget *hbox; | |
417 GtkWidget *button; | |
418 GtkWidget *scrolled; | |
419 GtkCellRenderer *renderer; | |
420 GtkTreeSelection *selection; | |
421 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
|
422 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
|
423 GtkTreeSortable *sortable; |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
424 EditorListWindow *ewl; |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
425 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
426 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
|
427 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
428 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
|
429 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
|
430 g_signal_connect(G_OBJECT(ewl->window), "delete_event", |
1479 | 431 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
|
432 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
|
433 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
|
434 gtk_container_set_border_width(GTK_CONTAINER(ewl->window), PREF_PAD_BORDER); |
1479 | 435 |
436 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
|
437 gtk_container_add(GTK_CONTAINER(ewl->window), win_vbox); |
1479 | 438 gtk_widget_show(win_vbox); |
439 | |
440 hbox = gtk_hbutton_box_new(); | |
441 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); | |
442 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP); | |
443 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0); | |
444 gtk_widget_show(hbox); | |
445 | |
446 | |
447 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
|
448 G_CALLBACK(editor_list_window_new_cb), ewl); |
1479 | 449 gtk_container_add(GTK_CONTAINER(hbox), button); |
450 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
451 gtk_widget_show(button); | |
452 | |
453 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
|
454 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
|
455 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
|
456 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
|
457 gtk_widget_show(button); |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
458 |
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
459 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
|
460 G_CALLBACK(editor_list_window_delete_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_CLOSE, 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_close_cb), ewl); |
1479 | 467 gtk_container_add(GTK_CONTAINER(hbox), button); |
468 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
469 gtk_widget_show(button); | |
470 | |
471 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
472 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
473 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
474 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
475 gtk_box_pack_start(GTK_BOX(win_vbox), scrolled, TRUE, TRUE, 5); | |
476 gtk_widget_show(scrolled); | |
477 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
478 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
|
479 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(ewl->view)); |
1479 | 480 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE); |
481 | |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
482 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(ewl->view), FALSE); |
1479 | 483 |
484 column = gtk_tree_view_column_new(); | |
485 gtk_tree_view_column_set_title(column, _("Desktop file")); | |
486 gtk_tree_view_column_set_resizable(column, TRUE); | |
487 renderer = gtk_cell_renderer_text_new(); | |
488 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
489 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
|
490 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
|
491 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_KEY); |
1479 | 492 |
493 column = gtk_tree_view_column_new(); | |
494 gtk_tree_view_column_set_title(column, _("Hidden")); | |
495 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
496 renderer = gtk_cell_renderer_toggle_new(); | |
1499
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
497 g_object_set(G_OBJECT(renderer), |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
498 "activatable", FALSE, // not clickable for now |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
499 "xalign", 0.5, // centered |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
500 NULL); |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
501 gtk_tree_view_column_pack_start(column, renderer, TRUE); // TRUE needed for centering |
1479 | 502 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
|
503 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
|
504 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
|
505 gtk_tree_view_column_set_alignment(column, 0.5); |
56b534d71872
Make desktop window list checkboxes centered and not activatable.
zas_
parents:
1496
diff
changeset
|
506 |
1479 | 507 |
508 column = gtk_tree_view_column_new(); | |
509 gtk_tree_view_column_set_title(column, _("Name")); | |
510 gtk_tree_view_column_set_resizable(column, TRUE); | |
511 renderer = gtk_cell_renderer_text_new(); | |
512 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
513 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
|
514 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
|
515 gtk_tree_view_column_set_sort_column_id(column, DESKTOP_FILE_COLUMN_NAME); |
1479 | 516 |
517 column = gtk_tree_view_column_new(); | |
518 gtk_tree_view_column_set_title(column, _("Path")); | |
519 gtk_tree_view_column_set_resizable(column, TRUE); | |
520 renderer = gtk_cell_renderer_text_new(); | |
521 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
522 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
|
523 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
|
524 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
|
525 |
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
|
526 /* set up sorting */ |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
527 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
|
528 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
|
529 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
|
530 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
|
531 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
|
532 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
|
533 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
|
534 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
|
535 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
|
536 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
|
537 |
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
|
538 /* set initial sort order */ |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
539 //gtk_tree_sortable_set_sort_column_id(sortable, DESKTOP_FILE_COLUMN_KEY, GTK_SORT_ASCENDING); |
1479 | 540 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
541 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
|
542 gtk_widget_show(ewl->view); |
1479 | 543 |
1496
03c22c05c6b6
Allow to delete an editor's desktop file from editors list window.
zas_
parents:
1491
diff
changeset
|
544 gtk_widget_show(ewl->window); |
1479 | 545 } |
546 | |
547 /* | |
548 *----------------------------------------------------------------------------- | |
549 * config window show (public) | |
550 *----------------------------------------------------------------------------- | |
551 */ | |
552 | |
553 void show_editor_list_window(void) | |
554 { | |
555 if (editor_list_window) | |
556 { | |
557 gtk_window_present(GTK_WINDOW(editor_list_window)); | |
558 return; | |
559 } | |
560 | |
561 editor_list_window_create(); | |
562 } |