annotate src/bar_keywords.c @ 1396:58f0b4586c8c

dnd fixes
author nadvornik
date Sun, 08 Mar 2009 12:42:23 +0000
parents e86d8facbdae
children 6ce1f7171d48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1 /*
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
2 * Geeqie
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
3 * (C) 2004 John Ellis
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
4 * Copyright (C) 2008 - 2009 The Geeqie Team
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
5 *
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
6 * Author: John Ellis
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
7 *
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
9 * Please read the included file COPYING for more information.
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
11 */
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
12
1305
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
13 #include <glib/gprintf.h>
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
14
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
15 #include "main.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
16 #include "bar_keywords.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
17
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
18 #include "filedata.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
19 #include "history_list.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
20 #include "metadata.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
21 #include "misc.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
22 #include "ui_fileops.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
23 #include "ui_misc.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
24 #include "ui_utildlg.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
25 #include "utilops.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
26 #include "bar.h"
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
27 #include "ui_menu.h"
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
28 #include "rcfile.h"
1387
6f31fa931d3f simplified bar interface
nadvornik
parents: 1346
diff changeset
29 #include "layout.h"
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
30 #include "dnd.h"
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
31
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
32 static const gchar *keyword_favorite_defaults[] = {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
33 N_("Favorite"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
34 N_("Todo"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
35 N_("People"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
36 N_("Places"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
37 N_("Art"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
38 N_("Nature"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
39 N_("Possessions"),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
40 NULL
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
41 };
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
42
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
43
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
44 static void bar_pane_keywords_keyword_update_all(void);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
45 static void bar_pane_keywords_changed(GtkTextBuffer *buffer, gpointer data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
46
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
47 /*
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
48 *-------------------------------------------------------------------
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
49 * keyword / comment utils
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
50 *-------------------------------------------------------------------
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
51 */
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
52
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
53
1292
4a3ae0e6f1eb droped Preferences dialog, sidebar should replace it completely
nadvornik
parents: 1291
diff changeset
54 GList *keyword_list_pull(GtkWidget *text_widget)
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
55 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
56 GList *list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
57 gchar *text;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
58
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
59 text = text_widget_text_pull(text_widget);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
60 list = string_to_keywords_list(text);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
61
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
62 g_free(text);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
63
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
64 return list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
65 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
66
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
67 static void keyword_list_push(GtkWidget *textview, GList *list)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
68 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
69 GtkTextBuffer *buffer;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
70 GtkTextIter start, end;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
71
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
72 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
73 gtk_text_buffer_get_bounds(buffer, &start, &end);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
74 gtk_text_buffer_delete(buffer, &start, &end);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
75
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
76 while (list)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
77 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
78 const gchar *word = list->data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
79 GtkTextIter iter;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
80
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
81 gtk_text_buffer_get_end_iter(buffer, &iter);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
82 if (word) gtk_text_buffer_insert(buffer, &iter, word, -1);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
83 gtk_text_buffer_get_end_iter(buffer, &iter);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
84 gtk_text_buffer_insert(buffer, &iter, "\n", -1);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
85
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
86 list = list->next;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
87 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
88 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
89
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
90
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
91 /*
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
92 *-------------------------------------------------------------------
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
93 * info bar
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
94 *-------------------------------------------------------------------
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
95 */
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
96
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
97
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
98 enum {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
99 FILTER_KEYWORD_COLUMN_TOGGLE = 0,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
100 FILTER_KEYWORD_COLUMN_MARK,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
101 FILTER_KEYWORD_COLUMN_NAME,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
102 FILTER_KEYWORD_COLUMN_IS_KEYWORD,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
103 FILTER_KEYWORD_COLUMN_COUNT
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
104 };
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
105
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
106 static GType filter_keyword_column_types[] = {G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN};
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
107
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
108 typedef struct _PaneKeywordsData PaneKeywordsData;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
109 struct _PaneKeywordsData
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
110 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
111 PaneData pane;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
112 GtkWidget *widget;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
113
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
114 GtkWidget *keyword_view;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
115 GtkWidget *keyword_treeview;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
116
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
117 FileData *fd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
118 gchar *key;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
119 };
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
120
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
121
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
122 static GList *bar_list = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
123
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
124
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
125 static void bar_pane_keywords_write(PaneKeywordsData *pkd)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
126 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
127 GList *list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
128
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
129 if (!pkd->fd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
130
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
131 list = keyword_list_pull(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
132
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
133 metadata_write_list(pkd->fd, KEYWORD_KEY, list);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
134
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
135 string_list_free(list);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
136 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
137
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
138 static gchar *bar_pane_keywords_get_mark_text(const gchar *key)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
139 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
140 gint i;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
141 static gchar buf[10];
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
142
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
143 for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
144 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
145 FileDataGetMarkFunc get_mark_func;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
146 FileDataSetMarkFunc set_mark_func;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
147 gpointer data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
148 file_data_get_registered_mark_func(i, &get_mark_func, &set_mark_func, &data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
149 if (get_mark_func == meta_data_get_keyword_mark && strcmp(data, key) == 0)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
150 {
1305
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
151 g_sprintf(buf, " %d ", i + 1);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
152 return buf;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
153 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
154 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
155 return " ... ";
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
156 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
157
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
158 gboolean bar_keyword_tree_expand_if_set(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
159 {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
160 PaneKeywordsData *pkd = data;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
161 gboolean set;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
162
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
163 gtk_tree_model_get(model, iter, FILTER_KEYWORD_COLUMN_TOGGLE, &set, -1);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
164
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
165 if (set && !gtk_tree_view_row_expanded(GTK_TREE_VIEW(pkd->keyword_treeview), path))
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
166 {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
167 gtk_tree_view_expand_to_path(GTK_TREE_VIEW(pkd->keyword_treeview), path);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
168 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
169 return FALSE;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
170 }
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
171
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
172 static void bar_keyword_tree_sync(PaneKeywordsData *pkd)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
173 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
174 GtkTreeModelFilter *store;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
175
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
176 store = GTK_TREE_MODEL_FILTER(gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview)));
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
177
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
178 gtk_tree_model_filter_refilter(store);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
179 gtk_tree_model_foreach(GTK_TREE_MODEL(store), bar_keyword_tree_expand_if_set, pkd);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
180
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
181 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
182
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
183 static void bar_pane_keywords_keyword_update_all(void)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
184 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
185 GList *work;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
186
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
187 work = bar_list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
188 while (work)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
189 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
190 PaneKeywordsData *pkd;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
191 // GList *keywords;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
192
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
193 pkd = work->data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
194 work = work->next;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
195
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
196 bar_keyword_tree_sync(pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
197 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
198 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
199
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
200 static void bar_pane_keywords_update(PaneKeywordsData *pkd)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
201 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
202 GList *keywords = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
203 GtkTextBuffer *keyword_buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pkd->keyword_view));
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
204
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
205 g_signal_handlers_block_by_func(keyword_buffer, bar_pane_keywords_changed, pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
206
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
207 keywords = metadata_read_list(pkd->fd, KEYWORD_KEY, METADATA_PLAIN);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
208 keyword_list_push(pkd->keyword_view, keywords);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
209 bar_keyword_tree_sync(pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
210 string_list_free(keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
211
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
212 g_signal_handlers_unblock_by_func(keyword_buffer, bar_pane_keywords_changed, pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
213
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
214 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
215
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
216 void bar_pane_keywords_set_fd(GtkWidget *pane, FileData *fd)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
217 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
218 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
219
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
220 pkd = g_object_get_data(G_OBJECT(pane), "pane_data");
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
221 if (!pkd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
222
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
223 file_data_unref(pkd->fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
224 pkd->fd = file_data_ref(fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
225
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
226 bar_pane_keywords_update(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
227 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
228
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
229 static void bar_pane_keywords_write_config(GtkWidget *pane, GString *outstr, gint indent)
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
230 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
231 PaneKeywordsData *pkd;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
232
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
233 pkd = g_object_get_data(G_OBJECT(pane), "pane_data");
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
234 if (!pkd) return;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
235
1314
8cca18bce950 simplified config writing
nadvornik
parents: 1309
diff changeset
236 WRITE_STRING("<pane_keywords\n");
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
237 indent++;
1343
eebb8d0cb677 give the panes more control over expander title
nadvornik
parents: 1340
diff changeset
238 write_char_option(outstr, indent, "pane.title", gtk_label_get_text(GTK_LABEL(pkd->pane.title)));
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
239 WRITE_BOOL(*pkd, pane.expanded);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
240 WRITE_CHAR(*pkd, key);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
241 indent--;
1314
8cca18bce950 simplified config writing
nadvornik
parents: 1309
diff changeset
242 WRITE_STRING("/>\n");
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
243 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
244
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
245 gint bar_pane_keywords_event(GtkWidget *bar, GdkEvent *event)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
246 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
247 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
248
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
249 pkd = g_object_get_data(G_OBJECT(bar), "pane_data");
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
250 if (!pkd) return FALSE;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
251
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
252 if (GTK_WIDGET_HAS_FOCUS(pkd->keyword_view)) return gtk_widget_event(pkd->keyword_view, event);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
253
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
254 return FALSE;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
255 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
256
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
257 static void bar_pane_keywords_keyword_toggle(GtkCellRendererToggle *toggle, const gchar *path, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
258 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
259 PaneKeywordsData *pkd = data;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
260 GtkTreeModel *model;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
261 GtkTreeIter iter;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
262 GtkTreePath *tpath;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
263 gboolean active;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
264 GList *list;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
265 GtkTreeIter child_iter;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
266 GtkTreeModel *keyword_tree;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
267
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
268 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
269
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
270 tpath = gtk_tree_path_new_from_string(path);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
271 gtk_tree_model_get_iter(model, &iter, tpath);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
272 gtk_tree_path_free(tpath);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
273
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
274 gtk_tree_model_get(model, &iter, FILTER_KEYWORD_COLUMN_TOGGLE, &active, -1);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
275 active = (!active);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
276
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
277
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
278 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
279 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &child_iter, &iter);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
280
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
281 list = keyword_list_pull(pkd->keyword_view);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
282 if (active)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
283 keyword_tree_set(keyword_tree, &child_iter, &list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
284 else
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
285 keyword_tree_reset(keyword_tree, &child_iter, &list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
286
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
287 keyword_list_push(pkd->keyword_view, list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
288 string_list_free(list);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
289 /*
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
290 keyword_list_push triggers bar_pane_keywords_change which calls bar_keyword_tree_sync, no need to do it again
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
291 bar_keyword_tree_sync(pkd);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
292 */
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
293 }
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
294
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
295 void bar_pane_keywords_filter_modify(GtkTreeModel *model, GtkTreeIter *iter, GValue *value, gint column, gpointer data)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
296 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
297 PaneKeywordsData *pkd = data;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
298 GtkTreeModel *keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
299 GtkTreeIter child_iter;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
300
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
301 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &child_iter, iter);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
302
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
303 memset(value, 0, sizeof (GValue));
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
304
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
305 switch (column)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
306 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
307 case FILTER_KEYWORD_COLUMN_TOGGLE:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
308 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
309 GList *keywords = keyword_list_pull(pkd->keyword_view);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
310 gboolean set = keyword_tree_is_set(keyword_tree, &child_iter, keywords);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
311 string_list_free(keywords);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
312
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
313 g_value_init(value, G_TYPE_BOOLEAN);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
314 g_value_set_boolean(value, set);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
315 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
316 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
317 case FILTER_KEYWORD_COLUMN_MARK:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
318 gtk_tree_model_get_value(keyword_tree, &child_iter, KEYWORD_COLUMN_MARK, value);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
319 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
320 case FILTER_KEYWORD_COLUMN_NAME:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
321 gtk_tree_model_get_value(keyword_tree, &child_iter, KEYWORD_COLUMN_NAME, value);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
322 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
323 case FILTER_KEYWORD_COLUMN_IS_KEYWORD:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
324 gtk_tree_model_get_value(keyword_tree, &child_iter, KEYWORD_COLUMN_IS_KEYWORD, value);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
325 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
326 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
327 return;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
328
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
329 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
330
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
331 static void bar_pane_keywords_set_selection(PaneKeywordsData *pkd, gboolean append)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
332 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
333 GList *keywords = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
334 GList *list = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
335 GList *work;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
336
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
337 keywords = keyword_list_pull(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
338
1387
6f31fa931d3f simplified bar interface
nadvornik
parents: 1346
diff changeset
339 list = layout_selection_list(pkd->pane.lw);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
340 work = list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
341 while (work)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
342 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
343 FileData *fd = work->data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
344 work = work->next;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
345
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
346 if (append)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
347 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
348 metadata_append_list(fd, KEYWORD_KEY, keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
349 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
350 else
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
351 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
352 metadata_write_list(fd, KEYWORD_KEY, keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
353 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
354 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
355
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
356 filelist_free(list);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
357 string_list_free(keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
358 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
359
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
360 static void bar_pane_keywords_sel_add_cb(GtkWidget *button, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
361 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
362 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
363
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
364 bar_pane_keywords_set_selection(pkd, TRUE);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
365 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
366
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
367 static void bar_pane_keywords_sel_replace_cb(GtkWidget *button, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
368 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
369 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
370
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
371 bar_pane_keywords_set_selection(pkd, FALSE);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
372 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
373
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
374 static void bar_pane_keywords_populate_popup_cb(GtkTextView *textview, GtkMenu *menu, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
375 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
376 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
377
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
378 menu_item_add_divider(GTK_WIDGET(menu));
1295
8c59e6e50bd8 Fix up few compilation warnings.
zas_
parents: 1292
diff changeset
379 menu_item_add_stock(GTK_WIDGET(menu), _("Add keywords to selected files"), GTK_STOCK_ADD, G_CALLBACK(bar_pane_keywords_sel_add_cb), pkd);
8c59e6e50bd8 Fix up few compilation warnings.
zas_
parents: 1292
diff changeset
380 menu_item_add_stock(GTK_WIDGET(menu), _("Replace existing keywords in selected files"), GTK_STOCK_CONVERT, G_CALLBACK(bar_pane_keywords_sel_replace_cb), pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
381 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
382
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
383
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
384 static void bar_pane_keywords_notify_cb(FileData *fd, NotifyType type, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
385 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
386 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
387 if (fd == pkd->fd) bar_pane_keywords_update(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
388 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
389
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
390 static void bar_pane_keywords_changed(GtkTextBuffer *buffer, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
391 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
392 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
393
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
394 file_data_unregister_notify_func(bar_pane_keywords_notify_cb, pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
395 bar_pane_keywords_write(pkd);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
396 bar_keyword_tree_sync(pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
397 file_data_register_notify_func(bar_pane_keywords_notify_cb, pkd, NOTIFY_PRIORITY_LOW);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
398 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
399
1346
c9949c19a6d0 No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents: 1343
diff changeset
400 static void bar_pane_keywords_mark_edited(GtkCellRendererText *cell, const gchar *path, const gchar *text, gpointer data)
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
401 {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
402 /* PaneKeywordsData *pkd = data;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
403 GtkTreeModel *store;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
404 GtkTreeIter iter;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
405 GtkTreePath *tpath;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
406 gchar *key = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
407 gint i;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
408 FileDataGetMarkFunc get_mark_func;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
409 FileDataSetMarkFunc set_mark_func;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
410 gpointer mark_func_data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
411
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
412 file_data_unregister_notify_func(bar_pane_keywords_notify_cb, pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
413
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
414 store = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
415
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
416 tpath = gtk_tree_path_new_from_string(path);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
417 gtk_tree_model_get_iter(store, &iter, tpath);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
418 gtk_tree_path_free(tpath);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
419
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
420 gtk_tree_model_get(store, &iter, FILTER_KEYWORD_COLUMN_TEXT, &key, -1);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
421
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
422 for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
423 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
424 file_data_get_registered_mark_func(i, &get_mark_func, &set_mark_func, &mark_func_data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
425 if (get_mark_func == meta_data_get_keyword_mark && strcmp(mark_func_data, key) == 0)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
426 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
427 g_free(mark_func_data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
428 file_data_register_mark_func(i, NULL, NULL, NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
429 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
430 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
431
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
432 if (sscanf(text, " %d ", &i) &&i >=1 && i <= FILEDATA_MARKS_SIZE)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
433 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
434 i--;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
435 file_data_get_registered_mark_func(i, &get_mark_func, &set_mark_func, &mark_func_data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
436 if (get_mark_func == meta_data_get_keyword_mark && mark_func_data) g_free(mark_func_data);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
437 file_data_register_mark_func(i, meta_data_get_keyword_mark, meta_data_set_keyword_mark, g_strdup(key));
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
438 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
439
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
440 g_free(key);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
441
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
442 file_data_register_notify_func(bar_pane_keywords_notify_cb, pkd, NOTIFY_PRIORITY_LOW);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
443 bar_pane_keywords_update(pkd);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
444 */
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
445 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
446
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
447
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
448 static GtkTargetEntry bar_pane_keywords_drag_types[] = {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
449 { TARGET_APP_KEYWORD_PATH_STRING, GTK_TARGET_SAME_WIDGET, TARGET_APP_KEYWORD_PATH },
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
450 { "text/plain", 0, TARGET_TEXT_PLAIN }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
451 };
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
452 static gint n_keywords_drag_types = 2;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
453
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
454
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
455 static GtkTargetEntry bar_pane_keywords_drop_types[] = {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
456 { TARGET_APP_KEYWORD_PATH_STRING, GTK_TARGET_SAME_WIDGET, TARGET_APP_KEYWORD_PATH },
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
457 { "text/plain", 0, TARGET_TEXT_PLAIN }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
458 };
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
459 static gint n_keywords_drop_types = 2;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
460
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
461
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
462 static void bar_pane_keywords_dnd_get(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
463 GtkSelectionData *selection_data, guint info,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
464 guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
465 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
466 GtkTreeIter iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
467 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
468 GtkTreeIter child_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
469 GtkTreeModel *keyword_tree;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
470
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
471 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
472
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
473 if (!gtk_tree_selection_get_selected(sel, &model, &iter)) return;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
474
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
475 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
476 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &child_iter, &iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
477
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
478 switch (info)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
479 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
480 case TARGET_APP_KEYWORD_PATH:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
481 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
482 GList *path = keyword_tree_get_path(keyword_tree, &child_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
483 gtk_selection_data_set(selection_data, selection_data->target,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
484 8, (gpointer) &path, sizeof(path));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
485 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
486 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
487
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
488 case TARGET_TEXT_PLAIN:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
489 default:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
490 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
491 gchar *name = keyword_get_name(keyword_tree, &child_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
492 gtk_selection_data_set_text(selection_data, name, -1);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
493 g_free(name);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
494 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
495 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
496 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
497 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
498
1393
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
499 static void bar_pane_keywords_dnd_begin(GtkWidget *tree_view, GdkDragContext *context, gpointer data)
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
500 {
1393
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
501 GtkTreeIter iter;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
502 GtkTreeModel *model;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
503 GtkTreeIter child_iter;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
504 GtkTreeModel *keyword_tree;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
505 gchar *name;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
506
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
507 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
508
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
509 if (!gtk_tree_selection_get_selected(sel, &model, &iter)) return;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
510
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
511 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
512 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &child_iter, &iter);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
513
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
514 name = keyword_get_name(keyword_tree, &child_iter);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
515
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
516 dnd_set_drag_label(tree_view, context, name);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
517 g_free(name);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
518
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
519 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
520
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
521 static void bar_pane_keywords_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
522 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
523 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
524
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
525 static void bar_pane_keywords_dnd_receive(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
526 gint x, gint y,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
527 GtkSelectionData *selection_data, guint info,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
528 guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
529 {
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
530 PaneKeywordsData *pkd = data;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
531 GtkTreePath *tpath = NULL;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
532 GtkTreeViewDropPosition pos;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
533 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
534
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
535 GtkTreeModel *keyword_tree;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
536 gboolean src_valid = FALSE;
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
537 GList *new_keywords = NULL;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
538 GList *work;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
539
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
540 /* iterators for keyword_tree */
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
541 GtkTreeIter src_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
542 GtkTreeIter dest_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
543 GtkTreeIter new_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
544
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
545 g_signal_stop_emission_by_name(tree_view, "drag_data_received");
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
546
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
547 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(tree_view), NULL, pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
548
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
549 model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
550 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
551
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
552 gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(tree_view), x, y, &tpath, &pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
553
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
554
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
555 switch (info)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
556 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
557 case TARGET_APP_KEYWORD_PATH:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
558 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
559 GList *path = *(gpointer *)selection_data->data;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
560 src_valid = keyword_tree_get_iter(keyword_tree, &src_kw_iter, path);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
561 string_list_free(path);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
562 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
563 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
564 default:
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
565 new_keywords = string_to_keywords_list((gchar *)selection_data->data);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
566 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
567 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
568
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
569 if (tpath)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
570 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
571 GtkTreeIter dest_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
572 gtk_tree_model_get_iter(model, &dest_iter, tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
573 gtk_tree_path_free(tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
574 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &dest_kw_iter, &dest_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
575
1395
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
576 if (src_valid && gtk_tree_store_is_ancestor(GTK_TREE_STORE(keyword_tree), &src_kw_iter, &dest_kw_iter))
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
577 {
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
578 /* can't move to it's own child */
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
579 return;
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
580 }
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
581
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
582 if (src_valid && keyword_compare(keyword_tree, &src_kw_iter, &dest_kw_iter) == 0)
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
583 {
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
584 /* can't move to itself */
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
585 return;
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
586 }
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
587
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
588 if ((pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE || pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER) &&
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
589 !gtk_tree_model_iter_has_child(keyword_tree, &dest_kw_iter))
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
590 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
591 gtk_tree_store_append(GTK_TREE_STORE(keyword_tree), &new_kw_iter, &dest_kw_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
592 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
593 else
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
594 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
595 switch (pos)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
596 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
597 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
598 case GTK_TREE_VIEW_DROP_BEFORE:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
599 gtk_tree_store_insert_before(GTK_TREE_STORE(keyword_tree), &new_kw_iter, NULL, &dest_kw_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
600 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
601 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
602 case GTK_TREE_VIEW_DROP_AFTER:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
603 gtk_tree_store_insert_after(GTK_TREE_STORE(keyword_tree), &new_kw_iter, NULL, &dest_kw_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
604 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
605 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
606 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
607 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
608 else
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
609 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
610 gtk_tree_store_append(GTK_TREE_STORE(keyword_tree), &new_kw_iter, NULL);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
611 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
612
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
613
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
614 if (src_valid)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
615 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
616 keyword_move_recursive(GTK_TREE_STORE(keyword_tree), &new_kw_iter, &src_kw_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
617 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
618
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
619 work = new_keywords;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
620 while (work)
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
621 {
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
622 keyword_set(GTK_TREE_STORE(keyword_tree), &new_kw_iter, work->data, TRUE);
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
623 work = work->next;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
624 if (work)
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
625 {
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
626 GtkTreeIter add;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
627 gtk_tree_store_insert_after(GTK_TREE_STORE(keyword_tree), &add, NULL, &new_kw_iter);
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
628 new_kw_iter = add;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
629 }
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
630 }
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
631 string_list_free(new_keywords);
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
632 bar_keyword_tree_sync(pkd);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
633 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
634
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
635 static gint bar_pane_keywords_dnd_motion(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
636 gint x, gint y, guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
637 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
638 GtkTreePath *tpath = NULL;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
639 GtkTreeViewDropPosition pos;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
640 gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(tree_view), x, y, &tpath, &pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
641 if (tpath)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
642 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
643 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
644 GtkTreeIter dest_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
645 model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
646 gtk_tree_model_get_iter(model, &dest_iter, tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
647 if (pos == GTK_TREE_VIEW_DROP_INTO_OR_BEFORE && gtk_tree_model_iter_has_child(model, &dest_iter))
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
648 pos = GTK_TREE_VIEW_DROP_BEFORE;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
649
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
650 if (pos == GTK_TREE_VIEW_DROP_INTO_OR_AFTER && gtk_tree_model_iter_has_child(model, &dest_iter))
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
651 pos = GTK_TREE_VIEW_DROP_AFTER;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
652 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
653
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
654 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(tree_view), tpath, pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
655 gtk_tree_path_free(tpath);
1395
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
656
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
657 if (tree_view == gtk_drag_get_source_widget(context))
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
658 gdk_drag_status(context, GDK_ACTION_MOVE, time);
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
659 else
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
660 gdk_drag_status(context, GDK_ACTION_COPY, time);
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
661
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
662 return TRUE;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
663 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
664
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
665
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
666 void bar_pane_keywords_close(GtkWidget *bar)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
667 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
668 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
669
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
670 pkd = g_object_get_data(G_OBJECT(bar), "pane_data");
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
671 if (!pkd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
672
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
673 gtk_widget_destroy(pkd->widget);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
674 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
675
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
676 static void bar_pane_keywords_destroy(GtkWidget *widget, gpointer data)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
677 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
678 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
679
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
680 file_data_unregister_notify_func(bar_pane_keywords_notify_cb, pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
681
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
682 file_data_unref(pkd->fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
683 g_free(pkd->key);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
684
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
685 g_free(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
686 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
687
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
688 static GtkTreeModel *create_marks_list(void)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
689 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
690 GtkListStore *model;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
691 GtkTreeIter iter;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
692 gint i;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
693
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
694 /* create list store */
1305
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
695 model = gtk_list_store_new(1, G_TYPE_STRING);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
696 for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
697 {
1305
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
698 gchar str[10];
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
699 g_sprintf(str, " %d ", i + 1);
1346
c9949c19a6d0 No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents: 1343
diff changeset
700 gtk_list_store_append(model, &iter);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
701 gtk_list_store_set(model, &iter, 0, str, -1);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
702 }
1346
c9949c19a6d0 No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents: 1343
diff changeset
703 gtk_list_store_append(model, &iter);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
704 gtk_list_store_set(model, &iter, 0, " ... ", -1);
1305
2abdd6e50120 Glibification.
zas_
parents: 1295
diff changeset
705 return GTK_TREE_MODEL(model);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
706 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
707
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
708
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
709 GtkWidget *bar_pane_keywords_new(const gchar *title, const gchar *key, gboolean expanded)
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
710 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
711 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
712 GtkWidget *hbox;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
713 GtkWidget *scrolled;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
714 GtkTextBuffer *buffer;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
715 GtkTreeModel *store;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
716 GtkTreeViewColumn *column;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
717 GtkCellRenderer *renderer;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
718
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
719 pkd = g_new0(PaneKeywordsData, 1);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
720
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
721 pkd->pane.pane_set_fd = bar_pane_keywords_set_fd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
722 pkd->pane.pane_event = bar_pane_keywords_event;
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
723 pkd->pane.pane_write_config = bar_pane_keywords_write_config;
1389
c44f21235ffe Use a common function bar_pane_expander_title() to set expanders title widget.
zas_
parents: 1387
diff changeset
724 pkd->pane.title = bar_pane_expander_title(title);
1387
6f31fa931d3f simplified bar interface
nadvornik
parents: 1346
diff changeset
725
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
726 pkd->pane.expanded = expanded;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
727
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
728 pkd->key = g_strdup(key);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
729
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
730
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
731 hbox = gtk_hbox_new(FALSE, PREF_PAD_GAP);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
732
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
733 pkd->widget = hbox;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
734 g_object_set_data(G_OBJECT(pkd->widget), "pane_data", pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
735 g_signal_connect(G_OBJECT(pkd->widget), "destroy",
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
736 G_CALLBACK(bar_pane_keywords_destroy), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
737 gtk_widget_show(hbox);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
738
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
739 scrolled = gtk_scrolled_window_new(NULL, NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
740 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
741 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
742 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
743 gtk_box_pack_start(GTK_BOX(hbox), scrolled, TRUE, TRUE, 0);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
744 gtk_widget_show(scrolled);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
745
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
746 pkd->keyword_view = gtk_text_view_new();
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
747 gtk_container_add(GTK_CONTAINER(scrolled), pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
748 g_signal_connect(G_OBJECT(pkd->keyword_view), "populate-popup",
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
749 G_CALLBACK(bar_pane_keywords_populate_popup_cb), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
750 gtk_widget_show(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
751
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
752 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pkd->keyword_view));
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
753 g_signal_connect(G_OBJECT(buffer), "changed",
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
754 G_CALLBACK(bar_pane_keywords_changed), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
755
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
756 scrolled = gtk_scrolled_window_new(NULL, NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
757 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
758 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
759 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
760 gtk_box_pack_start(GTK_BOX(hbox), scrolled, TRUE, TRUE, 0);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
761 gtk_widget_show(scrolled);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
762
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
763
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
764 if (!keyword_tree) keyword_tree_new_default();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
765
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
766 store = gtk_tree_model_filter_new(GTK_TREE_MODEL(keyword_tree), NULL);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
767
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
768 gtk_tree_model_filter_set_modify_func(GTK_TREE_MODEL_FILTER(store),
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
769 FILTER_KEYWORD_COLUMN_COUNT,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
770 filter_keyword_column_types,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
771 bar_pane_keywords_filter_modify,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
772 pkd,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
773 NULL);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
774
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
775 pkd->keyword_treeview = gtk_tree_view_new_with_model(store);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
776 g_object_unref(store);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
777
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
778 gtk_widget_set_size_request(pkd->keyword_treeview, -1, 400);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
779
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
780 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(pkd->keyword_treeview), FALSE);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
781
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
782 // gtk_tree_view_set_search_column(GTK_TREE_VIEW(pkd->keyword_treeview), FILTER_KEYWORD_COLUMN_);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
783
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
784 column = gtk_tree_view_column_new();
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
785 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_GROW_ONLY);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
786
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
787 renderer = gtk_cell_renderer_combo_new();
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
788 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE,
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
789 "model", create_marks_list(),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
790 "text-column", 0,
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
791 "has-entry", FALSE,
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
792 NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
793
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
794 gtk_tree_view_column_pack_start(column, renderer, TRUE);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
795 gtk_tree_view_column_add_attribute(column, renderer, "text", FILTER_KEYWORD_COLUMN_MARK);
1346
c9949c19a6d0 No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents: 1343
diff changeset
796 g_signal_connect(renderer, "edited",
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
797 G_CALLBACK (bar_pane_keywords_mark_edited), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
798 gtk_tree_view_append_column(GTK_TREE_VIEW(pkd->keyword_treeview), column);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
799
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
800
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
801 column = gtk_tree_view_column_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
802 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
803 renderer = gtk_cell_renderer_toggle_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
804 gtk_tree_view_column_pack_start(column, renderer, FALSE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
805 gtk_tree_view_column_add_attribute(column, renderer, "active", FILTER_KEYWORD_COLUMN_TOGGLE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
806 gtk_tree_view_column_add_attribute(column, renderer, "visible", FILTER_KEYWORD_COLUMN_IS_KEYWORD);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
807 g_signal_connect(G_OBJECT(renderer), "toggled",
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
808 G_CALLBACK(bar_pane_keywords_keyword_toggle), pkd);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
809
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
810 renderer = gtk_cell_renderer_text_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
811 gtk_tree_view_column_pack_start(column, renderer, TRUE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
812 gtk_tree_view_column_add_attribute(column, renderer, "text", FILTER_KEYWORD_COLUMN_NAME);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
813
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
814 gtk_tree_view_append_column(GTK_TREE_VIEW(pkd->keyword_treeview), column);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
815 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(pkd->keyword_treeview), column);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
816
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
817 gtk_drag_source_set(pkd->keyword_treeview,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
818 GDK_BUTTON1_MASK | GDK_BUTTON2_MASK,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
819 bar_pane_keywords_drag_types, n_keywords_drag_types,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
820 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
821
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
822 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_data_get",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
823 G_CALLBACK(bar_pane_keywords_dnd_get), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
824
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
825 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_begin",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
826 G_CALLBACK(bar_pane_keywords_dnd_begin), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
827 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_end",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
828 G_CALLBACK(bar_pane_keywords_dnd_end), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
829
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
830 gtk_drag_dest_set(pkd->keyword_treeview,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
831 GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_DROP,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
832 bar_pane_keywords_drop_types, n_keywords_drop_types,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
833 GDK_ACTION_COPY | GDK_ACTION_MOVE);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
834
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
835 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_data_received",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
836 G_CALLBACK(bar_pane_keywords_dnd_receive), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
837
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
838 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_motion",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
839 G_CALLBACK(bar_pane_keywords_dnd_motion), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
840
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
841 gtk_container_add(GTK_CONTAINER(scrolled), pkd->keyword_treeview);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
842 gtk_widget_show(pkd->keyword_treeview);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
843
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
844 file_data_register_notify_func(bar_pane_keywords_notify_cb, pkd, NOTIFY_PRIORITY_LOW);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
845
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
846 return pkd->widget;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
847 }
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
848
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
849 GtkWidget *bar_pane_keywords_new_from_config(const gchar **attribute_names, const gchar **attribute_values)
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
850 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
851 gchar *title = g_strdup(_("NoName"));
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
852 gchar *key = g_strdup(COMMENT_KEY);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
853 gboolean expanded = TRUE;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
854
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
855 while (*attribute_names)
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
856 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
857 const gchar *option = *attribute_names++;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
858 const gchar *value = *attribute_values++;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
859
1315
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
860 if (READ_CHAR_FULL("pane.title", title)) continue;
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
861 if (READ_CHAR_FULL("key", key)) continue;
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
862 if (READ_BOOL_FULL("pane.expanded", expanded)) continue;
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
863
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
864
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
865 DEBUG_1("unknown attribute %s = %s", option, value);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
866 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
867
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
868 return bar_pane_keywords_new(title, key, expanded);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
869 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
870
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
871 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */