]> git.mxchange.org Git - flightgear.git/blob - src/GUI/FGPUIDialog.cxx
Code cleanups, code updates and fix at least on (possible) devide-by-zero
[flightgear.git] / src / GUI / FGPUIDialog.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 <simgear/structure/SGBinding.hxx>
8 #include <simgear/props/props_io.hxx>
9 #include <simgear/debug/BufferedLogCallback.hxx>
10 #include <simgear/scene/tsync/terrasync.hxx>
11
12 #include <Scripting/NasalSys.hxx>
13 #include <Main/fg_os.hxx>
14 #include <Main/globals.hxx>
15 #include <Main/fg_props.hxx>
16
17 #include "FGPUIDialog.hxx"
18 #include "new_gui.hxx"
19 #include "AirportList.hxx"
20 #include "property_list.hxx"
21 #include "layout.hxx"
22 #include "WaypointList.hxx"
23 #include "CanvasWidget.hxx"
24 #include "MapWidget.hxx"
25 #include "FGFontCache.hxx"
26 #include "FGColor.hxx"
27
28 using std::string;
29
30 enum format_type { f_INVALID, f_INT, f_LONG, f_FLOAT, f_DOUBLE, f_STRING };
31 static const int FORMAT_BUFSIZE = 255;
32 static const int RESIZE_MARGIN = 7;
33
34
35 /**
36  * Makes sure the format matches '%[ -+#]?\d*(\.\d*)?(l?[df]|s)', with
37  * only one number or string placeholder and otherwise arbitrary prefix
38  * and postfix containing only quoted percent signs (%%).
39  */
40 static format_type
41 validate_format(const char *f)
42 {
43     bool l = false;
44     format_type type;
45     for (; *f; f++) {
46         if (*f == '%') {
47             if (f[1] == '%')
48                 f++;
49             else
50                 break;
51         }
52     }
53     if (*f++ != '%')
54         return f_INVALID;
55     while (*f == ' ' || *f == '+' || *f == '-' || *f == '#' || *f == '0')
56         f++;
57     while (*f && isdigit(*f))
58         f++;
59     if (*f == '.') {
60         f++;
61         while (*f && isdigit(*f))
62             f++;
63     }
64
65     if (*f == 'l')
66         l = true, f++;
67
68     if (*f == 'd') {
69         type = l ? f_LONG : f_INT;
70     } else if (*f == 'f')
71         type = l ? f_DOUBLE : f_FLOAT;
72     else if (*f == 's') {
73         if (l)
74             return f_INVALID;
75         type = f_STRING;
76     } else
77         return f_INVALID;
78
79     for (++f; *f; f++) {
80         if (*f == '%') {
81             if (f[1] == '%')
82                 f++;
83             else
84                 return f_INVALID;
85         }
86     }
87     return type;
88 }
89
90 ////////////////////////////////////////////////////////////////////////
91
92 //
93 // Custom subclass of puPopup to implement "draggable" windows in the
94 // interface.  Note that this is a subclass of puPopup, not
95 // puDialogBox.  Sadly, PUI (mis)uses subclassing to implement a
96 // boolean property: modality.  That means that we can't implement
97 // dragging of both puPopup windows and puDialogBoxes with the same
98 // code.  Rather than duplicate code, I've chosen to implement only
99 // "non-modal dragability" here.  Modal dialog boxes (like the exit
100 // confirmation) are not draggable.
101 //
102 class fgPopup : public puPopup {
103 public:
104   fgPopup(int x, int y, bool r = true, bool d = true) :
105   puPopup(x, y), _draggable(d), _resizable(r), _dragging(false)
106   {}
107   int checkHit(int b, int up, int x, int y);
108   int checkKey(int key, int updown);
109   int getHitObjects(puObject *, int x, int y);
110   bool checkHitCanvas(puObject *, int x, int y);
111   puObject *getKeyObject(puObject *, int key);
112   puObject *getActiveInputField(puObject *);
113   void applySize(puObject *);
114 private:
115   enum { LEFT = 1, RIGHT = 2, TOP = 4, BOTTOM = 8 };
116   bool _draggable;
117   bool _resizable;
118   bool _dragging;
119   int _resizing;
120   int _start_cursor;
121   int _cursor;
122   int _dlgX, _dlgY, _dlgW, _dlgH;
123   int _startX, _startY;
124 };
125
126
127 class fgValueList {
128 public:
129   fgValueList(SGPropertyNode *p);
130   virtual ~fgValueList();
131   virtual void update();
132   
133 protected:
134   char **_list;
135   
136 private:
137   void make_list();
138   void destroy_list();
139   SGPropertyNode_ptr _props;
140 };
141
142
143 class fgList : public fgValueList, public puaList, public GUI_ID {
144 public:
145   fgList(int x1, int y1, int x2, int y2, SGPropertyNode *p, int sw) :
146   fgValueList(p), puaList(x1, y1, x2, y2, _list, sw), GUI_ID(FGCLASS_LIST) {}
147   void update();
148 };
149
150 class fgComboBox : public fgValueList, public puaComboBox {
151 public:
152   fgComboBox(int x1, int y1, int x2, int y2, SGPropertyNode *p, bool editable) :
153   fgValueList(p),
154   puaComboBox(x1, y1, x2, y2, _list, editable),
155   _inHit(false)
156   {}
157   
158   void update();
159   
160   virtual void setSize(int w, int h);
161   
162   virtual int checkHit(int b, int up, int x, int y);
163   
164   virtual void recalc_bbox();
165 private:
166   bool _inHit;
167 };
168
169 class LogList : public puaList, public FGPUIDialog::ActiveWidget, public GUI_ID {
170 public:
171     LogList(int x1, int y1, int x2, int y2, int sw) :
172         puaList(x1, y1, x2, y2, sw),
173         GUI_ID(FGCLASS_LOGLIST)
174     {
175         m_buffer = NULL;
176         m_stamp = 0;
177     }
178     
179     void setBuffer(simgear::BufferedLogCallback* buf);
180     
181     virtual void update();
182 private:
183     std::vector<unsigned char*> m_items;
184     simgear::BufferedLogCallback* m_buffer;
185     unsigned int m_stamp;
186 };
187
188 class fgSelectBox : public fgValueList, public puaSelectBox {
189 public:
190   fgSelectBox(int x1, int y1, int x2, int y2, SGPropertyNode *p) :
191   fgValueList(p), puaSelectBox(x1, y1, x2, y2, _list) {}
192 };
193
194 ////////////////////////////////////////////////////////////////////////
195 // Implementation of GUIInfo.
196 ////////////////////////////////////////////////////////////////////////
197
198 /**
199  * User data for a GUI object.
200  */
201 struct GUIInfo
202 {
203     GUIInfo(FGPUIDialog *d);
204     virtual ~GUIInfo();
205     void apply_format(SGPropertyNode *);
206
207     FGPUIDialog *dialog;
208     SGPropertyNode_ptr node;
209     std::vector <SGBinding *> bindings;
210     int key;
211     string label, legend, text, format;
212     format_type fmt_type;
213 };
214
215 GUIInfo::GUIInfo (FGPUIDialog *d) :
216     dialog(d),
217     key(-1),
218     fmt_type(f_INVALID)
219 {
220 }
221
222 GUIInfo::~GUIInfo ()
223 {
224     for (unsigned int i = 0; i < bindings.size(); i++) {
225         delete bindings[i];
226         bindings[i] = 0;
227     }
228 }
229
230 void GUIInfo::apply_format(SGPropertyNode *n)
231 {
232     char buf[FORMAT_BUFSIZE + 1];
233     if (fmt_type == f_INT)
234         snprintf(buf, FORMAT_BUFSIZE, format.c_str(), n->getIntValue());
235     else if (fmt_type == f_LONG)
236         snprintf(buf, FORMAT_BUFSIZE, format.c_str(), n->getLongValue());
237     else if (fmt_type == f_FLOAT)
238         snprintf(buf, FORMAT_BUFSIZE, format.c_str(), n->getFloatValue());
239     else if (fmt_type == f_DOUBLE)
240         snprintf(buf, FORMAT_BUFSIZE, format.c_str(), n->getDoubleValue());
241     else
242         snprintf(buf, FORMAT_BUFSIZE, format.c_str(), n->getStringValue());
243
244     buf[FORMAT_BUFSIZE] = '\0';
245     text = buf;
246 }
247
248
249 /**
250  * Key handler.
251  */
252 int fgPopup::checkKey(int key, int updown)
253 {
254     if (updown == PU_UP || !isVisible() || !isActive() || window != puGetWindow())
255         return false;
256
257     puObject *input = getActiveInputField(this);
258     if (input)
259         return input->checkKey(key, updown);
260
261     puObject *object = getKeyObject(this, key);
262     if (!object)
263         return puPopup::checkKey(key, updown);
264
265     // invokeCallback() isn't enough; we need to simulate a mouse button press
266     object->checkHit(PU_LEFT_BUTTON, PU_DOWN,
267             (object->getABox()->min[0] + object->getABox()->max[0]) / 2,
268             (object->getABox()->min[1] + object->getABox()->max[1]) / 2);
269     object->checkHit(PU_LEFT_BUTTON, PU_UP,
270             (object->getABox()->min[0] + object->getABox()->max[0]) / 2,
271             (object->getABox()->min[1] + object->getABox()->max[1]) / 2);
272     return true;
273 }
274
275 puObject *fgPopup::getKeyObject(puObject *object, int key)
276 {
277     puObject *ret;
278     if (object->getType() & PUCLASS_GROUP)
279         for (puObject *obj = ((puGroup *)object)->getFirstChild();
280                 obj; obj = obj->getNextObject())
281             if ((ret = getKeyObject(obj, key)))
282                 return ret;
283
284     GUIInfo *info = (GUIInfo *)object->getUserData();
285     if (info && info->key == key)
286         return object;
287
288     return 0;
289 }
290
291 puObject *fgPopup::getActiveInputField(puObject *object)
292 {
293     puObject *ret;
294     if (object->getType() & PUCLASS_GROUP)
295         for (puObject *obj = ((puGroup *)object)->getFirstChild();
296                 obj; obj = obj->getNextObject())
297             if ((ret = getActiveInputField(obj)))
298                 return ret;
299
300     if (object->getType() & (PUCLASS_INPUT|PUCLASS_LARGEINPUT)
301             && ((puInput *)object)->isAcceptingInput())
302         return object;
303
304     return 0;
305 }
306
307 /**
308  * Mouse handler.
309  */
310 int fgPopup::checkHit(int button, int updown, int x, int y)
311 {
312     int result = 0;
313     if (updown != PU_DRAG && !_dragging)
314         result = puPopup::checkHit(button, updown, x, y);
315
316     if (!_draggable)
317        return result;
318
319     // This is annoying.  We would really want a true result from the
320     // superclass to indicate "handled by child object", but all it
321     // tells us is that the pointer is inside the dialog.  So do the
322     // intersection test (again) to make sure we don't start a drag
323     // when inside controls.
324
325     if (updown == PU_DOWN && !_dragging) {
326         if (!result)
327             return 0;
328         int global_drag = fgGetKeyModifiers() & KEYMOD_SHIFT;
329         int global_resize = fgGetKeyModifiers() & KEYMOD_CTRL;
330
331         int hit = getHitObjects(this, x, y);
332         if (hit & PUCLASS_LIST)  // ctrl-click in property browser (toggle bool)
333             return result;
334         if(    !global_resize
335             && (  (hit & (PUCLASS_BUTTON|PUCLASS_ONESHOT|PUCLASS_INPUT
336                          |PUCLASS_LARGEINPUT|PUCLASS_SCROLLBAR))
337                   // The canvas should handle drag events on its own so exit
338                   // here if mouse is over a CanvasWidget
339                || (!global_drag && checkHitCanvas(this, x, y))
340                ) )
341         {
342             return result;
343         }
344
345         getPosition(&_dlgX, &_dlgY);
346         getSize(&_dlgW, &_dlgH);
347         _start_cursor = fgGetMouseCursor();
348         _dragging = true;
349         _startX = x;
350         _startY = y;
351
352         // check and prepare for resizing
353         static const int cursor[] = {
354             MOUSE_CURSOR_POINTER, MOUSE_CURSOR_LEFTSIDE, MOUSE_CURSOR_RIGHTSIDE, 0,
355             MOUSE_CURSOR_TOPSIDE, MOUSE_CURSOR_TOPLEFT, MOUSE_CURSOR_TOPRIGHT, 0,
356             MOUSE_CURSOR_BOTTOMSIDE, MOUSE_CURSOR_BOTTOMLEFT, MOUSE_CURSOR_BOTTOMRIGHT, 0,
357         };
358
359         _resizing = 0;
360         if (!global_drag && _resizable) {
361             int hmargin = global_resize ? _dlgW / 3 : RESIZE_MARGIN;
362             int vmargin = global_resize ? _dlgH / 3 : RESIZE_MARGIN;
363
364             if (y - _dlgY < vmargin)
365                 _resizing |= BOTTOM;
366             else if (_dlgY + _dlgH - y < vmargin)
367                 _resizing |= TOP;
368
369             if (x - _dlgX < hmargin)
370                 _resizing |= LEFT;
371             else if (_dlgX + _dlgW - x < hmargin)
372                 _resizing |= RIGHT;
373
374             if (!_resizing && global_resize)
375                 _resizing = BOTTOM|RIGHT;
376
377             _cursor = cursor[_resizing];
378            if (_resizing && _resizable)
379                 fgSetMouseCursor(_cursor);
380        }
381
382     } else if (updown == PU_DRAG && _dragging) {
383         if (_resizing) {
384             GUIInfo *info = (GUIInfo *)getUserData();
385             if (_resizable && info && info->node) {
386                 int w = _dlgW;
387                 int h = _dlgH;
388                 if (_resizing & LEFT)
389                     w += _startX - x;
390                 if (_resizing & RIGHT)
391                     w += x - _startX;
392                 if (_resizing & TOP)
393                     h += y - _startY;
394                 if (_resizing & BOTTOM)
395                     h += _startY - y;
396
397                 int prefw, prefh;
398                 LayoutWidget wid(info->node);
399                 wid.calcPrefSize(&prefw, &prefh);
400                 if (w < prefw)
401                     w = prefw;
402                 if (h < prefh)
403                     h = prefh;
404
405                 int x = _dlgX;
406                 int y = _dlgY;
407                 if (_resizing & LEFT)
408                     x += _dlgW - w;
409                 if (_resizing & BOTTOM)
410                     y += _dlgH - h;
411
412                 wid.layout(x, y, w, h);
413                 setSize(w, h);
414                 setPosition(x, y);
415                 applySize(static_cast<puObject *>(this));
416                 getFirstChild()->setSize(w, h); // dialog background puFrame
417             }
418         } else {
419             int posX = x + _dlgX - _startX,
420               posY = y + _dlgY - _startY;
421             setPosition(posX, posY);
422             
423             GUIInfo *info = (GUIInfo *)getUserData();
424             if (info && info->node) {
425                 info->node->setIntValue("x", posX);
426                 info->node->setIntValue("y", posY);
427             }
428         } // re-positioning
429
430     } else if (_dragging) {
431         fgSetMouseCursor(_start_cursor);
432         _dragging = false;
433     }
434     return result;
435 }
436
437 int fgPopup::getHitObjects(puObject *object, int x, int y)
438 {
439     if (!object->isVisible())
440         return 0;
441
442     int type = 0;
443     if (object->getType() & PUCLASS_GROUP)
444         for (puObject *obj = ((puGroup *)object)->getFirstChild();
445                 obj; obj = obj->getNextObject())
446             type |= getHitObjects(obj, x, y);
447
448     int cx, cy, cw, ch;
449     object->getAbsolutePosition(&cx, &cy);
450     object->getSize(&cw, &ch);
451     if (x >= cx && x < cx + cw && y >= cy && y < cy + ch)
452         type |= object->getType();
453     return type;
454 }
455
456 bool fgPopup::checkHitCanvas(puObject* object, int x, int y)
457 {
458   if( !object->isVisible() )
459     return 0;
460
461   if( object->getType() & PUCLASS_GROUP )
462   {
463     for( puObject* obj = ((puGroup*)object)->getFirstChild();
464                    obj;
465                    obj = obj->getNextObject() )
466     {
467       if( checkHitCanvas(obj, x, y) )
468         return true;
469     }
470   }
471
472   int cx, cy, cw, ch;
473   object->getAbsolutePosition(&cx, &cy);
474   object->getSize(&cw, &ch);
475   if(    x >= cx && x < cx + cw
476       && y >= cy && y < cy + ch
477       && dynamic_cast<CanvasWidget*>(object) )
478     return true;
479   return false;
480 }
481
482 void fgPopup::applySize(puObject *object)
483 {
484     // compound plib widgets use setUserData() for internal purposes, so refuse
485     // to descend into anything that has other bits set than the following
486     const int validUserData = PUCLASS_VALUE|PUCLASS_OBJECT|PUCLASS_GROUP|PUCLASS_INTERFACE
487             |PUCLASS_FRAME|PUCLASS_TEXT|PUCLASS_BUTTON|PUCLASS_ONESHOT|PUCLASS_INPUT
488             |PUCLASS_ARROW|PUCLASS_DIAL|PUCLASS_POPUP;
489
490     int type = object->getType();
491     if (type & PUCLASS_GROUP && !(type & ~validUserData))
492         for (puObject *obj = ((puGroup *)object)->getFirstChild();
493                 obj; obj = obj->getNextObject())
494             applySize(obj);
495
496     GUIInfo *info = (GUIInfo *)object->getUserData();
497     if (!info)
498         return;
499
500     SGPropertyNode *n = info->node;
501     if (!n) {
502         SG_LOG(SG_GENERAL, SG_ALERT, "fgPopup::applySize: no props");
503         return;
504     }
505     int x = n->getIntValue("x");
506     int y = n->getIntValue("y");
507     int w = n->getIntValue("width", 4);
508     int h = n->getIntValue("height", 4);
509     object->setPosition(x, y);
510     object->setSize(w, h);
511 }
512
513 ////////////////////////////////////////////////////////////////////////
514
515 void FGPUIDialog::ConditionalObject::update(FGPUIDialog* aDlg)
516 {
517   if (_name == "visible") {
518     bool wasVis = _pu->isVisible() != 0;
519     bool newVis = test();
520     
521     if (newVis == wasVis) {
522       return;
523     }
524     
525     if (newVis) { // puObject needs a setVisible. Oh well.
526     _pu->reveal();
527     } else {
528       _pu->hide();
529     }
530   } else if (_name == "enable") {
531     bool wasEnabled = _pu->isActive() != 0;
532     bool newEnable = test();
533     
534     if (wasEnabled == newEnable) {
535       return;
536     }
537     
538     if (newEnable) {
539       _pu->activate();
540     } else {
541       _pu->greyOut();
542     }
543   }
544   
545   aDlg->setNeedsLayout();
546 }
547
548 ////////////////////////////////////////////////////////////////////////
549 // Callbacks.
550 ////////////////////////////////////////////////////////////////////////
551
552 /**
553  * Action callback.
554  */
555 static void
556 action_callback (puObject *object)
557 {
558     GUIInfo *info = (GUIInfo *)object->getUserData();
559     NewGUI *gui = (NewGUI *)globals->get_subsystem("gui");
560     gui->setActiveDialog(info->dialog);
561     int nBindings = info->bindings.size();
562     for (int i = 0; i < nBindings; i++) {
563         info->bindings[i]->fire();
564         if (gui->getActiveDialog() == 0)
565             break;
566     }
567     gui->setActiveDialog(0);
568 }
569
570
571 ////////////////////////////////////////////////////////////////////////
572 // Static helper functions.
573 ////////////////////////////////////////////////////////////////////////
574
575 /**
576  * Copy a property value to a PUI object.
577  */
578 static void
579 copy_to_pui (SGPropertyNode *node, puObject *object)
580 {
581     using namespace simgear;
582     GUIInfo *info = (GUIInfo *)object->getUserData();
583     if (!info) {
584         SG_LOG(SG_GENERAL, SG_ALERT, "dialog: widget without GUIInfo!");
585         return;   // this can't really happen
586     }
587
588     // Treat puText objects specially, so their "values" can be set
589     // from properties.
590     if (object->getType() & PUCLASS_TEXT) {
591         if (info->fmt_type != f_INVALID)
592             info->apply_format(node);
593         else
594             info->text = node->getStringValue();
595
596         object->setLabel(info->text.c_str());
597         return;
598     }
599
600     switch (node->getType()) {
601     case props::BOOL:
602     case props::INT:
603     case props::LONG:
604         object->setValue(node->getIntValue());
605         break;
606     case props::FLOAT:
607     case props::DOUBLE:
608         object->setValue(node->getFloatValue());
609         break;
610     default:
611         info->text = node->getStringValue();
612         object->setValue(info->text.c_str());
613         break;
614     }
615 }
616
617
618 static void
619 copy_from_pui (puObject *object, SGPropertyNode *node)
620 {
621     using namespace simgear;
622     // puText objects are immutable, so should not be copied out
623     if (object->getType() & PUCLASS_TEXT)
624         return;
625
626     switch (node->getType()) {
627     case props::BOOL:
628     case props::INT:
629     case props::LONG:
630         node->setIntValue(object->getIntegerValue());
631         break;
632     case props::FLOAT:
633         node->setFloatValue(object->getFloatValue());
634         break;
635     case props::DOUBLE:
636     {
637         // puObject only provides float, not double, which causes precision/rounding issues
638         // with some numerical values (try "114.2").
639         // Work around: obtain string value, and manually convert with proper double precision.
640         const char *s = object->getStringValue();
641         node->setDoubleValue(atof(s));
642         break;
643     }
644     default:
645         const char *s = object->getStringValue();
646         if (s)
647             node->setStringValue(s);
648         break;
649     }
650 }
651
652
653 ////////////////////////////////////////////////////////////////////////
654 // Implementation of FGDialog.
655 ////////////////////////////////////////////////////////////////////////
656
657 FGPUIDialog::FGPUIDialog (SGPropertyNode *props) :
658     FGDialog(props),
659     _object(0),
660     _gui((NewGUI *)globals->get_subsystem("gui")),
661     _props(props),
662     _needsRelayout(false)
663 {
664     _module = string("__dlg:") + props->getStringValue("name", "[unnamed]");
665         
666     SGPropertyNode *nasal = props->getNode("nasal");
667     if (nasal) {
668         _nasal_close = nasal->getNode("close");
669         SGPropertyNode *open = nasal->getNode("open");
670         if (open) {
671             const char *s = open->getStringValue();
672             FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
673             if (nas)
674                 nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s), props);
675         }
676     }
677     display(props);
678 }
679
680 FGPUIDialog::~FGPUIDialog ()
681 {
682     int x, y;
683     _object->getAbsolutePosition(&x, &y);
684     _props->setIntValue("lastx", x);
685     _props->setIntValue("lasty", y);
686
687     FGNasalSys *nas = (FGNasalSys *)globals->get_subsystem("nasal");
688     if (nas) {
689         if (_nasal_close) {
690             const char *s = _nasal_close->getStringValue();
691             nas->createModule(_module.c_str(), _module.c_str(), s, strlen(s), _props);
692         }
693         nas->deleteModule(_module.c_str());
694     }
695
696     puDeleteObject(_object);
697
698     unsigned int i;
699                                 // Delete all the info objects we
700                                 // were forced to keep around because
701                                 // PUI cannot delete its own user data.
702     for (i = 0; i < _info.size(); i++) {
703         delete (GUIInfo *)_info[i];
704         _info[i] = 0;
705     }
706                                 // Finally, delete the property links.
707     for (i = 0; i < _propertyObjects.size(); i++) {
708         delete _propertyObjects[i];
709         _propertyObjects[i] = 0;
710     }
711 }
712
713 void
714 FGPUIDialog::updateValues(const std::string& objectName)
715 {
716   for (unsigned int i = 0; i < _propertyObjects.size(); i++) {
717     const string &name = _propertyObjects[i]->name;
718
719     if( !objectName.empty() && name != objectName )
720       continue;
721
722     puObject *widget = _propertyObjects[i]->object;
723     int widgetType = widget->getType();
724     if (widgetType & PUCLASS_LIST) {
725       GUI_ID* gui_id = dynamic_cast<GUI_ID *>(widget);
726       if (gui_id && (gui_id->id & FGCLASS_LIST)) {
727         fgList *pl = static_cast<fgList*>(widget);
728         pl->update();
729       } else {
730         copy_to_pui(_propertyObjects[i]->node, widget);
731       }
732     } else if (widgetType & PUCLASS_COMBOBOX) {
733       fgComboBox* combo = static_cast<fgComboBox*>(widget);
734       combo->update();
735     } else {
736       copy_to_pui(_propertyObjects[i]->node, widget);
737     }
738   } // of property objects iteration
739 }
740
741 void
742 FGPUIDialog::applyValues(const std::string& objectName)
743 {
744     for (unsigned int i = 0; i < _propertyObjects.size(); i++) {
745         const string &name = _propertyObjects[i]->name;
746         if( !objectName.empty() && name != objectName )
747           continue;
748
749         copy_from_pui(_propertyObjects[i]->object,
750                       _propertyObjects[i]->node);
751     }
752 }
753
754 void
755 FGPUIDialog::update ()
756 {
757     for (unsigned int i = 0; i < _liveObjects.size(); i++) {
758         puObject *obj = _liveObjects[i]->object;
759         if (obj->getType() & PUCLASS_INPUT && ((puInput *)obj)->isAcceptingInput())
760             continue;
761
762         copy_to_pui(_liveObjects[i]->node, obj);
763     }
764     
765   for (unsigned int j=0; j < _conditionalObjects.size(); ++j) {
766     _conditionalObjects[j]->update(this);
767   }
768   
769   for (unsigned int i = 0; i < _activeWidgets.size(); i++) {
770     _activeWidgets[i]->update();
771   }
772   
773   if (_needsRelayout) {
774     relayout();
775   }
776 }
777
778 void
779 FGPUIDialog::display (SGPropertyNode *props)
780 {
781     if (_object != 0) {
782         SG_LOG(SG_GENERAL, SG_ALERT, "This widget is already active");
783         return;
784     }
785
786     int screenw = globals->get_props()->getIntValue("/sim/startup/xsize");
787     int screenh = globals->get_props()->getIntValue("/sim/startup/ysize");
788
789     bool userx = props->hasValue("x");
790     bool usery = props->hasValue("y");
791     bool userw = props->hasValue("width");
792     bool userh = props->hasValue("height");
793
794     // Let the layout widget work in the same property subtree.
795     LayoutWidget wid(props);
796
797     SGPropertyNode *fontnode = props->getNode("font");
798     if (fontnode) {
799         _font = FGFontCache::instance()->get(fontnode);
800     } else {
801         _font = _gui->getDefaultFont();
802     }
803     wid.setDefaultFont(_font, int(_font->getPointSize()));
804
805     int pw = 0, ph = 0;
806     int px, py, savex, savey;
807     if (!userw || !userh)
808         wid.calcPrefSize(&pw, &ph);
809     pw = props->getIntValue("width", pw);
810     ph = props->getIntValue("height", ph);
811     px = savex = props->getIntValue("x", (screenw - pw) / 2);
812     py = savey = props->getIntValue("y", (screenh - ph) / 2);
813
814     // Negative x/y coordinates are interpreted as distance from the top/right
815     // corner rather than bottom/left.
816     if (userx && px < 0)
817         px = screenw - pw + px;
818     if (usery && py < 0)
819         py = screenh - ph + py;
820
821     // Define "x", "y", "width" and/or "height" in the property tree if they
822     // are not specified in the configuration file.
823     wid.layout(px, py, pw, ph);
824
825     // Use the dimension and location properties as specified in the
826     // configuration file or from the layout widget.
827     _object = makeObject(props, screenw, screenh);
828
829     // Remove automatically generated properties, so the layout looks
830     // the same next time around, or restore x and y to preserve negative coords.
831     if (userx)
832         props->setIntValue("x", savex);
833     else
834         props->removeChild("x");
835
836     if (usery)
837         props->setIntValue("y", savey);
838     else
839         props->removeChild("y");
840
841     if (!userw) props->removeChild("width");
842     if (!userh) props->removeChild("height");
843
844     if (_object != 0) {
845         _object->reveal();
846     } else {
847         SG_LOG(SG_GENERAL, SG_ALERT, "Widget "
848                << props->getStringValue("name", "[unnamed]")
849                << " does not contain a proper GUI definition");
850     }
851 }
852
853 puObject *
854 FGPUIDialog::makeObject (SGPropertyNode *props, int parentWidth, int parentHeight)
855 {
856     if (!props->getBoolValue("enabled", true))
857         return 0;
858
859     bool presetSize = props->hasValue("width") && props->hasValue("height");
860     int width = props->getIntValue("width", parentWidth);
861     int height = props->getIntValue("height", parentHeight);
862     int x = props->getIntValue("x", (parentWidth - width) / 2);
863     int y = props->getIntValue("y", (parentHeight - height) / 2);
864     string type = props->getName();
865
866     if (type.empty())
867         type = "dialog";
868
869     if (type == "dialog") {
870         puPopup *obj;
871         bool draggable = props->getBoolValue("draggable", true);
872         bool resizable = props->getBoolValue("resizable", false);
873         if (props->getBoolValue("modal", false))
874             obj = new puDialogBox(x, y);
875         else
876             obj = new fgPopup(x, y, resizable, draggable);
877         setupGroup(obj, props, width, height, true);
878         setColor(obj, props);
879         return obj;
880
881     } else if (type == "group") {
882         puGroup *obj = new puGroup(x, y);
883         setupGroup(obj, props, width, height, false);
884         setColor(obj, props);
885         return obj;
886
887     } else if (type == "frame") {
888         puGroup *obj = new puGroup(x, y);
889         setupGroup(obj, props, width, height, true);
890         setColor(obj, props);
891         return obj;
892
893     } else if (type == "hrule" || type == "vrule") {
894         puFrame *obj = new puFrame(x, y, x + width, y + height);
895         obj->setBorderThickness(0);
896         setupObject(obj, props);
897         setColor(obj, props, BACKGROUND|FOREGROUND|HIGHLIGHT);
898         return obj;
899
900     } else if (type == "list") {
901         int slider_width = props->getIntValue("slider", 20);
902         fgList *obj = new fgList(x, y, x + width, y + height, props, slider_width);
903         if (presetSize)
904             obj->setSize(width, height);
905         setupObject(obj, props);
906         setColor(obj, props);
907         return obj;
908
909     } else if (type == "airport-list") {
910         AirportList *obj = new AirportList(x, y, x + width, y + height);
911         if (presetSize)
912             obj->setSize(width, height);
913         setupObject(obj, props);
914         setColor(obj, props);
915         return obj;
916
917     } else if (type == "property-list") {
918         PropertyList *obj = new PropertyList(x, y, x + width, y + height, globals->get_props());
919         if (presetSize)
920             obj->setSize(width, height);
921         setupObject(obj, props);
922         setColor(obj, props);
923         return obj;
924
925     } else if (type == "input") {
926         puInput *obj = new puInput(x, y, x + width, y + height);
927         setupObject(obj, props);
928         setColor(obj, props, FOREGROUND|LABEL);
929         return obj;
930
931     } else if (type == "text") {
932         puText *obj = new puText(x, y);
933         setupObject(obj, props);
934
935         // Layed-out objects need their size set, and non-layout ones
936         // get a different placement.
937         if (presetSize)
938             obj->setSize(width, height);
939         else
940             obj->setLabelPlace(PUPLACE_LABEL_DEFAULT);
941         setColor(obj, props, LABEL);
942         return obj;
943
944     } else if (type == "checkbox") {
945         puButton *obj;
946         obj = new puButton(x, y, x + width, y + height, PUBUTTON_XCHECK);
947         setupObject(obj, props);
948         setColor(obj, props, FOREGROUND|LABEL);
949         return obj;
950
951     } else if (type == "radio") {
952         puButton *obj;
953         obj = new puButton(x, y, x + width, y + height, PUBUTTON_CIRCLE);
954         setupObject(obj, props);
955         setColor(obj, props, FOREGROUND|LABEL);
956         return obj;
957
958     } else if (type == "button") {
959         puButton *obj;
960         const char *legend = props->getStringValue("legend", "[none]");
961         if (props->getBoolValue("one-shot", true))
962             obj = new puOneShot(x, y, legend);
963         else
964             obj = new puButton(x, y, legend);
965         if (presetSize)
966             obj->setSize(width, height);
967         setupObject(obj, props);
968         setColor(obj, props);
969         return obj;
970     } else if (type == "map") {
971         MapWidget* mapWidget = new MapWidget(x, y, x + width, y + height);
972         setupObject(mapWidget, props);
973         _activeWidgets.push_back(mapWidget);
974         return mapWidget;
975     } else if (type == "canvas") {
976         CanvasWidget* canvasWidget = new CanvasWidget( x, y,
977                                                        x + width, y + height,
978                                                        props,
979                                                        _module );
980         setupObject(canvasWidget, props);
981         return canvasWidget;
982     } else if (type == "combo") {
983         fgComboBox *obj = new fgComboBox(x, y, x + width, y + height, props,
984                 props->getBoolValue("editable", false));
985         setupObject(obj, props);
986         setColor(obj, props, EDITFIELD);
987         return obj;
988
989     } else if (type == "slider") {
990         bool vertical = props->getBoolValue("vertical", false);
991         puSlider *obj = new puSlider(x, y, (vertical ? height : width), vertical);
992         obj->setMinValue(props->getFloatValue("min", 0.0));
993         obj->setMaxValue(props->getFloatValue("max", 1.0));
994         obj->setStepSize(props->getFloatValue("step"));
995         obj->setSliderFraction(props->getFloatValue("fraction"));
996 #if PLIB_VERSION > 185
997         obj->setPageStepSize(props->getFloatValue("pagestep"));
998 #endif
999         setupObject(obj, props);
1000         if (presetSize)
1001             obj->setSize(width, height);
1002         setColor(obj, props, FOREGROUND|LABEL);
1003         return obj;
1004
1005     } else if (type == "dial") {
1006         puDial *obj = new puDial(x, y, width);
1007         obj->setMinValue(props->getFloatValue("min", 0.0));
1008         obj->setMaxValue(props->getFloatValue("max", 1.0));
1009         obj->setWrap(props->getBoolValue("wrap", true));
1010         setupObject(obj, props);
1011         setColor(obj, props, FOREGROUND|LABEL);
1012         return obj;
1013
1014     } else if (type == "textbox") {
1015         int slider_width = props->getIntValue("slider", 20);
1016         int wrap = props->getBoolValue("wrap", true);
1017 #if PLIB_VERSION > 185
1018         puaLargeInput *obj = new puaLargeInput(x, y,
1019                 x + width, x + height, 11, slider_width, wrap);
1020 #else
1021         puaLargeInput *obj = new puaLargeInput(x, y,
1022                 x + width, x + height, 2, slider_width, wrap);
1023 #endif
1024
1025         if (props->getBoolValue("editable"))
1026             obj->enableInput();
1027         else
1028             obj->disableInput();
1029
1030         if (presetSize)
1031             obj->setSize(width, height);
1032         setupObject(obj, props);
1033         setColor(obj, props, FOREGROUND|LABEL);
1034
1035         int top = props->getIntValue("top-line", 0);
1036         obj->setTopLineInWindow(top < 0 ? unsigned(-1) >> 1 : top);
1037         return obj;
1038
1039     } else if (type == "select") {
1040         fgSelectBox *obj = new fgSelectBox(x, y, x + width, y + height, props);
1041         setupObject(obj, props);
1042         setColor(obj, props, EDITFIELD);
1043         return obj;
1044     } else if (type == "waypointlist") {
1045         ScrolledWaypointList* obj = new ScrolledWaypointList(x, y, width, height);
1046         setupObject(obj, props);
1047         return obj;
1048         
1049     } else if (type == "loglist") {
1050         LogList* obj = new LogList(x, y, width, height, 20);
1051         string logClass = props->getStringValue("logclass");
1052         if (logClass == "terrasync") {
1053           simgear::SGTerraSync* tsync = (simgear::SGTerraSync*) globals->get_subsystem("terrasync");
1054           if (tsync) {
1055             obj->setBuffer(tsync->log());
1056           }
1057         } else {
1058           FGNasalSys* nasal = (FGNasalSys*) globals->get_subsystem("nasal");
1059           obj->setBuffer(nasal->log());
1060         }
1061
1062         setupObject(obj, props);
1063         _activeWidgets.push_back(obj);
1064         return obj;
1065     } else {
1066         return 0;
1067     }
1068 }
1069
1070 void
1071 FGPUIDialog::setupObject (puObject *object, SGPropertyNode *props)
1072 {
1073     GUIInfo *info = new GUIInfo(this);
1074     object->setUserData(info);
1075     _info.push_back(info);
1076     object->setLabelPlace(PUPLACE_CENTERED_RIGHT);
1077     object->makeReturnDefault(props->getBoolValue("default"));
1078     info->node = props;
1079
1080     if (props->hasValue("legend")) {
1081         info->legend = props->getStringValue("legend");
1082         object->setLegend(info->legend.c_str());
1083     }
1084
1085     if (props->hasValue("label")) {
1086         info->label = props->getStringValue("label");
1087         object->setLabel(info->label.c_str());
1088     }
1089
1090     if (props->hasValue("border"))
1091         object->setBorderThickness( props->getIntValue("border", 2) );
1092
1093     if (SGPropertyNode *nft = props->getNode("font", false)) {
1094        puFont *lfnt = FGFontCache::instance()->get(nft);
1095        object->setLabelFont(*lfnt);
1096        object->setLegendFont(*lfnt);
1097     } else {
1098        object->setLabelFont(*_font);
1099     }
1100
1101     if (props->hasChild("visible")) {
1102       ConditionalObject* cnd = new ConditionalObject("visible", object);
1103       cnd->setCondition(sgReadCondition(globals->get_props(), props->getChild("visible")));
1104       _conditionalObjects.push_back(cnd);
1105     }
1106
1107     if (props->hasChild("enable")) {
1108       ConditionalObject* cnd = new ConditionalObject("enable", object);
1109       cnd->setCondition(sgReadCondition(globals->get_props(), props->getChild("enable")));
1110       _conditionalObjects.push_back(cnd);
1111     }
1112
1113     string type = props->getName();
1114     if (type == "input" && props->getBoolValue("live"))
1115         object->setDownCallback(action_callback);
1116
1117     if (type == "text") {
1118         const char *format = props->getStringValue("format", 0);
1119         if (format) {
1120             info->fmt_type = validate_format(format);
1121             if (info->fmt_type != f_INVALID)
1122                 info->format = format;
1123             else
1124                 SG_LOG(SG_GENERAL, SG_ALERT, "DIALOG: invalid <format> '"
1125                         << format << '\'');
1126         }
1127     }
1128
1129     if (props->hasValue("property")) {
1130         const char *name = props->getStringValue("name");
1131         if (name == 0)
1132             name = "";
1133         const char *propname = props->getStringValue("property");
1134         SGPropertyNode_ptr node = fgGetNode(propname, true);
1135         if (type == "map") {
1136           // mapWidget binds to a sub-tree of properties, and
1137           // ignores the puValue mechanism, so special case things here
1138           MapWidget* mw = static_cast<MapWidget*>(object);
1139           mw->setProperty(node);
1140         } else {
1141             // normal widget, creating PropertyObject
1142             copy_to_pui(node, object);
1143             PropertyObject *po = new PropertyObject(name, object, node);
1144             _propertyObjects.push_back(po);
1145             if (props->getBoolValue("live"))
1146                 _liveObjects.push_back(po);
1147         }
1148         
1149
1150     }
1151
1152     SGPropertyNode *dest = fgGetNode("/sim/bindings/gui", true);
1153     std::vector<SGPropertyNode_ptr> bindings = props->getChildren("binding");
1154     if (bindings.size() > 0) {
1155         info->key = props->getIntValue("keynum", -1);
1156         if (props->hasValue("key"))
1157             info->key = getKeyCode(props->getStringValue("key", ""));
1158
1159         for (unsigned int i = 0; i < bindings.size(); i++) {
1160             unsigned int j = 0;
1161             SGPropertyNode_ptr binding;
1162             while (dest->getChild("binding", j))
1163                 j++;
1164
1165             const char *cmd = bindings[i]->getStringValue("command");
1166             if (!strcmp(cmd, "nasal"))
1167                 bindings[i]->setStringValue("module", _module.c_str());
1168
1169             binding = dest->getChild("binding", j, true);
1170             copyProperties(bindings[i], binding);
1171             info->bindings.push_back(new SGBinding(binding, globals->get_props()));
1172         }
1173         object->setCallback(action_callback);
1174     }
1175 }
1176
1177 void
1178 FGPUIDialog::setupGroup(puGroup *group, SGPropertyNode *props,
1179        int width, int height, bool makeFrame)
1180 {
1181     setupObject(group, props);
1182
1183     if (makeFrame) {
1184         puFrame* f = new puFrame(0, 0, width, height);
1185         setColor(f, props);
1186     }
1187
1188     int nChildren = props->nChildren();
1189     for (int i = 0; i < nChildren; i++)
1190         makeObject(props->getChild(i), width, height);
1191     group->close();
1192 }
1193
1194 void
1195 FGPUIDialog::setColor(puObject *object, SGPropertyNode *props, int which)
1196 {
1197     string type = props->getName();
1198     if (type.empty())
1199         type = "dialog";
1200     if (type == "textbox" && props->getBoolValue("editable"))
1201         type += "-editable";
1202
1203     FGColor c(_gui->getColor("background"));
1204     c.merge(_gui->getColor(type));
1205     c.merge(props->getNode("color"));
1206     if (c.isValid())
1207         object->setColourScheme(c.red(), c.green(), c.blue(), c.alpha());
1208
1209     const struct {
1210         int mask;
1211         int id;
1212         const char *name;
1213         const char *cname;
1214     } pucol[] = {
1215         { BACKGROUND, PUCOL_BACKGROUND, "background", "color-background" },
1216         { FOREGROUND, PUCOL_FOREGROUND, "foreground", "color-foreground" },
1217         { HIGHLIGHT,  PUCOL_HIGHLIGHT,  "highlight",  "color-highlight" },
1218         { LABEL,      PUCOL_LABEL,      "label",      "color-label" },
1219         { LEGEND,     PUCOL_LEGEND,     "legend",     "color-legend" },
1220         { MISC,       PUCOL_MISC,       "misc",       "color-misc" },
1221         { EDITFIELD,  PUCOL_EDITFIELD,  "editfield",  "color-editfield" },
1222     };
1223
1224     const int numcol = sizeof(pucol) / sizeof(pucol[0]);
1225
1226     for (int i = 0; i < numcol; i++) {
1227         bool dirty = false;
1228         c.clear();
1229         c.setAlpha(1.0);
1230
1231         dirty |= c.merge(_gui->getColor(type + '-' + pucol[i].name));
1232         if (which & pucol[i].mask)
1233             dirty |= c.merge(props->getNode("color"));
1234
1235         if ((pucol[i].mask == LABEL) && !c.isValid())
1236             dirty |= c.merge(_gui->getColor("label"));
1237
1238         dirty |= c.merge(props->getNode(pucol[i].cname));
1239
1240         if (c.isValid() && dirty)
1241             object->setColor(pucol[i].id, c.red(), c.green(), c.blue(), c.alpha());
1242     }
1243 }
1244
1245
1246 static struct {
1247     const char *name;
1248     int key;
1249 } keymap[] = {
1250     {"backspace", 8},
1251     {"tab", 9},
1252     {"return", 13},
1253     {"enter", 13},
1254     {"esc", 27},
1255     {"escape", 27},
1256     {"space", ' '},
1257     {"&amp;", '&'},
1258     {"and", '&'},
1259     {"&lt;", '<'},
1260     {"&gt;", '>'},
1261     {"f1", PU_KEY_F1},
1262     {"f2", PU_KEY_F2},
1263     {"f3", PU_KEY_F3},
1264     {"f4", PU_KEY_F4},
1265     {"f5", PU_KEY_F5},
1266     {"f6", PU_KEY_F6},
1267     {"f7", PU_KEY_F7},
1268     {"f8", PU_KEY_F8},
1269     {"f9", PU_KEY_F9},
1270     {"f10", PU_KEY_F10},
1271     {"f11", PU_KEY_F11},
1272     {"f12", PU_KEY_F12},
1273     {"left", PU_KEY_LEFT},
1274     {"up", PU_KEY_UP},
1275     {"right", PU_KEY_RIGHT},
1276     {"down", PU_KEY_DOWN},
1277     {"pageup", PU_KEY_PAGE_UP},
1278     {"pagedn", PU_KEY_PAGE_DOWN},
1279     {"home", PU_KEY_HOME},
1280     {"end", PU_KEY_END},
1281     {"insert", PU_KEY_INSERT},
1282     {0, -1},
1283 };
1284
1285 int
1286 FGPUIDialog::getKeyCode(const char *str)
1287 {
1288     enum {
1289         CTRL = 0x1,
1290         SHIFT = 0x2,
1291         ALT = 0x4,
1292     };
1293
1294     while (*str == ' ')
1295         str++;
1296
1297     char *buf = new char[strlen(str) + 1];
1298     strcpy(buf, str);
1299     char *s = buf + strlen(buf);
1300     while (s > str && s[-1] == ' ')
1301         s--;
1302     *s = 0;
1303     s = buf;
1304
1305     int mod = 0;
1306     while (1) {
1307         if (!strncmp(s, "Ctrl-", 5) || !strncmp(s, "CTRL-", 5))
1308             s += 5, mod |= CTRL;
1309         else if (!strncmp(s, "Shift-", 6) || !strncmp(s, "SHIFT-", 6))
1310             s += 6, mod |= SHIFT;
1311         else if (!strncmp(s, "Alt-", 4) || !strncmp(s, "ALT-", 4))
1312             s += 4, mod |= ALT;
1313         else
1314             break;
1315     }
1316
1317     int key = -1;
1318     if (strlen(s) == 1 && isascii(*s)) {
1319         key = *s;
1320         if (mod & SHIFT)
1321             key = toupper(key);
1322         if (mod & CTRL)
1323             key = toupper(key) - '@';
1324         /* if (mod & ALT)
1325             ;   // Alt not propagated to the gui
1326         */
1327     } else {
1328         for (char *t = s; *t; t++)
1329             *t = tolower(*t);
1330         for (int i = 0; keymap[i].name; i++) {
1331             if (!strcmp(s, keymap[i].name)) {
1332                 key = keymap[i].key;
1333                 break;
1334             }
1335         }
1336     }
1337     delete[] buf;
1338     return key;
1339 }
1340
1341 void FGPUIDialog::relayout()
1342 {
1343   _needsRelayout = false;
1344   
1345   int screenw = globals->get_props()->getIntValue("/sim/startup/xsize");
1346   int screenh = globals->get_props()->getIntValue("/sim/startup/ysize");
1347
1348   bool userx = _props->hasValue("x");
1349   bool usery = _props->hasValue("y");
1350   bool userw = _props->hasValue("width");
1351   bool userh = _props->hasValue("height");
1352
1353   // Let the layout widget work in the same property subtree.
1354   LayoutWidget wid(_props);
1355   wid.setDefaultFont(_font, int(_font->getPointSize()));
1356
1357   int pw = 0, ph = 0;
1358   int px, py, savex, savey;
1359   if (!userw || !userh) {
1360     wid.calcPrefSize(&pw, &ph);
1361   }
1362   
1363   pw = _props->getIntValue("width", pw);
1364   ph = _props->getIntValue("height", ph);
1365   px = savex = _props->getIntValue("x", (screenw - pw) / 2);
1366   py = savey = _props->getIntValue("y", (screenh - ph) / 2);
1367
1368   // Negative x/y coordinates are interpreted as distance from the top/right
1369   // corner rather than bottom/left.
1370   if (userx && px < 0)
1371     px = screenw - pw + px;
1372   if (usery && py < 0)
1373     py = screenh - ph + py;
1374
1375   // Define "x", "y", "width" and/or "height" in the property tree if they
1376   // are not specified in the configuration file.
1377   wid.layout(px, py, pw, ph);
1378
1379   applySize(_object);
1380   
1381   // Remove automatically generated properties, so the layout looks
1382   // the same next time around, or restore x and y to preserve negative coords.
1383   if (userx)
1384       _props->setIntValue("x", savex);
1385   else
1386       _props->removeChild("x");
1387
1388   if (usery)
1389       _props->setIntValue("y", savey);
1390   else
1391       _props->removeChild("y");
1392
1393   if (!userw) _props->removeChild("width");
1394   if (!userh) _props->removeChild("height");
1395 }
1396
1397 void
1398 FGPUIDialog::applySize(puObject *object)
1399 {
1400   // compound plib widgets use setUserData() for internal purposes, so refuse
1401   // to descend into anything that has other bits set than the following
1402   const int validUserData = PUCLASS_VALUE|PUCLASS_OBJECT|PUCLASS_GROUP|PUCLASS_INTERFACE
1403           |PUCLASS_FRAME|PUCLASS_TEXT|PUCLASS_BUTTON|PUCLASS_ONESHOT|PUCLASS_INPUT
1404           |PUCLASS_ARROW|PUCLASS_DIAL|PUCLASS_POPUP;
1405
1406   int type = object->getType();
1407   if ((type & PUCLASS_GROUP) && !(type & ~validUserData)) {
1408     puObject* c = ((puGroup *)object)->getFirstChild();
1409     for (; c != NULL; c = c->getNextObject()) {
1410       applySize(c);
1411     } // of child iteration
1412   } // of group object case
1413   
1414   GUIInfo *info = (GUIInfo *)object->getUserData();
1415   if (!info)
1416     return;
1417
1418   SGPropertyNode *n = info->node;
1419   if (!n) {
1420     SG_LOG(SG_GENERAL, SG_ALERT, "FGDialog::applySize: no props");
1421     return;
1422   }
1423   
1424   int x = n->getIntValue("x");
1425   int y = n->getIntValue("y");
1426   int w = n->getIntValue("width", 4);
1427   int h = n->getIntValue("height", 4);
1428   object->setPosition(x, y);
1429   object->setSize(w, h);
1430 }
1431
1432 ////////////////////////////////////////////////////////////////////////
1433 // Implementation of FGDialog::PropertyObject.
1434 ////////////////////////////////////////////////////////////////////////
1435
1436 FGPUIDialog::PropertyObject::PropertyObject(const char *n,
1437         puObject *o, SGPropertyNode_ptr p) :
1438     name(n),
1439     object(o),
1440     node(p)
1441 {
1442 }
1443
1444
1445
1446 ////////////////////////////////////////////////////////////////////////
1447 // Implementation of fgValueList and derived pui widgets
1448 ////////////////////////////////////////////////////////////////////////
1449
1450
1451 fgValueList::fgValueList(SGPropertyNode *p) :
1452     _props(p)
1453 {
1454     make_list();
1455 }
1456
1457 void
1458 fgValueList::update()
1459 {
1460     destroy_list();
1461     make_list();
1462 }
1463
1464 fgValueList::~fgValueList()
1465 {
1466     destroy_list();
1467 }
1468
1469 void
1470 fgValueList::make_list()
1471 {
1472   SGPropertyNode_ptr values = _props;
1473   const char* vname = "value";
1474   
1475   if (_props->hasChild("properties")) {
1476     // dynamic values, read from a property's children
1477     const char* path = _props->getStringValue("properties");
1478     values = fgGetNode(path, true);
1479   }
1480   
1481   if (_props->hasChild("property-name")) {
1482     vname = _props->getStringValue("property-name");
1483   }
1484   
1485   std::vector<SGPropertyNode_ptr> value_nodes = values->getChildren(vname);
1486   _list = new char *[value_nodes.size() + 1];
1487   unsigned int i;
1488   for (i = 0; i < value_nodes.size(); i++) {
1489     _list[i] = strdup((char *)value_nodes[i]->getStringValue());
1490   }
1491   _list[i] = 0;
1492 }
1493
1494 void
1495 fgValueList::destroy_list()
1496 {
1497     for (int i = 0; _list[i] != 0; i++)
1498         if (_list[i])
1499             free(_list[i]);
1500     delete[] _list;
1501 }
1502
1503
1504
1505 void
1506 fgList::update()
1507 {
1508     fgValueList::update();
1509     int top = getTopItem();
1510     newList(_list);
1511     setTopItem(top);
1512 }
1513
1514 ////////////////////////////////////////////////////////////////////////
1515 // Implementation of fgLogList
1516 ////////////////////////////////////////////////////////////////////////
1517
1518 void LogList::update()
1519 {
1520     if (!m_buffer) return;
1521     
1522     if (m_stamp != m_buffer->stamp()) {
1523         m_stamp = m_buffer->threadsafeCopy(m_items);
1524         m_items.push_back(NULL); // terminator value
1525         newList((char**) m_items.data());
1526         setTopItem(m_items.size() - 1); // scroll to bottom of list
1527     }
1528 }
1529
1530 void LogList::setBuffer(simgear::BufferedLogCallback* buf)
1531 {
1532     m_buffer = buf;
1533     m_stamp = m_buffer->stamp() - 1; // force an update
1534     update();
1535 }
1536
1537 ////////////////////////////////////////////////////////////////////////
1538 // Implementation of fgComboBox 
1539 ////////////////////////////////////////////////////////////////////////
1540
1541
1542 void fgComboBox::update()
1543 {
1544   if (_inHit) {
1545     return;
1546   }
1547   
1548   std::string curValue(getStringValue());
1549   fgValueList::update();
1550   newList(_list);
1551   int currentItem = puaComboBox::getCurrentItem();
1552
1553   
1554 // look for the previous value, in the new list
1555   for (int i = 0; _list[i] != 0; i++) {
1556     if (_list[i] == curValue) {
1557     // don't set the current item again; this is important to avoid
1558     // recursion here if the combo callback ultimately causes another dialog-update
1559       if (i != currentItem) {
1560         puaComboBox::setCurrentItem(i);
1561       }
1562       
1563       return;
1564     }
1565   } // of list values iteration
1566   
1567 // cound't find current item, default to first
1568   if (currentItem != 0) {
1569     puaComboBox::setCurrentItem(0);
1570   }
1571 }
1572
1573 int fgComboBox::checkHit(int b, int up, int x, int y)
1574 {
1575   _inHit = true;
1576   int r = puaComboBox::checkHit(b, up, x, y);
1577   _inHit = false;
1578   return r;
1579 }
1580
1581 void fgComboBox::setSize(int w, int h)
1582 {
1583   puaComboBox::setSize(w, h);
1584   recalc_bbox();
1585 }
1586
1587 void fgComboBox::recalc_bbox()
1588 {
1589 // bug-fix for issue #192
1590 // http://code.google.com/p/flightgear-bugs/issues/detail?id=192
1591 // puaComboBox is including the height of its popupMenu in the height
1592 // computation, which breaks layout computations.
1593 // this implementation skips popup-menus
1594   
1595   puBox contents;
1596   contents.empty();
1597   
1598   for (puObject *bo = dlist; bo != NULL; bo = bo -> getNextObject()) {
1599     if (bo->getType() & PUCLASS_POPUPMENU) {
1600       continue;
1601     }
1602     
1603     contents.extend (bo -> getBBox()) ;
1604   }
1605   
1606   abox.max[0] = abox.min[0] + contents.max[0] ;
1607   abox.max[1] = abox.min[1] + contents.max[1] ;
1608
1609   puObject::recalc_bbox () ;
1610
1611 }
1612
1613 // end of FGPUIDialog.cxx