FLTK 1.3.9
Loading...
Searching...
No Matches
fl_ask.H
Go to the documentation of this file.
1//
2// "$Id$"
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
28class Fl_Widget;
29
40
41# ifdef __GNUC__
42/* the GNUC-specific attribute appearing below in prototypes with a variable list of arguments
43 helps detection of mismatches between format string and argument list at compilation time */
44# define __fl_attr(x) __attribute__ (x)
45# else
46# define __fl_attr(x)
47# endif // __GNUC__
48
49FL_EXPORT void fl_beep(int type = FL_BEEP_DEFAULT);
50FL_EXPORT void fl_message(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
51FL_EXPORT void fl_alert(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
52// fl_ask() is deprecated since it uses "Yes" and "No" for the buttons,
53// which does not conform to the current FLTK Human Interface Guidelines.
54// Use fl_choice() instead with the appropriate verbs instead.
55FL_EXPORT int fl_ask(const char *,...) __fl_attr((__format__ (__printf__, 1, 2), __deprecated__));
56FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
57FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
58FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
59
60// since FLTK 1.3.8:
61FL_EXPORT int fl_choice_n(const char *q,const char *b0,const char *b1,const char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
62
63FL_EXPORT Fl_Widget *fl_message_icon();
64extern FL_EXPORT Fl_Font fl_message_font_;
65extern FL_EXPORT Fl_Fontsize fl_message_size_;
66inline void fl_message_font(Fl_Font f, Fl_Fontsize s) {
67 fl_message_font_ = f; fl_message_size_ = s;}
68
69FL_EXPORT void fl_message_hotspot(int enable);
70FL_EXPORT int fl_message_hotspot(void);
71
72FL_EXPORT void fl_message_title(const char *title);
73FL_EXPORT void fl_message_title_default(const char *title);
74
75// pointers you can use to change FLTK to a foreign language:
76extern FL_EXPORT const char* fl_no;
77extern FL_EXPORT const char* fl_yes;
78extern FL_EXPORT const char* fl_ok;
79extern FL_EXPORT const char* fl_cancel;
80extern FL_EXPORT const char* fl_close;
81#endif // !fl_ask_H
82
83//
84// End of "$Id$".
85//
This file contains type definitions and general enumerations.
int Fl_Font
A font number is an index into the internal font table.
Definition Enumerations.H:875
int Fl_Fontsize
Size of a font in pixels.
Definition Enumerations.H:904
Fl_Widget is the base class for all widgets in FLTK.
Definition Fl_Widget.H:101
const char * label() const
Gets the current label text.
Definition Fl_Widget.H:421
uchar type() const
Gets the widget type.
Definition Fl_Widget.H:274
Fl_Beep
Different system beeps available.
Definition fl_ask.H:32
@ FL_BEEP_MESSAGE
Message beep.
Definition fl_ask.H:34
@ FL_BEEP_NOTIFICATION
Notification beep.
Definition fl_ask.H:38
@ FL_BEEP_QUESTION
Question beep.
Definition fl_ask.H:36
@ FL_BEEP_ERROR
Error beep.
Definition fl_ask.H:35
@ FL_BEEP_PASSWORD
Password beep.
Definition fl_ask.H:37
@ FL_BEEP_DEFAULT
Default beep.
Definition fl_ask.H:33
FL_EXPORT const char * fl_yes
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:278
FL_EXPORT int fl_message_hotspot(void)
Gets whether or not to move the common message box used in many common dialogs like fl_message(),...
Definition fl_ask.cxx:623
FL_EXPORT const char * fl_close
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:281
FL_EXPORT const char * fl_ok
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:279
FL_EXPORT int FL_EXPORT const char FL_EXPORT const char FL_EXPORT int FL_EXPORT Fl_Widget * fl_message_icon()
Gets the Fl_Box icon container of the current default dialog used in many common dialogs like fl_mess...
Definition fl_ask.cxx:533
FL_EXPORT void fl_message_title_default(const char *title)
Sets the default title of the dialog window used in many common dialogs.
Definition fl_ask.cxx:663
FL_EXPORT void fl_beep(int type=FL_BEEP_DEFAULT)
Emits a system beep message.
Definition fl_ask.cxx:289
FL_EXPORT void fl_message_title(const char *title)
Sets the title of the dialog window used in many common dialogs.
Definition fl_ask.cxx:642
FL_EXPORT const char * fl_cancel
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:280
FL_EXPORT const char * fl_no
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:277