annotate src/bar_keywords.c @ 1428:3019f5d3a3c7

added keyword tree filtering
author nadvornik
date Fri, 13 Mar 2009 16:45:21 +0000
parents 80462be81410
children 985366bccfb8
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
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
117 GtkTreePath *click_tpath;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
118
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
119 gboolean expand_checked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
120 gboolean collapse_unchecked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
121 gboolean hide_unchecked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
122
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
123 FileData *fd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
124 gchar *key;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
125 };
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
126
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
127 typedef struct _ConfDialogData ConfDialogData;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
128 struct _ConfDialogData
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
129 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
130 PaneKeywordsData *pkd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
131 GtkTreePath *click_tpath;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
132
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
133 /* dialog parts */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
134 GenericDialog *gd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
135 GtkWidget *edit_widget;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
136 gboolean is_keyword;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
137
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
138 gboolean edit_existing;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
139 };
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
140
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
141 static GList *bar_list = NULL;
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
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
144 static void bar_pane_keywords_write(PaneKeywordsData *pkd)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
145 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
146 GList *list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
147
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
148 if (!pkd->fd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
149
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
150 list = keyword_list_pull(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
151
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
152 metadata_write_list(pkd->fd, KEYWORD_KEY, list);
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 string_list_free(list);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
155 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
156
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
157 gboolean bar_keyword_tree_expand_if_set_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
158 {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
159 PaneKeywordsData *pkd = data;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
160 gboolean set;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
161
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
162 gtk_tree_model_get(model, iter, FILTER_KEYWORD_COLUMN_TOGGLE, &set, -1);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
163
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
164 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
165 {
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
166 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
167 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
168 return FALSE;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
169 }
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
170
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
171 gboolean bar_keyword_tree_collapse_if_unset_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
172 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
173 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
174 gboolean set;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
175 gboolean is_keyword;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
176
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
177 gtk_tree_model_get(model, iter, FILTER_KEYWORD_COLUMN_TOGGLE, &set,
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
178 FILTER_KEYWORD_COLUMN_IS_KEYWORD, &is_keyword, -1);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
179
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
180 if (is_keyword && !set && gtk_tree_view_row_expanded(GTK_TREE_VIEW(pkd->keyword_treeview), path))
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
181 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
182 gtk_tree_view_collapse_row(GTK_TREE_VIEW(pkd->keyword_treeview), path);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
183 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
184 return FALSE;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
185 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
186
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
187 static void bar_keyword_tree_sync(PaneKeywordsData *pkd)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
188 {
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
189 GtkTreeModel *model;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
190
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
191 GtkTreeModel *keyword_tree;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
192 GList *keywords;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
193
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
194 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
195 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
196
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
197 keywords = keyword_list_pull(pkd->keyword_view);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
198 keyword_show_set_in(GTK_TREE_STORE(keyword_tree), model, keywords);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
199 if (pkd->hide_unchecked) keyword_hide_unset_in(GTK_TREE_STORE(keyword_tree), model, keywords);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
200 string_list_free(keywords);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
201
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
202 gtk_tree_model_filter_refilter(GTK_TREE_MODEL_FILTER(model));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
203
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
204 if (pkd->expand_checked) gtk_tree_model_foreach(model, bar_keyword_tree_expand_if_set_cb, pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
205 if (pkd->collapse_unchecked) gtk_tree_model_foreach(model, bar_keyword_tree_collapse_if_unset_cb, pkd);
1291
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
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
208 static void bar_pane_keywords_keyword_update_all(void)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
209 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
210 GList *work;
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 work = bar_list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
213 while (work)
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 PaneKeywordsData *pkd;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
216 // GList *keywords;
1291
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 pkd = work->data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
219 work = work->next;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
220
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
221 bar_keyword_tree_sync(pkd);
1291
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 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
224
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
225 static void bar_pane_keywords_update(PaneKeywordsData *pkd)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
226 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
227 GList *keywords = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
228 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
229
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
230 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
231
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
232 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
233 keyword_list_push(pkd->keyword_view, keywords);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
234 bar_keyword_tree_sync(pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
235 string_list_free(keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
236
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
237 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
238
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
239 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
240
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
241 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
242 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
243 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
244
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
245 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
246 if (!pkd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
247
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
248 file_data_unref(pkd->fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
249 pkd->fd = file_data_ref(fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
250
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
251 bar_pane_keywords_update(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
252 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
253
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
254 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
255 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
256 PaneKeywordsData *pkd;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
257
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
258 pkd = g_object_get_data(G_OBJECT(pane), "pane_data");
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
259 if (!pkd) return;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
260
1314
8cca18bce950 simplified config writing
nadvornik
parents: 1309
diff changeset
261 WRITE_STRING("<pane_keywords\n");
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
262 indent++;
1343
eebb8d0cb677 give the panes more control over expander title
nadvornik
parents: 1340
diff changeset
263 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
264 WRITE_BOOL(*pkd, pane.expanded);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
265 WRITE_CHAR(*pkd, key);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
266 indent--;
1314
8cca18bce950 simplified config writing
nadvornik
parents: 1309
diff changeset
267 WRITE_STRING("/>\n");
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
268 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
269
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
270 gint bar_pane_keywords_event(GtkWidget *bar, GdkEvent *event)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
271 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
272 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
273
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
274 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
275 if (!pkd) return FALSE;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
276
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
277 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
278
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
279 return FALSE;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
280 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
281
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
282 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
283 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
284 PaneKeywordsData *pkd = data;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
285 GtkTreeModel *model;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
286 GtkTreeIter iter;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
287 GtkTreePath *tpath;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
288 gboolean active;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
289 GList *list;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
290 GtkTreeIter child_iter;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
291 GtkTreeModel *keyword_tree;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
292
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
293 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
294
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
295 tpath = gtk_tree_path_new_from_string(path);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
296 gtk_tree_model_get_iter(model, &iter, tpath);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
297 gtk_tree_path_free(tpath);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
298
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
299 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
300 active = (!active);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
301
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 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
304 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
305
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
306 list = keyword_list_pull(pkd->keyword_view);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
307 if (active)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
308 keyword_tree_set(keyword_tree, &child_iter, &list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
309 else
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
310 keyword_tree_reset(keyword_tree, &child_iter, &list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
311
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
312 keyword_list_push(pkd->keyword_view, list);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
313 string_list_free(list);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
314 /*
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
315 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
316 bar_keyword_tree_sync(pkd);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
317 */
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
318 }
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
319
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
320 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
321 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
322 PaneKeywordsData *pkd = data;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
323 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
324 GtkTreeIter child_iter;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
325
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
326 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
327
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
328 memset(value, 0, sizeof (GValue));
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
329
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
330 switch (column)
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
331 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
332 case FILTER_KEYWORD_COLUMN_TOGGLE:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
333 {
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
334 GList *keywords = keyword_list_pull(pkd->keyword_view);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
335 gboolean set = keyword_tree_is_set(keyword_tree, &child_iter, keywords);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
336 string_list_free(keywords);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
337
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
338 g_value_init(value, G_TYPE_BOOLEAN);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
339 g_value_set_boolean(value, set);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
340 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
341 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
342 case FILTER_KEYWORD_COLUMN_MARK:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
343 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
344 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
345 case FILTER_KEYWORD_COLUMN_NAME:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
346 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
347 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
348 case FILTER_KEYWORD_COLUMN_IS_KEYWORD:
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
349 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
350 break;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
351 }
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
352 return;
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
353
1291
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
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
356 gboolean bar_pane_keywords_filter_visible(GtkTreeModel *keyword_tree, GtkTreeIter *iter, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
357 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
358 GtkTreeModel *filter = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
359
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
360 return !keyword_is_hidden_in(keyword_tree, iter, filter);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
361 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
362
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
363 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
364 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
365 GList *keywords = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
366 GList *list = NULL;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
367 GList *work;
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 keywords = keyword_list_pull(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
370
1387
6f31fa931d3f simplified bar interface
nadvornik
parents: 1346
diff changeset
371 list = layout_selection_list(pkd->pane.lw);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
372 work = list;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
373 while (work)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
374 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
375 FileData *fd = work->data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
376 work = work->next;
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 if (append)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
379 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
380 metadata_append_list(fd, KEYWORD_KEY, keywords);
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 else
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 metadata_write_list(fd, KEYWORD_KEY, keywords);
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 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
387
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
388 filelist_free(list);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
389 string_list_free(keywords);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
390 }
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 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
393 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
394 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
395
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
396 bar_pane_keywords_set_selection(pkd, TRUE);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
397 }
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 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
400 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
401 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
402
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
403 bar_pane_keywords_set_selection(pkd, FALSE);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
404 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
405
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
406 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
407 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
408 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
409
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
410 menu_item_add_divider(GTK_WIDGET(menu));
1295
8c59e6e50bd8 Fix up few compilation warnings.
zas_
parents: 1292
diff changeset
411 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
412 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
413 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
414
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 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
417 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
418 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
419 if (fd == pkd->fd) bar_pane_keywords_update(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
420 }
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 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
423 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
424 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
425
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
426 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
427 bar_pane_keywords_write(pkd);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
428 bar_keyword_tree_sync(pkd);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
429 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
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
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
433 /*
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
434 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
435 * dnd
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
436 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
437 */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
438
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
439
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
440 static GtkTargetEntry bar_pane_keywords_drag_types[] = {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
441 { TARGET_APP_KEYWORD_PATH_STRING, GTK_TARGET_SAME_WIDGET, TARGET_APP_KEYWORD_PATH },
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
442 { "text/plain", 0, TARGET_TEXT_PLAIN }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
443 };
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
444 static gint n_keywords_drag_types = 2;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
445
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
446
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
447 static GtkTargetEntry bar_pane_keywords_drop_types[] = {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
448 { TARGET_APP_KEYWORD_PATH_STRING, GTK_TARGET_SAME_WIDGET, TARGET_APP_KEYWORD_PATH },
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
449 { "text/plain", 0, TARGET_TEXT_PLAIN }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
450 };
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
451 static gint n_keywords_drop_types = 2;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
452
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
453
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
454 static void bar_pane_keywords_dnd_get(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
455 GtkSelectionData *selection_data, guint info,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
456 guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
457 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
458 GtkTreeIter iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
459 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
460 GtkTreeIter child_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
461 GtkTreeModel *keyword_tree;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
462
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
463 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
464
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
465 if (!gtk_tree_selection_get_selected(sel, &model, &iter)) return;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
466
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
467 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
468 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
469
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
470 switch (info)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
471 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
472 case TARGET_APP_KEYWORD_PATH:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
473 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
474 GList *path = keyword_tree_get_path(keyword_tree, &child_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
475 gtk_selection_data_set(selection_data, selection_data->target,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
476 8, (gpointer) &path, sizeof(path));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
477 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
478 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
479
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
480 case TARGET_TEXT_PLAIN:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
481 default:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
482 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
483 gchar *name = keyword_get_name(keyword_tree, &child_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
484 gtk_selection_data_set_text(selection_data, name, -1);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
485 g_free(name);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
486 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
487 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
488 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
489 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
490
1393
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
491 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
492 {
1393
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
493 GtkTreeIter iter;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
494 GtkTreeModel *model;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
495 GtkTreeIter child_iter;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
496 GtkTreeModel *keyword_tree;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
497 gchar *name;
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
498
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
499 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
500
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
501 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
502
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
503 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
504 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
505
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
506 name = keyword_get_name(keyword_tree, &child_iter);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
507
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
508 dnd_set_drag_label(tree_view, context, name);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
509 g_free(name);
79b32088ecc4 show a label instead of the default drag icon
nadvornik
parents: 1392
diff changeset
510
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
511 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
512
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
513 static void bar_pane_keywords_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
514 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
515 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
516
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
517 static void bar_pane_keywords_dnd_receive(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
518 gint x, gint y,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
519 GtkSelectionData *selection_data, guint info,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
520 guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
521 {
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
522 PaneKeywordsData *pkd = data;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
523 GtkTreePath *tpath = NULL;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
524 GtkTreeViewDropPosition pos;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
525 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
526
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
527 GtkTreeModel *keyword_tree;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
528 gboolean src_valid = FALSE;
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
529 GList *new_keywords = NULL;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
530 GList *work;
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
531
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
532 /* iterators for keyword_tree */
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
533 GtkTreeIter src_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
534 GtkTreeIter dest_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
535 GtkTreeIter new_kw_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
536
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
537 g_signal_stop_emission_by_name(tree_view, "drag_data_received");
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
538
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
539 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(tree_view), NULL, pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
540
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
541 model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
542 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
543
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
544 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
545
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
546
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
547 switch (info)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
548 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
549 case TARGET_APP_KEYWORD_PATH:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
550 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
551 GList *path = *(gpointer *)selection_data->data;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
552 src_valid = keyword_tree_get_iter(keyword_tree, &src_kw_iter, path);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
553 string_list_free(path);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
554 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
555 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
556 default:
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
557 new_keywords = string_to_keywords_list((gchar *)selection_data->data);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
558 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
559 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
560
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
561 if (tpath)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
562 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
563 GtkTreeIter dest_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
564 gtk_tree_model_get_iter(model, &dest_iter, tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
565 gtk_tree_path_free(tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
566 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
567
1395
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
568 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
569 {
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
570 /* can't move to it's own child */
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
571 return;
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
572 }
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
573
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
574 if (src_valid && keyword_compare(keyword_tree, &src_kw_iter, &dest_kw_iter) == 0)
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
575 {
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
576 /* can't move to itself */
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
577 return;
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
578 }
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
579
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
580 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
581 !gtk_tree_model_iter_has_child(keyword_tree, &dest_kw_iter))
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
582 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
583 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
584 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
585 else
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
586 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
587 switch (pos)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
588 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
589 case GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
590 case GTK_TREE_VIEW_DROP_BEFORE:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
591 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
592 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
593 case GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
594 case GTK_TREE_VIEW_DROP_AFTER:
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
595 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
596 break;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
597 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
598 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
599 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
600 else
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
601 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
602 gtk_tree_store_append(GTK_TREE_STORE(keyword_tree), &new_kw_iter, NULL);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
603 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
604
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
605
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
606 if (src_valid)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
607 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
608 keyword_move_recursive(GTK_TREE_STORE(keyword_tree), &new_kw_iter, &src_kw_iter);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
609 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
610
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
611 work = new_keywords;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
612 while (work)
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
613 {
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
614 keyword_set(GTK_TREE_STORE(keyword_tree), &new_kw_iter, work->data, TRUE);
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
615 work = work->next;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
616 if (work)
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
617 {
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
618 GtkTreeIter add;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
619 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
620 new_kw_iter = add;
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
621 }
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
622 }
1394
bec57fa486f4 allow dropping of multiple keywords
nadvornik
parents: 1393
diff changeset
623 string_list_free(new_keywords);
1396
58f0b4586c8c dnd fixes
nadvornik
parents: 1395
diff changeset
624 bar_keyword_tree_sync(pkd);
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
625 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
626
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
627 static gint bar_pane_keywords_dnd_motion(GtkWidget *tree_view, GdkDragContext *context,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
628 gint x, gint y, guint time, gpointer data)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
629 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
630 GtkTreePath *tpath = NULL;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
631 GtkTreeViewDropPosition pos;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
632 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
633 if (tpath)
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
634 {
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
635 GtkTreeModel *model;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
636 GtkTreeIter dest_iter;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
637 model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view));
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
638 gtk_tree_model_get_iter(model, &dest_iter, tpath);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
639 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
640 pos = GTK_TREE_VIEW_DROP_BEFORE;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
641
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
642 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
643 pos = GTK_TREE_VIEW_DROP_AFTER;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
644 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
645
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
646 gtk_tree_view_set_drag_dest_row(GTK_TREE_VIEW(tree_view), tpath, pos);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
647 gtk_tree_path_free(tpath);
1395
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
648
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
649 if (tree_view == gtk_drag_get_source_widget(context))
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
650 gdk_drag_status(context, GDK_ACTION_MOVE, time);
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
651 else
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
652 gdk_drag_status(context, GDK_ACTION_COPY, time);
e86d8facbdae dnd fixes
nadvornik
parents: 1394
diff changeset
653
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
654 return TRUE;
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
655 }
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
656
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
657 /*
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
658 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
659 * edit dialog
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
660 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
661 */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
662
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
663 static void bar_pane_keywords_edit_destroy_cb(GtkWidget *widget, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
664 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
665 ConfDialogData *cdd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
666 gtk_tree_path_free(cdd->click_tpath);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
667 g_free(cdd);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
668 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
669
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
670
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
671 static void bar_pane_keywords_edit_cancel_cb(GenericDialog *gd, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
672 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
673 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
674
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
675
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
676 static void bar_pane_keywords_edit_ok_cb(GenericDialog *gd, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
677 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
678 ConfDialogData *cdd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
679 PaneKeywordsData *pkd = cdd->pkd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
680 GtkTreeModel *model;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
681
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
682 GtkTreeModel *keyword_tree;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
683 GtkTreeIter kw_iter;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
684
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
685 gboolean have_dest = FALSE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
686
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
687 GList *keywords;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
688
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
689 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
690 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
691
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
692 if (cdd->click_tpath)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
693 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
694 GtkTreeIter iter;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
695 if (gtk_tree_model_get_iter(model, &iter, cdd->click_tpath))
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
696 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
697 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &kw_iter, &iter);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
698 have_dest = TRUE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
699 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
700 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
701
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
702 if (cdd->edit_existing && !have_dest) return;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
703
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
704 keywords = keyword_list_pull(cdd->edit_widget);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
705
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
706 if (cdd->edit_existing)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
707 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
708 if (keywords && keywords->data) /* there should be one keyword */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
709 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
710 keyword_set(GTK_TREE_STORE(keyword_tree), &kw_iter, keywords->data, cdd->is_keyword);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
711 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
712 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
713 else
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
714 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
715 GList *work = keywords;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
716
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
717 while (work)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
718 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
719 GtkTreeIter add;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
720 if (have_dest)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
721 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
722 gtk_tree_store_insert_after(GTK_TREE_STORE(keyword_tree), &add, NULL, &kw_iter);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
723 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
724 else
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
725 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
726 gtk_tree_store_append(GTK_TREE_STORE(keyword_tree), &add, NULL);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
727 have_dest = TRUE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
728 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
729 kw_iter = add;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
730 keyword_set(GTK_TREE_STORE(keyword_tree), &kw_iter, work->data, cdd->is_keyword);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
731 work = work->next;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
732 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
733 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
734 string_list_free(keywords);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
735 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
736
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
737 static void bar_pane_keywords_conf_set_helper(GtkWidget *widget, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
738 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
739 ConfDialogData *cdd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
740 cdd->is_keyword = FALSE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
741 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
742
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
743 static void bar_pane_keywords_conf_set_kw(GtkWidget *widget, gpointer data)
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
744 {
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
745 ConfDialogData *cdd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
746 cdd->is_keyword = TRUE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
747 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
748
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
749
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
750
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
751 static void bar_pane_keywords_edit_dialog(PaneKeywordsData *pkd, gboolean edit_existing)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
752 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
753 ConfDialogData *cdd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
754 GenericDialog *gd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
755 GtkWidget *table;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
756 GtkWidget *group;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
757 GtkWidget *button;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
758
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
759 gchar *name = NULL;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
760 gboolean is_keyword = TRUE;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
761
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
762
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
763 if (edit_existing && pkd->click_tpath)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
764 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
765 GtkTreeModel *model;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
766 GtkTreeIter iter;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
767 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
768
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
769 if (gtk_tree_model_get_iter(model, &iter, pkd->click_tpath))
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
770 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
771 gtk_tree_model_get(model, &iter, FILTER_KEYWORD_COLUMN_NAME, &name,
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
772 FILTER_KEYWORD_COLUMN_IS_KEYWORD, &is_keyword, -1);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
773 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
774 else
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
775 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
776 return;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
777 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
778 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
779
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
780 if (edit_existing && !name) return;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
781
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
782
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
783 cdd = g_new0(ConfDialogData, 1);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
784 cdd->pkd =pkd;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
785 cdd->click_tpath = pkd->click_tpath;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
786 pkd->click_tpath = NULL;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
787 cdd->is_keyword = is_keyword;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
788 cdd->edit_existing = edit_existing;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
789
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
790 cdd->gd = gd = generic_dialog_new(name ? _("Edit keyword") : _("Add keywords"), "keyword_edit",
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
791 pkd->widget, TRUE,
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
792 bar_pane_keywords_edit_cancel_cb, cdd);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
793 g_signal_connect(G_OBJECT(gd->dialog), "destroy",
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
794 G_CALLBACK(bar_pane_keywords_edit_destroy_cb), cdd);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
795
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
796
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
797 generic_dialog_add_message(gd, NULL, name ? _("Configure keyword") : _("Add keyword"), NULL);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
798
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
799 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL,
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
800 bar_pane_keywords_edit_ok_cb, TRUE);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
801
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
802 table = pref_table_new(gd->vbox, 3, 1, FALSE, TRUE);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
803 pref_table_label(table, 0, 0, _("Keyword:"), 1.0);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
804 cdd->edit_widget = gtk_entry_new();
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
805 gtk_widget_set_size_request(cdd->edit_widget, 300, -1);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
806 if (name) gtk_entry_set_text(GTK_ENTRY(cdd->edit_widget), name);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
807 gtk_table_attach_defaults(GTK_TABLE(table), cdd->edit_widget, 1, 2, 0, 1);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
808 /* here could eventually be a text view instead of entry */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
809 generic_dialog_attach_default(gd, cdd->edit_widget);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
810 gtk_widget_show(cdd->edit_widget);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
811
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
812 group = pref_group_new(gd->vbox, FALSE, _("Keyword type:"), GTK_ORIENTATION_VERTICAL);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
813
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
814 button = pref_radiobutton_new(group, NULL, _("Active keyword"),
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
815 (cdd->is_keyword),
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
816 G_CALLBACK(bar_pane_keywords_conf_set_kw), cdd);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
817 button = pref_radiobutton_new(group, button, _("Helper"),
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
818 (!cdd->is_keyword),
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
819 G_CALLBACK(bar_pane_keywords_conf_set_helper), cdd);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
820 g_free(name);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
821
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
822 gtk_widget_show(gd->dialog);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
823 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
824
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
825
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
826
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
827
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
828 /*
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
829 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
830 * popup menu
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
831 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
832 */
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
833
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
834 static void bar_pane_keywords_edit_dialog_cb(GtkWidget *menu_widget, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
835 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
836 PaneKeywordsData *pkd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
837 bar_pane_keywords_edit_dialog(pkd, TRUE);
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
838 }
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
839
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
840 static void bar_pane_keywords_add_dialog_cb(GtkWidget *menu_widget, gpointer data)
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
841 {
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
842 PaneKeywordsData *pkd = data;
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
843 bar_pane_keywords_edit_dialog(pkd, FALSE);
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
844 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
845
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
846 static void bar_pane_keywords_connect_mark_cb(GtkWidget *menu_widget, gpointer data)
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
847 {
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
848 PaneKeywordsData *pkd = data;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
849
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
850 GtkTreeModel *model;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
851 GtkTreeIter iter;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
852
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
853 GtkTreeModel *keyword_tree;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
854 GtkTreeIter kw_iter;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
855
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
856 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(menu_widget), "mark")) - 1;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
857
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
858 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
859 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
860
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
861 if (!pkd->click_tpath) return;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
862 if (!gtk_tree_model_get_iter(model, &iter, pkd->click_tpath)) return;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
863
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
864 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &kw_iter, &iter);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
865
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
866 file_data_unregister_notify_func(bar_pane_keywords_notify_cb, pkd);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
867
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
868 meta_data_connect_mark_with_keyword(keyword_tree, &kw_iter, mark);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
869
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
870 file_data_register_notify_func(bar_pane_keywords_notify_cb, pkd, NOTIFY_PRIORITY_LOW);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
871 // bar_pane_keywords_update(pkd);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
872 }
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
873
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
874
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
875 static void bar_pane_keywords_delete_cb(GtkWidget *menu_widget, gpointer data)
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
876 {
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
877 PaneKeywordsData *pkd = data;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
878 GtkTreeModel *model;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
879 GtkTreeIter iter;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
880
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
881 GtkTreeModel *keyword_tree;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
882 GtkTreeIter kw_iter;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
883
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
884 if (!pkd->click_tpath) return;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
885
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
886 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
887 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
888
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
889 if (!gtk_tree_model_get_iter(model, &iter, pkd->click_tpath)) return;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
890 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &kw_iter, &iter);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
891
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
892 keyword_delete(GTK_TREE_STORE(keyword_tree), &kw_iter);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
893 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
894
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
895 static void bar_pane_keywords_hide_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
896 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
897 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
898 GtkTreeModel *model;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
899 GtkTreeIter iter;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
900
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
901 GtkTreeModel *keyword_tree;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
902 GtkTreeIter kw_iter;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
903
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
904 if (!pkd->click_tpath) return;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
905
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
906 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
907 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
908
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
909 if (!gtk_tree_model_get_iter(model, &iter, pkd->click_tpath)) return;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
910 gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model), &kw_iter, &iter);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
911
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
912 keyword_hide_in(GTK_TREE_STORE(keyword_tree), &kw_iter, model);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
913 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
914
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
915 static void bar_pane_keywords_show_all_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
916 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
917 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
918 GtkTreeModel *model;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
919
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
920 GtkTreeModel *keyword_tree;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
921
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
922 pkd->hide_unchecked = FALSE;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
923
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
924 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
925 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
926
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
927 keyword_show_all_in(GTK_TREE_STORE(keyword_tree), model);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
928 bar_keyword_tree_sync(pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
929 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
930
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
931 static void bar_pane_keywords_expand_checked_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
932 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
933 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
934 GtkTreeModel *model;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
935
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
936 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
937 gtk_tree_model_foreach(model, bar_keyword_tree_expand_if_set_cb, pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
938 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
939
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
940 static void bar_pane_keywords_collapse_unchecked_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
941 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
942 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
943 GtkTreeModel *model;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
944
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
945 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
946 gtk_tree_model_foreach(model, bar_keyword_tree_collapse_if_unset_cb, pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
947 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
948
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
949 static void bar_pane_keywords_hide_unchecked_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
950 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
951 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
952 GtkTreeModel *model;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
953
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
954 GtkTreeModel *keyword_tree;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
955 GList *keywords;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
956
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
957 model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
958 keyword_tree = gtk_tree_model_filter_get_model(GTK_TREE_MODEL_FILTER(model));
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
959
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
960 keywords = keyword_list_pull(pkd->keyword_view);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
961 keyword_hide_unset_in(GTK_TREE_STORE(keyword_tree), model, keywords);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
962 string_list_free(keywords);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
963 bar_keyword_tree_sync(pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
964 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
965
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
966 static void bar_pane_keywords_expand_checked_toggle_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
967 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
968 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
969 pkd->expand_checked = !pkd->expand_checked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
970 bar_keyword_tree_sync(pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
971 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
972
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
973 static void bar_pane_keywords_collapse_unchecked_toggle_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
974 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
975 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
976 pkd->collapse_unchecked = !pkd->collapse_unchecked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
977 bar_keyword_tree_sync(pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
978 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
979
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
980 static void bar_pane_keywords_hide_unchecked_toggle_cb(GtkWidget *menu_widget, gpointer data)
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
981 {
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
982 PaneKeywordsData *pkd = data;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
983 pkd->hide_unchecked = !pkd->hide_unchecked;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
984 bar_keyword_tree_sync(pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
985 }
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
986
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
987 static void bar_pane_keywords_menu_popup(GtkWidget *widget, PaneKeywordsData *pkd, gint x, gint y)
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
988 {
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
989 GtkWidget *menu;
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
990 GtkWidget *item;
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
991 GtkWidget *submenu;
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
992 GtkTreeViewDropPosition pos;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
993
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
994 if (pkd->click_tpath) gtk_tree_path_free(pkd->click_tpath);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
995 pkd->click_tpath = NULL;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
996 gtk_tree_view_get_dest_row_at_pos(GTK_TREE_VIEW(pkd->keyword_treeview), x, y, &pkd->click_tpath, &pos);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
997
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
998 menu = popup_menu_short_lived();
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
999
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1000 if (pkd->click_tpath)
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1001 {
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1002 /* for the entry */
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1003 gchar *text;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1004 gchar *mark;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1005 gint i;
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1006
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1007 GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(pkd->keyword_treeview));
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1008
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1009 GtkTreeIter iter;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1010 gtk_tree_model_get_iter(model, &iter, pkd->click_tpath);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1011 gchar *name;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1012
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1013 gtk_tree_model_get(model, &iter, FILTER_KEYWORD_COLUMN_NAME, &name,
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1014 FILTER_KEYWORD_COLUMN_MARK, &mark, -1);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1015
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1016 text = g_strdup_printf(_("Hide \"%s\""), name);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1017 menu_item_add_stock(menu, text, GTK_STOCK_EDIT, G_CALLBACK(bar_pane_keywords_hide_cb), pkd);
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1018 g_free(text);
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1019
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1020 submenu = gtk_menu_new();
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1021 for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1022 {
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1023 text = g_strdup_printf(_("Mark %d"), i + 1);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1024 item = menu_item_add(submenu, text, G_CALLBACK(bar_pane_keywords_connect_mark_cb), pkd);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1025 g_object_set_data(G_OBJECT(item), "mark", GINT_TO_POINTER(i + 1));
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1026 g_free(text);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1027 }
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1028 text = g_strdup_printf(_("Connect \"%s\" to mark"), name);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1029 item = menu_item_add(menu, text, NULL, NULL);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1030 gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1031 g_free(text);
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1032
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1033 menu_item_add_divider(menu);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1034
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1035 text = g_strdup_printf(_("Edit \"%s\""), name);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1036 menu_item_add_stock(menu, text, GTK_STOCK_EDIT, G_CALLBACK(bar_pane_keywords_edit_dialog_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1037 g_free(text);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1038 text = g_strdup_printf(_("Delete \"%s\""), name);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1039 menu_item_add_stock(menu, text, GTK_STOCK_DELETE, G_CALLBACK(bar_pane_keywords_delete_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1040 g_free(text);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1041
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1042
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1043 if (mark && mark[0])
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1044 {
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1045 text = g_strdup_printf(_("Disconnect \"%s\" from mark %s"), name, mark);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1046 menu_item_add_stock(menu, text, GTK_STOCK_DELETE, G_CALLBACK(bar_pane_keywords_connect_mark_cb), pkd);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1047 g_free(text);
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1048 }
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1049
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1050 menu_item_add_divider(menu);
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1051 g_free(mark);
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1052 g_free(name);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1053 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1054 /* for the pane */
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1055
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1056
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1057 menu_item_add(menu, _("Expand checked"), G_CALLBACK(bar_pane_keywords_expand_checked_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1058 menu_item_add(menu, _("Collapse unchecked"), G_CALLBACK(bar_pane_keywords_collapse_unchecked_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1059 menu_item_add(menu, _("Hide unchecked"), G_CALLBACK(bar_pane_keywords_hide_unchecked_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1060 menu_item_add(menu, _("Show all"), G_CALLBACK(bar_pane_keywords_show_all_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1061
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1062 submenu = gtk_menu_new();
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1063 item = menu_item_add(menu, _("On any change"), NULL, NULL);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1064 gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1065
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1066 menu_item_add_check(submenu, _("Expand checked"), pkd->expand_checked, G_CALLBACK(bar_pane_keywords_expand_checked_toggle_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1067 menu_item_add_check(submenu, _("Collapse unchecked"), pkd->collapse_unchecked, G_CALLBACK(bar_pane_keywords_collapse_unchecked_toggle_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1068 menu_item_add_check(submenu, _("Hide unchecked"), pkd->hide_unchecked, G_CALLBACK(bar_pane_keywords_hide_unchecked_toggle_cb), pkd);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1069
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1070 menu_item_add_divider(menu);
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1071
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1072 menu_item_add_stock(menu, _("Add keyword"), GTK_STOCK_EDIT, G_CALLBACK(bar_pane_keywords_add_dialog_cb), pkd);
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1073
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1074 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, 0, GDK_CURRENT_TIME);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1075 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1076
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1077
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1078 static gboolean bar_pane_keywords_menu_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data)
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1079 {
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1080 PaneKeywordsData *pkd = data;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1081 if (bevent->button == MOUSE_BUTTON_RIGHT)
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1082 {
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1083 bar_pane_keywords_menu_popup(widget, pkd, bevent->x, bevent->y);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1084 return TRUE;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1085 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1086 return FALSE;
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1087 }
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1088
1421
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1089 /*
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1090 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1091 * init
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1092 *-------------------------------------------------------------------
130054d9dd8a added a dialog for editing keyword tree
nadvornik
parents: 1414
diff changeset
1093 */
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1094
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1095 void bar_pane_keywords_close(GtkWidget *bar)
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1096 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1097 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1098
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1099 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
1100 if (!pkd) return;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1101
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1102 gtk_widget_destroy(pkd->widget);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1103 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1104
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1105 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
1106 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1107 PaneKeywordsData *pkd = data;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1108
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1109 if (pkd->click_tpath) gtk_tree_path_free(pkd->click_tpath);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1110
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1111 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
1112
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1113 file_data_unref(pkd->fd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1114 g_free(pkd->key);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1115
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1116 g_free(pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1117 }
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1118
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1119
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1120 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
1121 {
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1122 PaneKeywordsData *pkd;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1123 GtkWidget *hbox;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1124 GtkWidget *scrolled;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1125 GtkTextBuffer *buffer;
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1126 GtkTreeModel *store;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1127 GtkTreeViewColumn *column;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1128 GtkCellRenderer *renderer;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1129
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1130 pkd = g_new0(PaneKeywordsData, 1);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1131
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1132 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
1133 pkd->pane.pane_event = bar_pane_keywords_event;
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1134 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
1135 pkd->pane.title = bar_pane_expander_title(title);
1387
6f31fa931d3f simplified bar interface
nadvornik
parents: 1346
diff changeset
1136
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1137 pkd->pane.expanded = expanded;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1138
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1139 pkd->key = g_strdup(key);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1140
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1141 pkd->expand_checked = TRUE;
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1142
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1143 hbox = gtk_hbox_new(FALSE, PREF_PAD_GAP);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1144
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1145 pkd->widget = hbox;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1146 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
1147 g_signal_connect(G_OBJECT(pkd->widget), "destroy",
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1148 G_CALLBACK(bar_pane_keywords_destroy), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1149 gtk_widget_show(hbox);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1150
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1151 scrolled = gtk_scrolled_window_new(NULL, NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1152 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
1153 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1154 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1155 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
1156 gtk_widget_show(scrolled);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1157
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1158 pkd->keyword_view = gtk_text_view_new();
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1159 gtk_container_add(GTK_CONTAINER(scrolled), pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1160 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
1161 G_CALLBACK(bar_pane_keywords_populate_popup_cb), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1162 gtk_widget_show(pkd->keyword_view);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1163
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1164 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
1165 g_signal_connect(G_OBJECT(buffer), "changed",
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1166 G_CALLBACK(bar_pane_keywords_changed), pkd);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1167
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1168 scrolled = gtk_scrolled_window_new(NULL, NULL);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1169 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
1170 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1171 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1172 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
1173 gtk_widget_show(scrolled);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1174
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1175
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1176 if (!keyword_tree) keyword_tree_new_default();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1177
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1178 store = gtk_tree_model_filter_new(GTK_TREE_MODEL(keyword_tree), NULL);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1179
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1180 gtk_tree_model_filter_set_modify_func(GTK_TREE_MODEL_FILTER(store),
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1181 FILTER_KEYWORD_COLUMN_COUNT,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1182 filter_keyword_column_types,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1183 bar_pane_keywords_filter_modify,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1184 pkd,
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1185 NULL);
1428
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1186 gtk_tree_model_filter_set_visible_func(GTK_TREE_MODEL_FILTER(store),
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1187 bar_pane_keywords_filter_visible,
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1188 store,
3019f5d3a3c7 added keyword tree filtering
nadvornik
parents: 1425
diff changeset
1189 NULL);
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1190
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1191 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
1192 g_object_unref(store);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1193
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1194 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
1195
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1196 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
1197
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1198 // 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
1199
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1200 column = gtk_tree_view_column_new();
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1201 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
1202
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1203 renderer = gtk_cell_renderer_text_new();
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1204 gtk_tree_view_column_pack_start(column, renderer, TRUE);
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1205
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1206 gtk_tree_view_column_add_attribute(column, renderer, "text", FILTER_KEYWORD_COLUMN_MARK);
1425
80462be81410 fixed keyword to mark connection
nadvornik
parents: 1421
diff changeset
1207
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1208 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
1209
1391
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1210 column = gtk_tree_view_column_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1211 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1212 renderer = gtk_cell_renderer_toggle_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1213 gtk_tree_view_column_pack_start(column, renderer, FALSE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1214 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
1215 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
1216 g_signal_connect(G_OBJECT(renderer), "toggled",
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1217 G_CALLBACK(bar_pane_keywords_keyword_toggle), pkd);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1218
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1219 renderer = gtk_cell_renderer_text_new();
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1220 gtk_tree_view_column_pack_start(column, renderer, TRUE);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1221 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
1222
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1223 gtk_tree_view_append_column(GTK_TREE_VIEW(pkd->keyword_treeview), column);
9e0df7903581 implemented keywords editor as described at
nadvornik
parents: 1389
diff changeset
1224 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
1225
1392
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1226 gtk_drag_source_set(pkd->keyword_treeview,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1227 GDK_BUTTON1_MASK | GDK_BUTTON2_MASK,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1228 bar_pane_keywords_drag_types, n_keywords_drag_types,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1229 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1230
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1231 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_data_get",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1232 G_CALLBACK(bar_pane_keywords_dnd_get), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1233
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1234 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_begin",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1235 G_CALLBACK(bar_pane_keywords_dnd_begin), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1236 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_end",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1237 G_CALLBACK(bar_pane_keywords_dnd_end), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1238
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1239 gtk_drag_dest_set(pkd->keyword_treeview,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1240 GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_DROP,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1241 bar_pane_keywords_drop_types, n_keywords_drop_types,
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1242 GDK_ACTION_COPY | GDK_ACTION_MOVE);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1243
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1244 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_data_received",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1245 G_CALLBACK(bar_pane_keywords_dnd_receive), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1246
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1247 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "drag_motion",
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1248 G_CALLBACK(bar_pane_keywords_dnd_motion), pkd);
d1b32a69b40a dnd in keywords tree
nadvornik
parents: 1391
diff changeset
1249
1414
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1250 g_signal_connect(G_OBJECT(pkd->keyword_treeview), "button_press_event",
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1251 G_CALLBACK(bar_pane_keywords_menu_cb), pkd);
6ce1f7171d48 added a popup menu in keyword tree
nadvornik
parents: 1396
diff changeset
1252
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1253 gtk_container_add(GTK_CONTAINER(scrolled), pkd->keyword_treeview);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1254 gtk_widget_show(pkd->keyword_treeview);
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1255
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1256 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
1257
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1258 return pkd->widget;
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1259 }
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1260
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1261 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
1262 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1263 gchar *title = g_strdup(_("NoName"));
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1264 gchar *key = g_strdup(COMMENT_KEY);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1265 gboolean expanded = TRUE;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1266
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1267 while (*attribute_names)
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1268 {
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1269 const gchar *option = *attribute_names++;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1270 const gchar *value = *attribute_values++;
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1271
1315
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
1272 if (READ_CHAR_FULL("pane.title", title)) continue;
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
1273 if (READ_CHAR_FULL("key", key)) continue;
c1d108ab3388 Since READ_*() macros are now exported, do not hide
zas_
parents: 1314
diff changeset
1274 if (READ_BOOL_FULL("pane.expanded", expanded)) continue;
1309
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1275
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1276
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1277 DEBUG_1("unknown attribute %s = %s", option, value);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1278 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1279
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1280 return bar_pane_keywords_new(title, key, expanded);
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1281 }
55ea4962887a config file format changed to XML
nadvornik
parents: 1305
diff changeset
1282
1291
50ae02a4a675 replaced bar_info with an universal bar, restored the original
nadvornik
parents:
diff changeset
1283 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */