From d428a0044388596d19dd20f32471e24146e40975 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Wed, 8 May 2024 13:26:13 +0200 Subject: Have menu items drawn with same colors in all platforms (#969) Also, remove this text from the doc of Fl_Menu_::down_box() "If this is FL_NO_BOX then it acts like FL_THIN_UP_BOX and selection_color() acts like FL_WHITE, for back compatibility." that was true only for the Windows platform and that required selection_color to be replaced by white for menu items which is not what FLTK 1.4 expects. The new state of menu item drawings is as follows : - all platforms draw menu items with the same symbolic colors - selected items and menu titles are drawn with the selection color as background color - menu items are drawn by default with no box but can be given one by Fl_Menu_::down_box(Fl_Boxtype) - the text of selected items is drawn with the menu's color unless fl_contrast() finds it does not make enough contrast with the background (selection color) and substitutes it with a more adapted color - the Windows platform uses a visibly different hue for its default selection color from what other platforms use --- FL/Fl_Menu_.H | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'FL') diff --git a/FL/Fl_Menu_.H b/FL/Fl_Menu_.H index 96e135692..0c5fa9a68 100644 --- a/FL/Fl_Menu_.H +++ b/FL/Fl_Menu_.H @@ -228,9 +228,7 @@ public: /** This box type is used to surround the currently-selected items in the - menus. If this is FL_NO_BOX then it acts like - FL_THIN_UP_BOX and selection_color() acts like - FL_WHITE, for back compatibility. + menus. */ Fl_Boxtype down_box() const {return (Fl_Boxtype)down_box_;} /** Sets the box type used to surround the currently-selected items in the menus. */ -- cgit v1.2.3