Move the sources to trunk
[opencv] / otherlibs / _fltk / include / FL / fl_ask.H
1 //
2 // "$Id: fl_ask.H,v 1.2 2002/12/01 15:38:37 neurosurg Exp $"
3 //
4 // Standard dialog header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2002 by Bill Spitzak and others.
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 // USA.
22 //
23 // Please report all bugs and problems to "fltk-bugs@fltk.org".
24 //
25
26 #ifndef fl_ask_H
27 #define fl_ask_H
28
29 #include "Enumerations.H"
30
31 class Fl_Widget;
32
33 enum {
34   FL_BEEP_DEFAULT = 0,
35   FL_BEEP_MESSAGE,
36   FL_BEEP_ERROR,
37   FL_BEEP_QUESTION,
38   FL_BEEP_PASSWORD,
39   FL_BEEP_NOTIFICATION
40 };
41
42 FL_EXPORT void fl_beep(int type = FL_BEEP_DEFAULT);
43 FL_EXPORT void fl_message(const char *,...);
44 FL_EXPORT void fl_alert(const char *,...);
45 FL_EXPORT int fl_ask(const char *,...);
46 FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...);
47 FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...);
48 FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...);
49
50 FL_EXPORT Fl_Widget *fl_message_icon();
51 extern FL_EXPORT Fl_Font fl_message_font_;
52 extern FL_EXPORT unsigned char fl_message_size_;
53 inline void fl_message_font(unsigned char f,unsigned char s) {
54   fl_message_font_ = (Fl_Font)f; fl_message_size_ = s;}
55
56 // pointers you can use to change FLTK to a foreign language:
57 extern FL_EXPORT const char* fl_no;
58 extern FL_EXPORT const char* fl_yes;
59 extern FL_EXPORT const char* fl_ok;
60 extern FL_EXPORT const char* fl_cancel;
61 extern FL_EXPORT const char* fl_close;
62
63 #endif
64
65 //
66 // End of "$Id: fl_ask.H,v 1.2 2002/12/01 15:38:37 neurosurg Exp $".
67 //