FLTK 1.3.3
fl_ask.H
Go to the documentation of this file.
1 //
2 // "$Id: fl_ask.H 9748 2012-12-11 17:06:41Z manolo $"
3 //
4 // Standard dialog header file for the Fast Light Tool Kit (FLTK).
5 //
6 // Copyright 1998-2011 by Bill Spitzak and others.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // http://www.fltk.org/COPYING.php
13 //
14 // Please report all bugs and problems on the following page:
15 //
16 // http://www.fltk.org/str.php
17 //
18 
23 #ifndef fl_ask_H
24 # define fl_ask_H
25 
26 # include "Enumerations.H"
27 
28 class Fl_Widget;
29 
32 enum Fl_Beep {
39 };
40 
41 # ifdef __GNUC__
42 # define __fl_attr(x) __attribute__ (x)
43 # else
44 # define __fl_attr(x)
45 # endif // __GNUC__
46 
47 FL_EXPORT void fl_beep(int type = FL_BEEP_DEFAULT);
48 FL_EXPORT void fl_message(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
49 FL_EXPORT void fl_alert(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
50 // fl_ask() is deprecated since it uses "Yes" and "No" for the buttons,
51 // which does not conform to the current FLTK Human Interface Guidelines.
52 // Use fl_choice() instead with the appropriate verbs instead.
53 FL_EXPORT int fl_ask(const char *,...) __fl_attr((__format__ (__printf__, 1, 2), __deprecated__));
54 FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
55 FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
56 FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
57 
58 FL_EXPORT Fl_Widget *fl_message_icon();
59 extern FL_EXPORT Fl_Font fl_message_font_;
60 extern FL_EXPORT Fl_Fontsize fl_message_size_;
61 inline void fl_message_font(Fl_Font f, Fl_Fontsize s) {
62  fl_message_font_ = f; fl_message_size_ = s;}
63 
64 FL_EXPORT void fl_message_hotspot(int enable);
65 FL_EXPORT int fl_message_hotspot(void);
66 
67 FL_EXPORT void fl_message_title(const char *title);
68 FL_EXPORT void fl_message_title_default(const char *title);
69 
70 // pointers you can use to change FLTK to a foreign language:
71 extern FL_EXPORT const char* fl_no;
72 extern FL_EXPORT const char* fl_yes;
73 extern FL_EXPORT const char* fl_ok;
74 extern FL_EXPORT const char* fl_cancel;
75 extern FL_EXPORT const char* fl_close;
76 #endif // !fl_ask_H
77 
78 //
79 // End of "$Id: fl_ask.H 9748 2012-12-11 17:06:41Z manolo $".
80 //