mirror of https://github.com/weisJ/darklaf.git
Browse Source
Remove unused method. Move #getLuminance to ColorUtil. Made Background luminance threshold variable (use 0.5 by default).pull/189/head
weisj
4 years ago
5 changed files with 141 additions and 40 deletions
@ -0,0 +1,77 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2020 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
* |
||||
*/ |
||||
package ui; |
||||
|
||||
import java.awt.*; |
||||
import java.util.function.Consumer; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
import com.github.weisj.darklaf.LafManager; |
||||
import com.github.weisj.darklaf.components.color.QuickColorChooser; |
||||
import com.github.weisj.darklaf.task.ForegroundColorGenerationTask; |
||||
import com.github.weisj.darklaf.theme.event.ThemeInstalledListener; |
||||
|
||||
public class ForegroundDemo implements ComponentDemo { |
||||
|
||||
public static void main(final String[] args) { |
||||
ComponentDemo.showDemo(new ForegroundDemo()); |
||||
} |
||||
|
||||
@Override |
||||
public JComponent createComponent() { |
||||
JPanel holder = new JPanel(new GridBagLayout()); |
||||
holder.setPreferredSize(new Dimension(300, 100)); |
||||
holder.setOpaque(true); |
||||
JLabel label = new JLabel("Demo Readability Text"); |
||||
holder.add(label); |
||||
|
||||
DemoPanel panel = new DemoPanel(holder, new BorderLayout(), 0); |
||||
JPanel controls = panel.addControls(); |
||||
|
||||
Consumer<Color> updater = c -> SwingUtilities.invokeLater(() -> { |
||||
holder.setBackground(c); |
||||
label.setForeground(ForegroundColorGenerationTask.makeForeground(c)); |
||||
label.repaint(); |
||||
}); |
||||
Color current = UIManager.getColor("textCompSelectionBackground"); |
||||
updater.accept(current); |
||||
QuickColorChooser quickColorChooser = new QuickColorChooser("Background", current, updater); |
||||
controls.add(quickColorChooser); |
||||
|
||||
LafManager.addThemeChangeListener((ThemeInstalledListener) e -> { |
||||
Color c = UIManager.getColor("textCompSelectionBackground"); |
||||
quickColorChooser.setColor(c); |
||||
updater.accept(c); |
||||
}); |
||||
|
||||
return panel; |
||||
} |
||||
|
||||
@Override |
||||
public String getTitle() { |
||||
return "Foreground Color Demo"; |
||||
} |
||||
} |
Loading…
Reference in new issue