summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-07-19 17:28:20 +0000
committeralberth <alberth@openttd.org>2009-07-19 17:28:20 +0000
commita9474bf0327ebd9af5ec2fd9fae4e4a5285af4bc (patch)
tree0f9aabd87e01a87650c2b787db808a7eaad33d0a
parent21921441d0648955b1f9bb51975607cc06060fbe (diff)
downloadopenttd-a9474bf0327ebd9af5ec2fd9fae4e4a5285af4bc.tar.xz
(svn r16882) -Codechange: Introduce a line_height variable in the station picker window.
-rw-r--r--src/rail_gui.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp
index 7b278416a..38ad6c58e 100644
--- a/src/rail_gui.cpp
+++ b/src/rail_gui.cpp
@@ -938,6 +938,8 @@ enum BuildRailStationWidgets {
struct BuildRailStationWindow : public PickerWindowBase {
private:
+ uint line_height; ///< Height of a single line in the newstation selection matrix (#BRSW_NEWST_LIST widget).
+
/**
* Verify whether the currently selected station size is allowed after selecting a new station class/type.
* If not, change the station size variables ( _settings_client.gui.station_numtracks and _settings_client.gui.station_platlength ).
@@ -983,6 +985,8 @@ private:
public:
BuildRailStationWindow(const WindowDesc *desc, Window *parent, bool newstation) : PickerWindowBase(desc, parent)
{
+ this->line_height = FONT_HEIGHT_NORMAL + 4;
+
this->LowerWidget(_railstation.orientation + BRSW_PLATFORM_DIR_X);
if (_settings_client.gui.station_dragdrop) {
this->LowerWidget(BRSW_PLATFORM_DRAG_N_DROP);
@@ -1095,7 +1099,7 @@ public:
if (statspec != NULL && statspec->name != 0) {
if (HasBit(statspec->callbackmask, CBM_STATION_AVAIL) && GB(GetStationCallback(CBID_STATION_AVAILABILITY, 0, 0, statspec, NULL, INVALID_TILE), 0, 8) == 0) {
- GfxFillRect(left + 1, y - 2, right - 1, y + 10, 0, FILLRECT_CHECKER);
+ GfxFillRect(left + 1, y - 2, right - 1, y + FONT_HEIGHT_NORMAL, 0, FILLRECT_CHECKER);
}
DrawString(left + 2, right - 2, y, statspec->name, i == _railstation.station_type ? TC_WHITE : TC_BLACK);
@@ -1103,7 +1107,7 @@ public:
DrawString(left + 2, right - 2, y, STR_STAT_CLASS_DFLT, i == _railstation.station_type ? TC_WHITE : TC_BLACK);
}
- y += 14;
+ y += this->line_height;
}
}
}
@@ -1240,7 +1244,7 @@ public:
case BRSW_NEWST_LIST: {
const StationSpec *statspec;
- int y = (pt.y - this->widget[BRSW_NEWST_LIST].top) / 14;
+ int y = (pt.y - this->widget[BRSW_NEWST_LIST].top) / this->line_height;
if (y >= this->vscroll.cap) return;
y += this->vscroll.pos;