mirror of https://github.com/OpenTTD/OpenTTD
(svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
parent
0d9f80839f
commit
d50f6c8a8c
|
@ -167,7 +167,7 @@ static const Widget _aircraft_details_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _aircraft_details_desc = {
|
static const WindowDesc _aircraft_details_desc = {
|
||||||
-1, -1, 390, 114,
|
WDP_AUTO, WDP_AUTO, 390, 114,
|
||||||
WC_VEHICLE_DETAILS, WC_VEHICLE_VIEW,
|
WC_VEHICLE_DETAILS, WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_aircraft_details_widgets,
|
_aircraft_details_widgets,
|
||||||
|
@ -331,7 +331,7 @@ static void AircraftViewWndProc(Window *w, WindowEvent *e)
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _aircraft_view_desc = {
|
static const WindowDesc _aircraft_view_desc = {
|
||||||
-1,-1, 250, 116,
|
WDP_AUTO, WDP_AUTO, 250, 116,
|
||||||
WC_VEHICLE_VIEW ,0,
|
WC_VEHICLE_VIEW ,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_aircraft_view_widgets,
|
_aircraft_view_widgets,
|
||||||
|
|
|
@ -124,7 +124,7 @@ static const Widget _air_toolbar_widgets[] = {
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _air_toolbar_desc = {
|
static const WindowDesc _air_toolbar_desc = {
|
||||||
640-86, 22, 86, 36,
|
0, 22, 86, 36,
|
||||||
WC_BUILD_TOOLBAR, 0,
|
WC_BUILD_TOOLBAR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_air_toolbar_widgets,
|
_air_toolbar_widgets,
|
||||||
|
@ -262,7 +262,7 @@ static const Widget _build_airport_picker_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_airport_desc = {
|
static const WindowDesc _build_airport_desc = {
|
||||||
-1, -1, 148, 240,
|
WDP_AUTO, WDP_AUTO, 148, 240,
|
||||||
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_airport_picker_widgets,
|
_build_airport_picker_widgets,
|
||||||
|
|
|
@ -87,7 +87,7 @@ static const Widget _build_bridge_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_bridge_desc = {
|
static const WindowDesc _build_bridge_desc = {
|
||||||
-1, -1, 200, 102,
|
WDP_AUTO, WDP_AUTO, 200, 102,
|
||||||
WC_BUILD_BRIDGE, WC_BUILD_TOOLBAR,
|
WC_BUILD_BRIDGE, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_bridge_widgets,
|
_build_bridge_widgets,
|
||||||
|
@ -104,7 +104,7 @@ static const Widget _build_road_bridge_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_road_bridge_desc = {
|
static const WindowDesc _build_road_bridge_desc = {
|
||||||
-1, -1, 200, 102,
|
WDP_AUTO, WDP_AUTO, 200, 102,
|
||||||
WC_BUILD_BRIDGE, WC_BUILD_TOOLBAR,
|
WC_BUILD_BRIDGE, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_road_bridge_widgets,
|
_build_road_bridge_widgets,
|
||||||
|
|
|
@ -540,7 +540,7 @@ static void NewAircraftWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _build_vehicle_desc = {
|
static const WindowDesc _build_vehicle_desc = {
|
||||||
-1, -1, 240, 238,
|
WDP_AUTO, WDP_AUTO, 240, 238,
|
||||||
WC_BUILD_VEHICLE,0,
|
WC_BUILD_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_build_vehicle_widgets,
|
_build_vehicle_widgets,
|
||||||
|
|
|
@ -110,7 +110,7 @@ static const Widget _depot_widgets[] = {
|
||||||
static void DepotWndProc(Window *w, WindowEvent *e);
|
static void DepotWndProc(Window *w, WindowEvent *e);
|
||||||
|
|
||||||
static const WindowDesc _train_depot_desc = {
|
static const WindowDesc _train_depot_desc = {
|
||||||
-1, -1, 361, 122,
|
WDP_AUTO, WDP_AUTO, 361, 122,
|
||||||
WC_VEHICLE_DEPOT,0,
|
WC_VEHICLE_DEPOT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_depot_widgets,
|
_depot_widgets,
|
||||||
|
@ -118,7 +118,7 @@ static const WindowDesc _train_depot_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _road_depot_desc = {
|
static const WindowDesc _road_depot_desc = {
|
||||||
-1, -1, 315, 96,
|
WDP_AUTO, WDP_AUTO, 315, 96,
|
||||||
WC_VEHICLE_DEPOT,0,
|
WC_VEHICLE_DEPOT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_depot_widgets,
|
_depot_widgets,
|
||||||
|
@ -126,7 +126,7 @@ static const WindowDesc _road_depot_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _ship_depot_desc = {
|
static const WindowDesc _ship_depot_desc = {
|
||||||
-1, -1, 305, 98,
|
WDP_AUTO, WDP_AUTO, 305, 98,
|
||||||
WC_VEHICLE_DEPOT,0,
|
WC_VEHICLE_DEPOT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_depot_widgets,
|
_depot_widgets,
|
||||||
|
@ -134,7 +134,7 @@ static const WindowDesc _ship_depot_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _aircraft_depot_desc = {
|
static const WindowDesc _aircraft_depot_desc = {
|
||||||
-1, -1, 331, 98,
|
WDP_AUTO, WDP_AUTO, 331, 98,
|
||||||
WC_VEHICLE_DEPOT,0,
|
WC_VEHICLE_DEPOT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_depot_widgets,
|
_depot_widgets,
|
||||||
|
|
|
@ -205,7 +205,7 @@ static const Widget _build_docks_toolb_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_docks_toolbar_desc = {
|
static const WindowDesc _build_docks_toolbar_desc = {
|
||||||
640-158, 22, 158, 36,
|
0, 22, 158, 36,
|
||||||
WC_BUILD_TOOLBAR, 0,
|
WC_BUILD_TOOLBAR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_build_docks_toolb_widgets,
|
_build_docks_toolb_widgets,
|
||||||
|
@ -279,7 +279,7 @@ static const Widget _build_dock_station_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_dock_station_desc = {
|
static const WindowDesc _build_dock_station_desc = {
|
||||||
-1, -1, 148, 75,
|
WDP_AUTO, WDP_AUTO, 148, 75,
|
||||||
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_dock_station_widgets,
|
_build_dock_station_widgets,
|
||||||
|
@ -348,7 +348,7 @@ static const Widget _build_docks_depot_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_docks_depot_desc = {
|
static const WindowDesc _build_docks_depot_desc = {
|
||||||
-1, -1, 204, 86,
|
WDP_AUTO, WDP_AUTO, 204, 86,
|
||||||
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_docks_depot_widgets,
|
_build_docks_depot_widgets,
|
||||||
|
|
20
graph_gui.c
20
graph_gui.c
|
@ -283,7 +283,7 @@ static const Widget _graph_legend_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _graph_legend_desc = {
|
static const WindowDesc _graph_legend_desc = {
|
||||||
-1, -1, 250, 114,
|
WDP_AUTO, WDP_AUTO, 250, 114,
|
||||||
WC_GRAPH_LEGEND,0,
|
WC_GRAPH_LEGEND,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_graph_legend_widgets,
|
_graph_legend_widgets,
|
||||||
|
@ -384,7 +384,7 @@ static const Widget _operating_profit_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _operating_profit_desc = {
|
static const WindowDesc _operating_profit_desc = {
|
||||||
-1, -1, 576, 174,
|
WDP_AUTO, WDP_AUTO, 576, 174,
|
||||||
WC_OPERATING_PROFIT,0,
|
WC_OPERATING_PROFIT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_operating_profit_widgets,
|
_operating_profit_widgets,
|
||||||
|
@ -459,7 +459,7 @@ static const Widget _income_graph_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _income_graph_desc = {
|
static const WindowDesc _income_graph_desc = {
|
||||||
-1, -1, 576, 142,
|
WDP_AUTO, WDP_AUTO, 576, 142,
|
||||||
WC_INCOME_GRAPH,0,
|
WC_INCOME_GRAPH,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_income_graph_widgets,
|
_income_graph_widgets,
|
||||||
|
@ -532,7 +532,7 @@ static const Widget _delivered_cargo_graph_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _delivered_cargo_graph_desc = {
|
static const WindowDesc _delivered_cargo_graph_desc = {
|
||||||
-1, -1, 576, 142,
|
WDP_AUTO, WDP_AUTO, 576, 142,
|
||||||
WC_DELIVERED_CARGO,0,
|
WC_DELIVERED_CARGO,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_delivered_cargo_graph_widgets,
|
_delivered_cargo_graph_widgets,
|
||||||
|
@ -608,7 +608,7 @@ static const Widget _performance_history_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _performance_history_desc = {
|
static const WindowDesc _performance_history_desc = {
|
||||||
-1, -1, 576, 238,
|
WDP_AUTO, WDP_AUTO, 576, 238,
|
||||||
WC_PERFORMANCE_HISTORY,0,
|
WC_PERFORMANCE_HISTORY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_performance_history_widgets,
|
_performance_history_widgets,
|
||||||
|
@ -681,7 +681,7 @@ static const Widget _company_value_graph_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _company_value_graph_desc = {
|
static const WindowDesc _company_value_graph_desc = {
|
||||||
-1, -1, 576, 238,
|
WDP_AUTO, WDP_AUTO, 576, 238,
|
||||||
WC_COMPANY_VALUE,0,
|
WC_COMPANY_VALUE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_company_value_graph_widgets,
|
_company_value_graph_widgets,
|
||||||
|
@ -796,7 +796,7 @@ static const Widget _cargo_payment_rates_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _cargo_payment_rates_desc = {
|
static const WindowDesc _cargo_payment_rates_desc = {
|
||||||
-1, -1, 568, 142,
|
WDP_AUTO, WDP_AUTO, 568, 142,
|
||||||
WC_PAYMENT_RATES,0,
|
WC_PAYMENT_RATES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_cargo_payment_rates_widgets,
|
_cargo_payment_rates_widgets,
|
||||||
|
@ -888,7 +888,7 @@ static const Widget _company_league_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _company_league_desc = {
|
static const WindowDesc _company_league_desc = {
|
||||||
-1, -1, 400, 97,
|
WDP_AUTO, WDP_AUTO, 400, 97,
|
||||||
WC_COMPANY_LEAGUE,0,
|
WC_COMPANY_LEAGUE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_company_league_widgets,
|
_company_league_widgets,
|
||||||
|
@ -1110,7 +1110,7 @@ static const Widget _performance_rating_detail_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _performance_rating_detail_desc = {
|
static const WindowDesc _performance_rating_detail_desc = {
|
||||||
-1, -1, 299, 228,
|
WDP_AUTO, WDP_AUTO, 299, 228,
|
||||||
WC_PERFORMANCE_DETAIL,0,
|
WC_PERFORMANCE_DETAIL,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_performance_rating_detail_widgets,
|
_performance_rating_detail_widgets,
|
||||||
|
@ -1239,7 +1239,7 @@ static const Widget _sign_list_widget[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _sign_list_desc = {
|
static const WindowDesc _sign_list_desc = {
|
||||||
-1, -1, 358, 138,
|
WDP_AUTO, WDP_AUTO, 358, 138,
|
||||||
WC_SIGN_LIST,0,
|
WC_SIGN_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_sign_list_widget,
|
_sign_list_widget,
|
||||||
|
|
|
@ -188,7 +188,7 @@ static const Widget _build_industry_land3_widgets_extra[] = {
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land0_desc = {
|
static const WindowDesc _build_industry_land0_desc = {
|
||||||
-1, -1, 170, 116,
|
WDP_AUTO, WDP_AUTO, 170, 116,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land0_widgets,
|
_build_industry_land0_widgets,
|
||||||
|
@ -196,7 +196,7 @@ static const WindowDesc _build_industry_land0_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land1_desc = {
|
static const WindowDesc _build_industry_land1_desc = {
|
||||||
-1, -1, 170, 116,
|
WDP_AUTO, WDP_AUTO, 170, 116,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land1_widgets,
|
_build_industry_land1_widgets,
|
||||||
|
@ -204,7 +204,7 @@ static const WindowDesc _build_industry_land1_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land2_desc = {
|
static const WindowDesc _build_industry_land2_desc = {
|
||||||
-1, -1, 170, 116,
|
WDP_AUTO, WDP_AUTO, 170, 116,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land2_widgets,
|
_build_industry_land2_widgets,
|
||||||
|
@ -212,7 +212,7 @@ static const WindowDesc _build_industry_land2_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land3_desc = {
|
static const WindowDesc _build_industry_land3_desc = {
|
||||||
-1, -1, 170, 116,
|
WDP_AUTO, WDP_AUTO, 170, 116,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land3_widgets,
|
_build_industry_land3_widgets,
|
||||||
|
@ -220,7 +220,7 @@ static const WindowDesc _build_industry_land3_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land0_desc_extra = {
|
static const WindowDesc _build_industry_land0_desc_extra = {
|
||||||
-1, -1, 170, 188,
|
WDP_AUTO, WDP_AUTO, 170, 188,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land0_widgets_extra,
|
_build_industry_land0_widgets_extra,
|
||||||
|
@ -228,7 +228,7 @@ static const WindowDesc _build_industry_land0_desc_extra = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land1_desc_extra = {
|
static const WindowDesc _build_industry_land1_desc_extra = {
|
||||||
-1, -1, 170, 175,
|
WDP_AUTO, WDP_AUTO, 170, 175,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land1_widgets_extra,
|
_build_industry_land1_widgets_extra,
|
||||||
|
@ -236,7 +236,7 @@ static const WindowDesc _build_industry_land1_desc_extra = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land2_desc_extra = {
|
static const WindowDesc _build_industry_land2_desc_extra = {
|
||||||
-1, -1, 170, 201,
|
WDP_AUTO, WDP_AUTO, 170, 201,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land2_widgets_extra,
|
_build_industry_land2_widgets_extra,
|
||||||
|
@ -244,7 +244,7 @@ static const WindowDesc _build_industry_land2_desc_extra = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_industry_land3_desc_extra = {
|
static const WindowDesc _build_industry_land3_desc_extra = {
|
||||||
-1, -1, 170, 188,
|
WDP_AUTO, WDP_AUTO, 170, 188,
|
||||||
WC_BUILD_INDUSTRY,0,
|
WC_BUILD_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_industry_land3_widgets_extra,
|
_build_industry_land3_widgets_extra,
|
||||||
|
@ -434,7 +434,7 @@ static const Widget _industry_view_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _industry_view_desc = {
|
static const WindowDesc _industry_view_desc = {
|
||||||
-1, -1, 260, 160,
|
WDP_AUTO, WDP_AUTO, 260, 160,
|
||||||
WC_INDUSTRY_VIEW,0,
|
WC_INDUSTRY_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_industry_view_widgets,
|
_industry_view_widgets,
|
||||||
|
@ -676,7 +676,7 @@ static void IndustryDirectoryWndProc(Window *w, WindowEvent *e)
|
||||||
|
|
||||||
/* Industry List */
|
/* Industry List */
|
||||||
static const WindowDesc _industry_directory_desc = {
|
static const WindowDesc _industry_directory_desc = {
|
||||||
-1, -1, 508, 190,
|
WDP_AUTO, WDP_AUTO, 508, 190,
|
||||||
WC_INDUSTRY_DIRECTORY,0,
|
WC_INDUSTRY_DIRECTORY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_industry_directory_widgets,
|
_industry_directory_widgets,
|
||||||
|
|
12
main_gui.c
12
main_gui.c
|
@ -1331,7 +1331,7 @@ static void ScenEditLandGenWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _scen_edit_land_gen_desc = {
|
static const WindowDesc _scen_edit_land_gen_desc = {
|
||||||
-1,-1, 182, 96,
|
WDP_AUTO, WDP_AUTO, 182, 96,
|
||||||
WC_SCEN_LAND_GEN,0,
|
WC_SCEN_LAND_GEN,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_scen_edit_land_gen_widgets,
|
_scen_edit_land_gen_widgets,
|
||||||
|
@ -1447,7 +1447,7 @@ static void ScenEditTownGenWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _scen_edit_town_gen_desc = {
|
static const WindowDesc _scen_edit_town_gen_desc = {
|
||||||
-1,-1, 160, 82,
|
WDP_AUTO, WDP_AUTO, 160, 82,
|
||||||
WC_SCEN_TOWN_GEN,0,
|
WC_SCEN_TOWN_GEN,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_scen_edit_town_gen_widgets,
|
_scen_edit_town_gen_widgets,
|
||||||
|
@ -1659,7 +1659,7 @@ static void ScenEditIndustryWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _scenedit_industry_normal_desc = {
|
static const WindowDesc _scenedit_industry_normal_desc = {
|
||||||
-1,-1, 170, 225,
|
WDP_AUTO, WDP_AUTO, 170, 225,
|
||||||
WC_SCEN_INDUSTRY,0,
|
WC_SCEN_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_scenedit_industry_normal_widgets,
|
_scenedit_industry_normal_widgets,
|
||||||
|
@ -1667,7 +1667,7 @@ static const WindowDesc _scenedit_industry_normal_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _scenedit_industry_hilly_desc = {
|
static const WindowDesc _scenedit_industry_hilly_desc = {
|
||||||
-1,-1, 170, 225,
|
WDP_AUTO, WDP_AUTO, 170, 225,
|
||||||
WC_SCEN_INDUSTRY,0,
|
WC_SCEN_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_scenedit_industry_hilly_widgets,
|
_scenedit_industry_hilly_widgets,
|
||||||
|
@ -1675,7 +1675,7 @@ static const WindowDesc _scenedit_industry_hilly_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _scenedit_industry_desert_desc = {
|
static const WindowDesc _scenedit_industry_desert_desc = {
|
||||||
-1,-1, 170, 225,
|
WDP_AUTO, WDP_AUTO, 170, 225,
|
||||||
WC_SCEN_INDUSTRY,0,
|
WC_SCEN_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_scenedit_industry_desert_widgets,
|
_scenedit_industry_desert_widgets,
|
||||||
|
@ -1683,7 +1683,7 @@ static const WindowDesc _scenedit_industry_desert_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _scenedit_industry_candy_desc = {
|
static const WindowDesc _scenedit_industry_candy_desc = {
|
||||||
-1,-1, 170, 225,
|
WDP_AUTO, WDP_AUTO, 170, 225,
|
||||||
WC_SCEN_INDUSTRY,0,
|
WC_SCEN_INDUSTRY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_scenedit_industry_candy_widgets,
|
_scenedit_industry_candy_widgets,
|
||||||
|
|
|
@ -133,7 +133,7 @@ static const Widget _land_info_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _land_info_desc = {
|
static const WindowDesc _land_info_desc = {
|
||||||
-1, -1, 280, 93,
|
WDP_AUTO, WDP_AUTO, 280, 93,
|
||||||
WC_LAND_INFO,0,
|
WC_LAND_INFO,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_land_info_widgets,
|
_land_info_widgets,
|
||||||
|
@ -440,7 +440,7 @@ static const Widget _build_trees_scen_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_trees_scen_desc = {
|
static const WindowDesc _build_trees_scen_desc = {
|
||||||
-1, -1, 143, 184,
|
WDP_AUTO, WDP_AUTO, 143, 184,
|
||||||
WC_BUILD_TREES,0,
|
WC_BUILD_TREES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_trees_scen_widgets,
|
_build_trees_scen_widgets,
|
||||||
|
|
|
@ -1028,7 +1028,7 @@ static const Widget _client_list_popup_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static WindowDesc _client_list_desc = {
|
static WindowDesc _client_list_desc = {
|
||||||
-1, -1, 250, 1,
|
WDP_AUTO, WDP_AUTO, 250, 1,
|
||||||
WC_CLIENT_LIST,0,
|
WC_CLIENT_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_client_list_widgets,
|
_client_list_widgets,
|
||||||
|
|
|
@ -583,7 +583,7 @@ static const Widget _orders_train_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _orders_train_desc = {
|
static const WindowDesc _orders_train_desc = {
|
||||||
-1,-1, 399, 88,
|
WDP_AUTO, WDP_AUTO, 399, 88,
|
||||||
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
|
||||||
_orders_train_widgets,
|
_orders_train_widgets,
|
||||||
|
@ -610,7 +610,7 @@ static const Widget _orders_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _orders_desc = {
|
static const WindowDesc _orders_desc = {
|
||||||
-1,-1, 410, 88,
|
WDP_AUTO, WDP_AUTO, 410, 88,
|
||||||
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
|
||||||
_orders_widgets,
|
_orders_widgets,
|
||||||
|
@ -634,7 +634,7 @@ static const Widget _other_orders_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _other_orders_desc = {
|
static const WindowDesc _other_orders_desc = {
|
||||||
-1,-1, 332, 88,
|
WDP_AUTO, WDP_AUTO, 332, 88,
|
||||||
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_other_orders_widgets,
|
_other_orders_widgets,
|
||||||
|
|
16
player_gui.c
16
player_gui.c
|
@ -188,7 +188,7 @@ static void PlayerFinancesWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _player_finances_desc = {
|
static const WindowDesc _player_finances_desc = {
|
||||||
-1,-1, 407, 216,
|
WDP_AUTO, WDP_AUTO, 407, 216,
|
||||||
WC_FINANCES,0,
|
WC_FINANCES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_player_finances_widgets,
|
_player_finances_widgets,
|
||||||
|
@ -196,7 +196,7 @@ static const WindowDesc _player_finances_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _player_finances_small_desc = {
|
static const WindowDesc _player_finances_small_desc = {
|
||||||
-1,-1, 280, 60,
|
WDP_AUTO, WDP_AUTO, 280, 60,
|
||||||
WC_FINANCES,0,
|
WC_FINANCES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_player_finances_small_widgets,
|
_player_finances_small_widgets,
|
||||||
|
@ -204,7 +204,7 @@ static const WindowDesc _player_finances_small_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _other_player_finances_desc = {
|
static const WindowDesc _other_player_finances_desc = {
|
||||||
-1,-1, 407, 204,
|
WDP_AUTO, WDP_AUTO, 407, 204,
|
||||||
WC_FINANCES,0,
|
WC_FINANCES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_other_player_finances_widgets,
|
_other_player_finances_widgets,
|
||||||
|
@ -212,7 +212,7 @@ static const WindowDesc _other_player_finances_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _other_player_finances_small_desc = {
|
static const WindowDesc _other_player_finances_small_desc = {
|
||||||
-1,-1, 280, 48,
|
WDP_AUTO, WDP_AUTO, 280, 48,
|
||||||
WC_FINANCES,0,
|
WC_FINANCES,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_other_player_finances_small_widgets,
|
_other_player_finances_small_widgets,
|
||||||
|
@ -470,7 +470,7 @@ static const Widget _select_player_livery_2cc_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _select_player_livery_2cc_desc = {
|
static const WindowDesc _select_player_livery_2cc_desc = {
|
||||||
-1,-1, 400, 49 + 1 * 14,
|
WDP_AUTO, WDP_AUTO, 400, 49 + 1 * 14,
|
||||||
WC_PLAYER_COLOR, 0,
|
WC_PLAYER_COLOR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_select_player_livery_2cc_widgets,
|
_select_player_livery_2cc_widgets,
|
||||||
|
@ -497,7 +497,7 @@ static const Widget _select_player_livery_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _select_player_livery_desc = {
|
static const WindowDesc _select_player_livery_desc = {
|
||||||
-1, -1, 275, 49 + 1 * 14,
|
WDP_AUTO, WDP_AUTO, 275, 49 + 1 * 14,
|
||||||
WC_PLAYER_COLOR, 0,
|
WC_PLAYER_COLOR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_select_player_livery_widgets,
|
_select_player_livery_widgets,
|
||||||
|
@ -551,7 +551,7 @@ static const Widget _select_player_face_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _select_player_face_desc = {
|
static const WindowDesc _select_player_face_desc = {
|
||||||
-1,-1, 190, 149,
|
WDP_AUTO, WDP_AUTO, 190, 149,
|
||||||
WC_PLAYER_FACE,0,
|
WC_PLAYER_FACE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_select_player_face_widgets,
|
_select_player_face_widgets,
|
||||||
|
@ -867,7 +867,7 @@ static void PlayerCompanyWndProc(Window *w, WindowEvent *e)
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _player_company_desc = {
|
static const WindowDesc _player_company_desc = {
|
||||||
-1, -1, 360, 170,
|
WDP_AUTO, WDP_AUTO, 360, 170,
|
||||||
WC_COMPANY, 0,
|
WC_COMPANY, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_player_company_widgets,
|
_player_company_widgets,
|
||||||
|
|
10
rail_gui.c
10
rail_gui.c
|
@ -544,7 +544,7 @@ static const Widget _build_rail_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_rail_desc = {
|
static const WindowDesc _build_rail_desc = {
|
||||||
640-372, 22, 372, 36,
|
0, 22, 372, 36,
|
||||||
WC_BUILD_TOOLBAR, 0,
|
WC_BUILD_TOOLBAR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_build_rail_widgets,
|
_build_rail_widgets,
|
||||||
|
@ -953,7 +953,7 @@ static const Widget _newstation_builder_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _station_builder_desc = {
|
static const WindowDesc _station_builder_desc = {
|
||||||
-1, -1, 148, 200,
|
WDP_AUTO, WDP_AUTO, 148, 200,
|
||||||
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_station_builder_widgets,
|
_station_builder_widgets,
|
||||||
|
@ -961,7 +961,7 @@ static const WindowDesc _station_builder_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _newstation_builder_desc = {
|
static const WindowDesc _newstation_builder_desc = {
|
||||||
-1, -1, 148, 290,
|
WDP_AUTO, WDP_AUTO, 148, 290,
|
||||||
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
WC_BUILD_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_newstation_builder_widgets,
|
_newstation_builder_widgets,
|
||||||
|
@ -1040,7 +1040,7 @@ static const Widget _build_depot_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_depot_desc = {
|
static const WindowDesc _build_depot_desc = {
|
||||||
-1,-1, 140, 122,
|
WDP_AUTO, WDP_AUTO, 140, 122,
|
||||||
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_depot_widgets,
|
_build_depot_widgets,
|
||||||
|
@ -1126,7 +1126,7 @@ static const Widget _build_waypoint_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_waypoint_desc = {
|
static const WindowDesc _build_waypoint_desc = {
|
||||||
-1,-1, 344, 92,
|
WDP_AUTO, WDP_AUTO, 344, 92,
|
||||||
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_waypoint_widgets,
|
_build_waypoint_widgets,
|
||||||
|
|
10
road_gui.c
10
road_gui.c
|
@ -309,7 +309,7 @@ static const Widget _build_road_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_road_desc = {
|
static const WindowDesc _build_road_desc = {
|
||||||
640-240, 22, 240, 36,
|
0, 22, 240, 36,
|
||||||
WC_BUILD_TOOLBAR, 0,
|
WC_BUILD_TOOLBAR, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_build_road_widgets,
|
_build_road_widgets,
|
||||||
|
@ -344,7 +344,7 @@ static const Widget _build_road_scen_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_road_scen_desc = {
|
static const WindowDesc _build_road_scen_desc = {
|
||||||
-1, -1, 174, 36,
|
WDP_AUTO, WDP_AUTO, 174, 36,
|
||||||
WC_SCEN_BUILD_ROAD,0,
|
WC_SCEN_BUILD_ROAD,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_build_road_scen_widgets,
|
_build_road_scen_widgets,
|
||||||
|
@ -404,7 +404,7 @@ static const Widget _build_road_depot_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _build_road_depot_desc = {
|
static const WindowDesc _build_road_depot_desc = {
|
||||||
-1,-1, 140, 122,
|
WDP_AUTO, WDP_AUTO, 140, 122,
|
||||||
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
WC_BUILD_DEPOT, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_build_road_depot_widgets,
|
_build_road_depot_widgets,
|
||||||
|
@ -500,7 +500,7 @@ static const Widget _bus_station_picker_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _bus_station_picker_desc = {
|
static const WindowDesc _bus_station_picker_desc = {
|
||||||
-1,-1, 140, 177,
|
WDP_AUTO, WDP_AUTO, 140, 177,
|
||||||
WC_BUS_STATION, WC_BUILD_TOOLBAR,
|
WC_BUS_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_bus_station_picker_widgets,
|
_bus_station_picker_widgets,
|
||||||
|
@ -527,7 +527,7 @@ static const Widget _truck_station_picker_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _truck_station_picker_desc = {
|
static const WindowDesc _truck_station_picker_desc = {
|
||||||
-1,-1, 140, 177,
|
WDP_AUTO, WDP_AUTO, 140, 177,
|
||||||
WC_TRUCK_STATION, WC_BUILD_TOOLBAR,
|
WC_TRUCK_STATION, WC_BUILD_TOOLBAR,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
||||||
_truck_station_picker_widgets,
|
_truck_station_picker_widgets,
|
||||||
|
|
|
@ -205,7 +205,7 @@ static const Widget _roadveh_details_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _roadveh_details_desc = {
|
static const WindowDesc _roadveh_details_desc = {
|
||||||
-1,-1, 380, 101,
|
WDP_AUTO, WDP_AUTO, 380, 101,
|
||||||
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_roadveh_details_widgets,
|
_roadveh_details_widgets,
|
||||||
|
@ -378,7 +378,7 @@ static const Widget _roadveh_view_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _roadveh_view_desc = {
|
static const WindowDesc _roadveh_view_desc = {
|
||||||
-1,-1, 250, 116,
|
WDP_AUTO, WDP_AUTO, 250, 116,
|
||||||
WC_VEHICLE_VIEW,0,
|
WC_VEHICLE_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_roadveh_view_widgets,
|
_roadveh_view_widgets,
|
||||||
|
@ -520,7 +520,7 @@ static const Widget _new_road_veh_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _new_road_veh_desc = {
|
static const WindowDesc _new_road_veh_desc = {
|
||||||
-1, -1, 248, 230,
|
WDP_AUTO, WDP_AUTO, 248, 230,
|
||||||
WC_BUILD_VEHICLE,0,
|
WC_BUILD_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_new_road_veh_widgets,
|
_new_road_veh_widgets,
|
||||||
|
|
|
@ -203,7 +203,7 @@ static const Widget _ship_details_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _ship_details_desc = {
|
static const WindowDesc _ship_details_desc = {
|
||||||
-1,-1, 405, 101,
|
WDP_AUTO, WDP_AUTO, 405, 101,
|
||||||
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_ship_details_widgets,
|
_ship_details_widgets,
|
||||||
|
@ -345,7 +345,7 @@ static const Widget _new_ship_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _new_ship_desc = {
|
static const WindowDesc _new_ship_desc = {
|
||||||
-1, -1, 255, 214,
|
WDP_AUTO, WDP_AUTO, 255, 214,
|
||||||
WC_BUILD_VEHICLE,0,
|
WC_BUILD_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_new_ship_widgets,
|
_new_ship_widgets,
|
||||||
|
@ -515,7 +515,7 @@ static const Widget _ship_view_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _ship_view_desc = {
|
static const WindowDesc _ship_view_desc = {
|
||||||
-1,-1, 250, 116,
|
WDP_AUTO, WDP_AUTO, 250, 116,
|
||||||
WC_VEHICLE_VIEW,0,
|
WC_VEHICLE_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_ship_view_widgets,
|
_ship_view_widgets,
|
||||||
|
|
|
@ -968,7 +968,7 @@ static void SmallMapWindowProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _smallmap_desc = {
|
static const WindowDesc _smallmap_desc = {
|
||||||
-1,-1, 446, 314,
|
WDP_AUTO, WDP_AUTO, 446, 314,
|
||||||
WC_SMALLMAP,0,
|
WC_SMALLMAP,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_smallmap_widgets,
|
_smallmap_widgets,
|
||||||
|
@ -1081,7 +1081,7 @@ static void ExtraViewPortWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _extra_view_port_desc = {
|
static const WindowDesc _extra_view_port_desc = {
|
||||||
-1,-1, 300, 268,
|
WDP_AUTO, WDP_AUTO, 300, 268,
|
||||||
WC_EXTRA_VIEW_PORT,0,
|
WC_EXTRA_VIEW_PORT,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_extra_view_port_widgets,
|
_extra_view_port_widgets,
|
||||||
|
|
|
@ -494,7 +494,7 @@ static const Widget _player_stations_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _player_stations_desc = {
|
static const WindowDesc _player_stations_desc = {
|
||||||
-1, -1, 358, 162,
|
WDP_AUTO, WDP_AUTO, 358, 162,
|
||||||
WC_STATION_LIST,0,
|
WC_STATION_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_player_stations_widgets,
|
_player_stations_widgets,
|
||||||
|
@ -763,7 +763,7 @@ static void StationViewWndProc(Window *w, WindowEvent *e)
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _station_view_desc = {
|
static const WindowDesc _station_view_desc = {
|
||||||
-1, -1, 249, 110,
|
WDP_AUTO, WDP_AUTO, 249, 110,
|
||||||
WC_STATION_VIEW,0,
|
WC_STATION_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_station_view_widgets,
|
_station_view_widgets,
|
||||||
|
|
|
@ -162,7 +162,7 @@ static const Widget _subsidies_list_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _subsidies_list_desc = {
|
static const WindowDesc _subsidies_list_desc = {
|
||||||
-1, -1, 630, 127,
|
WDP_AUTO, WDP_AUTO, 630, 127,
|
||||||
WC_SUBSIDIES_LIST,0,
|
WC_SUBSIDIES_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
||||||
_subsidies_list_widgets,
|
_subsidies_list_widgets,
|
||||||
|
|
|
@ -210,7 +210,7 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _town_authority_desc = {
|
static const WindowDesc _town_authority_desc = {
|
||||||
-1, -1, 317, 222,
|
WDP_AUTO, WDP_AUTO, 317, 222,
|
||||||
WC_TOWN_AUTHORITY,0,
|
WC_TOWN_AUTHORITY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
||||||
_town_authority_widgets,
|
_town_authority_widgets,
|
||||||
|
@ -304,7 +304,7 @@ static const Widget _town_view_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _town_view_desc = {
|
static const WindowDesc _town_view_desc = {
|
||||||
-1, -1, 260, 150,
|
WDP_AUTO, WDP_AUTO, 260, 150,
|
||||||
WC_TOWN_VIEW,0,
|
WC_TOWN_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_town_view_widgets,
|
_town_view_widgets,
|
||||||
|
@ -327,7 +327,7 @@ static const Widget _town_view_scen_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _town_view_scen_desc = {
|
static const WindowDesc _town_view_scen_desc = {
|
||||||
-1, -1, 260, 150,
|
WDP_AUTO, WDP_AUTO, 260, 150,
|
||||||
WC_TOWN_VIEW,0,
|
WC_TOWN_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
||||||
_town_view_scen_widgets,
|
_town_view_scen_widgets,
|
||||||
|
@ -505,7 +505,7 @@ static void TownDirectoryWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _town_directory_desc = {
|
static const WindowDesc _town_directory_desc = {
|
||||||
-1, -1, 208, 202,
|
WDP_AUTO, WDP_AUTO, 208, 202,
|
||||||
WC_TOWN_DIRECTORY,0,
|
WC_TOWN_DIRECTORY,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_town_directory_widgets,
|
_town_directory_widgets,
|
||||||
|
|
|
@ -649,7 +649,7 @@ static void NewRailVehicleWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _new_rail_vehicle_desc = {
|
static const WindowDesc _new_rail_vehicle_desc = {
|
||||||
-1, -1, 228, 264,
|
WDP_AUTO, WDP_AUTO, 228, 264,
|
||||||
WC_BUILD_VEHICLE,0,
|
WC_BUILD_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_new_rail_vehicle_widgets,
|
_new_rail_vehicle_widgets,
|
||||||
|
@ -923,7 +923,7 @@ static void TrainViewWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _train_view_desc = {
|
static const WindowDesc _train_view_desc = {
|
||||||
-1,-1, 250, 134,
|
WDP_AUTO, WDP_AUTO, 250, 134,
|
||||||
WC_VEHICLE_VIEW,0,
|
WC_VEHICLE_VIEW,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_train_view_widgets,
|
_train_view_widgets,
|
||||||
|
@ -1200,7 +1200,7 @@ static const Widget _train_details_widgets[] = {
|
||||||
|
|
||||||
|
|
||||||
static const WindowDesc _train_details_desc = {
|
static const WindowDesc _train_details_desc = {
|
||||||
-1,-1, 370, 164,
|
WDP_AUTO, WDP_AUTO, 370, 164,
|
||||||
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
WC_VEHICLE_DETAILS,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_train_details_widgets,
|
_train_details_widgets,
|
||||||
|
|
|
@ -426,7 +426,7 @@ static const Widget _vehicle_refit_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _vehicle_refit_desc = {
|
static const WindowDesc _vehicle_refit_desc = {
|
||||||
-1,-1, 240, 174,
|
WDP_AUTO, WDP_AUTO, 240, 174,
|
||||||
WC_VEHICLE_REFIT,WC_VEHICLE_VIEW,
|
WC_VEHICLE_REFIT,WC_VEHICLE_VIEW,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
|
||||||
_vehicle_refit_widgets,
|
_vehicle_refit_widgets,
|
||||||
|
@ -1278,7 +1278,7 @@ static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _replace_rail_vehicle_desc = {
|
static const WindowDesc _replace_rail_vehicle_desc = {
|
||||||
-1, -1, 456, 252,
|
WDP_AUTO, WDP_AUTO, 456, 252,
|
||||||
WC_REPLACE_VEHICLE,0,
|
WC_REPLACE_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_replace_rail_vehicle_widgets,
|
_replace_rail_vehicle_widgets,
|
||||||
|
@ -1286,7 +1286,7 @@ static const WindowDesc _replace_rail_vehicle_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _replace_road_vehicle_desc = {
|
static const WindowDesc _replace_road_vehicle_desc = {
|
||||||
-1, -1, 456, 230,
|
WDP_AUTO, WDP_AUTO, 456, 230,
|
||||||
WC_REPLACE_VEHICLE,0,
|
WC_REPLACE_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_replace_road_vehicle_widgets,
|
_replace_road_vehicle_widgets,
|
||||||
|
@ -1294,7 +1294,7 @@ static const WindowDesc _replace_road_vehicle_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _replace_ship_aircraft_vehicle_desc = {
|
static const WindowDesc _replace_ship_aircraft_vehicle_desc = {
|
||||||
-1, -1, 456, 214,
|
WDP_AUTO, WDP_AUTO, 456, 214,
|
||||||
WC_REPLACE_VEHICLE,0,
|
WC_REPLACE_VEHICLE,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_replace_ship_aircraft_vehicle_widgets,
|
_replace_ship_aircraft_vehicle_widgets,
|
||||||
|
@ -1822,7 +1822,7 @@ void PlayerVehWndProc(Window *w, WindowEvent *e)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const WindowDesc _player_vehicle_list_train_desc = {
|
static const WindowDesc _player_vehicle_list_train_desc = {
|
||||||
-1, -1, 325, 220,
|
WDP_AUTO, WDP_AUTO, 325, 220,
|
||||||
WC_TRAINS_LIST, 0,
|
WC_TRAINS_LIST, 0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_vehicle_list_widgets,
|
_vehicle_list_widgets,
|
||||||
|
@ -1830,7 +1830,7 @@ static const WindowDesc _player_vehicle_list_train_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _player_vehicle_list_road_veh_desc = {
|
static const WindowDesc _player_vehicle_list_road_veh_desc = {
|
||||||
-1, -1, 260, 220,
|
WDP_AUTO, WDP_AUTO, 260, 220,
|
||||||
WC_ROADVEH_LIST,0,
|
WC_ROADVEH_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_vehicle_list_widgets,
|
_vehicle_list_widgets,
|
||||||
|
@ -1838,7 +1838,7 @@ static const WindowDesc _player_vehicle_list_road_veh_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _player_vehicle_list_ship_desc = {
|
static const WindowDesc _player_vehicle_list_ship_desc = {
|
||||||
-1, -1, 260, 182,
|
WDP_AUTO, WDP_AUTO, 260, 182,
|
||||||
WC_SHIPS_LIST,0,
|
WC_SHIPS_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_vehicle_list_widgets,
|
_vehicle_list_widgets,
|
||||||
|
@ -1846,7 +1846,7 @@ static const WindowDesc _player_vehicle_list_ship_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WindowDesc _player_vehicle_list_aircraft_desc = {
|
static const WindowDesc _player_vehicle_list_aircraft_desc = {
|
||||||
-1, -1, 260, 182,
|
WDP_AUTO, WDP_AUTO, 260, 182,
|
||||||
WC_AIRCRAFT_LIST,0,
|
WC_AIRCRAFT_LIST,0,
|
||||||
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
||||||
_vehicle_list_widgets,
|
_vehicle_list_widgets,
|
||||||
|
|
Loading…
Reference in New Issue