Fix old map array tunnel head conversion
[openttd/fttd.git] / src / airport_gui.cpp
blob6a5fddfd520935ceb28bccd20c8931738b4a2a28
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
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.
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.
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/>.
8 */
10 /** @file airport_gui.cpp The GUI for airports. */
12 #include "stdafx.h"
13 #include "window_gui.h"
14 #include "station_gui.h"
15 #include "terraform_gui.h"
16 #include "sound_func.h"
17 #include "window_func.h"
18 #include "strings_func.h"
19 #include "viewport_func.h"
20 #include "company_func.h"
21 #include "tilehighlight_func.h"
22 #include "company_base.h"
23 #include "station_type.h"
24 #include "newgrf_airport.h"
25 #include "newgrf_callbacks.h"
26 #include "widgets/dropdown_type.h"
27 #include "core/geometry_func.hpp"
28 #include "hotkeys.h"
29 #include "vehicle_func.h"
30 #include "gui.h"
31 #include "map/subcoord.h"
33 #include "widgets/airport_widget.h"
36 static AirportClassID _selected_airport_class; ///< the currently visible airport class
37 static int _selected_airport_index; ///< the index of the selected airport in the current class or -1
38 static byte _selected_airport_layout; ///< selected airport layout number.
40 static void ShowBuildAirportPicker(Window *parent);
42 SpriteID GetCustomAirportSprite(const AirportSpec *as, byte layout);
44 void CcBuildAirport(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
46 if (result.Failed()) return;
48 if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_SPLAT_OTHER, tile);
49 if (!_settings_client.gui.persistent_buildingtools) ResetPointerMode();
52 /**
53 * Place an airport.
54 * @param tile Position to put the new airport.
56 static void PlaceAirport(TileIndex tile)
58 if (_selected_airport_index == -1) return;
59 uint32 p2 = _ctrl_pressed;
60 SB(p2, 16, 16, INVALID_STATION); // no station to join
62 uint32 p1 = AirportClass::Get(_selected_airport_class)->GetSpec(_selected_airport_index)->GetIndex();
63 p1 |= _selected_airport_layout << 8;
64 Command cmdcont (tile, p1, p2, CMD_BUILD_AIRPORT);
65 ShowSelectStationIfNeeded (&cmdcont, TileArea(tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE));
68 /** Airport build toolbar window handler. */
69 struct BuildAirToolbarWindow : Window {
70 int last_user_action; // Last started user action.
72 BuildAirToolbarWindow (const WindowDesc *desc, WindowNumber window_number)
73 : Window (desc), last_user_action (WIDGET_LIST_END)
75 this->InitNested(window_number);
76 if (_settings_client.gui.link_terraform_toolbar) ShowTerraformToolbar(this);
79 void OnDelete (void) FINAL_OVERRIDE
81 if (_settings_client.gui.link_terraform_toolbar) DeleteWindowById(WC_SCEN_LAND_GEN, 0, false);
84 /**
85 * Some data on this window has become invalid.
86 * @param data Information about the changed data.
87 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
89 virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
91 if (!gui_scope) return;
93 if (!CanBuildVehicleInfrastructure(VEH_AIRCRAFT)) this->Delete();
96 virtual void OnClick(Point pt, int widget, int click_count)
98 switch (widget) {
99 case WID_AT_AIRPORT:
100 if (HandlePlacePushButton (this, WID_AT_AIRPORT, SPR_CURSOR_AIRPORT, POINTER_TILE)) {
101 ShowBuildAirportPicker(this);
102 this->last_user_action = widget;
104 break;
106 case WID_AT_DEMOLISH:
107 HandlePlacePushButton (this, WID_AT_DEMOLISH, ANIMCURSOR_DEMOLISH, POINTER_TILE);
108 this->last_user_action = widget;
109 break;
111 default: break;
116 virtual void OnPlaceObject(Point pt, TileIndex tile)
118 switch (this->last_user_action) {
119 case WID_AT_AIRPORT:
120 PlaceAirport(tile);
121 break;
123 case WID_AT_DEMOLISH:
124 VpStartPlaceSizing (tile, VPM_X_AND_Y_ROTATED);
125 break;
127 default: NOT_REACHED();
131 void OnPlaceMouseUp (int userdata, TileIndex start_tile, TileIndex end_tile) OVERRIDE
133 HandleDemolishMouseUp (start_tile, end_tile);
136 virtual void OnPlaceObjectAbort()
138 this->RaiseButtons();
140 DeleteWindowById(WC_BUILD_STATION, TRANSPORT_AIR);
141 DeleteWindowById(WC_SELECT_STATION, 0);
144 static HotkeyList hotkeys;
148 * Handler for global hotkeys of the BuildAirToolbarWindow.
149 * @param hotkey Hotkey
150 * @return Whether the hotkey was handled.
152 static bool AirportToolbarGlobalHotkeys (int hotkey)
154 if (_game_mode != GM_NORMAL || !CanBuildVehicleInfrastructure(VEH_AIRCRAFT)) return false;
155 Window *w = ShowBuildAirToolbar();
156 return (w != NULL) && w->OnHotkey (hotkey);
159 static const Hotkey airtoolbar_hotkeys[] = {
160 Hotkey ("airport", WID_AT_AIRPORT, '1'),
161 Hotkey ("demolish", WID_AT_DEMOLISH, '2'),
163 HotkeyList BuildAirToolbarWindow::hotkeys("airtoolbar", airtoolbar_hotkeys, AirportToolbarGlobalHotkeys);
165 static const NWidgetPart _nested_air_toolbar_widgets[] = {
166 NWidget(NWID_HORIZONTAL),
167 NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
168 NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_TOOLBAR_AIRCRAFT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
169 NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
170 EndContainer(),
171 NWidget(NWID_HORIZONTAL),
172 NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_AT_AIRPORT), SetFill(0, 1), SetMinimalSize(42, 22), SetDataTip(SPR_IMG_AIRPORT, STR_TOOLBAR_AIRCRAFT_BUILD_AIRPORT_TOOLTIP),
173 NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(4, 22), SetFill(1, 1), EndContainer(),
174 NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_AT_DEMOLISH), SetFill(0, 1), SetMinimalSize(22, 22), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
175 EndContainer(),
178 static WindowDesc::Prefs _air_toolbar_prefs ("toolbar_air");
180 static const WindowDesc _air_toolbar_desc(
181 WDP_ALIGN_TOOLBAR, 0, 0,
182 WC_BUILD_TOOLBAR, WC_NONE,
183 WDF_CONSTRUCTION,
184 _nested_air_toolbar_widgets, lengthof(_nested_air_toolbar_widgets),
185 &_air_toolbar_prefs, &BuildAirToolbarWindow::hotkeys
189 * Open the build airport toolbar window
191 * If the terraform toolbar is linked to the toolbar, that window is also opened.
193 * @return newly opened airport toolbar, or NULL if the toolbar could not be opened.
195 Window *ShowBuildAirToolbar()
197 if (!Company::IsValidID(_local_company)) return NULL;
199 DeleteWindowByClass(WC_BUILD_TOOLBAR);
200 return AllocateWindowDescFront<BuildAirToolbarWindow>(&_air_toolbar_desc, TRANSPORT_AIR);
203 class BuildAirportWindow : public PickerWindowBase {
204 SpriteID preview_sprite; ///< Cached airport preview sprite.
205 int line_height;
206 Scrollbar *vscroll;
208 /** Build a dropdown list of available airport classes */
209 static DropDownList *BuildAirportClassDropDown()
211 DropDownList *list = new DropDownList();
213 for (uint i = 0; i < AirportClass::GetClassCount(); i++) {
214 *list->Append() = new DropDownListStringItem(AirportClass::Get((AirportClassID)i)->name, i, false);
217 return list;
220 public:
221 BuildAirportWindow (const WindowDesc *desc, Window *parent)
222 : PickerWindowBase (desc, parent),
223 preview_sprite (0), line_height (0), vscroll (NULL)
225 this->CreateNestedTree();
227 this->vscroll = this->GetScrollbar(WID_AP_SCROLLBAR);
228 this->vscroll->SetCapacity(5);
229 this->vscroll->SetPosition(0);
231 this->InitNested(TRANSPORT_AIR);
233 this->SetWidgetLoweredState(WID_AP_BTN_DONTHILIGHT, !_settings_client.gui.station_show_coverage);
234 this->SetWidgetLoweredState(WID_AP_BTN_DOHILIGHT, _settings_client.gui.station_show_coverage);
235 this->OnInvalidateData();
237 /* Ensure airport class is valid (changing NewGRFs). */
238 _selected_airport_class = Clamp(_selected_airport_class, APC_BEGIN, (AirportClassID)(AirportClass::GetClassCount() - 1));
239 const AirportClass *ac = AirportClass::Get(_selected_airport_class);
240 this->vscroll->SetCount(ac->GetSpecCount());
242 /* Ensure the airport index is valid for this class (changing NewGRFs). */
243 _selected_airport_index = Clamp(_selected_airport_index, -1, ac->GetSpecCount() - 1);
245 /* Only when no valid airport was selected, we want to select the first airport. */
246 bool selectFirstAirport = true;
247 if (_selected_airport_index != -1) {
248 const AirportSpec *as = ac->GetSpec(_selected_airport_index);
249 if (as->IsAvailable()) {
250 /* Ensure the airport layout is valid. */
251 _selected_airport_layout = Clamp(_selected_airport_layout, 0, as->num_table - 1);
252 selectFirstAirport = false;
253 this->UpdateSelectSize();
257 if (selectFirstAirport) this->SelectFirstAvailableAirport(true);
260 void OnDelete (void) FINAL_OVERRIDE
262 DeleteWindowById(WC_SELECT_STATION, 0);
263 this->PickerWindowBase::OnDelete();
266 virtual void SetStringParameters(int widget) const
268 switch (widget) {
269 case WID_AP_CLASS_DROPDOWN:
270 SetDParam(0, AirportClass::Get(_selected_airport_class)->name);
271 break;
273 case WID_AP_LAYOUT_NUM:
274 SetDParam(0, STR_EMPTY);
275 if (_selected_airport_index != -1) {
276 const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(_selected_airport_index);
277 StringID string = GetAirportTextCallback(as, _selected_airport_layout, CBID_AIRPORT_LAYOUT_NAME);
278 if (string != STR_UNDEFINED) {
279 SetDParam(0, string);
280 } else if (as->num_table > 1) {
281 SetDParam(0, STR_STATION_BUILD_AIRPORT_LAYOUT_NAME);
282 SetDParam(1, _selected_airport_layout + 1);
285 break;
287 default: break;
291 virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
293 switch (widget) {
294 case WID_AP_CLASS_DROPDOWN: {
295 Dimension d = {0, 0};
296 for (uint i = 0; i < AirportClass::GetClassCount(); i++) {
297 SetDParam(0, AirportClass::Get((AirportClassID)i)->name);
298 d = maxdim(d, GetStringBoundingBox(STR_BLACK_STRING));
300 d.width += padding.width;
301 d.height += padding.height;
302 *size = maxdim(*size, d);
303 break;
306 case WID_AP_AIRPORT_LIST: {
307 for (int i = 0; i < NUM_AIRPORTS; i++) {
308 const AirportSpec *as = AirportSpec::Get(i);
309 if (!as->enabled) continue;
311 size->width = max(size->width, GetStringBoundingBox(as->name).width);
314 this->line_height = FONT_HEIGHT_NORMAL + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;
315 size->height = 5 * this->line_height;
316 break;
319 case WID_AP_AIRPORT_SPRITE:
320 for (int i = 0; i < NUM_AIRPORTS; i++) {
321 const AirportSpec *as = AirportSpec::Get(i);
322 if (!as->enabled) continue;
323 for (byte layout = 0; layout < as->num_table; layout++) {
324 SpriteID sprite = GetCustomAirportSprite(as, layout);
325 if (sprite != 0) {
326 Dimension d = GetSpriteSize(sprite);
327 d.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
328 d.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
329 *size = maxdim(d, *size);
333 break;
335 case WID_AP_EXTRA_TEXT:
336 for (int i = NEW_AIRPORT_OFFSET; i < NUM_AIRPORTS; i++) {
337 const AirportSpec *as = AirportSpec::Get(i);
338 if (!as->enabled) continue;
339 for (byte layout = 0; layout < as->num_table; layout++) {
340 StringID string = GetAirportTextCallback(as, layout, CBID_AIRPORT_ADDITIONAL_TEXT);
341 if (string == STR_UNDEFINED) continue;
343 /* STR_BLACK_STRING is used to start the string with {BLACK} */
344 SetDParam(0, string);
345 uint h = GetStringHeight (STR_BLACK_STRING, size->width);
346 size->height = max (h, size->height);
349 break;
351 default: break;
355 void DrawWidget (BlitArea *dpi, const Rect &r, int widget) const OVERRIDE
357 switch (widget) {
358 case WID_AP_AIRPORT_LIST: {
359 int y = r.top;
360 AirportClass *apclass = AirportClass::Get(_selected_airport_class);
361 for (uint i = this->vscroll->GetPosition(); this->vscroll->IsVisible(i) && i < apclass->GetSpecCount(); i++) {
362 const AirportSpec *as = apclass->GetSpec(i);
363 if (!as->IsAvailable()) {
364 GfxFillRect (dpi, r.left + 1, y + 1, r.right - 1, y + this->line_height - 2, PC_BLACK, FILLRECT_CHECKER);
366 DrawString (dpi, r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_RIGHT, y + WD_MATRIX_TOP, as->name, ((int)i == _selected_airport_index) ? TC_WHITE : TC_BLACK);
367 y += this->line_height;
369 break;
372 case WID_AP_AIRPORT_SPRITE:
373 if (this->preview_sprite != 0) {
374 Dimension d = GetSpriteSize(this->preview_sprite);
375 DrawSprite (dpi, this->preview_sprite, COMPANY_SPRITE_COLOUR(_local_company), (r.left + r.right - d.width) / 2, (r.top + r.bottom - d.height) / 2);
377 break;
379 case WID_AP_EXTRA_TEXT:
380 if (_selected_airport_index != -1) {
381 const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(_selected_airport_index);
382 StringID string = GetAirportTextCallback(as, _selected_airport_layout, CBID_AIRPORT_ADDITIONAL_TEXT);
383 if (string != STR_UNDEFINED) {
384 SetDParam(0, string);
385 DrawStringMultiLine (dpi, r.left, r.right, r.top, r.bottom, STR_BLACK_STRING);
388 break;
392 void OnPaint (BlitArea *dpi) OVERRIDE
394 this->DrawWidgets (dpi);
396 uint16 top = this->GetWidget<NWidgetBase>(WID_AP_BTN_DOHILIGHT)->pos_y + this->GetWidget<NWidgetBase>(WID_AP_BTN_DOHILIGHT)->current_y + WD_PAR_VSEP_NORMAL;
397 NWidgetBase *panel_nwi = this->GetWidget<NWidgetBase>(WID_AP_BOTTOMPANEL);
399 int right = panel_nwi->pos_x + panel_nwi->current_x;
400 int bottom = panel_nwi->pos_y + panel_nwi->current_y;
402 if (_selected_airport_index != -1) {
403 const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(_selected_airport_index);
404 int rad = _settings_game.station.modified_catchment ? as->catchment : (uint)CA_UNMODIFIED;
406 /* only show the station (airport) noise, if the noise option is activated */
407 if (_settings_game.economy.station_noise_level) {
408 /* show the noise of the selected airport */
409 SetDParam(0, as->noise_level);
410 DrawString (dpi, panel_nwi->pos_x + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, STR_STATION_BUILD_NOISE);
411 top += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
414 /* strings such as 'Size' and 'Coverage Area' */
415 top = DrawStationCoverageAreaText (dpi, panel_nwi->pos_x + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_RIGHT, top, rad);
418 /* Resize background if the window is too small.
419 * Never make the window smaller to avoid oscillating if the size change affects the acceptance.
420 * (This is the case, if making the window bigger moves the mouse into the window.) */
421 if (top > bottom) {
422 ResizeWindow(this, 0, top - bottom, false);
426 void SelectOtherAirport(int airport_index)
428 _selected_airport_index = airport_index;
429 _selected_airport_layout = 0;
431 this->UpdateSelectSize();
432 this->SetDirty();
435 void UpdateSelectSize()
437 if (_selected_airport_index == -1) {
438 SetTileSelectSize(1, 1);
439 this->DisableWidget(WID_AP_LAYOUT_DECREASE);
440 this->DisableWidget(WID_AP_LAYOUT_INCREASE);
441 } else {
442 const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(_selected_airport_index);
443 int w = as->size_x;
444 int h = as->size_y;
445 uint rotation = as->table[_selected_airport_layout]->rotation;
446 if (rotation == DIR_E || rotation == DIR_W) Swap(w, h);
447 SetTileSelectSize(w, h);
449 this->preview_sprite = GetCustomAirportSprite(as, _selected_airport_layout);
451 this->SetWidgetDisabledState(WID_AP_LAYOUT_DECREASE, _selected_airport_layout == 0);
452 this->SetWidgetDisabledState(WID_AP_LAYOUT_INCREASE, _selected_airport_layout + 1 >= as->num_table);
454 int rad = _settings_game.station.modified_catchment ? as->catchment : (uint)CA_UNMODIFIED;
455 if (_settings_client.gui.station_show_coverage) SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
459 virtual void OnClick(Point pt, int widget, int click_count)
461 switch (widget) {
462 case WID_AP_CLASS_DROPDOWN:
463 ShowDropDownList(this, BuildAirportClassDropDown(), _selected_airport_class, WID_AP_CLASS_DROPDOWN);
464 break;
466 case WID_AP_AIRPORT_LIST: {
467 int num_clicked = this->vscroll->GetPosition() + (pt.y - this->nested_array[widget]->pos_y) / this->line_height;
468 if (num_clicked >= this->vscroll->GetCount()) break;
469 const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(num_clicked);
470 if (as->IsAvailable()) this->SelectOtherAirport(num_clicked);
471 break;
474 case WID_AP_BTN_DONTHILIGHT: case WID_AP_BTN_DOHILIGHT:
475 _settings_client.gui.station_show_coverage = (widget != WID_AP_BTN_DONTHILIGHT);
476 this->SetWidgetLoweredState(WID_AP_BTN_DONTHILIGHT, !_settings_client.gui.station_show_coverage);
477 this->SetWidgetLoweredState(WID_AP_BTN_DOHILIGHT, _settings_client.gui.station_show_coverage);
478 this->SetDirty();
479 if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
480 this->UpdateSelectSize();
481 break;
483 case WID_AP_LAYOUT_DECREASE:
484 _selected_airport_layout--;
485 this->UpdateSelectSize();
486 this->SetDirty();
487 break;
489 case WID_AP_LAYOUT_INCREASE:
490 _selected_airport_layout++;
491 this->UpdateSelectSize();
492 this->SetDirty();
493 break;
498 * Select the first available airport.
499 * @param change_class If true, change the class if no airport in the current
500 * class is available.
502 void SelectFirstAvailableAirport(bool change_class)
504 /* First try to select an airport in the selected class. */
505 AirportClass *sel_apclass = AirportClass::Get(_selected_airport_class);
506 for (uint i = 0; i < sel_apclass->GetSpecCount(); i++) {
507 const AirportSpec *as = sel_apclass->GetSpec(i);
508 if (as->IsAvailable()) {
509 this->SelectOtherAirport(i);
510 return;
513 if (change_class) {
514 /* If that fails, select the first available airport
515 * from a random class. */
516 for (AirportClassID j = APC_BEGIN; j < APC_MAX; j++) {
517 AirportClass *apclass = AirportClass::Get(j);
518 for (uint i = 0; i < apclass->GetSpecCount(); i++) {
519 const AirportSpec *as = apclass->GetSpec(i);
520 if (as->IsAvailable()) {
521 _selected_airport_class = j;
522 this->SelectOtherAirport(i);
523 return;
528 /* If all airports are unavailable, select nothing. */
529 this->SelectOtherAirport(-1);
532 virtual void OnDropdownSelect(int widget, int index)
534 assert(widget == WID_AP_CLASS_DROPDOWN);
535 _selected_airport_class = (AirportClassID)index;
536 this->vscroll->SetCount(AirportClass::Get(_selected_airport_class)->GetSpecCount());
537 this->SelectFirstAvailableAirport(false);
540 virtual void OnTick()
542 CheckRedrawStationCoverage(this);
546 static const NWidgetPart _nested_build_airport_widgets[] = {
547 NWidget(NWID_HORIZONTAL),
548 NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
549 NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_STATION_BUILD_AIRPORT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
550 EndContainer(),
551 NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetFill(1, 0), SetPIP(2, 0, 2),
552 NWidget(WWT_LABEL, COLOUR_DARK_GREEN), SetDataTip(STR_STATION_BUILD_AIRPORT_CLASS_LABEL, STR_NULL), SetFill(1, 0),
553 NWidget(WWT_DROPDOWN, COLOUR_GREY, WID_AP_CLASS_DROPDOWN), SetFill(1, 0), SetDataTip(STR_BLACK_STRING, STR_STATION_BUILD_AIRPORT_TOOLTIP),
554 NWidget(WWT_EMPTY, COLOUR_DARK_GREEN, WID_AP_AIRPORT_SPRITE), SetFill(1, 0),
555 NWidget(NWID_HORIZONTAL),
556 NWidget(WWT_MATRIX, COLOUR_GREY, WID_AP_AIRPORT_LIST), SetFill(1, 0), SetMatrixDataTip(1, 5, STR_STATION_BUILD_AIRPORT_TOOLTIP), SetScrollbar(WID_AP_SCROLLBAR),
557 NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_AP_SCROLLBAR),
558 EndContainer(),
559 NWidget(NWID_HORIZONTAL),
560 NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_AP_LAYOUT_DECREASE), SetMinimalSize(12, 0), SetDataTip(AWV_DECREASE, STR_NULL),
561 NWidget(WWT_LABEL, COLOUR_GREY, WID_AP_LAYOUT_NUM), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_BLACK_STRING, STR_NULL),
562 NWidget(WWT_PUSHARROWBTN, COLOUR_GREY, WID_AP_LAYOUT_INCREASE), SetMinimalSize(12, 0), SetDataTip(AWV_INCREASE, STR_NULL),
563 EndContainer(),
564 NWidget(WWT_EMPTY, COLOUR_DARK_GREEN, WID_AP_EXTRA_TEXT), SetFill(1, 0), SetMinimalSize(150, 0),
565 EndContainer(),
566 /* Bottom panel. */
567 NWidget(WWT_PANEL, COLOUR_DARK_GREEN, WID_AP_BOTTOMPANEL), SetPIP(2, 2, 2),
568 NWidget(WWT_LABEL, COLOUR_DARK_GREEN), SetDataTip(STR_STATION_BUILD_COVERAGE_AREA_TITLE, STR_NULL), SetFill(1, 0),
569 NWidget(NWID_HORIZONTAL),
570 NWidget(NWID_SPACER), SetMinimalSize(14, 0), SetFill(1, 0),
571 NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
572 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_AP_BTN_DONTHILIGHT), SetMinimalSize(60, 12), SetFill(1, 0),
573 SetDataTip(STR_STATION_BUILD_COVERAGE_OFF, STR_STATION_BUILD_COVERAGE_AREA_OFF_TOOLTIP),
574 NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_AP_BTN_DOHILIGHT), SetMinimalSize(60, 12), SetFill(1, 0),
575 SetDataTip(STR_STATION_BUILD_COVERAGE_ON, STR_STATION_BUILD_COVERAGE_AREA_ON_TOOLTIP),
576 EndContainer(),
577 NWidget(NWID_SPACER), SetMinimalSize(14, 0), SetFill(1, 0),
578 EndContainer(),
579 NWidget(NWID_SPACER), SetMinimalSize(0, 10), SetResize(0, 1), SetFill(1, 0),
580 EndContainer(),
583 static WindowDesc::Prefs _build_airport_prefs ("build_station_air");
585 static const WindowDesc _build_airport_desc(
586 WDP_AUTO, 0, 0,
587 WC_BUILD_STATION, WC_BUILD_TOOLBAR,
588 WDF_CONSTRUCTION,
589 _nested_build_airport_widgets, lengthof(_nested_build_airport_widgets),
590 &_build_airport_prefs
593 static void ShowBuildAirportPicker(Window *parent)
595 new BuildAirportWindow(&_build_airport_desc, parent);
598 void InitializeAirportGui()
600 _selected_airport_class = APC_BEGIN;
601 _selected_airport_index = -1;