forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhalt_info.h
99 lines (78 loc) · 2.12 KB
/
halt_info.h
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
* halt_info.h
*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project and may not be used
* in other projects without written permission of the author.
*/
#ifndef gui_halt_info_h
#define gui_halt_info_h
#include "gui_frame.h"
#include "gui_label.h"
#include "gui_scrollpane.h"
#include "components/gui_textarea.h"
#include "components/gui_textinput.h"
#include "button.h"
#include "world_view_t.h"
#include "ifc/action_listener.h"
#include "../halthandle_t.h"
#ifndef cbuffer_t_h
#include "../utils/cbuffer_t.h"
#endif
class gui_chart_t;
/**
* Dies stellt ein Fenster mit den Zielinformationen
* fuer eine Haltestelle dar.
*
* @author Hj. Malthaner
*/
class halt_info_t : public gui_frame_t, private action_listener_t
{
private:
gui_scrollpane_t scrolly;
gui_textarea_t text;
gui_textinput_t input;
gui_chart_t *chart;
gui_label_t sort_label;
world_view_t view;
button_t button;
button_t sort_button; // @author hsiegeln
button_t filterButtons[7];
button_t toggler;
bool btoggled;
bool bFilterIsActive[7];
halthandle_t halt;
/**
* Buffer for freight info text string.
* @author Hj. Malthaner
*/
cbuffer_t freight_info;
karte_t *welt;
public:
halt_info_t(karte_t *welt, halthandle_t halt);
/**
* Manche Fenster haben einen Hilfetext assoziiert.
* @return den Dateinamen für die Hilfe, oder NULL
* @author Hj. Malthaner
*/
virtual const char * gib_hilfe_datei() const {return "station.txt";};
/**
* Komponente neu zeichnen. Die übergebenen Werte beziehen sich auf
* das Fenster, d.h. es sind die Bildschirkoordinaten des Fensters
* in dem die Komponente dargestellt wird.
* @author Hj. Malthaner
*/
virtual void zeichnen(koord pos, koord gr);
/**
* This method is called if an action is triggered
* @author Hj. Malthaner
*/
virtual bool action_triggered(gui_komponente_t *komp);
/**
* resize window in response to a resize event
* @author Hj. Malthaner
*/
virtual void resize(const koord delta);
};
#endif