Fri, 27 Oct 2006 13:58:58 +0000(svn r6962) -Fix r6961: spacing...
Darkvater [Fri, 27 Oct 2006 13:58:58 +0000] rev 4963
(svn r6962) -Fix r6961: spacing...

Fri, 27 Oct 2006 13:48:56 +0000(svn r6961) -Codechange: Remove relic from r212 WWT_NODISTXTBTN which was originally used to not
Darkvater [Fri, 27 Oct 2006 13:48:56 +0000] rev 4962
(svn r6961) -Codechange: Remove relic from r212 WWT_NODISTXTBTN which was originally used to not
to allow clicking if a button was disabled. This has been superseded in r212 with
general code that doesn't allow any click events for disabled buttons.

Fri, 27 Oct 2006 13:15:21 +0000(svn r6960) - Feature: NewGRF: Implement some support for GRF Resource Management (GRM)
peter1138 [Fri, 27 Oct 2006 13:15:21 +0000] rev 4961
(svn r6960) - Feature: NewGRF: Implement some support for GRF Resource Management (GRM)

Fri, 27 Oct 2006 11:49:51 +0000(svn r6959) -Codechange: Move GfxFillRect() out of the chat-message drawing loop since we already
Darkvater [Fri, 27 Oct 2006 11:49:51 +0000] rev 4960
(svn r6959) -Codechange: Move GfxFillRect() out of the chat-message drawing loop since we already
know how many lines we are going to draw. On certain architectures this results in a
minor penalty of local function performance if only 1 line is drawn. But starting from
2 and more you'll get a net gain.

Fri, 27 Oct 2006 11:17:38 +0000(svn r6958) -Fix (r6956): GCC warning (thx Tron) and a coding style forgotten in r6957
Darkvater [Fri, 27 Oct 2006 11:17:38 +0000] rev 4959
(svn r6958) -Fix (r6956): GCC warning (thx Tron) and a coding style forgotten in r6957

Fri, 27 Oct 2006 11:09:24 +0000(svn r6957) -Cleanup: comments, coding style
Darkvater [Fri, 27 Oct 2006 11:09:24 +0000] rev 4958
(svn r6957) -Cleanup: comments, coding style

Fri, 27 Oct 2006 11:08:17 +0000(svn r6956) -Feature: Increase the chatbuffer of chat messages. Messages longer than the allocated
Darkvater [Fri, 27 Oct 2006 11:08:17 +0000] rev 4957
(svn r6956) -Feature: Increase the chatbuffer of chat messages. Messages longer than the allocated
graphical box will be wrapped to a new line.

Fri, 27 Oct 2006 10:27:38 +0000(svn r6955) -Codechange: Change some variable names for _textmessage_box, and replace 5 different
Darkvater [Fri, 27 Oct 2006 10:27:38 +0000] rev 4956
(svn r6955) -Codechange: Change some variable names for _textmessage_box, and replace 5 different
global variables with a single struct.

Fri, 27 Oct 2006 10:12:57 +0000(svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater [Fri, 27 Oct 2006 10:12:57 +0000] rev 4955
(svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
the widget it is in. This allows for typing longer text into an editbox (if maxwidth
allows of course) and scroll around properly.

Fri, 27 Oct 2006 09:55:38 +0000(svn r6953) -Codechange: Change FormatStringLinebreaks in such a way that if no whitespace was seen
Darkvater [Fri, 27 Oct 2006 09:55:38 +0000] rev 4954
(svn r6953) -Codechange: Change FormatStringLinebreaks in such a way that if no whitespace was seen
for the 'current line' of a certain maximum width, the string will be truncated instead
of the old behaviour which just left it alone.