Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » How to enable Dark Theme Menus
How to enable Dark Theme Menus [message #1842492] Mon, 21 June 2021 16:23 Go to next message
Tom Wheeler is currently offline Tom WheelerFriend
Messages: 17
Registered: June 2018
Junior Member
https://www.eclipse.org/eclipse/news/4.17/platform_isv.php#dark-win32-menu announces that "SWT supports dark theme Menu under Windows 10".

I am writing an Eclipse-4 RCP application. Does anybody know how to make the pulldown menus use the dark theme?

And the same goes for the combos as referred here: https://www.eclipse.org/eclipse/news/4.17/platform_isv.php#dark-win32-combo. How to enable it in your own RCP application?
Re: How to enable Dark Theme Menus [message #1842522 is a reply to message #1842492] Tue, 22 June 2021 08:26 Go to previous message
Tom Wheeler is currently offline Tom WheelerFriend
Messages: 17
Registered: June 2018
Junior Member
It turns out to be described here: https://www.eclipse.org/eclipse/news/4.16/platform_isv.php#win-dark-tweaks, e.g:
display.setData("org.eclipse.swt.internal.win32.menuBarForegroundColor", new Color(display, 0xD0, 0xD0, 0xD0));
display.setData("org.eclipse.swt.internal.win32.menuBarBackgroundColor", new Color(display, 0x30, 0x30, 0x30));
display.setData("org.eclipse.swt.internal.win32.menuBarBorderColor", new Color(display, 0x50, 0x50, 0x50));

Try reading through the source code of Display#setData() as it refers the property keys that are currently recognized.

The Combo's still displays a bright background color on the expansion button, although I applied this:
display.setData("org.eclipse.swt.internal.win32.Combo.useDarkTheme", Boolean.TRUE);

Previous Topic:How to Display Image in SWT TableColumn Sortable Column
Next Topic:Bug with tool tips on menu items
Goto Forum:
  


Current Time: Tue May 07 02:41:49 GMT 2024

Powered by FUDForum. Page generated in 5.04911 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top