src/news_gui.cpp
Tue, 30 Sep 2008 21:18:28 +0000 rubidium (svn r14423) -Codechange: also do r14221 for the strings.
Tue, 30 Sep 2008 20:51:04 +0000 rubidium (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
Tue, 30 Sep 2008 20:39:50 +0000 rubidium (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
Sat, 13 Sep 2008 10:19:51 +0000 smatz (svn r14307) -Fix: when deleting a station, remove news items regarding it
Thu, 31 Jul 2008 16:44:51 +0000 belugas (svn r13897) -Codechange: Replace remaining numbers with Colours enum on news guis
Wed, 30 Jul 2008 01:53:03 +0000 belugas (svn r13872) -Feature: Split the news message announcing opening and closure of industries into two news of their own
Tue, 29 Jul 2008 15:34:56 +0000 belugas (svn r13867) -Codechange: Fix missing alignment
Fri, 18 Jul 2008 16:26:51 +0000 rubidium (svn r13730) -Fix: make a copy of the names for news messages about the deletion of companies as the removal of a company could lead to wrong names in the news messages.
Sat, 28 Jun 2008 15:44:24 +0000 frosch (svn r13649) -Codechange: Split the GfxFillRect() special flags from 'color' into their own parameter.
Mon, 09 Jun 2008 12:20:00 +0000 smatz (svn r13434) -Fix (r13317): news window with invalid news item could be shown
Thu, 05 Jun 2008 16:55:00 +0000 rubidium (svn r13389) -Codechange: remove NM_CALLBACK because that information could be gathered from the fact that a callback has been specified. Patch by Cirdan.
Sun, 01 Jun 2008 10:11:31 +0000 rubidium (svn r13349) -Codechange: remove a pointless flag; the flag is set before calling a function and is then reset in the function without ever reading it. Patch by Cirdan.
Fri, 30 May 2008 20:57:19 +0000 rubidium (svn r13345) -Codechange: only one of all the NewsItem's instance duration variable, so move it so there is only once instance of that variable. Patch by Cirdan.
Thu, 29 May 2008 15:13:28 +0000 rubidium (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
Wed, 28 May 2008 21:36:16 +0000 rubidium (svn r13317) -Codechange: make news messages use a linked list instead of a moving circular buffer. This makes it possible to store more news messages in the history. Based on a patch by Cirdan.
Wed, 28 May 2008 20:13:28 +0000 rubidium (svn r13316) -Codechange: move some functions around to make them grouped more logically.
Sun, 25 May 2008 19:17:03 +0000 rubidium (svn r13251) -Codechange: rename _patches to _settings as that is more logic.
Fri, 23 May 2008 23:02:13 +0000 peter1138 (svn r13225) -Fix (r13041): Missing calls to FindWindowPlacementAndResize() from lots
Mon, 19 May 2008 09:48:47 +0000 rubidium (svn r13185) -Codechange: remove everything related to the WindowProc callbacks.
Mon, 19 May 2008 09:18:51 +0000 rubidium (svn r13181) -Codechange: make news callback handling a little simpler. Patch by Cirdan.
Sun, 18 May 2008 08:50:51 +0000 rubidium (svn r13154) -Codechange: make a window class of the news message history window.
Sat, 17 May 2008 23:11:06 +0000 rubidium (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean.
Sat, 17 May 2008 21:13:05 +0000 rubidium (svn r13147) -Codechange: move the code to draw bankruptcy news to news_gui.cpp.
Sat, 17 May 2008 12:48:06 +0000 rubidium (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
Fri, 16 May 2008 07:15:32 +0000 rubidium (svn r13115) -Codechange: make a window subclass of the MessageOptionsWindow.
Fri, 16 May 2008 07:08:04 +0000 rubidium (svn r13114) -Codechange: use InvalidateData instead of direct window access to modify the state of the statusbar from outside the statusbar.
Thu, 15 May 2008 20:53:44 +0000 rubidium (svn r13111) -Documentation: update the documentation of AddNewsItem to reflect reality. Patch by Cirdan.
Thu, 15 May 2008 13:47:55 +0000 rubidium (svn r13102) -Codechange: make a class of the NewsWindow.
Thu, 15 May 2008 13:39:36 +0000 rubidium (svn r13100) -Codechange: reduce the amount of parameters passed via AddNewsMessage as there is (for each news message type) a tuple of 4 parameters that is the same for all calls.
Tue, 13 May 2008 10:17:04 +0000 rubidium (svn r13065) -Codechange: remove the need for the news string callbacks. Patch by Cirdan.
Sun, 11 May 2008 15:08:44 +0000 glx (svn r13047) -Codechange: remove vp_d
Sun, 11 May 2008 13:02:58 +0000 rubidium (svn r13043) -Codechange: remove some duplicate variables from news_d.
Sat, 10 May 2008 12:30:27 +0000 rubidium (svn r13028) -Codechange: WE_MESSAGE and WE_INVALIDATE_DATA were doing the same thing.
Thu, 08 May 2008 22:53:49 +0000 rubidium (svn r13021) -Codechange: free data_b for other uses when it is not used to store a second tile to skip to (in news messages). Patch by cirdan.
Thu, 08 May 2008 11:31:41 +0000 rubidium (svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Tue, 06 May 2008 22:08:18 +0000 rubidium (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
Tue, 06 May 2008 21:28:30 +0000 rubidium (svn r12975) -Codechange: replace DeleteWindow(w) with delete w.
Tue, 06 May 2008 15:11:33 +0000 rubidium (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
Mon, 05 May 2008 11:36:43 +0000 peter1138 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
Mon, 05 May 2008 11:24:58 +0000 peter1138 (svn r12952) -Cleanup: Indenting and codestyle
Tue, 22 Apr 2008 21:18:55 +0000 glx (svn r12842) -Codechange [FS#1604]: scale message history by map size
Sun, 20 Apr 2008 11:40:33 +0000 rubidium (svn r12805) -Codechange: remove some bit magic related to the news display states. Patch by cirdan.
Sat, 19 Apr 2008 13:17:19 +0000 rubidium (svn r12789) -Codechange: rename AssignWindowViewport to InitializeWindowViewport because the viewport is now part of the window struct. Patch by Alberth.
Sat, 19 Apr 2008 12:50:02 +0000 rubidium (svn r12785) -Codechange: put all news-type related constants in the same array. Patch by cirdan.
Fri, 18 Apr 2008 04:54:09 +0000 rubidium (svn r12762) -Fix: tabs after the first non-tab character are generally not okay (or lines starting with a space and then tabs).
Thu, 17 Apr 2008 11:25:12 +0000 rubidium (svn r12750) -Fix (r12749): viewport for industry new messages was not shown properly.
Sun, 13 Apr 2008 11:15:48 +0000 rubidium (svn r12683) -Fix [FS#1906]: in some cases a news messages would not be shown.
Fri, 28 Mar 2008 16:45:20 +0000 rubidium (svn r12475) -Codechange: cleanup coding style in news_gui.cpp.
Fri, 28 Mar 2008 08:53:36 +0000 rubidium (svn r12459) -Codechange: split news.h into news_type.h and news_func.h.
Thu, 17 Jan 2008 20:00:13 +0000 peter1138 (svn r11909) -Codechange: use dropdown widget for player livery, network lobby/setup and news settings windows
Mon, 14 Jan 2008 16:10:58 +0000 peter1138 (svn r11848) -Codechange: New class-based drop down list functionality. Lists are now dynamically generated, and can include parameters, or be extended however needed.
Sun, 13 Jan 2008 14:37:30 +0000 rubidium (svn r11834) -Codechange: only include settings_type.h if needed.
Sun, 13 Jan 2008 13:36:01 +0000 rubidium (svn r11832) -Codechange: get rid of (quite) some VARDEFs.
Sun, 13 Jan 2008 01:21:35 +0000 rubidium (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Wed, 09 Jan 2008 09:45:45 +0000 rubidium (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
Mon, 07 Jan 2008 14:23:25 +0000 rubidium (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
Sat, 29 Dec 2007 09:24:26 +0000 rubidium (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
Thu, 27 Dec 2007 13:35:39 +0000 rubidium (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
Wed, 26 Dec 2007 13:50:40 +0000 rubidium (svn r11702) -Codechange: move all date related stuff to date*.
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'