diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-02-27 15:09:12 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-02-27 15:09:12 +0100 |
| commit | 08d9b3e10df815efc970ed348bc7a2a28d2fbb4a (patch) | |
| tree | 587415c16e4f412607ca5d721d7f89dfbf14d98d /FL | |
| parent | c83490fe30476614ae735e58992543a308a81bb7 (diff) | |
Remove config_lib.h and runtime configuration info
... as discussed in fltk.coredev.
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl.H | 30 |
1 files changed, 1 insertions, 29 deletions
@@ -1,7 +1,7 @@ // // Main header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2020 by Bill Spitzak and others. +// Copyright 1998-2021 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -171,34 +171,6 @@ public: */ static void box_border_radius_max(int R) { box_border_radius_max_ = R < 5 ? 5 : R; } -public: // run time information about compile time configuration - /** \defgroup cfg_gfx runtime graphics driver configuration */ - /** @{ */ - static bool cfg_gfx_xlib; ///< X11 Xlib rendering available, usually on Linux systems - static bool cfg_gfx_quartz; ///< Quartz rendering available, usually on OS X systems - static bool cfg_gfx_gdi; ///< GDI rendering available, usually on Windows systems - static bool cfg_gfx_opengl; ///< OpenGL rendering available, available on many platforms - static bool cfg_gfx_cairo; ///< Cairo rendering available, available on many platforms - static bool cfg_gfx_directx;///< DirectX rendering available, usually on Windows systems - /** @} */ - /** \defgroup cfg_prn runtime printer driver configuration */ - /** @{ */ - static bool cfg_prn_ps; ///< PostScript rendering available, usually on Linux systems - static bool cfg_prn_quartz; ///< Quartz rendering available, usually on OS X systems - static bool cfg_prn_gdi; ///< GDI rendering available, usually on Windows systems - /** @} */ - /** \defgroup cfg_win runtime window and event manager configuration */ - /** @{ */ - static bool cfg_win_x11; ///< X11 window management available, usually on Linux systems - static bool cfg_win_cocoa; ///< Cocoa window management available, usually on OS X systems - static bool cfg_win_win32; ///< Windows window management available, on low level Windows - /** @} */ - /** \defgroup cfg_sys runtime system configuration */ - /** @{ */ - static bool cfg_sys_posix; ///< Posix system available, usually on Linux and OS X systems, but also Cygwin - static bool cfg_sys_win32; ///< Windows system available, on Windows - /** @} */ - public: // should be private! #ifndef FL_DOXYGEN |
