Mercurial > hg > openttd
annotate src/graph_gui.h @ 17564:d5ff867052a5 draft
(svn r22328) -Add: a flag to GroundVehicles to disable insertion and removal of automatic orders until the next real order is reached.
author | frosch <frosch@openttd.org> |
---|---|
date | Sat, 16 Apr 2011 16:45:35 +0000 |
parents | 69522d847103 |
children |
rev | line source |
---|---|
14505
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
1 /* $Id$ */ |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
2 |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
3 /* |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
4 * This file is part of OpenTTD. |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
8 */ |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
9 |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
10 /** @file graph_gui.h Graph GUI functions. */ |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
11 |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
12 #ifndef GRAPH_GUI_H |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
13 #define GRAPH_GUI_H |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
14 |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
15 void ShowOperatingProfitGraph(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
16 void ShowIncomeGraph(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
17 void ShowDeliveredCargoGraph(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
18 void ShowPerformanceHistoryGraph(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
19 void ShowCompanyValueGraph(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
20 void ShowCargoPaymentRates(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
21 void ShowCompanyLeagueTable(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
22 void ShowPerformanceRatingDetail(); |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
23 |
69522d847103
(svn r19076) -Codechange: Move graph functions to their own header.
terkhen <terkhen@openttd.org>
parents:
diff
changeset
|
24 #endif /* GRAPH_GUI_H */ |