forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.h
68 lines (56 loc) · 1.41 KB
/
banner.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
/*
* Copyright (c) 1997 - 2004 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#ifndef banner_h
#define banner_h
#include "../ifc/gui_fenster.h"
/**
* Eine Klasse, die ein Fenster zur Auswahl von bis zu acht
* Parametern für ein Werkzeug per Icon darstellt.
*
* @author Hj. Malthaner
*/
class banner_t : public gui_fenster_t
{
private:
sint32 last_ms;
int line;
sint16 xoff, yoff;
public:
banner_t();
/**
* Fenstertitel
* @author Hj. Malthaner
*/
const char *gib_name() const {return ""; }
/**
* gibt farbinformationen fuer Fenstertitel, -ränder und -körper
* zurück
* @author Hj. Malthaner
*/
PLAYER_COLOR_VAL get_titelcolor() const {return WIN_TITEL; }
/**
* @return gibt wunschgroesse für das beobachtungsfenster zurueck
*/
koord gib_fenstergroesse() const { return koord(display_get_width(),display_get_height()+48); }
/* returns true, if inside window area ...
* @author Hj. Malthaner
*/
bool getroffen(int , int ) { return true; }
/* Events werden hiermit an die GUI-Komponenten
* gemeldet
* @author Hj. Malthaner
*/
void infowin_event(const event_t *ev);
/**
* 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
*/
void zeichnen(koord pos, koord gr);
};
#endif