-
Notifications
You must be signed in to change notification settings - Fork 4
/
gtk_sourceview.c
668 lines (541 loc) · 22.6 KB
/
gtk_sourceview.c
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
#include "gtk_sourceview.h"
enum { SCTSZ = 16, MESZ = 2048 };
#ifdef HAVESOURCEVIEW
#include <gtksourceview/gtksourcestyleschememanager.h>
GtkWidget *sectMenu;
typedef struct {
gchar *styleid;
gchar *name;
GtkSourceLanguage *lang;
} langinfo;
typedef struct {
gchar *section;
GPtrArray *lang;
} sectmenu;
/** struct for comment syntax, for single-line and block comments */
typedef struct {
const gchar *id,
*single,
*beg,
*end;
} comment_t;
/** free function for each element of langinfo PTrArray */
void freelanginfo (gpointer data)
{
if (!data) return;
g_free (((langinfo *)data)->styleid);
g_free (((langinfo *)data)->name);
g_free (data);
}
/** free function for each element of sectmenu PTrArray */
void freemnu (gpointer data)
{
if (!data) return;
g_free (((sectmenu *)data)->section);
GPtrArray *p = data;
GPtrArray *lp = ((sectmenu *)p)->lang;
g_ptr_array_free (lp, TRUE);
g_free (data);
}
/* glib string sort comparison */
gint gcmpstrings (gconstpointer a, gconstpointer b)
{
return g_strcmp0 (*(gchar * const *)a, *(gchar * const *)b);
}
/** sectmenu sort on section compare function */
gint gcmpmenu (gconstpointer a, gconstpointer b)
{
return gcmpstrings (((sectmenu *)a)->section,
((sectmenu *)b)->section);
}
/** langinfo sort on styleid compare function */
gint gcmplang (gconstpointer a, gconstpointer b)
{
return gcmpstrings (((langinfo *)a)->styleid,
((langinfo *)b)->styleid);
}
/** foreach sort of langinfo in section menu */
void sortlangs (gpointer menu, gpointer data)
{
g_ptr_array_sort ((GPtrArray *)(((sectmenu *)menu)->lang), gcmplang);
if (data) {}
}
/* temp foreach dump of langinfo for each section */
void prnsectlangs (gconstpointer l, gpointer data)
{
// g_print (" language->styleid: %20s language->name: %s\n",
g_print (" %20s:%s\n",
((langinfo *)l)->styleid, ((langinfo *)l)->name);
if (data) {}
}
/* temp print of each section and langinfo under each */
void prnmenu (gconstpointer m)
{
g_print ("\nsection: %s\n", ((sectmenu *)m)->section);
GPtrArray *lm = ((sectmenu *)m)->lang;
g_ptr_array_foreach (lm, (GFunc) prnsectlangs, NULL);
}
/** lookup sourceview sourcelanguage given name.
* sets and returns app->language allowing the syntax highlighting
* to be set on the sourceview buffer.
*/
GtkSourceLanguage *sourcelanguage_lookup (const gchar *name, gpointer data)
{
kwinst *app = (kwinst *)data;
const gchar * const *lang_ids;
GtkSourceLanguage *lang;
/* lang_ids is owned by lm and must not be modified */
lang_ids = gtk_source_language_manager_get_language_ids (app->langmgr);
for (gint i = 0; lang_ids[i]; i++)
{
const gchar *lmname;
lang = gtk_source_language_manager_get_language (app->langmgr,
lang_ids[i]);
lmname = gtk_source_language_get_name (lang);
if (*lmname == *name && g_strcmp0 (lmname, name) == 0) {
app->langname = lmname;
return ((app->language = lang));
}
}
return NULL;
}
/** set source buffer syntax highlight none.
*/
void hghltmenu_set_none (GtkMenuItem *menuitem, gpointer data)
{
kwinst *app = (kwinst *)data;
gtk_source_buffer_set_language (app->buffer, NULL);
if (menuitem) {}
}
/** set syntax highlight for sourceview buffer by name.
* validates name is a valid language name, sets syntax highlighting.
*/
void sourceview_buffer_set_language (const gchar *name, gpointer data)
{
kwinst *app = (kwinst *)data;
GtkSourceLanguage *lang;
if ((lang = sourcelanguage_lookup (name, data)))
gtk_source_buffer_set_language (app->buffer, app->language);
}
/** lookup sourceview language based on language name.
* based on menuitem.
*/
void hghltmenu_get_name (GtkMenuItem *menuitem, gpointer data)
{
const gchar *name = gtk_menu_item_get_label (menuitem);
sourceview_buffer_set_language (name, data);
}
/** build languange names submenus */
void addlangmenu (gconstpointer l, gpointer data)
{
GtkWidget *langMi;
/* create menu entry with language name, add to sectMenu */
langMi = gtk_menu_item_new_with_label (((langinfo *)l)->name);
gtk_menu_shell_append (GTK_MENU_SHELL (sectMenu), langMi);
/* connect menuitem callback, where name used to set language */
g_signal_connect (G_OBJECT (langMi), "activate",
G_CALLBACK (hghltmenu_get_name), data);
}
/** build the sections submenu containing submenus
* of language names
*/
void addsubmenu (gconstpointer m, gpointer data)
{
GtkWidget *sectionMi;
kwinst *app = (kwinst *)data;
GPtrArray *lm = ((sectmenu *)m)->lang;
sectMenu = gtk_menu_new ();
sectionMi = gtk_menu_item_new_with_label (((sectmenu *)m)->section);
gtk_menu_item_set_submenu (GTK_MENU_ITEM (sectionMi), sectMenu);
g_ptr_array_foreach (lm, (GFunc) addlangmenu, app);
gtk_menu_shell_append (GTK_MENU_SHELL (app->hghltmenu), sectionMi);
}
/** create sourceview language selection submenu.
* the submenu is itself a collection of submenus for the
* languages in each section. the section top submenu contains
* the sorted list of sourceview language sections, with a
* submenu for each section containing all languages within
* the section in sort order.
*/
GtkWidget *highlight_build_menu (gpointer data)
{
kwinst *app = (kwinst *)data;
GtkWidget *noneMi;
if (!app->langmgr) return NULL;
/* PTrArray holding the section name and PTrArray of languages
* within each section. This will build a menu of sections with each holding
* the languanges that can be used to set syntax highlight.
*/
#ifdef GLIB230
GPtrArray *menu = g_ptr_array_new_full (MESZ, freemnu);
#else
GPtrArray *menu = g_ptr_array_new_with_free_func (freemnu);
// g_ptr_array_set_size (menu, MESZ); /* do not set size */
#endif
if (menu) { /* handle error */ }
const gchar * const *lang_ids;
/* lang_ids is owned by lm and must not be modified */
lang_ids = gtk_source_language_manager_get_language_ids (app->langmgr);
for (gint i = 0; lang_ids[i]; i++)
{
GPtrArray *p = NULL;
gboolean found = FALSE;
/* create sourceview language for each lang_ids[x] */
/* TODO: add lang to langinfo struct for activation */
GtkSourceLanguage *lang =
gtk_source_language_manager_get_language (app->langmgr,
lang_ids[i]);
/* create/allocate sectmenu struct and
* allocate/fill section name
*/
sectmenu *smenu = g_malloc0 (sizeof *smenu);
if (!smenu) { /* handle error */ return NULL; }
smenu->section = g_strdup (gtk_source_language_get_section (lang));
/* create/allocate langinfo struct and
* allocate/fill style_id and name
*/
langinfo *linfo = g_malloc0 (sizeof *linfo);
if (!linfo) { /* handle error */ return NULL; }
linfo->styleid = g_strdup (gtk_source_language_get_id (lang));
linfo->name = g_strdup (gtk_source_language_get_name (lang));
/* iterate over existing section names to
* determine if the section name already exists
* in the menu PTrArray, set found flag.
*/
for (guint j = 0; j < menu->len; j++) {
p = g_ptr_array_index(menu, j);
if (g_strcmp0 (((sectmenu *)p)->section,
smenu->section) == 0) {
found = TRUE;
break;
}
}
if (!found) {
/* if section name is not contained in menu, create new
* langinfo PTrArray and assign to smenu->lang pointer, then
* add the smenu struct as a new element in menu.
*/
#ifdef GLIB230
GPtrArray *lmenu = g_ptr_array_new_full (SCTSZ, freelanginfo);
#else
GPtrArray *lmenu = g_ptr_array_new_with_free_func (freelanginfo);
// g_ptr_array_set_size (lmenu, SCTSZ); /* do not set size */
#endif
g_ptr_array_add (lmenu, linfo);
smenu->lang = lmenu;
g_ptr_array_add (menu, smenu);
}
else {
/* section name already exists in menu, just add linfo
* as a new element in its lang PTrArray
*/
g_ptr_array_add (((sectmenu *)p)->lang, linfo);
}
}
/* sort section headings and source languanges under each */
g_ptr_array_sort (menu, gcmpmenu);
g_ptr_array_foreach (menu, (GFunc) sortlangs, NULL);
/* print the menu (for testing) */
// g_ptr_array_foreach (menu, (GFunc) prnmenu, NULL);
/* create menu with submenues, add syntax highlight None
* menu_entry with separator, and create all submenus
* with nested g_ptr_array_foreach calls.
*/
app->hghltmenu = gtk_menu_new ();
noneMi = gtk_menu_item_new_with_label ("None");
gtk_menu_shell_append (GTK_MENU_SHELL (app->hghltmenu), noneMi);
gtk_menu_shell_append (GTK_MENU_SHELL (app->hghltmenu),
gtk_separator_menu_item_new());
g_signal_connect (G_OBJECT (noneMi), "activate",
G_CALLBACK (hghltmenu_set_none), app);
g_ptr_array_foreach (menu, (GFunc) addsubmenu, app);
/* free all memory associated with nested pointer arrays */
g_ptr_array_free (menu, TRUE);
return app->hghltmenu;
}
/** set sourceview syntax scheme based on menuitem passed to function.
* set the current sourceview buffer contents to the chosen scheme.
*/
void sourceview_set_syntax_style (GtkMenuItem *menuitem, gpointer data)
{
kwinst *app = (kwinst *)data;
GtkSourceStyleSchemeManager *sm;
GtkSourceStyleScheme *scheme;
const gchar *name = gtk_menu_item_get_label (menuitem);
if (app->laststyle)
g_free (app->laststyle);
app->laststyle = g_strdup (name);
sm = gtk_source_style_scheme_manager_get_default();
scheme = gtk_source_style_scheme_manager_get_scheme (sm, name);
gtk_source_buffer_set_style_scheme (app->buffer, scheme);
}
/** set sourceview syntax scheme based on combobox entry selection.
* set the current sourceview buffer contents to the chosen scheme.
*/
void sourceview_list_set_syntax_style (GtkWidget *widget, gpointer data) {
kwinst *app = (kwinst *)data;
GtkSourceStyleSchemeManager *sm;
GtkSourceStyleScheme *scheme;
gchar *name = gtk_combo_box_text_get_active_text (GTK_COMBO_BOX_TEXT(widget));
if (app->laststyle)
g_free (app->laststyle);
app->laststyle = name;
sm = gtk_source_style_scheme_manager_get_default();
scheme = gtk_source_style_scheme_manager_get_scheme (sm, name);
gtk_source_buffer_set_style_scheme (app->buffer, scheme);
// g_free (name); /* not needed as saving in app->laststyle */
}
/** build systax scheme submenu and fill combobox with entries.
* returns submenu, combobox is preserves as part of data structure.
*/
GtkWidget *sourceview_syntax_styles_menu (GtkWidget *menu, gpointer data)
{
GtkSourceStyleSchemeManager *sm;
kwinst *app = (kwinst *)data;
const gchar * const *scheme_ids = NULL;
gchar **sorted = NULL;
gint n = 0;
sm = gtk_source_style_scheme_manager_get_default();
scheme_ids = gtk_source_style_scheme_manager_get_scheme_ids (sm);
if (!scheme_ids) return NULL;
/* get the number of entries */
for (n = 0; scheme_ids[n]; n++) {}
/* allocate n pointers */
sorted = g_malloc0 (n * sizeof *sorted);
/* assign pointers to scheme_ids to array for sorting */
for (gint i = 0; i < n; i++)
sorted[i] = (gchar *)scheme_ids[i];
/* if more than 1 style, sort, the number of elements is small
* so there is nothing to be gained from a more efficient sort
* routine, and this saves all function call overhead.
*/
if (n > 1)
for (gint i = 0; i < n; i++) {
for (gint j = i; j < n; j++) {
const gchar *tmp;
if (g_strcmp0 (sorted[j], sorted[i]) < 0) {
tmp = sorted[i];
sorted[i] = sorted[j];
sorted[j] = (gchar *)tmp;
}
}
}
/* create new menu for syntax styles */
menu = gtk_menu_new();
/* create menu entries for each style_id and connect callback
* that uses the menuitem to set the syntax style.
*/
for (gint i = 0; i < n; i++) {
GtkWidget *synschemeMi;
/* define entry based on scheme_id and append to menu */
synschemeMi = gtk_menu_item_new_with_label (sorted[i]);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), synschemeMi);
/* connect menuitem callback, where menuitem used to set scheme */
g_signal_connect (G_OBJECT (synschemeMi), "activate",
G_CALLBACK (sourceview_set_syntax_style), data);
}
/* create syntaxt styles combobox for toolbar */
app->stylelist = gtk_combo_box_text_new ();
/* create entries for combobox */
for (gint i = 0; i < n; i++) {
/* append sorted entry to combo box */
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT(app->stylelist),
sorted[i]);
/* connect callback */
g_signal_connect (app->stylelist, "changed",
G_CALLBACK (sourceview_list_set_syntax_style), app);
}
g_free (sorted); /* free sorted list of styles */
return menu;
}
/* moved from gtk_filebuf.c - Sun Jul 15 2018 22:00:39 CDT */
/** set sourceview syntax scheme based on laststyle used.
* set the current sourceview buffer contents to the saved scheme.
*/
void sourceview_set_syntax_laststyle (gpointer data)
{
kwinst *app = (kwinst *)data;
GtkSourceStyleSchemeManager *sm;
GtkSourceStyleScheme *scheme;
sm = gtk_source_style_scheme_manager_get_default();
scheme = gtk_source_style_scheme_manager_get_scheme (sm, app->laststyle);
gtk_source_buffer_set_style_scheme (app->buffer, scheme);
}
void sourceview_set_comment_syntax (kwinst *app)
{
if (!app->language)
return;
const gchar *lang_id = gtk_source_language_get_id (app->language);
const comment_t cmtsyntax[] = { { "ada" , "-- ", NULL, NULL },
{ "apache" , "# " , NULL, NULL },
{ "asm-intel", "; " , NULL, NULL },
{ "asp" , "' " , NULL, NULL },
{ "awk" , "# " , NULL, NULL },
{ "c" , "// ", "/* ", " */" },
{ "chdr" , "// ", "/* ", " */" },
{ "c-sharp" , "// ", "/* ", " */" },
{ "cmake" , "# " , NULL, NULL },
{ "conf" , "# " , NULL, NULL },
{ "cpp" , "// ", "/* ", " */" },
{ "css" , NULL, "/* ", " */" },
{ "desktop" , "# " , NULL, NULL },
{ "diff" , "# " , NULL, NULL },
{ "dosbatch" , "rem " , NULL, NULL },
{ "erlang" , "% ", NULL, NULL },
{ "fortran" , "!* ", NULL, NULL },
{ "gnuplot" , "# " , NULL, NULL },
{ "gtkrc" , "# " , NULL, NULL },
{ "haskell" , "-- ", "{- ", " -}" },
{ "html" , NULL, "<!-- ", " -->" },
{ "java" , "// ", "/* ", " */" },
{ "js" , "// ", "/* ", " */" },
{ "lua" , "-- ", "--[[ ", " --]]", },
{ "makefile" , "# " , NULL, NULL },
{ "objc" , NULL, "/* ", " */" },
{ "octave" , "% ", NULL, NULL },
{ "pascal" , NULL, "(* ", " *)", },
{ "perl" , "# " , NULL, NULL },
{ "php" , "// ", "/* ", " */" },
{ "python" , "# ", NULL, NULL },
{ "rpmspec" , "# ", NULL, NULL },
{ "ruby" , "# ", NULL, NULL },
{ "sql" , "-- ", NULL, NULL },
{ "sh" , "# ", NULL, NULL },
{ "vbnet" , "' " , NULL, NULL },
{ "xml" , NULL, "<!-- ", " -->" },
{ NULL , NULL, NULL, NULL }};
gint i = 0;
if (!lang_id)
return;
while (cmtsyntax[i].id) {
const gchar *p1 = cmtsyntax[i].id,
*p2 = lang_id;
while (*p1 && *p2 && *p1 == *p2)
p1++, p2++;
if (!*p1 && !*p2) {
app->comment_single = cmtsyntax[i].single;
app->comment_blk_beg = cmtsyntax[i].beg;
app->comment_blk_end = cmtsyntax[i].end;
return;
}
i++;
}
return;
}
void sourceview_guess_language (kwinst *app)
{
if (app->language) return; /* prevent changing manually applied language */
gboolean result_uncertain;
gchar *content_type;
app->langmgr = gtk_source_language_manager_get_default();
content_type = g_content_type_guess (app->filename, NULL,
0, &result_uncertain);
if (result_uncertain)
{
g_free (content_type);
content_type = NULL;
}
app->language = gtk_source_language_manager_guess_language (app->langmgr,
app->filename, content_type);
gtk_source_buffer_set_language (app->buffer, app->language);
if (app->language)
app->langname = gtk_source_language_get_name (app->language);
sourceview_set_comment_syntax (app);
if (app->laststyle)
sourceview_set_syntax_laststyle (app);
gtk_source_buffer_set_highlight_syntax (app->buffer, app->highlight);
g_free (content_type);
}
void sourceview_get_languange_info (kwinst *app)
{
if (!app->language) return;
const gchar *name, *style_id, *section, *metadata, *style_name;
const gchar * const *lang_ids;
gchar **mime_types, **globs;
/* lang_ids is owned by lm and must not be modified */
lang_ids = gtk_source_language_manager_get_language_ids (app->langmgr);
printf ("\nlang_ids:\n");
for (gint i = 0; lang_ids[i]; i++)
g_print (" %2d : %s\n", i, lang_ids[i]);
/* after getting lang_ids, to get language use */
/* const char *lang_id = lang_ids[foo];
GtkSourceLanguage *lang = gtk_source_language_manager_get_language (app->langmgr,
lang_id);
*/
/* then apply with */
/*
gtk_source_buffer_set_language (buffer, lang);
*/
style_id = gtk_source_language_get_id (app->language);
name = gtk_source_language_get_name (app->language);
section = gtk_source_language_get_section (app->language);
metadata = gtk_source_language_get_metadata (app->language, name);
style_name = gtk_source_language_get_style_name (app->language, style_id);
g_print ("language style_id : %s\n"
"language name : %s\n"
"language section : %s\n"
"language metadata : %s\n"
"language style name : %s\n",
style_id, name, section, metadata, style_name);
/* get mime_types */
mime_types = gtk_source_language_get_mime_types (app->language);
printf ("\nmime_types:\n");
for (gint i = 0; mime_types[i]; i++)
g_print (" %2d : %s\n", i, mime_types[i]);
/* get globs */
globs = gtk_source_language_get_globs (app->language);
printf ("\nglobs:\n");
for (gint i = 0; globs[i]; i++)
g_print (" %2d : %s\n", i, globs[i]);
/* free pointer arrays */
g_strfreev (mime_types);
g_strfreev (globs);
}
void sourceview_get_scheme_info (kwinst *app)
{
GtkSourceStyleSchemeManager *sm;
// GtkSourceStyle style;
const gchar * const *srchpath = NULL;
const gchar * const *scheme_ids = NULL;
/* get default SchemeManager and related info */
sm = gtk_source_style_scheme_manager_get_default();
srchpath = gtk_source_style_scheme_manager_get_search_path (sm);
scheme_ids = gtk_source_style_scheme_manager_get_scheme_ids (sm);
g_print ("\nThe SchemeManager search paths:\n");
for (gint i = 0; srchpath[i]; i++)
g_print (" %2d. %s\n", i, srchpath[i]);
g_print ("\nThe SchemeManager scheme_ids:\n");
/* get scheme info from scheme_ids */
for (gint i = 0; scheme_ids[i]; i++)
{
GtkSourceStyleScheme *scheme;
const gchar *scheme_id, *scheme_name, *scheme_desc, *scheme_fn;
scheme_id = scheme_ids[i];
scheme = gtk_source_style_scheme_manager_get_scheme (sm, scheme_id);
scheme_id = gtk_source_style_scheme_get_id (scheme);
scheme_name = gtk_source_style_scheme_get_name (scheme);
scheme_desc = gtk_source_style_scheme_get_description (scheme);
scheme_fn = gtk_source_style_scheme_get_filename (scheme);
g_print ("\n scheme_id : %s\n"
" scheme_name: %s\n"
" scheme_desc: %s\n"
" scheme_fn : %s\n",
scheme_id, scheme_name, scheme_desc, scheme_fn);
/* you can load a style within a scheme with its 'style_id' */
// GtkSourceStyle *style;
// const gchar *style_id = "c"; /* TEST: hardcoded to "c" */
// style = gtk_source_style_scheme_get_style (scheme, style_id);
// if (style) {
// /* make a copy of the style for modification */
// GtkSourceStyle *copy;
// copy = gtk_source_style_copy (style);
// /* modify and set properties */
// g_print (" SUCCESS 'c' within scheme.\n");
// g_object_unref (copy);
// }
}
/* All style schemes will be reloaded next time the manager is accessed. */
// gtk_source_style_scheme_manager_force_rescan (sm);
if (app) {}
}
#endif