summaryrefslogtreecommitdiff
path: root/src/widgets/dropdown_type.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-08-07 18:11:09 +0000
committerpeter1138 <peter1138@openttd.org>2008-08-07 18:11:09 +0000
commit6bae045b4af118f19946ecb4d160a9d69c6638f8 (patch)
tree76b1fd3fb3093f820e5563d14e9e1cb2e1a39993 /src/widgets/dropdown_type.h
parentbf65e7e8f9767e2424c34e123d24b7d8da5ba037 (diff)
downloadopenttd-6bae045b4af118f19946ecb4d160a9d69c6638f8.tar.xz
(svn r14014) -Codechange: Add support for automatically sizing drop down lists to the widest list item.
Diffstat (limited to 'src/widgets/dropdown_type.h')
-rw-r--r--src/widgets/dropdown_type.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/widgets/dropdown_type.h b/src/widgets/dropdown_type.h
index aa4baafe1..c9686a178 100644
--- a/src/widgets/dropdown_type.h
+++ b/src/widgets/dropdown_type.h
@@ -22,6 +22,7 @@ public:
virtual bool Selectable() const { return false; }
virtual uint Height(uint width) const { return 10; }
+ virtual uint Width() const { return 0; }
virtual void Draw(int x, int y, uint width, uint height, bool sel, int bg_colour) const;
};
@@ -36,6 +37,7 @@ public:
virtual ~DropDownListStringItem() {}
virtual bool Selectable() const { return true; }
+ virtual uint Width() const;
virtual void Draw(int x, int y, uint width, uint height, bool sel, int bg_colour) const;
virtual StringID String() const { return this->string; }
};
@@ -68,6 +70,8 @@ typedef std::list<DropDownListItem *> DropDownList;
* @param button The widget within the parent window that is used to determine
* the list's location.
* @param width Override the width determined by the selected widget.
+ * If UINT_MAX then the width is determined by the widest item
+ * in the list.
*/
void ShowDropDownList(Window *w, DropDownList *list, int selected, int button, uint width = 0);