mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
15 lines
472 B
C
15 lines
472 B
C
/* $Id$ */
|
|
|
|
/** @file dropdown_func.h Functions related to the drop down widget. */
|
|
|
|
#ifndef WIDGETS_DROPDOWN_FUNC_H
|
|
#define WIDGETS_DROPDOWN_FUNC_H
|
|
|
|
/* Show drop down menu containing a fixed list of strings */
|
|
void ShowDropDownMenu(Window *w, const StringID *strings, int selected, int button, uint32 disabled_mask, uint32 hidden_mask, uint width = 0);
|
|
|
|
/* Hide drop down menu of a parent window */
|
|
int HideDropDownMenu(Window *pw);
|
|
|
|
#endif /* WIDGETS_DROPDOWN_FUNC_H */
|