1 /**********************************************************************
2  Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2, or (at your option)
6    any later version.
7 
8    This program is distributed in the hope that it will be useful,
9    but WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11    GNU General Public License for more details.
12 ***********************************************************************/
13 #ifndef FC__INPUTDLG_H
14 #define FC__INPUTDLG_H
15 
16 #include <X11/Intrinsic.h>
17 #include <X11/StringDefs.h>
18 
19 
20 Widget input_dialog_create(Widget parent, const char *dialogname,
21 			   const char *text, const char *postinputtest,
22 			   XtCallbackProc ok_callback,
23 			   XtPointer ok_cli_data,
24 			   XtCallbackProc cancel_callback,
25 			   XtPointer cancel_cli_data);
26 
27 void input_dialog_destroy(Widget button);
28 char *input_dialog_get_input(Widget button);
29 
30 void inputdlg_key_ok(Widget w);
31 
32 
33 #endif  /* FC__INPUTDLG_H */
34