]> git.tdb.fi Git - r2c2.git/blob - source/engineer/trainproperties.cpp
46b9541c4331a7e9e7e951e73a23fa95f8716ffc
[r2c2.git] / source / engineer / trainproperties.cpp
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2010  Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
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"
13 #include "engineer.h"
14 #include "trainproperties.h"
15
16 using namespace std;
17 using namespace Msp;
18 using namespace Marklin;
19
20 TrainProperties::TrainProperties(Engineer &e, const GLtk::Resources &r, Train *t):
21         Widget(r),
22         Dialog(r),
23         engineer(e),
24         train(t)
25 {
26         set_size(200, 120);
27
28         GLtk::Label *label;
29         add(*(label=new GLtk::Label(res, "Train properties")));
30         label->set_geometry(GLtk::Geometry(10, geom.h-25, geom.w-20, 20));
31
32         add(*(ent_addr=new GLtk::Entry(res)));
33         ent_addr->set_geometry(GLtk::Geometry(10, geom.h-50, 40, 20));
34
35         add(*(drp_type=new GLtk::Dropdown(res)));
36         drp_type->set_geometry(GLtk::Geometry(60, geom.h-50, geom.w-70, 20));
37
38         const map<unsigned, LocoType *> &locos = engineer.get_catalogue().get_locomotives();
39         unsigned n = 0;
40         for(map<unsigned, LocoType *>::const_iterator i=locos.begin(); i!=locos.end(); ++i, ++n)
41         {
42                 drp_type->append(format("%d %s", i->second->get_article_number(), i->second->get_name()));
43                 if(train && i->second==&train->get_locomotive_type())
44                         drp_type->set_selected_index(n);
45         }
46
47         add(*(ent_name=new GLtk::Entry(res)));
48         ent_name->set_geometry(GLtk::Geometry(10, geom.h-75, geom.w-20, 20));
49
50         if(train)
51         {
52                 ent_addr->set_text(lexical_cast(train->get_address()));
53                 ent_name->set_text(train->get_name());
54         }
55         else
56                 ent_name->set_text(format("Train %d", engineer.get_layout().get_trains().size()+1));
57 }
58
59 void TrainProperties::on_ok_clicked()
60 {
61         if(!train)
62         {
63                 const map<unsigned, LocoType *> &locos = engineer.get_catalogue().get_locomotives();
64                 map<unsigned, LocoType *>::const_iterator i = locos.begin();
65                 advance(i, drp_type->get_selected_index());
66
67                 unsigned addr = lexical_cast<unsigned>(ent_addr->get_text());
68                 train = new Train(engineer.get_layout(), *i->second, addr);
69         }
70
71         train->set_name(ent_name->get_text());
72 }