(svn r27729) -Codechange: Do not count static NewGRF when checking for the maximum...
[openttd.git] / src / widgets / dropdown_type.h
blobb65d4557bd82b8e978dd40bfd19e9f3aad5de83d
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8 */
10 /** @file dropdown_type.h Types related to the drop down widget. */
12 #ifndef WIDGETS_DROPDOWN_TYPE_H
13 #define WIDGETS_DROPDOWN_TYPE_H
15 #include "../window_type.h"
16 #include "../gfx_func.h"
17 #include "../core/smallvec_type.hpp"
18 #include "table/strings.h"
20 /**
21 * Base list item class from which others are derived. If placed in a list it
22 * will appear as a horizontal line in the menu.
24 class DropDownListItem {
25 public:
26 int result; ///< Result code to return to window on selection
27 bool masked; ///< Masked and unselectable item
29 DropDownListItem(int result, bool masked) : result(result), masked(masked) {}
30 virtual ~DropDownListItem() {}
32 virtual bool Selectable() const { return false; }
33 virtual uint Height(uint width) const { return FONT_HEIGHT_NORMAL; }
34 virtual uint Width() const { return 0; }
35 virtual void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const;
38 /**
39 * Common string list item.
41 class DropDownListStringItem : public DropDownListItem {
42 public:
43 StringID string; ///< String ID of item
45 DropDownListStringItem(StringID string, int result, bool masked) : DropDownListItem(result, masked), string(string) {}
46 virtual ~DropDownListStringItem() {}
48 virtual bool Selectable() const { return true; }
49 virtual uint Width() const;
50 virtual void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const;
51 virtual StringID String() const { return this->string; }
53 static int CDECL NatSortFunc(const DropDownListItem * const *first, const DropDownListItem * const *second);
56 /**
57 * String list item with parameters.
59 class DropDownListParamStringItem : public DropDownListStringItem {
60 public:
61 uint64 decode_params[10]; ///< Parameters of the string
63 DropDownListParamStringItem(StringID string, int result, bool masked) : DropDownListStringItem(string, result, masked) {}
64 virtual ~DropDownListParamStringItem() {}
66 virtual StringID String() const;
67 virtual void SetParam(uint index, uint64 value) { decode_params[index] = value; }
70 /**
71 * List item containing a C char string.
73 class DropDownListCharStringItem : public DropDownListStringItem {
74 public:
75 const char *raw_string;
77 DropDownListCharStringItem(const char *raw_string, int result, bool masked) : DropDownListStringItem(STR_JUST_RAW_STRING, result, masked), raw_string(raw_string) {}
78 virtual ~DropDownListCharStringItem() {}
80 virtual StringID String() const;
83 /**
84 * A drop down list is a collection of drop down list items.
86 typedef AutoDeleteSmallVector<const DropDownListItem *, 4> DropDownList;
88 void ShowDropDownListAt(Window *w, const DropDownList *list, int selected, int button, Rect wi_rect, Colours wi_colour, bool auto_width = false, bool instant_close = false);
90 void ShowDropDownList(Window *w, const DropDownList *list, int selected, int button, uint width = 0, bool auto_width = false, bool instant_close = false);
92 #endif /* WIDGETS_DROPDOWN_TYPE_H */