diff options
author | alberth <alberth@openttd.org> | 2009-04-09 11:22:36 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2009-04-09 11:22:36 +0000 |
commit | 11f406c0a4b4470ce316f4de9938596be5cf993d (patch) | |
tree | 9fad2513f1be390d8693eb725e34fa9060d8607d /src | |
parent | 4af791e88857a3b098889721d324e6c197d9f5c0 (diff) | |
download | openttd-11f406c0a4b4470ce316f4de9938596be5cf993d.tar.xz |
(svn r16002) -Codechange: Added nested widgets for company league window
Diffstat (limited to 'src')
-rw-r--r-- | src/graph_gui.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp index 20a642b1b..a945f6342 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -895,6 +895,13 @@ public: } }; +/** Widget numbers for the company league window. */ +enum CompanyLeagueWidgets { + CLW_CLOSEBOX, + CLW_CAPTION, + CLW_STICKYBOX, + CLW_BACKGROUND, +}; static const Widget _company_league_widgets[] = { { WWT_CLOSEBOX, RESIZE_NONE, COLOUR_GREY, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, @@ -904,11 +911,20 @@ static const Widget _company_league_widgets[] = { { WIDGETS_END}, }; +static const NWidgetPart _nested_company_league_widgets[] = { + NWidget(NWID_HORIZONTAL), + NWidget(WWT_CLOSEBOX, COLOUR_GREY, CLW_CLOSEBOX), + NWidget(WWT_CAPTION, COLOUR_GREY, CLW_CAPTION), SetDataTip(STR_7053_COMPANY_LEAGUE_TABLE, STR_018C_WINDOW_TITLE_DRAG_THIS), + NWidget(WWT_STICKYBOX, COLOUR_GREY, CLW_STICKYBOX), + EndContainer(), + NWidget(WWT_PANEL, COLOUR_GREY, CLW_BACKGROUND), SetMinimalSize(400, 153), +}; + static const WindowDesc _company_league_desc( WDP_AUTO, WDP_AUTO, 400, 167, 400, 167, WC_COMPANY_LEAGUE, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON, - _company_league_widgets + _company_league_widgets, _nested_company_league_widgets, lengthof(_nested_company_league_widgets) ); void ShowCompanyLeagueTable() |