]> git.mxchange.org Git - flightgear.git/blob - src/GUI/dialog.cxx
crashfix: handleCommand() is called from other modules (input callbacks,
[flightgear.git] / src / GUI / dialog.cxx
1 // dialog.cxx: implementation of an XML-configurable dialog box.
2
3 #ifdef HAVE_CONFIG_H
4 #  include "config.h"
5 #endif
6
7 #include <stdlib.h>             // atof()
8
9 #include <Input/input.hxx>
10 #include <Scripting/NasalSys.hxx>
11
12 #include "dialog.hxx"
13 #include "new_gui.hxx"
14
15 #include "puList.hxx"
16 #include "AirportList.hxx"
17 #include "layout.hxx"
18
19 ////////////////////////////////////////////////////////////////////////
20 // Implementation of GUIInfo.
21 ////////////////////////////////////////////////////////////////////////
22
23 /**
24  * User data for a GUI object.
25  */
26 struct GUIInfo
27 {
28     GUIInfo (FGDialog * d);
29     virtual ~GUIInfo ();
30
31     FGDialog * dialog;
32     vector <FGBinding *> bindings;
33     int key;
34 };
35
36 GUIInfo::GUIInfo (FGDialog * d)
37     : dialog(d),
38       key(-1)
39 {
40 }
41
42 GUIInfo::~GUIInfo ()
43 {
44     for (unsigned int i = 0; i < bindings.size(); i++) {
45         delete bindings[i];
46         bindings[i] = 0;
47     }
48 }
49
50 \f
51 /**
52  * Key handler.
53  */
54 int fgPopup::checkKey(int key, int updown)
55 {
56     if (updown == PU_UP || !isVisible() || !isActive() || window != puGetWindow())
57         return false;
58
59     puObject *input = getActiveInputField(this);
60     if (input)
61         return input->checkKey(key, updown);
62
63     puObject *object = getKeyObject(this, key);
64     if (!object)
65         return puPopup::checkKey(key, updown);
66
67     // invokeCallback() isn't enough; we need to simulate a mouse button press
68     object->checkHit(PU_LEFT_BUTTON, PU_DOWN,
69             (object->getABox()->min[0] + object->getABox()->max[0]) / 2,
70             (object->getABox()->min[1] + object->getABox()->max[1]) / 2);
71     object->checkHit(PU_LEFT_BUTTON, PU_UP,
72             (object->getABox()->min[0] + object->getABox()->max[0]) / 2,
73             (object->getABox()->min[1] + object->getABox()->max[1]) / 2);
74     return true;
75 }
76
77 puObject *fgPopup::getKeyObject(puObject *object, int key)
78 {
79     puObject *ret;
80     if(object->getType() & PUCLASS_GROUP)
81         for (puObject *obj = ((puGroup *)object)->getFirstChild();
82                 obj; obj = obj->getNextObject())
83             if ((ret = getKeyObject(obj, key)))
84                 return ret;
85
86     GUIInfo *info = (GUIInfo *)object->getUserData();
87     if (info && info->key == key)
88         return object;
89
90     return 0;
91 }
92
93 puObject *fgPopup::getActiveInputField(puObject *object)
94 {
95     puObject *ret;
96     if(object->getType() & PUCLASS_GROUP)
97         for (puObject *obj = ((puGroup *)object)->getFirstChild();
98                 obj; obj = obj->getNextObject())
99             if ((ret = getActiveInputField(obj)))
100                 return ret;
101
102     if (object->getType() & PUCLASS_INPUT && ((puInput *)object)->isAcceptingInput())
103         return object;
104
105     return 0;
106 }
107
108 /**
109  * Mouse handler.
110  */
111 int fgPopup::checkHit(int button, int updown, int x, int y)
112 {
113     int result = puPopup::checkHit(button, updown, x, y);
114
115     if ( !_draggable)
116        return result;
117
118     // This is annoying.  We would really want a true result from the
119     // superclass to indicate "handled by child object", but all it
120     // tells us is that the pointer is inside the dialog.  So do the
121     // intersection test (again) to make sure we don't start a drag
122     // when inside controls.
123
124     if(updown == PU_DOWN && !_dragging) {
125         if(!result)
126             return 0;
127
128         int hit = getHitObjects(this, x, y);
129         if(hit & (PUCLASS_BUTTON|PUCLASS_ONESHOT|PUCLASS_INPUT))
130             return result;
131
132         int px, py;
133         getPosition(&px, &py);
134         _dragging = true;
135         _dX = px - x;
136         _dY = py - y;
137     } else if(updown == PU_DRAG && _dragging) {
138         setPosition(x + _dX, y + _dY);
139     } else {
140         _dragging = false;
141     }
142     return result;
143 }
144
145 int fgPopup::getHitObjects(puObject *object, int x, int y)
146 {
147     int type = 0;
148     if(object->getType() & PUCLASS_GROUP)
149         for (puObject *obj = ((puGroup *)object)->getFirstChild();
150                 obj; obj = obj->getNextObject())
151             type |= getHitObjects(obj, x, y);
152
153     int cx, cy, cw, ch;
154     object->getAbsolutePosition(&cx, &cy);
155     object->getSize(&cw, &ch);
156     if(x >= cx && x < cx + cw && y >= cy && y < cy + ch)
157         type |= object->getType();
158     return type;
159 }
160
161
162 \f
163 ////////////////////////////////////////////////////////////////////////
164 // Callbacks.
165 ////////////////////////////////////////////////////////////////////////
166
167 /**
168  * Action callback.
169  */
170 static void
171 action_callback (puObject * object)
172 {
173     GUIInfo * info = (GUIInfo *)object->getUserData();
174     NewGUI * gui = (NewGUI *)globals->get_subsystem("gui");
175     gui->setActiveDialog(info->dialog);
176     int nBindings = info->bindings.size();
177     for (int i = 0; i < nBindings; i++) {
178         info->bindings[i]->fire();
179         if (gui->getActiveDialog() == 0)
180             break;
181     }
182     gui->setActiveDialog(0);
183 }
184
185
186 static void
187 format_callback(puObject *obj, int dx, int dy, void *n)
188 {
189     SGPropertyNode *node = (SGPropertyNode *)n;
190     const char *format = node->getStringValue("format"), *f = format;
191     bool number, l = false;
192     // make sure the format matches '[ -+#]?\d*(\.\d*)?l?[fs]'
193     for (; *f; f++) {
194         if (*f == '%') {
195             if (f[1] == '%')
196                 f++;
197             else
198                 break;
199         }
200     }
201     if (*f++ != '%')
202         return;
203     if (*f == ' ' || *f == '+' || *f == '-' || *f == '#')
204         f++;
205     while (*f && isdigit(*f))
206         f++;
207     if (*f == '.') {
208         f++;
209         while (*f && isdigit(*f))
210             f++;
211     }
212     if (*f == 'l')
213         l = true, f++;
214
215     if (*f == 'f')
216         number = true;
217     else if (*f == 's') {
218         if (l)
219             return;
220         number = false;
221     } else
222         return;
223
224     for (++f; *f; f++) {
225         if (*f == '%') {
226             if (f[1] == '%')
227                 f++;
228             else
229                 return;
230         }
231     }
232
233     char buf[256];
234     const char *src = obj->getLabel();
235
236     if (number) {
237         float value = atof(src);
238         snprintf(buf, 256, format, value);
239     } else {
240         snprintf(buf, 256, format, src);
241     }
242
243     buf[255] = '\0';
244
245     SGPropertyNode *result = node->getNode("formatted", true);
246     result->setStringValue(buf);
247     obj->setLabel(result->getStringValue());
248 }
249
250
251 \f
252 ////////////////////////////////////////////////////////////////////////
253 // Static helper functions.
254 ////////////////////////////////////////////////////////////////////////
255
256 /**
257  * Copy a property value to a PUI object.
258  */
259 static void
260 copy_to_pui (SGPropertyNode * node, puObject * object)
261 {
262     // Treat puText objects specially, so their "values" can be set
263     // from properties.
264     if(object->getType() & PUCLASS_TEXT) {
265         object->setLabel(node->getStringValue());
266         return;
267     }
268
269     switch (node->getType()) {
270     case SGPropertyNode::BOOL:
271     case SGPropertyNode::INT:
272     case SGPropertyNode::LONG:
273         object->setValue(node->getIntValue());
274         break;
275     case SGPropertyNode::FLOAT:
276     case SGPropertyNode::DOUBLE:
277         object->setValue(node->getFloatValue());
278         break;
279     default:
280         object->setValue(node->getStringValue());
281         break;
282     }
283 }
284
285
286 static void
287 copy_from_pui (puObject * object, SGPropertyNode * node)
288 {
289     // puText objects are immutable, so should not be copied out
290     if(object->getType() & PUCLASS_TEXT)
291         return;
292
293     switch (node->getType()) {
294     case SGPropertyNode::BOOL:
295     case SGPropertyNode::INT:
296     case SGPropertyNode::LONG:
297         node->setIntValue(object->getIntegerValue());
298         break;
299     case SGPropertyNode::FLOAT:
300     case SGPropertyNode::DOUBLE:
301         node->setFloatValue(object->getFloatValue());
302         break;
303     default:
304         // Special case to handle lists, as getStringValue cannot be overridden
305         if(object->getType() & PUCLASS_LIST)
306         {
307             node->setStringValue(((puList *) object)->getListStringValue());
308         }
309         else
310         {
311             node->setStringValue(object->getStringValue());
312         }
313         break;
314     }
315 }
316
317
318 \f
319 ////////////////////////////////////////////////////////////////////////
320 // Implementation of FGDialog.
321 ////////////////////////////////////////////////////////////////////////
322
323 FGDialog::FGDialog (SGPropertyNode * props)
324     : _object(0),
325       _gui((NewGUI *)globals->get_subsystem("gui")),
326       _props(props)
327 {
328     _module = string("__dlg:") + props->getStringValue("name", "[unnamed]");
329     SGPropertyNode *nasal = props->getNode("nasal");
330     if (nasal) {
331         _nasal_close = nasal->getNode("close");
332         SGPropertyNode *open = nasal->getNode("open");
333         if (open) {
334             const char *s = open->getStringValue();
335             FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
336             nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s));
337         }
338     }
339     display(props);
340 }
341
342 FGDialog::~FGDialog ()
343 {
344     int x, y;
345     _object->getAbsolutePosition(&x, &y);
346     _props->setIntValue("lastx", x);
347     _props->setIntValue("lasty", y);
348
349     FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
350     if (_nasal_close) {
351         const char *s = _nasal_close->getStringValue();
352         nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s));
353     }
354     nas->deleteModule(_module.c_str());
355
356     puDeleteObject(_object);
357
358     unsigned int i;
359
360                                 // Delete all the arrays we made
361                                 // and were forced to keep around
362                                 // because PUI won't do its own
363                                 // memory management.
364     for (i = 0; i < _char_arrays.size(); i++) {
365         for (int j = 0; _char_arrays[i][j] != 0; j++)
366             free(_char_arrays[i][j]); // added with strdup
367         delete[] _char_arrays[i];
368     }
369
370                                 // Delete all the info objects we
371                                 // were forced to keep around because
372                                 // PUI cannot delete its own user data.
373     for (i = 0; i < _info.size(); i++) {
374         delete (GUIInfo *)_info[i];
375         _info[i] = 0;
376     }
377
378                                 // Finally, delete the property links.
379     for (i = 0; i < _propertyObjects.size(); i++) {
380         delete _propertyObjects[i];
381         _propertyObjects[i] = 0;
382     }
383 }
384
385 void
386 FGDialog::updateValue (const char * objectName)
387 {
388     for (unsigned int i = 0; i < _propertyObjects.size(); i++) {
389         const string &name = _propertyObjects[i]->name;
390         if (name == objectName)
391             copy_to_pui(_propertyObjects[i]->node,
392                         _propertyObjects[i]->object);
393     }
394 }
395
396 void
397 FGDialog::applyValue (const char * objectName)
398 {
399     for (unsigned int i = 0; i < _propertyObjects.size(); i++) {
400         if (_propertyObjects[i]->name == objectName)
401             copy_from_pui(_propertyObjects[i]->object,
402                           _propertyObjects[i]->node);
403     }
404 }
405
406 void
407 FGDialog::updateValues ()
408 {
409     for (unsigned int i = 0; i < _propertyObjects.size(); i++)
410         copy_to_pui(_propertyObjects[i]->node, _propertyObjects[i]->object);
411 }
412
413 void
414 FGDialog::applyValues ()
415 {
416     for (unsigned int i = 0; i < _propertyObjects.size(); i++)
417         copy_from_pui(_propertyObjects[i]->object,
418                       _propertyObjects[i]->node);
419 }
420
421 void
422 FGDialog::update ()
423 {
424     for (unsigned int i = 0; i < _liveObjects.size(); i++) {
425         puObject *obj = _liveObjects[i]->object;
426         if (obj->getType() & PUCLASS_INPUT && ((puInput *)obj)->isAcceptingInput())
427             continue;
428
429         copy_to_pui(_liveObjects[i]->node, obj);
430     }
431 }
432
433 void
434 FGDialog::display (SGPropertyNode * props)
435 {
436     if (_object != 0) {
437         SG_LOG(SG_GENERAL, SG_ALERT, "This widget is already active");
438         return;
439     }
440
441     int screenw = globals->get_props()->getIntValue("/sim/startup/xsize");
442     int screenh = globals->get_props()->getIntValue("/sim/startup/ysize");
443
444     bool userx = props->hasValue("x");
445     bool usery = props->hasValue("y");
446     bool userw = props->hasValue("width");
447     bool userh = props->hasValue("height");
448
449     // Let the layout widget work in the same property subtree.
450     LayoutWidget wid(props);
451
452     SGPropertyNode *fontnode = props->getNode("font");
453     if (fontnode) {
454         FGFontCache *fc = _gui->get_fontcache();
455         _font = fc->get(fontnode);
456     } else {
457         _font = _gui->getDefaultFont();
458     }
459     wid.setDefaultFont(_font, int(_font->getPointSize()));
460
461     int pw=0, ph=0;
462     int px, py, savex, savey;
463     if(!userw || !userh)
464         wid.calcPrefSize(&pw, &ph);
465     pw = props->getIntValue("width", pw);
466     ph = props->getIntValue("height", ph);
467     px = savex = props->getIntValue("x", (screenw - pw) / 2);
468     py = savey = props->getIntValue("y", (screenh - ph) / 2);
469
470     // Negative x/y coordinates are interpreted as distance from the top/right
471     // corner rather than bottom/left.
472     if (userx && px < 0)
473         px = screenw - pw + px;
474     if (usery && py < 0)
475         py = screenh - ph + py;
476
477     // Define "x", "y", "width" and/or "height" in the property tree if they
478     // are not specified in the configuration file.
479     wid.layout(px, py, pw, ph);
480
481     // Use the dimension and location properties as specified in the
482     // configuration file or from the layout widget.
483     _object = makeObject(props, screenw, screenh);
484
485     // Remove automatically generated properties, so the layout looks
486     // the same next time around, or restore x and y to preserve negative coords.
487     if(userx)
488         props->setIntValue("x", savex);
489     else
490         props->removeChild("x");
491
492     if(usery)
493         props->setIntValue("y", savey);
494     else
495         props->removeChild("y");
496
497     if(!userw) props->removeChild("width");
498     if(!userh) props->removeChild("height");
499
500     if (_object != 0) {
501         _object->reveal();
502     } else {
503         SG_LOG(SG_GENERAL, SG_ALERT, "Widget "
504                << props->getStringValue("name", "[unnamed]")
505                << " does not contain a proper GUI definition");
506     }
507 }
508
509 puObject *
510 FGDialog::makeObject (SGPropertyNode * props, int parentWidth, int parentHeight)
511 {
512     if (props->getBoolValue("hide"))
513         return 0;
514
515     bool presetSize = props->hasValue("width") && props->hasValue("height");
516     int width = props->getIntValue("width", parentWidth);
517     int height = props->getIntValue("height", parentHeight);
518     int x = props->getIntValue("x", (parentWidth - width) / 2);
519     int y = props->getIntValue("y", (parentHeight - height) / 2);
520     string type = props->getName();
521
522     if (type == "")
523         type = "dialog";
524
525     if (type == "dialog") {
526         puPopup * obj;
527         bool draggable = props->getBoolValue("draggable", true);
528         if (props->getBoolValue("modal", false))
529             obj = new puDialogBox(x, y);
530         else
531             obj = new fgPopup(x, y, draggable);
532         setupGroup(obj, props, width, height, true);
533         setColor(obj, props);
534         return obj;
535
536     } else if (type == "group") {
537         puGroup * obj = new puGroup(x, y);
538         setupGroup(obj, props, width, height, false);
539         setColor(obj, props);
540         return obj;
541
542     } else if (type == "frame") {
543         puGroup * obj = new puGroup(x, y);
544         setupGroup(obj, props, width, height, true);
545         setColor(obj, props);
546         return obj;
547
548     } else if (type == "hrule" || type == "vrule") {
549         puFrame * obj = new puFrame(x, y, x + width, y + height);
550         obj->setBorderThickness(0);
551         setColor(obj, props, BACKGROUND|FOREGROUND|HIGHLIGHT);
552         return obj;
553
554     } else if (type == "list") {
555         vector<SGPropertyNode_ptr> value_nodes = props->getChildren("value");
556         char ** entries = make_char_array(value_nodes.size());
557         for (unsigned int i = 0; i < value_nodes.size(); i++)
558             entries[i] = strdup((char *)value_nodes[i]->getStringValue());
559
560         puList * obj = new puList(x, y, x + width, y + height, entries);
561         setupObject(obj, props);
562         setColor(obj, props);
563         return obj;
564
565     } else if (type == "airport-list") {
566         AirportList * obj = new AirportList(x, y, x + width, y + height);
567         setupObject(obj, props);
568         setColor(obj, props);
569         return obj;
570
571     } else if (type == "input") {
572         puInput * obj = new puInput(x, y, x + width, y + height);
573         setupObject(obj, props);
574         setColor(obj, props, FOREGROUND|LABEL);
575         return obj;
576
577     } else if (type == "text") {
578         puText * obj = new puText(x, y);
579         setupObject(obj, props);
580
581         if (props->getNode("format")) {
582             SGPropertyNode *live = props->getNode("live");
583             if (live && live->getBoolValue())
584                 obj->setRenderCallback(format_callback, props);
585             else
586                 format_callback(obj, x, y, props);
587         }
588         // Layed-out objects need their size set, and non-layout ones
589         // get a different placement.
590         if(presetSize) obj->setSize(width, height);
591         else obj->setLabelPlace(PUPLACE_LABEL_DEFAULT);
592         setColor(obj, props, LABEL);
593         return obj;
594
595     } else if (type == "checkbox") {
596         puButton * obj;
597         obj = new puButton(x, y, x + width, y + height, PUBUTTON_XCHECK);
598         setupObject(obj, props);
599         setColor(obj, props, FOREGROUND|LABEL);
600         return obj;
601
602     } else if (type == "radio") {
603         puButton * obj;
604         obj = new puButton(x, y, x + width, y + height, PUBUTTON_CIRCLE);
605         setupObject(obj, props);
606         setColor(obj, props, FOREGROUND|LABEL);
607         return obj;
608
609     } else if (type == "button") {
610         puButton * obj;
611         const char * legend = props->getStringValue("legend", "[none]");
612         if (props->getBoolValue("one-shot", true))
613             obj = new puOneShot(x, y, legend);
614         else
615             obj = new puButton(x, y, legend);
616         if(presetSize)
617             obj->setSize(width, height);
618         setupObject(obj, props);
619         setColor(obj, props);
620         return obj;
621
622     } else if (type == "combo") {
623         vector<SGPropertyNode_ptr> value_nodes = props->getChildren("value");
624         char ** entries = make_char_array(value_nodes.size());
625         for (unsigned int i = 0; i < value_nodes.size(); i++)
626             entries[i] = strdup((char *)value_nodes[i]->getStringValue());
627
628         puComboBox * obj = new puComboBox(x, y, x + width, y + height, entries,
629                            props->getBoolValue("editable", false));
630         setupObject(obj, props);
631 #ifdef PUCOL_EDITFIELD  // plib > 0.8.4
632         setColor(obj, props, EDITFIELD);
633 #else
634         setColor(obj, props, FOREGROUND|LABEL);
635 #endif
636         return obj;
637
638     } else if (type == "slider") {
639         bool vertical = props->getBoolValue("vertical", false);
640         puSlider * obj = new puSlider(x, y, (vertical ? height : width));
641         obj->setMinValue(props->getFloatValue("min", 0.0));
642         obj->setMaxValue(props->getFloatValue("max", 1.0));
643         setupObject(obj, props);
644         if(presetSize)
645             obj->setSize(width, height);
646         setColor(obj, props, FOREGROUND|LABEL);
647         return obj;
648
649     } else if (type == "dial") {
650         puDial * obj = new puDial(x, y, width);
651         obj->setMinValue(props->getFloatValue("min", 0.0));
652         obj->setMaxValue(props->getFloatValue("max", 1.0));
653         obj->setWrap(props->getBoolValue("wrap", true));
654         setupObject(obj, props);
655         setColor(obj, props, FOREGROUND|LABEL);
656         return obj;
657
658     } else if (type == "textbox") {
659         int slider_width = props->getIntValue("slider", parentHeight);
660         int wrap = props->getBoolValue("wrap", true);
661         if (slider_width==0) slider_width=20;
662         puLargeInput * obj = new puLargeInput(x, y,
663                 x+width, x+height, 2, slider_width, wrap);
664
665         if (props->hasValue("editable")) {
666             if (props->getBoolValue("editable")==false)
667                 obj->disableInput();
668             else
669                 obj->enableInput();
670         }
671         setupObject(obj, props);
672         setColor(obj, props, FOREGROUND|LABEL);
673         return obj;
674
675     } else if (type == "select") {
676         vector<SGPropertyNode_ptr> value_nodes;
677         SGPropertyNode * selection_node =
678                 fgGetNode(props->getChild("selection")->getStringValue(), true);
679
680         for (int q = 0; q < selection_node->nChildren(); q++)
681             value_nodes.push_back(selection_node->getChild(q));
682
683         char ** entries = make_char_array(value_nodes.size());
684         for (unsigned int i = 0; i < value_nodes.size(); i++)
685             entries[i] = strdup((char *)value_nodes[i]->getName());
686
687         puSelectBox * obj =
688             new puSelectBox(x, y, x + width, y + height, entries);
689         setupObject(obj, props);
690 #ifdef PUCOL_EDITFIELD  // plib > 0.8.4
691         setColor(obj, props, EDITFIELD);
692 #else
693         setColor(obj, props, FOREGROUND|LABEL);
694 #endif
695         return obj;
696     } else {
697         return 0;
698     }
699 }
700
701 void
702 FGDialog::setupObject (puObject * object, SGPropertyNode * props)
703 {
704     object->setLabelPlace(PUPLACE_CENTERED_RIGHT);
705
706     if (props->hasValue("legend"))
707         object->setLegend(props->getStringValue("legend"));
708
709     if (props->hasValue("label"))
710         object->setLabel(props->getStringValue("label"));
711
712     if (props->hasValue("border"))
713         object->setBorderThickness( props->getIntValue("border", 2) );
714
715     if ( SGPropertyNode *nft = props->getNode("font", false) ) {
716        FGFontCache *fc = _gui->get_fontcache();
717        puFont *lfnt = fc->get(nft);
718        object->setLabelFont(*lfnt);
719     } else {
720        object->setLabelFont(*_font);
721     }
722
723     if (props->hasValue("property")) {
724         const char * name = props->getStringValue("name");
725         if (name == 0)
726             name = "";
727         const char * propname = props->getStringValue("property");
728         SGPropertyNode_ptr node = fgGetNode(propname, true);
729         copy_to_pui(node, object);
730         PropertyObject* po = new PropertyObject(name, object, node);
731         _propertyObjects.push_back(po);
732         if(props->getBoolValue("live"))
733             _liveObjects.push_back(po);
734     }
735
736     SGPropertyNode * dest = fgGetNode("/sim/bindings/gui", true);
737     vector<SGPropertyNode_ptr> bindings = props->getChildren("binding");
738     if (bindings.size() > 0) {
739         GUIInfo * info = new GUIInfo(this);
740         info->key = props->getIntValue("keynum", -1);
741         if (props->hasValue("key"))
742             info->key = getKeyCode(props->getStringValue("key", ""));
743
744         for (unsigned int i = 0; i < bindings.size(); i++) {
745             unsigned int j = 0;
746             SGPropertyNode *binding;
747             while (dest->getChild("binding", j))
748                 j++;
749
750             const char *cmd = bindings[i]->getStringValue("command");
751             if (!strcmp(cmd, "nasal") && _module[0])
752                 bindings[i]->setStringValue("module", _module.c_str());
753
754             binding = dest->getChild("binding", j, true);
755             copyProperties(bindings[i], binding);
756             info->bindings.push_back(new FGBinding(binding));
757         }
758         object->setCallback(action_callback);
759         object->setUserData(info);
760         _info.push_back(info);
761     }
762
763     object->makeReturnDefault(props->getBoolValue("default"));
764 }
765
766 void
767 FGDialog::setupGroup (puGroup * group, SGPropertyNode * props,
768                     int width, int height, bool makeFrame)
769 {
770     setupObject(group, props);
771
772     if (makeFrame) {
773         puFrame* f = new puFrame(0, 0, width, height);
774         setColor(f, props);
775     }
776
777     int nChildren = props->nChildren();
778     for (int i = 0; i < nChildren; i++)
779         makeObject(props->getChild(i), width, height);
780     group->close();
781 }
782
783 void
784 FGDialog::setColor(puObject * object, SGPropertyNode * props, int which)
785 {
786     string type = props->getName();
787     if (type == "")
788         type = "dialog";
789     if (type == "textbox" && props->getBoolValue("editable"))
790         type += "-editable";
791
792     FGColor *c = new FGColor(_gui->getColor("background"));
793     c->merge(_gui->getColor(type));
794     c->merge(props->getNode("color"));
795     if (c->isValid())
796         object->setColourScheme(c->red(), c->green(), c->blue(), c->alpha());
797
798     const struct {
799         int mask;
800         int id;
801         const char *name;
802         const char *cname;
803     } pucol[] = {
804         { BACKGROUND, PUCOL_BACKGROUND, "background", "color-background" },
805         { FOREGROUND, PUCOL_FOREGROUND, "foreground", "color-foreground" },
806         { HIGHLIGHT,  PUCOL_HIGHLIGHT,  "highlight",  "color-highlight" },
807         { LABEL,      PUCOL_LABEL,      "label",      "color-label" },
808         { LEGEND,     PUCOL_LEGEND,     "legend",     "color-legend" },
809         { MISC,       PUCOL_MISC,       "misc",       "color-misc" },
810 #ifdef PUCOL_EDITFIELD  // plib > 0.8.4
811         { EDITFIELD,  PUCOL_EDITFIELD,  "editfield",  "color-editfield" },
812 #endif
813     };
814
815     const int numcol = sizeof(pucol) / sizeof(pucol[0]);
816
817     for (int i = 0; i < numcol; i++) {
818         bool dirty = false;
819         c->clear();
820         c->setAlpha(1.0);
821
822         dirty |= c->merge(_gui->getColor(type + '-' + pucol[i].name));
823         if (which & pucol[i].mask)
824             dirty |= c->merge(props->getNode("color"));
825
826         if ((pucol[i].mask == LABEL) && !c->isValid())
827             dirty |= c->merge(_gui->getColor("label"));
828
829         if (c->isValid() && dirty)
830             object->setColor(pucol[i].id, c->red(), c->green(), c->blue(), c->alpha());
831     }
832 }
833
834
835 static struct {
836     const char *name;
837     int key;
838 } keymap[] = {
839     {"backspace", 8},
840     {"tab", 9},
841     {"return", 13},
842     {"enter", 13},
843     {"esc", 27},
844     {"escape", 27},
845     {"space", ' '},
846     {"&amp;", '&'},
847     {"and", '&'},
848     {"&lt;", '<'},
849     {"&gt;", '>'},
850     {"f1", PU_KEY_F1},
851     {"f2", PU_KEY_F2},
852     {"f3", PU_KEY_F3},
853     {"f4", PU_KEY_F4},
854     {"f5", PU_KEY_F5},
855     {"f6", PU_KEY_F6},
856     {"f7", PU_KEY_F7},
857     {"f8", PU_KEY_F8},
858     {"f9", PU_KEY_F9},
859     {"f10", PU_KEY_F10},
860     {"f11", PU_KEY_F11},
861     {"f12", PU_KEY_F12},
862     {"left", PU_KEY_LEFT},
863     {"up", PU_KEY_UP},
864     {"right", PU_KEY_RIGHT},
865     {"down", PU_KEY_DOWN},
866     {"pageup", PU_KEY_PAGE_UP},
867     {"pagedn", PU_KEY_PAGE_DOWN},
868     {"home", PU_KEY_HOME},
869     {"end", PU_KEY_END},
870     {"insert", PU_KEY_INSERT},
871     {0, -1},
872 };
873
874 int
875 FGDialog::getKeyCode(const char *str)
876 {
877     enum {
878         CTRL = 0x1,
879         SHIFT = 0x2,
880         ALT = 0x4,
881     };
882
883     while (*str == ' ')
884         str++;
885
886     char *buf = new char[strlen(str) + 1];
887     strcpy(buf, str);
888     char *s = buf + strlen(buf);
889     while (s > str && s[-1] == ' ')
890         s--;
891     *s = 0;
892     s = buf;
893
894     int mod = 0;
895     while (1) {
896         if (!strncmp(s, "Ctrl-", 5) || !strncmp(s, "CTRL-", 5))
897             s += 5, mod |= CTRL;
898         else if (!strncmp(s, "Shift-", 6) || !strncmp(s, "SHIFT-", 6))
899             s += 6, mod |= SHIFT;
900         else if (!strncmp(s, "Alt-", 4) || !strncmp(s, "ALT-", 4))
901             s += 4, mod |= ALT;
902         else
903             break;
904     }
905
906     int key = -1;
907     if (strlen(s) == 1 && isascii(*s)) {
908         key = *s;
909         if (mod & SHIFT)
910             key = toupper(key);
911         if (mod & CTRL)
912             key = toupper(key) - 64;
913         if (mod & ALT)
914             ;   // Alt not propagated to the gui
915     } else {
916         for (char *t = s; *t; t++)
917             *t = tolower(*t);
918         for (int i = 0; keymap[i].name; i++) {
919             if (!strcmp(s, keymap[i].name)) {
920                 key = keymap[i].key;
921                 break;
922             }
923         }
924     }
925     delete[] buf;
926     return key;
927 }
928
929 char **
930 FGDialog::make_char_array (int size)
931 {
932     char ** list = new char*[size+1];
933     for (int i = 0; i <= size; i++)
934         list[i] = 0;
935     _char_arrays.push_back(list);
936     return list;
937 }
938
939
940 \f
941 ////////////////////////////////////////////////////////////////////////
942 // Implementation of FGDialog::PropertyObject.
943 ////////////////////////////////////////////////////////////////////////
944
945 FGDialog::PropertyObject::PropertyObject (const char * n,
946                                            puObject * o,
947                                            SGPropertyNode_ptr p)
948     : name(n),
949       object(o),
950       node(p)
951 {
952 }
953
954
955 // end of dialog.cxx