3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2010 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
8 #include <msp/gltk/button.h>
9 #include <msp/gltk/label.h>
10 #include <msp/strings/formatter.h>
11 #include <msp/strings/lexicalcast.h>
12 #include "libmarklin/locotype.h"
14 #include "trainproperties.h"
18 using namespace Marklin;
20 TrainProperties::TrainProperties(Engineer &e, const GLtk::Resources &r, Train *t):
29 add(*(label=new GLtk::Label(res, "Train properties")));
30 label->set_geometry(GLtk::Geometry(10, geom.h-25, geom.w-20, 20));
32 add(*(ent_addr=new GLtk::Entry(res)));
33 ent_addr->set_geometry(GLtk::Geometry(10, geom.h-50, 40, 20));
35 add(*(drp_type=new GLtk::Dropdown(res)));
36 drp_type->set_geometry(GLtk::Geometry(60, geom.h-50, geom.w-70, 20));
38 const map<unsigned, VehicleType *> &vehs = engineer.get_catalogue().get_vehicles();
40 for(map<unsigned, VehicleType *>::const_iterator i=vehs.begin(); i!=vehs.end(); ++i, ++n)
42 if(!dynamic_cast<LocoType *>(i->second))
45 drp_type->append(format("%d %s", i->second->get_article_number(), i->second->get_name()));
46 if(train && i->second==&train->get_locomotive_type())
47 drp_type->set_selected_index(n);
50 add(*(ent_name=new GLtk::Entry(res)));
51 ent_name->set_geometry(GLtk::Geometry(10, geom.h-75, geom.w-20, 20));
53 add(*(drp_priority=new GLtk::Dropdown(res)));
54 drp_priority->set_geometry(GLtk::Geometry(10, geom.h-100, geom.w-20, 20));
55 drp_priority->append("Standard freight");
56 drp_priority->append("Express freight");
57 drp_priority->append("Unspecified");
58 drp_priority->append("Standard passenger");
59 drp_priority->append("Express passenger");
63 ent_addr->set_text(lexical_cast(train->get_address()));
64 ent_name->set_text(train->get_name());
65 drp_priority->set_selected_index(train->get_priority()+2);
69 ent_name->set_text(format("Train %d", engineer.get_layout().get_trains().size()+1));
70 drp_priority->set_selected_index(2);
74 void TrainProperties::on_ok_clicked()
78 const map<unsigned, VehicleType *> &vehs = engineer.get_catalogue().get_vehicles();
79 map<unsigned, VehicleType *>::const_iterator i = vehs.begin();
80 unsigned n = drp_type->get_selected_index();
81 while(!dynamic_cast<LocoType *>(i->second))
85 if(dynamic_cast<LocoType *>(i->second))
90 unsigned addr = lexical_cast<unsigned>(ent_addr->get_text());
91 train = new Train(engineer.get_layout(), *dynamic_cast<LocoType *>(i->second), addr);
94 train->set_name(ent_name->get_text());
95 train->set_priority(drp_priority->get_selected_index()-2);