]> git.mxchange.org Git - flightgear.git/blob - src/GUI/FGPUIDialog.cxx
Disable testing hacks for package installs.
[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         FGFontCache *fc = globals->get_fontcache();
800         _font = fc->get(fontnode);
801     } else {
802         _font = _gui->getDefaultFont();
803     }
804     wid.setDefaultFont(_font, int(_font->getPointSize()));
805
806     int pw = 0, ph = 0;
807     int px, py, savex, savey;
808     if (!userw || !userh)
809         wid.calcPrefSize(&pw, &ph);
810     pw = props->getIntValue("width", pw);
811     ph = props->getIntValue("height", ph);
812     px = savex = props->getIntValue("x", (screenw - pw) / 2);
813     py = savey = props->getIntValue("y", (screenh - ph) / 2);
814
815     // Negative x/y coordinates are interpreted as distance from the top/right
816     // corner rather than bottom/left.
817     if (userx && px < 0)
818         px = screenw - pw + px;
819     if (usery && py < 0)
820         py = screenh - ph + py;
821
822     // Define "x", "y", "width" and/or "height" in the property tree if they
823     // are not specified in the configuration file.
824     wid.layout(px, py, pw, ph);
825
826     // Use the dimension and location properties as specified in the
827     // configuration file or from the layout widget.
828     _object = makeObject(props, screenw, screenh);
829
830     // Remove automatically generated properties, so the layout looks
831     // the same next time around, or restore x and y to preserve negative coords.
832     if (userx)
833         props->setIntValue("x", savex);
834     else
835         props->removeChild("x");
836
837     if (usery)
838         props->setIntValue("y", savey);
839     else
840         props->removeChild("y");
841
842     if (!userw) props->removeChild("width");
843     if (!userh) props->removeChild("height");
844
845     if (_object != 0) {
846         _object->reveal();
847     } else {
848         SG_LOG(SG_GENERAL, SG_ALERT, "Widget "
849                << props->getStringValue("name", "[unnamed]")
850                << " does not contain a proper GUI definition");
851     }
852 }
853
854 puObject *
855 FGPUIDialog::makeObject (SGPropertyNode *props, int parentWidth, int parentHeight)
856 {
857     if (!props->getBoolValue("enabled", true))
858         return 0;
859
860     bool presetSize = props->hasValue("width") && props->hasValue("height");
861     int width = props->getIntValue("width", parentWidth);
862     int height = props->getIntValue("height", parentHeight);
863     int x = props->getIntValue("x", (parentWidth - width) / 2);
864     int y = props->getIntValue("y", (parentHeight - height) / 2);
865     string type = props->getName();
866
867     if (type.empty())
868         type = "dialog";
869
870     if (type == "dialog") {
871         puPopup *obj;
872         bool draggable = props->getBoolValue("draggable", true);
873         bool resizable = props->getBoolValue("resizable", false);
874         if (props->getBoolValue("modal", false))
875             obj = new puDialogBox(x, y);
876         else
877             obj = new fgPopup(x, y, resizable, draggable);
878         setupGroup(obj, props, width, height, true);
879         setColor(obj, props);
880         return obj;
881
882     } else if (type == "group") {
883         puGroup *obj = new puGroup(x, y);
884         setupGroup(obj, props, width, height, false);
885         setColor(obj, props);
886         return obj;
887
888     } else if (type == "frame") {
889         puGroup *obj = new puGroup(x, y);
890         setupGroup(obj, props, width, height, true);
891         setColor(obj, props);
892         return obj;
893
894     } else if (type == "hrule" || type == "vrule") {
895         puFrame *obj = new puFrame(x, y, x + width, y + height);
896         obj->setBorderThickness(0);
897         setupObject(obj, props);
898         setColor(obj, props, BACKGROUND|FOREGROUND|HIGHLIGHT);
899         return obj;
900
901     } else if (type == "list") {
902         int slider_width = props->getIntValue("slider", 20);
903         fgList *obj = new fgList(x, y, x + width, y + height, props, slider_width);
904         if (presetSize)
905             obj->setSize(width, height);
906         setupObject(obj, props);
907         setColor(obj, props);
908         return obj;
909
910     } else if (type == "airport-list") {
911         AirportList *obj = new AirportList(x, y, x + width, y + height);
912         if (presetSize)
913             obj->setSize(width, height);
914         setupObject(obj, props);
915         setColor(obj, props);
916         return obj;
917
918     } else if (type == "property-list") {
919         PropertyList *obj = new PropertyList(x, y, x + width, y + height, globals->get_props());
920         if (presetSize)
921             obj->setSize(width, height);
922         setupObject(obj, props);
923         setColor(obj, props);
924         return obj;
925
926     } else if (type == "input") {
927         puInput *obj = new puInput(x, y, x + width, y + height);
928         setupObject(obj, props);
929         setColor(obj, props, FOREGROUND|LABEL);
930         return obj;
931
932     } else if (type == "text") {
933         puText *obj = new puText(x, y);
934         setupObject(obj, props);
935
936         // Layed-out objects need their size set, and non-layout ones
937         // get a different placement.
938         if (presetSize)
939             obj->setSize(width, height);
940         else
941             obj->setLabelPlace(PUPLACE_LABEL_DEFAULT);
942         setColor(obj, props, LABEL);
943         return obj;
944
945     } else if (type == "checkbox") {
946         puButton *obj;
947         obj = new puButton(x, y, x + width, y + height, PUBUTTON_XCHECK);
948         setupObject(obj, props);
949         setColor(obj, props, FOREGROUND|LABEL);
950         return obj;
951
952     } else if (type == "radio") {
953         puButton *obj;
954         obj = new puButton(x, y, x + width, y + height, PUBUTTON_CIRCLE);
955         setupObject(obj, props);
956         setColor(obj, props, FOREGROUND|LABEL);
957         return obj;
958
959     } else if (type == "button") {
960         puButton *obj;
961         const char *legend = props->getStringValue("legend", "[none]");
962         if (props->getBoolValue("one-shot", true))
963             obj = new puOneShot(x, y, legend);
964         else
965             obj = new puButton(x, y, legend);
966         if (presetSize)
967             obj->setSize(width, height);
968         setupObject(obj, props);
969         setColor(obj, props);
970         return obj;
971     } else if (type == "map") {
972         MapWidget* mapWidget = new MapWidget(x, y, x + width, y + height);
973         setupObject(mapWidget, props);
974         _activeWidgets.push_back(mapWidget);
975         return mapWidget;
976     } else if (type == "canvas") {
977         CanvasWidget* canvasWidget = new CanvasWidget( x, y,
978                                                        x + width, y + height,
979                                                        props,
980                                                        _module );
981         setupObject(canvasWidget, props);
982         return canvasWidget;
983     } else if (type == "combo") {
984         fgComboBox *obj = new fgComboBox(x, y, x + width, y + height, props,
985                 props->getBoolValue("editable", false));
986         setupObject(obj, props);
987         setColor(obj, props, EDITFIELD);
988         return obj;
989
990     } else if (type == "slider") {
991         bool vertical = props->getBoolValue("vertical", false);
992         puSlider *obj = new puSlider(x, y, (vertical ? height : width), vertical);
993         obj->setMinValue(props->getFloatValue("min", 0.0));
994         obj->setMaxValue(props->getFloatValue("max", 1.0));
995         obj->setStepSize(props->getFloatValue("step"));
996         obj->setSliderFraction(props->getFloatValue("fraction"));
997 #if PLIB_VERSION > 185
998         obj->setPageStepSize(props->getFloatValue("pagestep"));
999 #endif
1000         setupObject(obj, props);
1001         if (presetSize)
1002             obj->setSize(width, height);
1003         setColor(obj, props, FOREGROUND|LABEL);
1004         return obj;
1005
1006     } else if (type == "dial") {
1007         puDial *obj = new puDial(x, y, width);
1008         obj->setMinValue(props->getFloatValue("min", 0.0));
1009         obj->setMaxValue(props->getFloatValue("max", 1.0));
1010         obj->setWrap(props->getBoolValue("wrap", true));
1011         setupObject(obj, props);
1012         setColor(obj, props, FOREGROUND|LABEL);
1013         return obj;
1014
1015     } else if (type == "textbox") {
1016         int slider_width = props->getIntValue("slider", 20);
1017         int wrap = props->getBoolValue("wrap", true);
1018 #if PLIB_VERSION > 185
1019         puaLargeInput *obj = new puaLargeInput(x, y,
1020                 x + width, x + height, 11, slider_width, wrap);
1021 #else
1022         puaLargeInput *obj = new puaLargeInput(x, y,
1023                 x + width, x + height, 2, slider_width, wrap);
1024 #endif
1025
1026         if (props->getBoolValue("editable"))
1027             obj->enableInput();
1028         else
1029             obj->disableInput();
1030
1031         if (presetSize)
1032             obj->setSize(width, height);
1033         setupObject(obj, props);
1034         setColor(obj, props, FOREGROUND|LABEL);
1035
1036         int top = props->getIntValue("top-line", 0);
1037         obj->setTopLineInWindow(top < 0 ? unsigned(-1) >> 1 : top);
1038         return obj;
1039
1040     } else if (type == "select") {
1041         fgSelectBox *obj = new fgSelectBox(x, y, x + width, y + height, props);
1042         setupObject(obj, props);
1043         setColor(obj, props, EDITFIELD);
1044         return obj;
1045     } else if (type == "waypointlist") {
1046         ScrolledWaypointList* obj = new ScrolledWaypointList(x, y, width, height);
1047         setupObject(obj, props);
1048         return obj;
1049         
1050     } else if (type == "loglist") {
1051         LogList* obj = new LogList(x, y, width, height, 20);
1052         string logClass = props->getStringValue("logclass");
1053         if (logClass == "terrasync") {
1054           simgear::SGTerraSync* tsync = (simgear::SGTerraSync*) globals->get_subsystem("terrasync");
1055           if (tsync) {
1056             obj->setBuffer(tsync->log());
1057           }
1058         } else {
1059           FGNasalSys* nasal = (FGNasalSys*) globals->get_subsystem("nasal");
1060           obj->setBuffer(nasal->log());
1061         }
1062
1063         setupObject(obj, props);
1064         _activeWidgets.push_back(obj);
1065         return obj;
1066     } else {
1067         return 0;
1068     }
1069 }
1070
1071 void
1072 FGPUIDialog::setupObject (puObject *object, SGPropertyNode *props)
1073 {
1074     GUIInfo *info = new GUIInfo(this);
1075     object->setUserData(info);
1076     _info.push_back(info);
1077     object->setLabelPlace(PUPLACE_CENTERED_RIGHT);
1078     object->makeReturnDefault(props->getBoolValue("default"));
1079     info->node = props;
1080
1081     if (props->hasValue("legend")) {
1082         info->legend = props->getStringValue("legend");
1083         object->setLegend(info->legend.c_str());
1084     }
1085
1086     if (props->hasValue("label")) {
1087         info->label = props->getStringValue("label");
1088         object->setLabel(info->label.c_str());
1089     }
1090
1091     if (props->hasValue("border"))
1092         object->setBorderThickness( props->getIntValue("border", 2) );
1093
1094     if (SGPropertyNode *nft = props->getNode("font", false)) {
1095        FGFontCache *fc = globals->get_fontcache();
1096        puFont *lfnt = fc->get(nft);
1097        object->setLabelFont(*lfnt);
1098        object->setLegendFont(*lfnt);
1099     } else {
1100        object->setLabelFont(*_font);
1101     }
1102
1103     if (props->hasChild("visible")) {
1104       ConditionalObject* cnd = new ConditionalObject("visible", object);
1105       cnd->setCondition(sgReadCondition(globals->get_props(), props->getChild("visible")));
1106       _conditionalObjects.push_back(cnd);
1107     }
1108
1109     if (props->hasChild("enable")) {
1110       ConditionalObject* cnd = new ConditionalObject("enable", object);
1111       cnd->setCondition(sgReadCondition(globals->get_props(), props->getChild("enable")));
1112       _conditionalObjects.push_back(cnd);
1113     }
1114
1115     string type = props->getName();
1116     if (type == "input" && props->getBoolValue("live"))
1117         object->setDownCallback(action_callback);
1118
1119     if (type == "text") {
1120         const char *format = props->getStringValue("format", 0);
1121         if (format) {
1122             info->fmt_type = validate_format(format);
1123             if (info->fmt_type != f_INVALID)
1124                 info->format = format;
1125             else
1126                 SG_LOG(SG_GENERAL, SG_ALERT, "DIALOG: invalid <format> '"
1127                         << format << '\'');
1128         }
1129     }
1130
1131     if (props->hasValue("property")) {
1132         const char *name = props->getStringValue("name");
1133         if (name == 0)
1134             name = "";
1135         const char *propname = props->getStringValue("property");
1136         SGPropertyNode_ptr node = fgGetNode(propname, true);
1137         if (type == "map") {
1138           // mapWidget binds to a sub-tree of properties, and
1139           // ignores the puValue mechanism, so special case things here
1140           MapWidget* mw = static_cast<MapWidget*>(object);
1141           mw->setProperty(node);
1142         } else {
1143             // normal widget, creating PropertyObject
1144             copy_to_pui(node, object);
1145             PropertyObject *po = new PropertyObject(name, object, node);
1146             _propertyObjects.push_back(po);
1147             if (props->getBoolValue("live"))
1148                 _liveObjects.push_back(po);
1149         }
1150         
1151
1152     }
1153
1154     SGPropertyNode *dest = fgGetNode("/sim/bindings/gui", true);
1155     std::vector<SGPropertyNode_ptr> bindings = props->getChildren("binding");
1156     if (bindings.size() > 0) {
1157         info->key = props->getIntValue("keynum", -1);
1158         if (props->hasValue("key"))
1159             info->key = getKeyCode(props->getStringValue("key", ""));
1160
1161         for (unsigned int i = 0; i < bindings.size(); i++) {
1162             unsigned int j = 0;
1163             SGPropertyNode_ptr binding;
1164             while (dest->getChild("binding", j))
1165                 j++;
1166
1167             const char *cmd = bindings[i]->getStringValue("command");
1168             if (!strcmp(cmd, "nasal"))
1169                 bindings[i]->setStringValue("module", _module.c_str());
1170
1171             binding = dest->getChild("binding", j, true);
1172             copyProperties(bindings[i], binding);
1173             info->bindings.push_back(new SGBinding(binding, globals->get_props()));
1174         }
1175         object->setCallback(action_callback);
1176     }
1177 }
1178
1179 void
1180 FGPUIDialog::setupGroup(puGroup *group, SGPropertyNode *props,
1181        int width, int height, bool makeFrame)
1182 {
1183     setupObject(group, props);
1184
1185     if (makeFrame) {
1186         puFrame* f = new puFrame(0, 0, width, height);
1187         setColor(f, props);
1188     }
1189
1190     int nChildren = props->nChildren();
1191     for (int i = 0; i < nChildren; i++)
1192         makeObject(props->getChild(i), width, height);
1193     group->close();
1194 }
1195
1196 void
1197 FGPUIDialog::setColor(puObject *object, SGPropertyNode *props, int which)
1198 {
1199     string type = props->getName();
1200     if (type.empty())
1201         type = "dialog";
1202     if (type == "textbox" && props->getBoolValue("editable"))
1203         type += "-editable";
1204
1205     FGColor c(_gui->getColor("background"));
1206     c.merge(_gui->getColor(type));
1207     c.merge(props->getNode("color"));
1208     if (c.isValid())
1209         object->setColourScheme(c.red(), c.green(), c.blue(), c.alpha());
1210
1211     const struct {
1212         int mask;
1213         int id;
1214         const char *name;
1215         const char *cname;
1216     } pucol[] = {
1217         { BACKGROUND, PUCOL_BACKGROUND, "background", "color-background" },
1218         { FOREGROUND, PUCOL_FOREGROUND, "foreground", "color-foreground" },
1219         { HIGHLIGHT,  PUCOL_HIGHLIGHT,  "highlight",  "color-highlight" },
1220         { LABEL,      PUCOL_LABEL,      "label",      "color-label" },
1221         { LEGEND,     PUCOL_LEGEND,     "legend",     "color-legend" },
1222         { MISC,       PUCOL_MISC,       "misc",       "color-misc" },
1223         { EDITFIELD,  PUCOL_EDITFIELD,  "editfield",  "color-editfield" },
1224     };
1225
1226     const int numcol = sizeof(pucol) / sizeof(pucol[0]);
1227
1228     for (int i = 0; i < numcol; i++) {
1229         bool dirty = false;
1230         c.clear();
1231         c.setAlpha(1.0);
1232
1233         dirty |= c.merge(_gui->getColor(type + '-' + pucol[i].name));
1234         if (which & pucol[i].mask)
1235             dirty |= c.merge(props->getNode("color"));
1236
1237         if ((pucol[i].mask == LABEL) && !c.isValid())
1238             dirty |= c.merge(_gui->getColor("label"));
1239
1240         dirty |= c.merge(props->getNode(pucol[i].cname));
1241
1242         if (c.isValid() && dirty)
1243             object->setColor(pucol[i].id, c.red(), c.green(), c.blue(), c.alpha());
1244     }
1245 }
1246
1247
1248 static struct {
1249     const char *name;
1250     int key;
1251 } keymap[] = {
1252     {"backspace", 8},
1253     {"tab", 9},
1254     {"return", 13},
1255     {"enter", 13},
1256     {"esc", 27},
1257     {"escape", 27},
1258     {"space", ' '},
1259     {"&amp;", '&'},
1260     {"and", '&'},
1261     {"&lt;", '<'},
1262     {"&gt;", '>'},
1263     {"f1", PU_KEY_F1},
1264     {"f2", PU_KEY_F2},
1265     {"f3", PU_KEY_F3},
1266     {"f4", PU_KEY_F4},
1267     {"f5", PU_KEY_F5},
1268     {"f6", PU_KEY_F6},
1269     {"f7", PU_KEY_F7},
1270     {"f8", PU_KEY_F8},
1271     {"f9", PU_KEY_F9},
1272     {"f10", PU_KEY_F10},
1273     {"f11", PU_KEY_F11},
1274     {"f12", PU_KEY_F12},
1275     {"left", PU_KEY_LEFT},
1276     {"up", PU_KEY_UP},
1277     {"right", PU_KEY_RIGHT},
1278     {"down", PU_KEY_DOWN},
1279     {"pageup", PU_KEY_PAGE_UP},
1280     {"pagedn", PU_KEY_PAGE_DOWN},
1281     {"home", PU_KEY_HOME},
1282     {"end", PU_KEY_END},
1283     {"insert", PU_KEY_INSERT},
1284     {0, -1},
1285 };
1286
1287 int
1288 FGPUIDialog::getKeyCode(const char *str)
1289 {
1290     enum {
1291         CTRL = 0x1,
1292         SHIFT = 0x2,
1293         ALT = 0x4,
1294     };
1295
1296     while (*str == ' ')
1297         str++;
1298
1299     char *buf = new char[strlen(str) + 1];
1300     strcpy(buf, str);
1301     char *s = buf + strlen(buf);
1302     while (s > str && s[-1] == ' ')
1303         s--;
1304     *s = 0;
1305     s = buf;
1306
1307     int mod = 0;
1308     while (1) {
1309         if (!strncmp(s, "Ctrl-", 5) || !strncmp(s, "CTRL-", 5))
1310             s += 5, mod |= CTRL;
1311         else if (!strncmp(s, "Shift-", 6) || !strncmp(s, "SHIFT-", 6))
1312             s += 6, mod |= SHIFT;
1313         else if (!strncmp(s, "Alt-", 4) || !strncmp(s, "ALT-", 4))
1314             s += 4, mod |= ALT;
1315         else
1316             break;
1317     }
1318
1319     int key = -1;
1320     if (strlen(s) == 1 && isascii(*s)) {
1321         key = *s;
1322         if (mod & SHIFT)
1323             key = toupper(key);
1324         if (mod & CTRL)
1325             key = toupper(key) - '@';
1326         /* if (mod & ALT)
1327             ;   // Alt not propagated to the gui
1328         */
1329     } else {
1330         for (char *t = s; *t; t++)
1331             *t = tolower(*t);
1332         for (int i = 0; keymap[i].name; i++) {
1333             if (!strcmp(s, keymap[i].name)) {
1334                 key = keymap[i].key;
1335                 break;
1336             }
1337         }
1338     }
1339     delete[] buf;
1340     return key;
1341 }
1342
1343 void FGPUIDialog::relayout()
1344 {
1345   _needsRelayout = false;
1346   
1347   int screenw = globals->get_props()->getIntValue("/sim/startup/xsize");
1348   int screenh = globals->get_props()->getIntValue("/sim/startup/ysize");
1349
1350   bool userx = _props->hasValue("x");
1351   bool usery = _props->hasValue("y");
1352   bool userw = _props->hasValue("width");
1353   bool userh = _props->hasValue("height");
1354
1355   // Let the layout widget work in the same property subtree.
1356   LayoutWidget wid(_props);
1357   wid.setDefaultFont(_font, int(_font->getPointSize()));
1358
1359   int pw = 0, ph = 0;
1360   int px, py, savex, savey;
1361   if (!userw || !userh) {
1362     wid.calcPrefSize(&pw, &ph);
1363   }
1364   
1365   pw = _props->getIntValue("width", pw);
1366   ph = _props->getIntValue("height", ph);
1367   px = savex = _props->getIntValue("x", (screenw - pw) / 2);
1368   py = savey = _props->getIntValue("y", (screenh - ph) / 2);
1369
1370   // Negative x/y coordinates are interpreted as distance from the top/right
1371   // corner rather than bottom/left.
1372   if (userx && px < 0)
1373     px = screenw - pw + px;
1374   if (usery && py < 0)
1375     py = screenh - ph + py;
1376
1377   // Define "x", "y", "width" and/or "height" in the property tree if they
1378   // are not specified in the configuration file.
1379   wid.layout(px, py, pw, ph);
1380
1381   applySize(_object);
1382   
1383   // Remove automatically generated properties, so the layout looks
1384   // the same next time around, or restore x and y to preserve negative coords.
1385   if (userx)
1386       _props->setIntValue("x", savex);
1387   else
1388       _props->removeChild("x");
1389
1390   if (usery)
1391       _props->setIntValue("y", savey);
1392   else
1393       _props->removeChild("y");
1394
1395   if (!userw) _props->removeChild("width");
1396   if (!userh) _props->removeChild("height");
1397 }
1398
1399 void
1400 FGPUIDialog::applySize(puObject *object)
1401 {
1402   // compound plib widgets use setUserData() for internal purposes, so refuse
1403   // to descend into anything that has other bits set than the following
1404   const int validUserData = PUCLASS_VALUE|PUCLASS_OBJECT|PUCLASS_GROUP|PUCLASS_INTERFACE
1405           |PUCLASS_FRAME|PUCLASS_TEXT|PUCLASS_BUTTON|PUCLASS_ONESHOT|PUCLASS_INPUT
1406           |PUCLASS_ARROW|PUCLASS_DIAL|PUCLASS_POPUP;
1407
1408   int type = object->getType();
1409   if ((type & PUCLASS_GROUP) && !(type & ~validUserData)) {
1410     puObject* c = ((puGroup *)object)->getFirstChild();
1411     for (; c != NULL; c = c->getNextObject()) {
1412       applySize(c);
1413     } // of child iteration
1414   } // of group object case
1415   
1416   GUIInfo *info = (GUIInfo *)object->getUserData();
1417   if (!info)
1418     return;
1419
1420   SGPropertyNode *n = info->node;
1421   if (!n) {
1422     SG_LOG(SG_GENERAL, SG_ALERT, "FGDialog::applySize: no props");
1423     return;
1424   }
1425   
1426   int x = n->getIntValue("x");
1427   int y = n->getIntValue("y");
1428   int w = n->getIntValue("width", 4);
1429   int h = n->getIntValue("height", 4);
1430   object->setPosition(x, y);
1431   object->setSize(w, h);
1432 }
1433
1434 ////////////////////////////////////////////////////////////////////////
1435 // Implementation of FGDialog::PropertyObject.
1436 ////////////////////////////////////////////////////////////////////////
1437
1438 FGPUIDialog::PropertyObject::PropertyObject(const char *n,
1439         puObject *o, SGPropertyNode_ptr p) :
1440     name(n),
1441     object(o),
1442     node(p)
1443 {
1444 }
1445
1446
1447
1448 ////////////////////////////////////////////////////////////////////////
1449 // Implementation of fgValueList and derived pui widgets
1450 ////////////////////////////////////////////////////////////////////////
1451
1452
1453 fgValueList::fgValueList(SGPropertyNode *p) :
1454     _props(p)
1455 {
1456     make_list();
1457 }
1458
1459 void
1460 fgValueList::update()
1461 {
1462     destroy_list();
1463     make_list();
1464 }
1465
1466 fgValueList::~fgValueList()
1467 {
1468     destroy_list();
1469 }
1470
1471 void
1472 fgValueList::make_list()
1473 {
1474   SGPropertyNode_ptr values = _props;
1475   const char* vname = "value";
1476   
1477   if (_props->hasChild("properties")) {
1478     // dynamic values, read from a property's children
1479     const char* path = _props->getStringValue("properties");
1480     values = fgGetNode(path, true);
1481   }
1482   
1483   if (_props->hasChild("property-name")) {
1484     vname = _props->getStringValue("property-name");
1485   }
1486   
1487   std::vector<SGPropertyNode_ptr> value_nodes = values->getChildren(vname);
1488   _list = new char *[value_nodes.size() + 1];
1489   unsigned int i;
1490   for (i = 0; i < value_nodes.size(); i++) {
1491     _list[i] = strdup((char *)value_nodes[i]->getStringValue());
1492   }
1493   _list[i] = 0;
1494 }
1495
1496 void
1497 fgValueList::destroy_list()
1498 {
1499     for (int i = 0; _list[i] != 0; i++)
1500         if (_list[i])
1501             free(_list[i]);
1502     delete[] _list;
1503 }
1504
1505
1506
1507 void
1508 fgList::update()
1509 {
1510     fgValueList::update();
1511     int top = getTopItem();
1512     newList(_list);
1513     setTopItem(top);
1514 }
1515
1516 ////////////////////////////////////////////////////////////////////////
1517 // Implementation of fgLogList
1518 ////////////////////////////////////////////////////////////////////////
1519
1520 void LogList::update()
1521 {
1522     if (!m_buffer) return;
1523     
1524     if (m_stamp != m_buffer->stamp()) {
1525         m_stamp = m_buffer->threadsafeCopy(m_items);
1526         m_items.push_back(NULL); // terminator value
1527         newList((char**) m_items.data());
1528         setTopItem(m_items.size() - 1); // scroll to bottom of list
1529     }
1530 }
1531
1532 void LogList::setBuffer(simgear::BufferedLogCallback* buf)
1533 {
1534     m_buffer = buf;
1535     m_stamp = m_buffer->stamp() - 1; // force an update
1536     update();
1537 }
1538
1539 ////////////////////////////////////////////////////////////////////////
1540 // Implementation of fgComboBox 
1541 ////////////////////////////////////////////////////////////////////////
1542
1543
1544 void fgComboBox::update()
1545 {
1546   if (_inHit) {
1547     return;
1548   }
1549   
1550   std::string curValue(getStringValue());
1551   fgValueList::update();
1552   newList(_list);
1553   int currentItem = puaComboBox::getCurrentItem();
1554
1555   
1556 // look for the previous value, in the new list
1557   for (int i = 0; _list[i] != 0; i++) {
1558     if (_list[i] == curValue) {
1559     // don't set the current item again; this is important to avoid
1560     // recursion here if the combo callback ultimately causes another dialog-update
1561       if (i != currentItem) {
1562         puaComboBox::setCurrentItem(i);
1563       }
1564       
1565       return;
1566     }
1567   } // of list values iteration
1568   
1569 // cound't find current item, default to first
1570   if (currentItem != 0) {
1571     puaComboBox::setCurrentItem(0);
1572   }
1573 }
1574
1575 int fgComboBox::checkHit(int b, int up, int x, int y)
1576 {
1577   _inHit = true;
1578   int r = puaComboBox::checkHit(b, up, x, y);
1579   _inHit = false;
1580   return r;
1581 }
1582
1583 void fgComboBox::setSize(int w, int h)
1584 {
1585   puaComboBox::setSize(w, h);
1586   recalc_bbox();
1587 }
1588
1589 void fgComboBox::recalc_bbox()
1590 {
1591 // bug-fix for issue #192
1592 // http://code.google.com/p/flightgear-bugs/issues/detail?id=192
1593 // puaComboBox is including the height of its popupMenu in the height
1594 // computation, which breaks layout computations.
1595 // this implementation skips popup-menus
1596   
1597   puBox contents;
1598   contents.empty();
1599   
1600   for (puObject *bo = dlist; bo != NULL; bo = bo -> getNextObject()) {
1601     if (bo->getType() & PUCLASS_POPUPMENU) {
1602       continue;
1603     }
1604     
1605     contents.extend (bo -> getBBox()) ;
1606   }
1607   
1608   abox.max[0] = abox.min[0] + contents.max[0] ;
1609   abox.max[1] = abox.min[1] + contents.max[1] ;
1610
1611   puObject::recalc_bbox () ;
1612
1613 }
1614
1615 // end of FGPUIDialog.cxx