From 08d9b3e10df815efc970ed348bc7a2a28d2fbb4a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 27 Feb 2021 15:09:12 +0100 Subject: Remove config_lib.h and runtime configuration info ... as discussed in fltk.coredev. --- FL/Fl.H | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) (limited to 'FL') diff --git a/FL/Fl.H b/FL/Fl.H index a5c4ea9ad..dfa9c5748 100644 --- a/FL/Fl.H +++ b/FL/Fl.H @@ -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 -- cgit v1.2.3