diff options
author | alberth <alberth@openttd.org> | 2012-11-25 15:24:02 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2012-11-25 15:24:02 +0000 |
commit | fb892f4b2060344b1ca1dbcb9b120aa628fc4785 (patch) | |
tree | e2a734f9c08ae6ab494c55d2dfb58db31fce05f4 /src/widgets | |
parent | e67c717c2f167e5763ebc8dc730d8681ea768e6e (diff) | |
download | openttd-fb892f4b2060344b1ca1dbcb9b120aa628fc4785.tar.xz |
(svn r24763) -Feature: Add industry type and cargo dropdown selection for easier navigating in the industry chain window.
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/industry_widget.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/widgets/industry_widget.h b/src/widgets/industry_widget.h index 0cadc6e3a..711694db7 100644 --- a/src/widgets/industry_widget.h +++ b/src/widgets/industry_widget.h @@ -40,10 +40,12 @@ enum IndustryDirectoryWidgets { /** Widgets of the #IndustryCargoesWindow class */ enum IndustryCargoesWidgets { - WID_IC_CAPTION, ///< Caption of the window. - WID_IC_NOTIFY, ///< Row of buttons at the bottom. - WID_IC_PANEL, ///< Panel that shows the chain. - WID_IC_SCROLLBAR, ///< Scrollbar of the panel. + WID_IC_CAPTION, ///< Caption of the window. + WID_IC_NOTIFY, ///< Row of buttons at the bottom. + WID_IC_PANEL, ///< Panel that shows the chain. + WID_IC_SCROLLBAR, ///< Scrollbar of the panel. + WID_IC_CARGO_DROPDOWN, ///< Select cargo dropdown. + WID_IC_IND_DROPDOWN, ///< Select industry dropdown. }; #endif /* WIDGETS_INDUSTRY_WIDGET_H */ |