diff options
author | truebrain <truebrain@openttd.org> | 2011-12-15 22:22:55 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-15 22:22:55 +0000 |
commit | 2aa774e831ad1cb7849c998759449ef777c5c664 (patch) | |
tree | 37293298be999cb3446fe4af7f11e107bfa17c3d /src/widgets/graph_widget.h | |
parent | fd559171b4ab5ce09b67aa8c4e9f2d0482a09558 (diff) | |
download | openttd-2aa774e831ad1cb7849c998759449ef777c5c664.tar.xz |
(svn r23528) -Codechange: move widget enums to widgets/NNN_type.h
Diffstat (limited to 'src/widgets/graph_widget.h')
-rw-r--r-- | src/widgets/graph_widget.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/widgets/graph_widget.h b/src/widgets/graph_widget.h new file mode 100644 index 000000000..b2d95c98a --- /dev/null +++ b/src/widgets/graph_widget.h @@ -0,0 +1,66 @@ +/* $Id$ */ + +/* + * This file is part of OpenTTD. + * 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. + * 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. + * 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/>. + */ + +/** @file graph_widget.h Types related to the graph widgets. */ + +#ifndef WIDGETS_GRAPH_WIDGET_H +#define WIDGETS_GRAPH_WIDGET_H + +/** Widgets of the WC_GRAPH_LEGEND. */ +enum GraphLegendWidgetNumbers { + GLW_BACKGROUND, + + GLW_FIRST_COMPANY, + GLW_LAST_COMPANY = GLW_FIRST_COMPANY + MAX_COMPANIES - 1, +}; + +/** Widgets of the WC_OPERATING_PROFIT / WC_DELIVERED_CARGO / WC_COMPANY_VALUE / WC_INCOME_GRAPH. */ +enum CompanyValueWidgets { + BGW_KEY_BUTTON, + BGW_BACKGROUND, + BGW_GRAPH, + BGW_RESIZE, +}; + +/** Widget of the WC_PERFORMANCE_HISTORY. */ +enum PerformanceHistoryGraphWidgets { + PHW_KEY, + PHW_DETAILED_PERFORMANCE, + PHW_BACKGROUND, + PHW_GRAPH, + PHW_RESIZE, +}; + +/** Widget of the WC_PAYMENT_RATES. */ +enum CargoPaymentRatesWidgets { + CPW_BACKGROUND, + CPW_HEADER, + CPW_GRAPH, + CPW_RESIZE, + CPW_FOOTER, + CPW_ENABLE_CARGOES, + CPW_DISABLE_CARGOES, + CPW_CARGO_FIRST, +}; + +/** Widget of the WC_COMPANY_LEAGUE. */ +enum CompanyLeagueWidgets { + CLW_BACKGROUND, +}; + +/** Widget of the WC_PERFORMANCE_DETAIL. */ +enum PerformanceRatingDetailsWidgets { + PRW_SCORE_FIRST, + PRW_SCORE_LAST = PRW_SCORE_FIRST + (SCORE_END - SCORE_BEGIN) - 1, + + PRW_COMPANY_FIRST, + PRW_COMPANY_LAST = PRW_COMPANY_FIRST + MAX_COMPANIES - 1, +}; + +#endif /* WIDGETS_GRAPH_WIDGET_H */ |