src/widgets/dropdown_type.h
changeset 8905 609b1121b3b3
parent 8877 f09f03b0dc64
child 8907 c6949b09d3b3
equal deleted inserted replaced
8904:bd1bebd3a126 8905:609b1121b3b3
    16 	bool masked; ///< Masked and unselectable item
    16 	bool masked; ///< Masked and unselectable item
    17 
    17 
    18 	DropDownListItem(int result, bool masked) : result(result), masked(masked) {}
    18 	DropDownListItem(int result, bool masked) : result(result), masked(masked) {}
    19 	virtual ~DropDownListItem() {}
    19 	virtual ~DropDownListItem() {}
    20 	virtual StringID String() const;
    20 	virtual StringID String() const;
       
    21 	virtual uint Height(uint width) const;
    21 };
    22 };
    22 
    23 
    23 /**
    24 /**
    24  * Common string list item.
    25  * Common string list item.
    25  */
    26  */