src/widgets/dropdown_type.h
changeset 10141 3ac62c310231
parent 10113 0233cd056e70
child 10144 52d27a99a331
equal deleted inserted replaced
10140:70db180c1072 10141:3ac62c310231
    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  */