diff options
author | stormcone <48624099+stormcone@users.noreply.github.com> | 2019-11-23 20:14:44 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-01-05 20:52:17 +0000 |
commit | 70f9c3c655363bd8814f4a7d95e4dd94a85afd00 (patch) | |
tree | 8bd7f808d3a4d9389edebd6bb65277c73a3cebcb /src/widgets/industry_widget.h | |
parent | ab9042145e429be254ae1ff8a486c98f9b850fe7 (diff) | |
download | openttd-70f9c3c655363bd8814f4a7d95e4dd94a85afd00.tar.xz |
Feature: Industry directory cargo filtering
Diffstat (limited to 'src/widgets/industry_widget.h')
-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 d31de978e..e9fb2b114 100644 --- a/src/widgets/industry_widget.h +++ b/src/widgets/industry_widget.h @@ -30,10 +30,12 @@ enum IndustryViewWidgets { /** Widgets of the #IndustryDirectoryWindow class. */ enum IndustryDirectoryWidgets { - WID_ID_DROPDOWN_ORDER, ///< Dropdown for the order of the sort. - WID_ID_DROPDOWN_CRITERIA, ///< Dropdown for the criteria of the sort. - WID_ID_INDUSTRY_LIST, ///< Industry list. - WID_ID_SCROLLBAR, ///< Scrollbar of the list. + WID_ID_DROPDOWN_ORDER, ///< Dropdown for the order of the sort. + WID_ID_DROPDOWN_CRITERIA, ///< Dropdown for the criteria of the sort. + WID_ID_FILTER_BY_ACC_CARGO, ///< Accepted cargo filter dropdown list. + WID_ID_FILTER_BY_PROD_CARGO, ///< Produced cargo filter dropdown list. + WID_ID_INDUSTRY_LIST, ///< Industry list. + WID_ID_SCROLLBAR, ///< Scrollbar of the list. }; /** Widgets of the #IndustryCargoesWindow class */ |