summaryrefslogtreecommitdiff
path: root/fluid/widgets/Node_Browser.cxx
blob: 745282e23decb18b661a9169866e5e8a59924ed9 (plain)
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
669
670
671
672
//
// Widget Tree Browser code for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2025 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file.  If this
// file is missing or damaged, see the license at:
//
//     https://www.fltk.org/COPYING.php
//
// Please see the following page on how to report bugs and issues:
//
//     https://www.fltk.org/bugs.php
//

#include "widgets/Node_Browser.h"

#include "Fluid.h"
#include "nodes/Widget_Node.h"
#include "rsrcs/pixmaps.h"

#include <FL/Fl.H>
#include <FL/Fl_Browser_.H>
#include <FL/fl_draw.H>


// ---- global variables

/// Global access to the widget browser.
fld::widget::Node_Browser *widget_browser = nullptr;

using namespace fld;
using namespace fld::widget;


/**
 \class Node_Browser

 A widget that displays the nodes in the widget tree.

 The Widget Browser is derived from the FLTK basic browser, extending
 tree browsing functionality by using the \c depth component of the double
 linked list of \c Node items.

 \see Node
 */


// ---- static variables

Fl_Color  Node_Browser::label_color   = 72;
Fl_Font   Node_Browser::label_font    = FL_HELVETICA;
Fl_Color  Node_Browser::class_color   = FL_FOREGROUND_COLOR;
Fl_Font   Node_Browser::class_font    = FL_HELVETICA_BOLD;
Fl_Color  Node_Browser::func_color    = FL_FOREGROUND_COLOR;
Fl_Font   Node_Browser::func_font     = FL_HELVETICA;
Fl_Color  Node_Browser::name_color    = FL_FOREGROUND_COLOR;
Fl_Font   Node_Browser::name_font     = FL_HELVETICA;
Fl_Color  Node_Browser::code_color    = FL_FOREGROUND_COLOR;
Fl_Font   Node_Browser::code_font     = FL_HELVETICA;
Fl_Color  Node_Browser::comment_color = FL_DARK_GREEN;
Fl_Font   Node_Browser::comment_font  = FL_HELVETICA;

// ---- global functions

/**
 Shortcut to have the widget browser graphics refreshed soon.
 */
void redraw_browser() {
  widget_browser->redraw();
}

/**
 Shortcut to create the widget browser.
 */
Fl_Widget *make_widget_browser(int x,int y,int w,int h) {
  return (widget_browser = new Node_Browser(x,y,w,h));
}

/**
 Make sure that the caller is visible in the widget browser.
 \param[in] caller scroll the browser in y so that caller
 is visible (may be nullptr)
 */
void redraw_widget_browser(Node *caller)
{
  if (caller)
    widget_browser->display(caller);
  widget_browser->redraw();
}

/**
 Select or deselect a node in the widget browser.
 \param[in] o (de)select this node
 \param[in] v the new selection state (1=select, 0=de-select)
 */
void select(Node *o, int v) {
  widget_browser->select(o,v,1);
}

/**
 Select a single node in the widget browser, deselect all others.
 \param[in] o select this node
 */
void select_only(Node *o) {
  widget_browser->select_only(o,1);
}

/**
 Deselect all nodes in the widget browser.
 */
void deselect() {
  widget_browser->deselect();
}

/**
 Show the selected item in the browser window.

 Make sure that the given item is visible in the browser by opening
 all parent groups and moving the item into the visible space.

 \param[in] t show this item
 */
void reveal_in_browser(Node *t) {
  Node *p = t->parent;
  if (p) {
    for (;;) {
      if (p->folded_)
        p->folded_ = 0;
      if (!p->parent) break;
      p = p->parent;
    }
    update_visibility_flag(p);
  }
  widget_browser->display(t);
  widget_browser->redraw();
}

// ---- local functions

/**
 Copy the given string str to buffer p with no more than maxl characters.

 Add "..." if string was truncated.

 Quote characters are NOT counted.

 \param[out] p return the resulting string in this buffer, terminated with
    a NUL byte
 \param[in] str copy this string; utf8 aware
 \param[in] maxl maximum number of letters to copy until we print
    the ellipsis (...)
 \param[in] quote if set, the resulting string is embedded in double quotes
 \param[in] trunc_lf if set, truncates at first newline
 \returns pointer to end of string (before terminating null byte).
 \note the buffer p must be large enough to hold (4 * (maxl+1) + 1) bytes
    or (4 * (maxl+1) + 3) bytes if quoted, e.g. "123..." because each UTF-8
    character can consist of 4 bytes, "..." adds 3 bytes, quotes '""' add two
    bytes, and the terminating null byte adds another byte.
    This supports Unicode code points up to U+10FFFF (standard as of 10/2016).
    Sanity checks for illegal UTF-8 sequences are included.
 */
static char *copy_trunc(char *p, const char *str, int maxl, int quote, int trunc_lf)
{
  int size = 0;                         // truncated string size in characters
  int bs;                               // size of UTF-8 character in bytes
  if (!p) return nullptr;                  // bad buffer
  if (!str) {                           // no input string
    if (quote) { *p++='"'; *p++='"'; }
    *p = 0;
    return p;
  }
  const char *end = str + strlen(str);  // end of input string
  if (quote) *p++ = '"';                // opening quote
  while (size < maxl) {                 // maximum <maxl> characters
    if (*str == '\n') {
      if (trunc_lf) {                   // handle trunc at \n
        if (quote) *p++ = '"';          // closing quote
        *p = 0;
        return p;
      }
      *p++ = '\\'; *p++ = 'n';
      str++; size+=2;
      continue;
    }
    if (!(*str & (-32))) break;         // end of string (0 or control char)
    bs = fl_utf8len(*str);              // size of next character
    if (bs <= 0) break;                 // some error - leave
    if (str + bs > end) break;          // UTF-8 sequence beyond end of string
    while (bs--) *p++ = *str++;         // copy that character into the buffer
    size++;                             // count copied characters
  }
  if (*str && *str!='\n') {             // string was truncated
    strcpy(p,"..."); p += 3;
  }
  if (quote) *p++ = '"';                // closing quote
  *p = 0;                               // terminating null byte
  return p;
}

// ---- Node_Browser implementation

/**
 Create a new instance of the Node_Browser widget.

 Fluid currently generates only one instance of this browser. If we want
 to use multiple browser at some point, we need to refactor a few global
 variables, i.e. Fluid.proj.tree.first and Fluid.proj.tree.last .

 \param[in] X, Y, W, H position and size of widget
 \param[in] l optional label
 \todo It would be nice to be able to grab one or more nodes and move them
    within the hierarchy.
 */
Node_Browser::Node_Browser(int X,int Y,int W,int H,const char*l) :
  Fl_Browser_(X,Y,W,H,l)
{
  type(FL_MULTI_BROWSER);
  Fl_Widget::callback(callback_stub);
  when(FL_WHEN_RELEASE);
}

/**
 Override the method to find the first item in the list of elements.
 \return the first item
 */
void *Node_Browser::item_first() const {
  return Fluid.proj.tree.first;
}

/**
 Override the method to find the next item in the list of elements.
 \param l this item
 \return the next item, irregardless of tree depth, or nullptr at the end
 */
void *Node_Browser::item_next(void *l) const {
  return ((Node*)l)->next;
}

/**
 Override the method to find the previous item in the list of elements.
 \param l this item
 \return the previous item, irregardless of tree depth, or nullptr at the start
 */
void *Node_Browser::item_prev(void *l) const {
  return ((Node*)l)->prev;
}

/**
 Override the method to check if an item was selected.
 \param l this item
 \return 1 if selected, 0 if not
 \todo what is the difference between selected and new_selected, and why do we do this?
 */
int Node_Browser::item_selected(void *l) const {
  return ((Node*)l)->new_selected;
}

/**
 Override the method to mark an item selected.
 \param l this item
 \param[in] v 1 if selecting, 0 if not
 */
void Node_Browser::item_select(void *l,int v) {
  ((Node*)l)->new_selected = v;
}

/**
 Override the method to return the height of an item representation in Flixels.
 \param l this item
 \return height in FLTK units (used to be pixels before high res screens)
 */
int Node_Browser::item_height(void *l) const {
  Node *t = (Node*)l;
  if (t->visible) {
    if (Fluid.show_comments && t->comment())
      return textsize()*2+4;
    else
      return textsize()+5;
  }
  return 0;
}

/**
 Override the method to return the estimated height of all items.
 \return height in FLTK units
 */
int Node_Browser::incr_height() const {
  return textsize() + 5 + linespacing();
}

/**
 Draw an item in the widget browser.

 A browser line starts with a variable size space. This space directly
 relates to the level of the type entry.

 If this type has the ability to store children, a triangle follows,
 pointing right (closed) or pointing down (open, children shown).

 Next follows an icon that is specific to the type. This makes it easy to
 spot certain types.

 Now follows some text. For classes and widgets, this is the type itself,
 followed by the name of the object. Other objects show their content as
 text, possibly abbreviated with an ellipsis.

 \param v      v is a pointer to the actual widget type and can be cast safely
    to Node
 \param X,Y    these give the position in window coordinates of the top left
    corner of this line
 */
void Node_Browser::item_draw(void *v, int X, int Y, int, int) const {
  // cast to a more general type
  Node *l = (Node *)v;

  char buf[500]; // edit buffer: large enough to hold 80 UTF-8 chars + nul

  // calculate the horizontal start position of this item
  // 3 is the edge of the browser
  // 13 is the width of the arrow that indicates children for the item
  // 18 is the width of the icon
  // 12 is the indent per level
  X += 3 + 13 + 18 + l->level * 12;

  // calculate the horizontal start position and width of the separator line
  int x1 = X;
  int w1 = w() - x1;

  // items can contain a comment. If they do, the comment gets a second text
  // line inside this browser line
  int comment_incr = 0;
  if (Fluid.show_comments && l->comment()) {
    // -- comment
    copy_trunc(buf, l->comment(), 80, 0, 1);
    comment_incr = textsize()-1;
    if (l->new_selected) fl_color(fl_contrast(comment_color, FL_SELECTION_COLOR));
    else fl_color(comment_color);
    fl_font(comment_font, textsize()-2);
    fl_draw(buf, X, Y+12);
    Y += comment_incr/2;
    comment_incr -= comment_incr/2;
  }

  if (l->new_selected) fl_color(fl_contrast(FL_FOREGROUND_COLOR,FL_SELECTION_COLOR));
  else fl_color(FL_FOREGROUND_COLOR);

  // Width=10: Draw the triangle that indicates possible children
  if (l->can_have_children()) {
    X = X - 18 - 13;
    if (!l->next || l->next->level <= l->level) {
      if (l->folded_==(l==pushedtitle)) {
        // an outlined triangle to the right indicates closed item, no children
        fl_loop(X,Y+7,X+5,Y+12,X+10,Y+7);
      } else {
        // an outlined triangle to the bottom indicates open item, no children
        fl_loop(X+2,Y+2,X+7,Y+7,X+2,Y+12);
      }
    } else {
      if (l->folded_==(l==pushedtitle)) {
        // a filled triangle to the right indicates closed item, with children
        fl_polygon(X,Y+7,X+5,Y+12,X+10,Y+7);
      } else {
        // a filled triangle to the bottom indicates open item, with children
        fl_polygon(X+2,Y+2,X+7,Y+7,X+2,Y+12);
      }
    }
    X = X + 13 + 18;
  }

  // Width=18: Draw the icon associated with the type.
  Fl_Pixmap *pm = pixmap[(int)l->type()];
  if (pm) pm->draw(X-18, Y);

  // Add tags on top of the icon for locked and protected types.
  switch (l->is_public()) {
    case 0: lock_pixmap->draw(X - 17, Y); break;
    case 2: protected_pixmap->draw(X - 17, Y); break;
  }

  if (   l->is_widget()
      && !l->is_a(Type::Window)
      && ((Widget_Node*)l)->o
      && !((Widget_Node*)l)->o->visible()
      && (!l->parent || (   !l->parent->is_a(Type::Tabs)
                         && !l->parent->is_a(Type::Wizard) ) )
      )
  {
    invisible_pixmap->draw(X - 17, Y);
  }

  // Indent=12 per level: Now write the text that comes after the graphics representation
  Y += comment_incr;
  if (l->is_widget() || l->is_class()) {
    const char* c = subclassname(l);
    if (!strncmp(c,"Fl_",3)) c += 3;
    // -- class
    fl_font(class_font, textsize());
    if (l->new_selected) fl_color(fl_contrast(class_color, FL_SELECTION_COLOR));
    else fl_color(class_color);
    fl_draw(c, X, Y+13);
    X += int(fl_width(c)+fl_width('n'));
    c = l->name();
    if (c) {
      // -- name
      fl_font(name_font, textsize());
      if (l->new_selected) fl_color(fl_contrast(name_color, FL_SELECTION_COLOR));
      else fl_color(name_color);
      fl_draw(c, X, Y+13);
    } else if ((c = l->label())) {
      // -- label
      fl_font(label_font, textsize());
      if (l->new_selected) fl_color(fl_contrast(label_color, FL_SELECTION_COLOR));
      else fl_color(label_color);
      copy_trunc(buf, c, 32, 1, 0); // quoted string
      fl_draw(buf, X, Y+13);
    }
  } else {
    if (l->is_code_block() && (l->level==0 || l->parent->is_class())) {
      // -- function names
      fl_font(func_font, textsize());
      if (l->new_selected) fl_color(fl_contrast(func_color, FL_SELECTION_COLOR));
      else fl_color(func_color);
      copy_trunc(buf, l->title(), 55, 0, 0);
    } else {
      if (l->is_a(Type::Comment)) {
        // -- comment (in main line, not above entry)
        fl_font(comment_font, textsize());
        if (l->new_selected) fl_color(fl_contrast(comment_color, FL_SELECTION_COLOR));
        else fl_color(comment_color);
        copy_trunc(buf, l->title(), 55, 0, 0);
      } else {
        // -- code
        fl_font(code_font, textsize());
        if (l->new_selected) fl_color(fl_contrast(code_color, FL_SELECTION_COLOR));
        else fl_color(code_color);
        copy_trunc(buf, l->title(), 55, 0, 1);
      }
    }
    fl_draw(buf, X, Y+13);
  }

  // draw a thin line below the item if this item is not selected
  // (if it is selected this additional line would look bad)
  if (!l->new_selected) {
    fl_color(fl_lighter(FL_GRAY));
    fl_line(x1,Y+16,x1+w1,Y+16);
  }
}

/**
 Override the method to return the width of an item representation in Flixels.
 \param v this item
 \return width in FLTK units
 */
int Node_Browser::item_width(void *v) const {

  char buf[500]; // edit buffer: large enough to hold 80 UTF-8 chars + nul

  Node *l = (Node *)v;

  if (!l->visible) return 0;

  int W = 3 + 13 + 18 + l->level * 12;

  if (l->is_widget() || l->is_class()) {
    const char* c = l->type_name();
    if (!strncmp(c,"Fl_",3)) c += 3;
    fl_font(textfont(), textsize());
    W += int(fl_width(c) + fl_width('n'));
    c = l->name();
    if (c) {
      fl_font(textfont()|FL_BOLD, textsize());
      W += int(fl_width(c));
    } else if (l->label()) {
      copy_trunc(buf, l->label(), 32, 1, 0); // quoted string
      W += int(fl_width(buf));
    }
  } else {
    copy_trunc(buf, l->title(), 55, 0, 0);
    fl_font(textfont() | (l->is_code_block() && (l->level==0 || l->parent->is_class())?0:FL_BOLD), textsize());
    W += int(fl_width(buf));
  }

  return W;
}

/**
 Callback to tell the Fluid UI when the list of selected items changed.
 */
void Node_Browser::callback() {
  selection_changed((Node*)selection());
}

/**
 Override the event handling for this browser.

 The vertical mouse position corresponds to an entry in the type tree.
 The horizontal position has the following hot zones:
 - 0-3 is the widget frame and ignored
 - the next hot zone starts 12*indent pixels further to the right
 - the next 13 pixels refer to the arrow that indicates children for the item
 - 18 pixels follow for the icon
 - the remaining part is filled with text

 \param[in] e the incoming event type
 \return 0 if the event is not supported, and 1 if the event was "used up"
 */
int Node_Browser::handle(int e) {
  static Node *title;
  Node *l;
  int X,Y,W,H; bbox(X,Y,W,H);
  switch (e) {
  case FL_PUSH:
    if (!Fl::event_inside(X,Y,W,H)) break;
    l = (Node*)find_item(Fl::event_y());
    if (l) {
      X += 3 + 12*l->level - hposition();
      if (l->can_have_children() && Fl::event_x()>X && Fl::event_x()<X+13) {
        title = pushedtitle = l;
        redraw_line(l);
        return 1;
      }
    }
    break;
  case FL_DRAG:
    if (!title) break;
    l = (Node*)find_item(Fl::event_y());
    if (l) {
      X += 3 + 12*l->level - hposition();
      if (l->can_have_children() && Fl::event_x()>X && Fl::event_x()<X+13) ;
      else l = nullptr;
    }
    if (l != pushedtitle) {
      if (pushedtitle) redraw_line(pushedtitle);
      if (l) redraw_line(l);
      pushedtitle = l;
    }
    return 1;
  case FL_RELEASE:
    if (!title) {
      l = (Node*)find_item(Fl::event_y());
      if (l && l->new_selected && (Fl::event_clicks() || Fl::event_state(FL_CTRL)))
        l->open();
      break;
    }
    l = pushedtitle;
    title = pushedtitle = 0;
    if (l) {
      if (!l->folded_) {
        l->folded_ = 1;
        for (Node*k = l->next; k&&k->level>l->level; k = k->next)
          k->visible = 0;
      } else {
        l->folded_ = 0;
        for (Node*k=l->next; k&&k->level>l->level;) {
          k->visible = 1;
          if (k->can_have_children() && k->folded_) {
            Node *j;
            for (j = k->next; j && j->level>k->level; j = j->next) {/*empty*/}
            k = j;
          } else
            k = k->next;
        }
      }
      redraw();
    }
    return 1;
  }
  return Fl_Browser_::handle(e);
}

/**
 Save the current scrollbar position during rebuild.
 */
void Node_Browser::save_scroll_position() {
  saved_h_scroll_ = hposition();
  saved_v_scroll_ = vposition();
}

/**
 Restore the previous scrollbar position after rebuild.
 */
void Node_Browser::restore_scroll_position() {
  hposition(saved_h_scroll_);
  vposition(saved_v_scroll_);
}

/**
 Rebuild the browser layout to reflect multiple changes.
 This clears internal caches, recalculates the scroll bar sizes, and
 sends a redraw() request to the widget.
 */
void Node_Browser::rebuild() {
  save_scroll_position();
  new_list();
  damage(FL_DAMAGE_SCROLL);
  redraw();
  restore_scroll_position();
}

/**
 Rebuild the browser layout and make sure that the given item is visible.
 \param[in] inNode pointer to a widget node derived from Node.
 */
void Node_Browser::display(Node *inNode) {
  if (!inNode) {
    // Alternative: find the first (last?) visible selected item.
    return;
  }
  // remeber our current scroll position
  int currentV = vposition(), newV = currentV;
  int nodeV = 0;
  // find the inNode in the tree and check, if it is already visible
  Node *p=Fluid.proj.tree.first;
  for ( ; p && p!=inNode; p=p->next) {
    if (p->visible)
      nodeV += item_height(p) + linespacing();
  }
  if (p) {
    int xx, yy, ww, hh;
    bbox(xx, yy, ww, hh);
    int frame_top = xx-x();
    int frame_bottom = frame_top + hh;
    int node_height = item_height(inNode) + linespacing();
    int margin_height = 2 * (item_quick_height(inNode) + linespacing());
    if (margin_height>hh/2) margin_height = hh/2;
    // is the inNode above the current scroll position?
    if (nodeV<currentV+margin_height)
      newV = nodeV - margin_height;
    else if (nodeV>currentV+frame_bottom-margin_height-node_height)
      newV = nodeV - frame_bottom + margin_height + node_height;
    if (newV<0)
      newV = 0;
  }
  if (newV!=currentV)
    vposition(newV);
}

void Node_Browser::load_prefs() {
  int c;
  Fl_Preferences p(Fluid.preferences, "widget_browser");
  p.get("label_color",  c, 72); label_color = c;
  p.get("label_font",   c, FL_HELVETICA); label_font = c;
  p.get("class_color",  c, FL_FOREGROUND_COLOR); class_color = c;
  p.get("class_font",   c, FL_HELVETICA_BOLD); class_font = c;
  p.get("func_color",   c, FL_FOREGROUND_COLOR); func_color = c;
  p.get("func_font",    c, FL_HELVETICA); func_font = c;
  p.get("name_color",   c, FL_FOREGROUND_COLOR); name_color = c;
  p.get("name_font",    c, FL_HELVETICA); name_font = c;
  p.get("code_color",   c, FL_FOREGROUND_COLOR); code_color = c;
  p.get("code_font",    c, FL_HELVETICA); code_font = c;
  p.get("comment_color",c, FL_DARK_GREEN); comment_color = c;
  p.get("comment_font", c, FL_HELVETICA); comment_font = c;
}

void Node_Browser::save_prefs() {
  Fl_Preferences p(Fluid.preferences, "widget_browser");
  p.set("label_color",    (int)label_color);
  p.set("label_font",     (int)label_font);
  p.set("class_color",    (int)class_color);
  p.set("class_font",     (int)class_font);
  p.set("func_color",     (int)func_color);
  p.set("func_font",      (int)func_font);
  p.set("name_color",     (int)name_color);
  p.set("name_font",      (int)name_font);
  p.set("code_color",     (int)code_color);
  p.set("code_font",      (int)code_font);
  p.set("comment_color",  (int)comment_color);
  p.set("comment_font",   (int)comment_font);
}