1 /* $Id: date_gui.h 18809 2010-01-15 16:41:15Z rubidium $ */
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/>.
10 /** @file date_gui.h Functions related to the graphical selection of a date. */
15 #include "date_type.h"
16 #include "window_type.h"
19 * Callback for when a date has been chosen
20 * @param w the window that sends the callback
21 * @param date the date that has been chosen
23 typedef void SetDateCallback(const Window
*w
, Date date
);
25 void ShowSetDateWindow(Window
*parent
, int window_number
, Date initial_date
, Year min_year
, Year max_year
, SetDateCallback
*callback
);
27 #endif /* DATE_GUI_H */