equal
deleted
inserted
replaced
56 VPM_X_AND_Y = 4, ///< area of land in X and Y directions |
56 VPM_X_AND_Y = 4, ///< area of land in X and Y directions |
57 VPM_X_AND_Y_LIMITED = 5, ///< area of land of limited size |
57 VPM_X_AND_Y_LIMITED = 5, ///< area of land of limited size |
58 VPM_SIGNALDIRS = 6, ///< similiar to VMP_RAILDIRS, but with different cursor |
58 VPM_SIGNALDIRS = 6, ///< similiar to VMP_RAILDIRS, but with different cursor |
59 }; |
59 }; |
60 |
60 |
|
61 /** Drag and drop selection process, or, what to do with an area of land when |
|
62 * you've selected it. */ |
|
63 enum ViewportDragDropSelectionProcess { |
|
64 DDSP_DEMOLISH_AREA, |
|
65 DDSP_RAISE_AND_LEVEL_AREA, |
|
66 DDSP_LOWER_AND_LEVEL_AREA, |
|
67 DDSP_LEVEL_AREA, |
|
68 DDSP_CREATE_DESERT, |
|
69 DDSP_CREATE_ROCKS, |
|
70 DDSP_CREATE_WATER, |
|
71 DDSP_CREATE_RIVER, |
|
72 DDSP_PLANT_TREES, |
|
73 DDSP_BUILD_BRIDGE, |
|
74 |
|
75 /* Rail specific actions */ |
|
76 DDSP_PLACE_RAIL_NE, |
|
77 DDSP_PLACE_RAIL_NW, |
|
78 DDSP_PLACE_AUTORAIL, |
|
79 DDSP_BUILD_SIGNALS, |
|
80 DDSP_BUILD_STATION, |
|
81 DDSP_REMOVE_STATION, |
|
82 DDSP_CONVERT_RAIL, |
|
83 |
|
84 /* Road specific actions */ |
|
85 DDSP_PLACE_ROAD_X_DIR, |
|
86 DDSP_PLACE_ROAD_Y_DIR, |
|
87 DDSP_PLACE_AUTOROAD, |
|
88 }; |
|
89 |
61 #endif /* VIEWPORT_TYPE_H */ |
90 #endif /* VIEWPORT_TYPE_H */ |