1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
/*
* Copyright (c) 1997 - 2003 Hansjrg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#ifndef trafficlight_info_t_h
#define trafficlight_info_t_h
#include "thing_info.h"
#include "components/action_listener.h"
#include "components/gui_numberinput.h"
#include "gui_container.h"
class roadsign_t;
/**
* Info window for factories
* @author Hj. Malthaner
*/
class trafficlight_info_t : public ding_infowin_t, public action_listener_t
{
private:
roadsign_t* ampel;
gui_numberinput_t ns, ow, offset;
public:
trafficlight_info_t(roadsign_t* s);
/**
* Manche Fenster haben einen Hilfetext assoziiert.
* @return den Dateinamen fr die Hilfe, oder NULL
* @author Hj. Malthaner
*/
const char *get_hilfe_datei() const {return "trafficlight_info.txt";}
bool action_triggered(gui_action_creator_t*, value_t) OVERRIDE;
// called, after external change
void update_data();
};
#endif
|