1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
/* gdict-entry.h - GtkEntry widget with dictionary completion
*
* Copyright (C) 2005 Emmanuele Bassi <ebassi@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtkentry.h>
#include <gtk/gtkentrycompletion.h>
#include <gtk/gtkliststore.h>
#include <glib/gi18n.h>
#include "gdict-entry.h"
#include "gdict-enum-types.h"
#include "gdict-marshal.h"
#include "gdict-utils.h"
#include "gdict-private.h"
#define GDICT_ENTRY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GDICT_TYPE_ENTRY, GdictEntryPrivate))
struct _GdictEntryPrivate
{
GdictContext *context;
gchar *database;
guint changed_id;
GtkEntryCompletion *completion;
gchar *word;
GList *results;
guint lookup_start_id;
guint lookup_end_id;
guint match_id;
guint error_id;
};
enum
{
PROP_0,
PROP_CONTEXT,
PROP_DATABASE,
PROP_STRATEGY
};
G_DEFINE_TYPE (GdictEntry, gdict_entry, GTK_TYPE_ENTRY);
static void gdict_entry_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void gdict_entry_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static void gdict_entry_finalize (GObject *object);
static void gdict_entry_lookup (GdictEntry *entry);
static void gdict_entry_changed (GtkEditable *editable,
gpointer user_data);
static void
gdict_entry_class_init (GdictEntryClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->set_property = gdict_entry_set_property;
gobject_class->get_property = gdict_entry_get_property;
gobject_class->finalize = gdict_entry_finalize;
/**
* GdictEntry:context
*
* The context object bound to this entry.
*
* Since: 0.1
*/
g_object_class_install_property (gobject_class,
PROP_CONTEXT,
g_param_spec_object ("context",
_("Context"),
_("The GdictContext object bound to this entry"),
GDICT_TYPE_CONTEXT,
(G_PARAM_READABLE | G_PARAM_WRITABLE)));
/**
* GdictEntry:database
*
* The database to be used for generating the completion list.
*
* Since: 1.0
*/
g_object_class_install_property (gobject_class,
PROP_DATABASE,
g_param_spec_string ("database",
_("Database"),
_("The database to be used to generate the completion list"),
NULL,
(G_PARAM_READABLE | G_PARAM_WRITABLE)));
/**
* GdictEntry:strategy
*
* The matching strategy to be used for generatin the completion list.
*
* Since: 1.0
*/
g_object_class_install_property (gobject_class,
PROP_STRATEGY,
g_param_spec_string ("strategy",
_("Strategy"),
_("The matching strategy to be used to generate the completion list"),
NULL,
(G_PARAM_READABLE | G_PARAM_WRITABLE)));
g_type_class_add_private (gobject_class, sizeof (GdictEntryPrivate));
}
static void
gdict_entry_init (GdictEntry *entry)
{
GdictEntryPrivate *priv = GDICT_ENTRY_GET_PRIVATE (entry);
GtkListStore *store;
entry->priv = priv;
priv->context = NULL;
priv->results = NULL;
priv->word = NULL;
priv->database = g_strdup (GDICT_DEFAULT_DATABASE);
priv->completion = gtk_entry_completion_new ();
store = gtk_list_store_new (1, G_TYPE_STRING);
gtk_entry_completion_set_model (priv->completion, GTK_TREE_MODEL (store));
g_object_unref (G_OBJECT (store));
gtk_entry_completion_set_text_column (priv->completion, 0);
gtk_entry_completion_set_popup_completion (priv->completion, TRUE);
gtk_entry_completion_set_minimum_key_length (priv->completion, 3);
gtk_entry_completion_set_inline_completion (priv->completion, TRUE);
gtk_entry_set_completion (GTK_ENTRY (entry), priv->completion);
priv->changed_id = g_signal_connect (entry, "changed",
G_CALLBACK (gdict_entry_changed), NULL);
}
static void
gdict_entry_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GdictEntry *entry = GDICT_ENTRY (object);
GdictEntryPrivate *priv = entry->priv;
switch (prop_id)
{
case PROP_CONTEXT:
if (priv->context)
g_object_unref (G_OBJECT (priv->context));
priv->context = g_value_get_object (value);
g_object_ref (priv->context);
break;
case PROP_DATABASE:
g_free (priv->database);
priv->database = g_strdup (g_value_get_string (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gdict_entry_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GdictEntry *entry = GDICT_ENTRY (object);
GdictEntryPrivate *priv = entry->priv;
switch (prop_id)
{
case PROP_CONTEXT:
g_value_set_object (value, priv->context);
break;
case PROP_DATABASE:
g_value_set_string (value, priv->database);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gdict_entry_finalize (GObject *object)
{
GdictEntry *entry = GDICT_ENTRY (object);
GdictEntryPrivate *priv = entry->priv;
if (priv->database)
g_free (priv->database);
if (priv->word)
g_free (priv->word);
if (priv->changed_id)
g_signal_handler_disconnect (entry, priv->changed_id);
if (priv->match_id)
{
g_signal_handler_disconnect (priv->context, priv->match_id);
priv->match_id = 0;
g_signal_handler_disconnect (priv->context, priv->lookup_start_id);
priv->lookup_start_id = 0;
g_signal_handler_disconnect (priv->context, priv->lookup_end_id);
priv->lookup_end_id = 0;
g_signal_handler_disconnect (priv->context, priv->error_id);
priv->error_id = 0;
}
if (priv->context)
g_object_unref (G_OBJECT (priv->context));
if (priv->results)
{
g_list_foreach (priv->results,
(GFunc) gdict_match_unref,
NULL);
g_list_free (priv->results);
priv->results = NULL;
}
G_OBJECT_CLASS (gdict_entry_parent_class)->finalize (object);
}
/**
* gdict_entry_new:
*
* Creates a new #GdictEntry widget. This widget is a simple entry with
* automatic completion bound to a #GdictContext. When the user begins
* typing a word, the #GtkEntryCompletion is filled with the matching words
* retrieved by the context.
*
* You must set a context for this widget by using gdict_entry_set_context().
*
* Return value: the newly created #GdictEntry widget.
*
* Since: 1.0
*/
GtkWidget *
gdict_entry_new (void)
{
return g_object_new (GDICT_TYPE_ENTRY, NULL);
}
/**
* gdict_entry_new_with_context:
* @context: a #GdictContext
*
* Creates a new #GdictEntry widget. This widget is a simple entry
* with automatic completion bound to a #GdictContext. When the user
* begins typing a word, the #GtkEntryCompletion is filled with the
* matching words retrieved by the context.
*
* You might change the context used by the widget by using the
* gdict_entry_set_context() function.
*
* Return value: the newly created #GdictEntry widget.
*
* Since: 1.0
*/
GtkWidget *
gdict_entry_new_with_context (GdictContext *context)
{
GtkWidget *retval;
g_return_val_if_fail (GDICT_IS_CONTEXT (context), NULL);
retval = g_object_new (GDICT_TYPE_ENTRY,
"context", context,
NULL);
return retval;
}
/**
* gdict_entry_set_context:
* @entry: a #GdictEntry
* @context: a #GdictContext
*
* Sets @context as the #GdictContext used by the entry.
*
* This function increases the reference count of @context.
*
* Since: 1.0
*/
void
gdict_entry_set_context (GdictEntry *entry,
GdictContext *context)
{
g_return_if_fail (GDICT_IS_ENTRY (entry));
g_return_if_fail (GDICT_IS_CONTEXT (context));
g_object_set (G_OBJECT (entry), "context", context, NULL);
}
/**
* gdict_entry_get_context:
* @entry: a #GdictEntry
*
* Retrieves the #GdictContext used by @entry.
*
* Return value: the context used by the entry
*
* Since: 1.0
*/
GdictContext *
gdict_entry_get_context (GdictEntry *entry)
{
g_return_val_if_fail (GDICT_IS_ENTRY (entry), NULL);
return entry->priv->context;
}
static void
lookup_start_cb (GdictContext *context,
GdictEntry *entry)
{
GdictEntryPrivate *priv;
GtkTreeModel *model;
g_assert (GDICT_IS_CONTEXT (context));
g_assert (GDICT_IS_ENTRY (entry));
priv = entry->priv;
model = gtk_entry_completion_get_model (priv->completion);
gtk_list_store_clear (GTK_LIST_STORE (model));
priv = entry->priv;
if (priv->results)
{
g_list_foreach (priv->results,
(GFunc) gdict_match_unref,
NULL);
g_list_free (priv->results);
priv->results = NULL;
}
}
static void
match_found_cb (GdictContext *context,
GdictMatch *match,
GdictEntry *entry)
{
GdictEntryPrivate *priv = entry->priv;
/* we must increase the reference count of the match object, since it
* will be unreferenced as soon as the callback is finished.
*/
priv->results = g_list_prepend (priv->results, gdict_match_ref (match));
}
static void
lookup_end_cb (GdictContext *context,
GdictEntry *entry)
{
GdictEntryPrivate *priv = entry->priv;
GtkTreeModel *model;
GtkTreeIter iter;
GList *l;
model = gtk_entry_completion_get_model (priv->completion);
/* no match found */
if (!priv->results)
return;
/* walk the list in _reverse_ order */
for (l = g_list_last (priv->results); l; l = l->prev)
{
GdictMatch *match = (GdictMatch *) l->data;
g_assert (match != NULL);
gtk_list_store_append (GTK_LIST_STORE (model), &iter);
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
0, g_strdup (gdict_match_get_word (match)),
-1);
}
/* destroy the results list */
g_list_foreach (priv->results,
(GFunc) gdict_match_unref,
NULL);
g_list_free (priv->results);
priv->results = NULL;
g_free (priv->word);
/* and finally complete */
gtk_entry_completion_complete (priv->completion);
}
static void
error_cb (GdictContext *context,
const GError *error,
GdictEntry *entry)
{
g_warning ("Error: %s\n", error->message);
}
static void
gdict_entry_changed (GtkEditable *editable,
gpointer user_data)
{
GdictEntry *entry = GDICT_ENTRY (editable);
if (!gtk_entry_get_text (GTK_ENTRY (entry)))
return;
gdict_entry_lookup (entry);
}
/* looks up the content of the entry using the context */
static void
gdict_entry_lookup (GdictEntry *entry)
{
GdictEntryPrivate *priv;
const gchar *text;
GError *match_error;
g_assert (GDICT_IS_ENTRY (entry));
priv = entry->priv;
g_assert (priv->context);
text = gtk_entry_get_text (GTK_ENTRY (entry));
if (!text)
return;
if (!priv->word)
priv->word = g_strdup (text);
else
{
if (g_str_has_prefix (text, priv->word))
{
g_free (priv->word);
priv->word = g_strdup (text);
return;
}
}
g_signal_connect (priv->context, "lookup-start",
G_CALLBACK (lookup_start_cb), entry);
g_signal_connect (priv->context, "lookup-end",
G_CALLBACK (lookup_end_cb), entry);
g_signal_connect (priv->context, "match-found",
G_CALLBACK (match_found_cb), entry);
g_signal_connect (priv->context, "error", G_CALLBACK (error_cb), entry);
match_error = NULL;
gdict_context_match_word (priv->context,
priv->database,
"prefix",
priv->word,
&match_error);
if (match_error)
{
g_warning ("Unable to match: %s\n", match_error->message);
g_error_free (match_error);
return;
}
}
|