summaryrefslogtreecommitdiff
path: root/depot_gui.c
AgeCommit message (Collapse)Author
2006-09-28(svn r6561) -Fix r6513: [depot window] fixed an off by one error, that ↵bjarni
caused planes and ships to be drawn one pixel lower for each row
2006-09-28(svn r6554) -Fix r6513: [depot window] fixed a bug where moving rail ↵bjarni
vehicles from one line to another could fail under certain conditions
2006-09-28(svn r6552) -Feature: [depot window] added a "autoreplace all vehicles in ↵bjarni
depot" button Like the "sell all" button, this one lacks a sprite as well. We will hopefully get one shortly
2006-09-27(svn r6542) -Feature: [depot window] added a "sell all vehicles in depot" buttonbjarni
It's right below the sell button (sell whole chain button for trains) It's still missing a sprite. That one will be added as soon as anybody draws something we can use To make room for this button, all depots except train depots now opens with an additional row and can't be resized shorter than that
2006-09-27(svn r6530) -Fix r6529: added missing header file (oops)bjarni
2006-09-27(svn r6529) -Fix r6513: [depot window] added missing switch in CcCloneVehicle()bjarni
The result of this missing switch was asserts in some cloning conditions (not all) (spotted by KUDr)
2006-09-27(svn r6528) -Fix r6527: fixed an off by one error in an assertbjarni
2006-09-27(svn r6527) -Codechange: [depot window] added asserts to ensure that widget ↵bjarni
names, widget array and array of resize info stays the same length Really bad stuff will happen if one of them contains a different number of widgets ;) This is meant as a protection against incorrect additions of code rather than verifying that the current code works
2006-09-27(svn r6526) -Codechange: [depot window] the train only widgets are now ↵bjarni
resized depending on the size of other widgets This will ensure that say the horizontal scrollbar is as wide as the matrix even if only the matrix is altered in size This is meant to make it easier to add more widgets without coding a lot of vehicle type specific stuff (you should still check all windows though)
2006-09-27(svn r6525) -Codechange r6513: altered how to control how to move widgets ↵bjarni
around in the window. Hopefully it's a bit easier to understand now
2006-09-27(svn r6522) -Feature: [depot window] the buttons are now "scaled" resizedbjarni
This means that "Build vehicle", "Clone vehicle" and "Location" will always fill the space from the left window border to the resize button and they are equal in size The sell button will also use all the space between the start/stop buttons and the resize button and for trains, the sell button is split into two buttons in equal sizes This will prevent the issue where a small window is resized into a large one and the buttons remains pretty small -Codechange: [depot window] The enum with widget names is now changed into automatic numbering so all lines will not have to be changed each time a new widget is added
2006-09-27(svn r6520) -Fix r6515: "start all" and "stop all" buttons in depot windows ↵bjarni
are now disabled if you do not own the depot
2006-09-27(svn r6516) -Fix r6513: killed warnings about two variables being used ↵bjarni
uninitialized This is not even correct since it's set in if (a) and later used in another if (a), but GCC didn't detect that
2006-09-26(svn r6515) -Feature: added "start all" and "stop all" buttons to the depot ↵bjarni
windows
2006-09-26(svn r6513) -Codechange: unified the code to draw depot windowsbjarni
This change is intended to make it easier to make depot behaviour consistent and faster to code when adding more features in the future The user interface should hopefully not be affected by this