#include "new_gui.hxx"
#include "AirportList.hxx"
+#include "property_list.hxx"
#include "layout.hxx"
////////////////////////////////////////////////////////////////////////
setColor(obj, props);
return obj;
+ } else if (type == "property-list") {
+ PropertyList * obj = new PropertyList(x, y, x + width, y + height, globals->get_props());
+ if (presetSize)
+ obj->setSize(width, height);
+ setupObject(obj, props);
+ setColor(obj, props);
+ return obj;
+
} else if (type == "input") {
puInput * obj = new puInput(x, y, x + width, y + height);
setupObject(obj, props);