javax.swing.plaf.synth.SynthStyleFactory Java Examples
The following examples show how to use
javax.swing.plaf.synth.SynthStyleFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SeaGlassLookAndFeel.java From seaglass with Apache License 2.0 | 6 votes |
/** * Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { SynthStyle style = getSeaGlassStyle(c, r); if (!(style instanceof SeaGlassStyle)) { style = new SeaGlassStyleWrapper(style); } return style; } }); }
Example #2
Source File: NimbusLookAndFeel.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #3
Source File: LafManagerImpl.java From consulo with Apache License 2.0 | 5 votes |
private static void fixGtkPopupStyle() { if (!UIUtil.isUnderGTKLookAndFeel()) return; // it must be instance of com.sun.java.swing.plaf.gtk.GTKStyleFactory, but class package-local if (SystemInfo.isJavaVersionAtLeast(10, 0, 0)) { return; } final SynthStyleFactory original = SynthLookAndFeel.getStyleFactory(); SynthLookAndFeel.setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(final JComponent c, final Region id) { final SynthStyle style = original.getStyle(c, id); if (id == Region.POPUP_MENU) { final Integer x = ReflectionUtil.getField(style.getClass(), style, int.class, "xThickness"); if (x != null && x == 0) { // workaround for Sun bug #6636964 ReflectionUtil.setField(style.getClass(), style, int.class, "xThickness", 1); ReflectionUtil.setField(style.getClass(), style, int.class, "yThickness", 3); } } return style; } }); new JBPopupMenu(); // invokes updateUI() -> updateStyle() SynthLookAndFeel.setStyleFactory(original); }
Example #4
Source File: NimbusLookAndFeel.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #5
Source File: NimbusLookAndFeel.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #6
Source File: NimbusLookAndFeel.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #7
Source File: NimbusLookAndFeel.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #8
Source File: NimbusLookAndFeel.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #9
Source File: NimbusLookAndFeel.java From hottub with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #10
Source File: NimbusLookAndFeel.java From Java8CN with Apache License 2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #11
Source File: NimbusLookAndFeel.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #12
Source File: NimbusLookAndFeel.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #13
Source File: NimbusLookAndFeel.java From Bytecoder with Apache License 2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #14
Source File: NimbusLookAndFeel.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #15
Source File: ToolbarContainer.java From netbeans with Apache License 2.0 | 5 votes |
/** Paint bumps to specific Graphics. */ @Override public void paint (Graphics g) { Icon icon = UIManager.getIcon("ToolBar.handleIcon"); Region region = Region.TOOL_BAR; SynthStyleFactory sf = SynthLookAndFeel.getStyleFactory(); SynthStyle style = sf.getStyle(toolbar, region); SynthContext context = new SynthContext(toolbar, region, style, SynthConstants.DEFAULT); SynthGraphicsUtils sgu = context.getStyle().getGraphicsUtils(context); sgu.paintText(context, g, null, icon, SwingConstants.LEADING, SwingConstants.LEADING, 0, 0, 0, -1, 0); }
Example #16
Source File: NimbusLookAndFeel.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #17
Source File: NimbusLookAndFeel.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #18
Source File: NimbusLookAndFeel.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #19
Source File: NimbusLookAndFeel.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #20
Source File: NimbusLookAndFeel.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/** Called by UIManager when this look and feel is installed. */ @Override public void initialize() { super.initialize(); defaults.initialize(); // create synth style factory setStyleFactory(new SynthStyleFactory() { @Override public SynthStyle getStyle(JComponent c, Region r) { return defaults.getStyle(c, r); } }); }
Example #21
Source File: GtkEditorTabCellRenderer.java From netbeans with Apache License 2.0 | 4 votes |
private static void paintTabBackground (Graphics g, int index, int state, int x, int y, int w, int h) { if (dummyTab == null) { dummyTab = new JTabbedPane(); } Region region = Region.TABBED_PANE_TAB; if( !(UIManager.getLookAndFeel() instanceof SynthLookAndFeel) ) { return; //#215311 - unsupported L&F installed } SynthLookAndFeel laf = (SynthLookAndFeel) UIManager.getLookAndFeel(); SynthStyleFactory sf = laf.getStyleFactory(); SynthStyle style = sf.getStyle(dummyTab, region); SynthContext context = new SynthContext(dummyTab, region, style, state == SynthConstants.FOCUSED ? SynthConstants.SELECTED : state); SynthPainter painter = style.getPainter(context); long t1, t2; if (state == SynthConstants.DEFAULT) { t1 = System.currentTimeMillis(); painter.paintTabbedPaneTabBackground(context, g, x, y, w, h, index); t2 = System.currentTimeMillis(); if ((t2 - t1) > 200) { LOG.log(Level.WARNING, "painter.paintTabbedPaneTabBackground1 takes too long" + " x=" + x + " y=" + y + " w=" + w + " h=" + h + " index:" + index + " Time=" + (t2 - t1)); } } else { BufferedImage bufIm = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); Graphics2D g2d = bufIm.createGraphics(); g2d.setBackground(UIManager.getColor("Panel.background")); g2d.clearRect(0, 0, w, h); t1 = System.currentTimeMillis(); painter.paintTabbedPaneTabBackground(context, g2d, 0, 0, w, h, index); t2 = System.currentTimeMillis(); if ((t2 - t1) > 200) { LOG.log(Level.WARNING, "painter.paintTabbedPaneTabBackground1 takes too long" + " x=0" + " y=0" + " w=" + w + " h=" + h + " index:" + index + " Time=" + (t2 - t1)); } // differentiate active and selected tabs, active tab made brighter, // selected tab darker RescaleOp op = state == SynthConstants.FOCUSED ? new RescaleOp(1.08f, 0, null) : new RescaleOp(0.96f, 0, null); BufferedImage img = op.filter(bufIm, null); g.drawImage(img, x, y, null); } }
Example #22
Source File: MainPanel.java From java-swing-tips with MIT License | 4 votes |
protected MySynthStyleFactory(SynthStyleFactory factory) { super(); this.wrappedFactory = factory; }