fl_ask.H 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //
  2. // "$Id: fl_ask.H 11676 2016-04-20 07:19:19Z 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. /** \file fl_ask.H
  19. API for common dialogs.
  20. */
  21. #ifndef fl_ask_H
  22. # define fl_ask_H
  23. # include "Enumerations.H"
  24. class Fl_Widget;
  25. /** Different system beeps available.
  26. \sa fl_beep(int) */
  27. enum Fl_Beep {
  28. FL_BEEP_DEFAULT = 0, ///< Default beep.
  29. FL_BEEP_MESSAGE, ///< Message beep.
  30. FL_BEEP_ERROR, ///< Error beep.
  31. FL_BEEP_QUESTION, ///< Question beep.
  32. FL_BEEP_PASSWORD, ///< Password beep.
  33. FL_BEEP_NOTIFICATION ///< Notification beep.
  34. };
  35. # ifdef __GNUC__
  36. /* the GNUC-specific attribute appearing below in prototypes with a variable list of arguments
  37. helps detection of mismatches between format string and argument list at compilation time */
  38. # define __fl_attr(x) __attribute__ (x)
  39. # else
  40. # define __fl_attr(x)
  41. # endif // __GNUC__
  42. FL_EXPORT void fl_beep(int type = FL_BEEP_DEFAULT);
  43. FL_EXPORT void fl_message(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
  44. FL_EXPORT void fl_alert(const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
  45. // fl_ask() is deprecated since it uses "Yes" and "No" for the buttons,
  46. // which does not conform to the current FLTK Human Interface Guidelines.
  47. // Use fl_choice() instead with the appropriate verbs instead.
  48. FL_EXPORT int fl_ask(const char *,...) __fl_attr((__format__ (__printf__, 1, 2), __deprecated__));
  49. FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
  50. FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
  51. FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
  52. FL_EXPORT Fl_Widget *fl_message_icon();
  53. extern FL_EXPORT Fl_Font fl_message_font_;
  54. extern FL_EXPORT Fl_Fontsize fl_message_size_;
  55. inline void fl_message_font(Fl_Font f, Fl_Fontsize s) {
  56. fl_message_font_ = f; fl_message_size_ = s;}
  57. FL_EXPORT void fl_message_hotspot(int enable);
  58. FL_EXPORT int fl_message_hotspot(void);
  59. FL_EXPORT void fl_message_title(const char *title);
  60. FL_EXPORT void fl_message_title_default(const char *title);
  61. // pointers you can use to change FLTK to another language:
  62. extern FL_EXPORT const char* fl_no;
  63. extern FL_EXPORT const char* fl_yes;
  64. extern FL_EXPORT const char* fl_ok;
  65. extern FL_EXPORT const char* fl_cancel;
  66. extern FL_EXPORT const char* fl_close;
  67. #endif // !fl_ask_H
  68. //
  69. // End of "$Id: fl_ask.H 11676 2016-04-20 07:19:19Z manolo $".
  70. //