mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57655d8859 | ||
|
|
62ffd57108 | ||
|
|
8db05f47b5 | ||
|
|
c684761eef | ||
|
|
0a8ece8c9c | ||
|
|
01058bde1b | ||
|
|
9c2c03cddb | ||
|
|
f0778a83a0 | ||
|
|
b86ae1f122 | ||
|
|
dfd6831b02 | ||
|
|
a4ddc13c1a | ||
|
|
fd63a1b7c2 | ||
|
|
d83c3689d0 | ||
|
|
d52bf9d318 | ||
|
|
80f56dec15 | ||
|
|
358c226b96 | ||
|
|
9de9983416 | ||
|
|
c9da4fcaf1 | ||
|
|
932ca6f9d4 |
@@ -6,6 +6,7 @@ jdk:
|
|||||||
- openjdk9
|
- openjdk9
|
||||||
- openjdk11
|
- openjdk11
|
||||||
- openjdk14
|
- openjdk14
|
||||||
|
- openjdk15
|
||||||
|
|
||||||
before_cache:
|
before_cache:
|
||||||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
||||||
|
|||||||
28
CHANGELOG.md
28
CHANGELOG.md
@@ -1,6 +1,34 @@
|
|||||||
FlatLaf Change Log
|
FlatLaf Change Log
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
## 0.43
|
||||||
|
|
||||||
|
#### New features and improvements
|
||||||
|
|
||||||
|
- TabbedPane: Made tabs separator color lighter in dark themes so that it is
|
||||||
|
easier to recognize the tabbed pane.
|
||||||
|
- TabbedPane: Added top and bottom tab insets to avoid that large tab icons are
|
||||||
|
painted over active tab underline.
|
||||||
|
- TabbedPane: Support hiding separator between tabs and content area (set client
|
||||||
|
property `JTabbedPane.showContentSeparator` to `false`).
|
||||||
|
- CheckBoxMenuItem and RadioButtonMenuItem: Improved checkmark background colors
|
||||||
|
of selected menu items that have also an icon. This makes it is easier to
|
||||||
|
recognize selected menu items.
|
||||||
|
- Windows: Made scaling compatible with Windows OS scaling, which distinguish
|
||||||
|
between "screen scaling" and "text scaling". (issue #175)
|
||||||
|
|
||||||
|
#### Fixed bugs
|
||||||
|
|
||||||
|
- ComboBox: If using own `JTextField` as editor, default text field border is
|
||||||
|
now removed to avoid duplicate border.
|
||||||
|
- ComboBox: Limit popup width to screen width for very long items. (issue #182)
|
||||||
|
- FileChooser: Fixed localizing special Windows folders (e.g. "Documents") and
|
||||||
|
enabled hiding known file extensions (if enabled in Windows Explorer). (issue
|
||||||
|
#178)
|
||||||
|
- Spinner: Fixed `NullPointerException` in case that arrow buttons were removed
|
||||||
|
to create button-less spinner. (issue #181)
|
||||||
|
|
||||||
|
|
||||||
## 0.42
|
## 0.42
|
||||||
|
|
||||||
#### New features and improvements
|
#### New features and improvements
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
val releaseVersion = "0.42"
|
val releaseVersion = "0.43"
|
||||||
val developmentVersion = "0.43-SNAPSHOT"
|
val developmentVersion = "0.44-SNAPSHOT"
|
||||||
|
|
||||||
version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion
|
version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion
|
||||||
|
|
||||||
|
|||||||
@@ -216,6 +216,14 @@ public interface FlatClientProperties
|
|||||||
*/
|
*/
|
||||||
String TABBED_PANE_SHOW_TAB_SEPARATORS = "JTabbedPane.showTabSeparators";
|
String TABBED_PANE_SHOW_TAB_SEPARATORS = "JTabbedPane.showTabSeparators";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies whether the separator between tabs area and content area should be shown.
|
||||||
|
* <p>
|
||||||
|
* <strong>Component</strong> {@link javax.swing.JTabbedPane}<br>
|
||||||
|
* <strong>Value type</strong> {@link java.lang.Boolean}
|
||||||
|
*/
|
||||||
|
String TABBED_PANE_SHOW_CONTENT_SEPARATOR = "JTabbedPane.showContentSeparator";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies whether a full border is painted around a tabbed pane.
|
* Specifies whether a full border is painted around a tabbed pane.
|
||||||
* <p>
|
* <p>
|
||||||
|
|||||||
@@ -344,6 +344,10 @@ public abstract class FlatLaf
|
|||||||
public UIDefaults getDefaults() {
|
public UIDefaults getDefaults() {
|
||||||
UIDefaults defaults = super.getDefaults();
|
UIDefaults defaults = super.getDefaults();
|
||||||
|
|
||||||
|
// add flag that indicates whether the LaF is light or dark
|
||||||
|
// (can be queried without using FlatLaf API)
|
||||||
|
defaults.put( "laf.dark", isDark() );
|
||||||
|
|
||||||
// add resource bundle for localized texts
|
// add resource bundle for localized texts
|
||||||
defaults.addResourceBundle( "com.formdev.flatlaf.resources.Bundle" );
|
defaults.addResourceBundle( "com.formdev.flatlaf.resources.Bundle" );
|
||||||
|
|
||||||
@@ -463,9 +467,11 @@ public abstract class FlatLaf
|
|||||||
uiFont = (font instanceof FontUIResource) ? (FontUIResource) font : new FontUIResource( font );
|
uiFont = (font instanceof FontUIResource) ? (FontUIResource) font : new FontUIResource( font );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fallback
|
||||||
if( uiFont == null )
|
if( uiFont == null )
|
||||||
uiFont = createCompositeFont( Font.SANS_SERIF, Font.PLAIN, 12 );
|
uiFont = createCompositeFont( Font.SANS_SERIF, Font.PLAIN, 12 );
|
||||||
|
|
||||||
|
// increase font size if system property "flatlaf.uiScale" is set
|
||||||
uiFont = UIScale.applyCustomScaleFactor( uiFont );
|
uiFont = UIScale.applyCustomScaleFactor( uiFont );
|
||||||
|
|
||||||
// use active value for all fonts to allow changing fonts in all components
|
// use active value for all fonts to allow changing fonts in all components
|
||||||
@@ -696,6 +702,18 @@ public abstract class FlatLaf
|
|||||||
MnemonicHandler.showMnemonics( false, null );
|
MnemonicHandler.showMnemonics( false, null );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// do not allow overriding to avoid issues in FlatUIUtils.createSharedUI()
|
||||||
|
@Override
|
||||||
|
public final boolean equals( Object obj ) {
|
||||||
|
return super.equals( obj );
|
||||||
|
}
|
||||||
|
|
||||||
|
// do not allow overriding to avoid issues in FlatUIUtils.createSharedUI()
|
||||||
|
@Override
|
||||||
|
public final int hashCode() {
|
||||||
|
return super.hashCode();
|
||||||
|
}
|
||||||
|
|
||||||
//---- class ActiveFont ---------------------------------------------------
|
//---- class ActiveFont ---------------------------------------------------
|
||||||
|
|
||||||
private static class ActiveFont
|
private static class ActiveFont
|
||||||
|
|||||||
@@ -132,12 +132,8 @@ public class FlatButtonUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatButtonUI.class, FlatButtonUI::new );
|
||||||
instance = new FlatButtonUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -42,12 +42,8 @@ import javax.swing.plaf.ComponentUI;
|
|||||||
public class FlatCheckBoxUI
|
public class FlatCheckBoxUI
|
||||||
extends FlatRadioButtonUI
|
extends FlatRadioButtonUI
|
||||||
{
|
{
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatCheckBoxUI.class, FlatCheckBoxUI::new );
|
||||||
instance = new FlatCheckBoxUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -24,10 +24,12 @@ import java.awt.Container;
|
|||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
|
import java.awt.GraphicsConfiguration;
|
||||||
import java.awt.Insets;
|
import java.awt.Insets;
|
||||||
import java.awt.LayoutManager;
|
import java.awt.LayoutManager;
|
||||||
import java.awt.Rectangle;
|
import java.awt.Rectangle;
|
||||||
import java.awt.Shape;
|
import java.awt.Shape;
|
||||||
|
import java.awt.Toolkit;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.awt.event.FocusEvent;
|
import java.awt.event.FocusEvent;
|
||||||
@@ -298,6 +300,10 @@ public class FlatComboBoxUI
|
|||||||
protected void configureEditor() {
|
protected void configureEditor() {
|
||||||
super.configureEditor();
|
super.configureEditor();
|
||||||
|
|
||||||
|
// remove default text field border from editor
|
||||||
|
if( editor instanceof JTextField && ((JTextField)editor).getBorder() instanceof FlatTextBorder )
|
||||||
|
((JTextField)editor).setBorder( BorderFactory.createEmptyBorder() );
|
||||||
|
|
||||||
// explicitly make non-opaque
|
// explicitly make non-opaque
|
||||||
if( editor instanceof JComponent )
|
if( editor instanceof JComponent )
|
||||||
((JComponent)editor).setOpaque( false );
|
((JComponent)editor).setOpaque( false );
|
||||||
@@ -563,6 +569,17 @@ public class FlatComboBoxUI
|
|||||||
|
|
||||||
// make popup wider if necessary
|
// make popup wider if necessary
|
||||||
if( displayWidth > pw ) {
|
if( displayWidth > pw ) {
|
||||||
|
// limit popup width to screen width
|
||||||
|
GraphicsConfiguration gc = comboBox.getGraphicsConfiguration();
|
||||||
|
if( gc != null ) {
|
||||||
|
Rectangle screenBounds = gc.getBounds();
|
||||||
|
Insets screenInsets = Toolkit.getDefaultToolkit().getScreenInsets( gc );
|
||||||
|
displayWidth = Math.min( displayWidth, screenBounds.width - screenInsets.left - screenInsets.right );
|
||||||
|
} else {
|
||||||
|
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
|
||||||
|
displayWidth = Math.min( displayWidth, screenSize.width );
|
||||||
|
}
|
||||||
|
|
||||||
int diff = displayWidth - pw;
|
int diff = displayWidth - pw;
|
||||||
pw = displayWidth;
|
pw = displayWidth;
|
||||||
|
|
||||||
|
|||||||
@@ -56,12 +56,8 @@ public class FlatLabelUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatLabelUI.class, FlatLabelUI::new );
|
||||||
instance = new FlatLabelUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -35,11 +35,7 @@ import javax.swing.plaf.basic.BasicPanelUI;
|
|||||||
public class FlatPanelUI
|
public class FlatPanelUI
|
||||||
extends BasicPanelUI
|
extends BasicPanelUI
|
||||||
{
|
{
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatPanelUI.class, FlatPanelUI::new );
|
||||||
instance = new FlatPanelUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,12 +38,8 @@ import javax.swing.plaf.ComponentUI;
|
|||||||
public class FlatPopupMenuSeparatorUI
|
public class FlatPopupMenuSeparatorUI
|
||||||
extends FlatSeparatorUI
|
extends FlatSeparatorUI
|
||||||
{
|
{
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatPopupMenuSeparatorUI.class, FlatPopupMenuSeparatorUI::new );
|
||||||
instance = new FlatPopupMenuSeparatorUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -60,12 +60,8 @@ public class FlatRadioButtonUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatRadioButtonUI.class, FlatRadioButtonUI::new );
|
||||||
instance = new FlatRadioButtonUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -52,12 +52,8 @@ public class FlatSeparatorUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatSeparatorUI.class, FlatSeparatorUI::new );
|
||||||
instance = new FlatSeparatorUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -268,31 +268,34 @@ public class FlatSpinnerUI
|
|||||||
|
|
||||||
int width = c.getWidth();
|
int width = c.getWidth();
|
||||||
int height = c.getHeight();
|
int height = c.getHeight();
|
||||||
Component nextButton = getHandler().nextButton;
|
|
||||||
int arrowX = nextButton.getX();
|
|
||||||
int arrowWidth = nextButton.getWidth();
|
|
||||||
boolean paintButton = !"none".equals( buttonStyle );
|
|
||||||
boolean enabled = spinner.isEnabled();
|
boolean enabled = spinner.isEnabled();
|
||||||
boolean isLeftToRight = spinner.getComponentOrientation().isLeftToRight();
|
|
||||||
|
|
||||||
// paint background
|
// paint background
|
||||||
g2.setColor( getBackground( enabled ) );
|
g2.setColor( getBackground( enabled ) );
|
||||||
FlatUIUtils.paintComponentBackground( g2, 0, 0, width, height, focusWidth, arc );
|
FlatUIUtils.paintComponentBackground( g2, 0, 0, width, height, focusWidth, arc );
|
||||||
|
|
||||||
// paint arrow buttons background
|
// paint button background and separator
|
||||||
if( paintButton && enabled ) {
|
boolean paintButton = !"none".equals( buttonStyle );
|
||||||
g2.setColor( buttonBackground );
|
Handler handler = getHandler();
|
||||||
Shape oldClip = g2.getClip();
|
if( paintButton && (handler.nextButton != null || handler.previousButton != null) ) {
|
||||||
if( isLeftToRight )
|
Component button = (handler.nextButton != null) ? handler.nextButton : handler.previousButton;
|
||||||
g2.clipRect( arrowX, 0, width - arrowX, height );
|
int arrowX = button.getX();
|
||||||
else
|
int arrowWidth = button.getWidth();
|
||||||
g2.clipRect( 0, 0, arrowX + arrowWidth, height );
|
boolean isLeftToRight = spinner.getComponentOrientation().isLeftToRight();
|
||||||
FlatUIUtils.paintComponentBackground( g2, 0, 0, width, height, focusWidth, arc );
|
|
||||||
g2.setClip( oldClip );
|
|
||||||
}
|
|
||||||
|
|
||||||
// paint vertical line between value and arrow buttons
|
// paint arrow buttons background
|
||||||
if( paintButton ) {
|
if( enabled ) {
|
||||||
|
g2.setColor( buttonBackground );
|
||||||
|
Shape oldClip = g2.getClip();
|
||||||
|
if( isLeftToRight )
|
||||||
|
g2.clipRect( arrowX, 0, width - arrowX, height );
|
||||||
|
else
|
||||||
|
g2.clipRect( 0, 0, arrowX + arrowWidth, height );
|
||||||
|
FlatUIUtils.paintComponentBackground( g2, 0, 0, width, height, focusWidth, arc );
|
||||||
|
g2.setClip( oldClip );
|
||||||
|
}
|
||||||
|
|
||||||
|
// paint vertical line between value and arrow buttons
|
||||||
g2.setColor( enabled ? borderColor : disabledBorderColor );
|
g2.setColor( enabled ? borderColor : disabledBorderColor );
|
||||||
float lw = scale( 1f );
|
float lw = scale( 1f );
|
||||||
float lx = isLeftToRight ? arrowX : arrowX + arrowWidth - lw;
|
float lx = isLeftToRight ? arrowX : arrowX + arrowWidth - lw;
|
||||||
@@ -359,7 +362,7 @@ public class FlatSpinnerUI
|
|||||||
|
|
||||||
if( nextButton == null && previousButton == null ) {
|
if( nextButton == null && previousButton == null ) {
|
||||||
if( editor != null )
|
if( editor != null )
|
||||||
editor.setBounds( r );
|
editor.setBounds( FlatUIUtils.subtractInsets( r, padding ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -196,6 +196,7 @@ public class FlatTabbedPaneUI
|
|||||||
|
|
||||||
switch( e.getPropertyName() ) {
|
switch( e.getPropertyName() ) {
|
||||||
case TABBED_PANE_SHOW_TAB_SEPARATORS:
|
case TABBED_PANE_SHOW_TAB_SEPARATORS:
|
||||||
|
case TABBED_PANE_SHOW_CONTENT_SEPARATOR:
|
||||||
case TABBED_PANE_HAS_FULL_BORDER:
|
case TABBED_PANE_HAS_FULL_BORDER:
|
||||||
case TABBED_PANE_TAB_HEIGHT:
|
case TABBED_PANE_TAB_HEIGHT:
|
||||||
tabPane.revalidate();
|
tabPane.revalidate();
|
||||||
@@ -255,6 +256,9 @@ public class FlatTabbedPaneUI
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Insets getContentBorderInsets( int tabPlacement ) {
|
protected Insets getContentBorderInsets( int tabPlacement ) {
|
||||||
|
if( contentSeparatorHeight == 0 || !clientPropertyBoolean( tabPane, TABBED_PANE_SHOW_CONTENT_SEPARATOR, true ) )
|
||||||
|
return new Insets( 0, 0, 0, 0 );
|
||||||
|
|
||||||
boolean hasFullBorder = clientPropertyBoolean( tabPane, TABBED_PANE_HAS_FULL_BORDER, this.hasFullBorder );
|
boolean hasFullBorder = clientPropertyBoolean( tabPane, TABBED_PANE_HAS_FULL_BORDER, this.hasFullBorder );
|
||||||
int sh = scale( contentSeparatorHeight );
|
int sh = scale( contentSeparatorHeight );
|
||||||
Insets insets = hasFullBorder ? new Insets( sh, sh, sh, sh ) : new Insets( sh, 0, 0, 0 );
|
Insets insets = hasFullBorder ? new Insets( sh, sh, sh, sh ) : new Insets( sh, 0, 0, 0 );
|
||||||
@@ -359,7 +363,10 @@ public class FlatTabbedPaneUI
|
|||||||
protected void paintTabSelection( Graphics g, int tabPlacement, int x, int y, int w, int h ) {
|
protected void paintTabSelection( Graphics g, int tabPlacement, int x, int y, int w, int h ) {
|
||||||
// increase clip bounds in scroll-tab-layout to paint over the separator line
|
// increase clip bounds in scroll-tab-layout to paint over the separator line
|
||||||
Rectangle clipBounds = isScrollTabLayout() ? g.getClipBounds() : null;
|
Rectangle clipBounds = isScrollTabLayout() ? g.getClipBounds() : null;
|
||||||
if( clipBounds != null ) {
|
if( clipBounds != null &&
|
||||||
|
this.contentSeparatorHeight != 0 &&
|
||||||
|
clientPropertyBoolean( tabPane, TABBED_PANE_SHOW_CONTENT_SEPARATOR, true ) )
|
||||||
|
{
|
||||||
Rectangle newClipBounds = new Rectangle( clipBounds );
|
Rectangle newClipBounds = new Rectangle( clipBounds );
|
||||||
int contentSeparatorHeight = scale( this.contentSeparatorHeight );
|
int contentSeparatorHeight = scale( this.contentSeparatorHeight );
|
||||||
switch( tabPlacement ) {
|
switch( tabPlacement ) {
|
||||||
@@ -436,43 +443,49 @@ public class FlatTabbedPaneUI
|
|||||||
|
|
||||||
// remove tabs from bounds
|
// remove tabs from bounds
|
||||||
switch( tabPlacement ) {
|
switch( tabPlacement ) {
|
||||||
case LEFT:
|
|
||||||
x += calculateTabAreaWidth( tabPlacement, runCount, maxTabWidth );
|
|
||||||
if( tabsOverlapBorder )
|
|
||||||
x -= tabAreaInsets.right;
|
|
||||||
w -= (x - insets.left);
|
|
||||||
break;
|
|
||||||
case RIGHT:
|
|
||||||
w -= calculateTabAreaWidth( tabPlacement, runCount, maxTabWidth );
|
|
||||||
if( tabsOverlapBorder )
|
|
||||||
w += tabAreaInsets.left;
|
|
||||||
break;
|
|
||||||
case BOTTOM:
|
|
||||||
h -= calculateTabAreaHeight( tabPlacement, runCount, maxTabHeight );
|
|
||||||
if( tabsOverlapBorder )
|
|
||||||
h += tabAreaInsets.top;
|
|
||||||
break;
|
|
||||||
case TOP:
|
case TOP:
|
||||||
default:
|
default:
|
||||||
y += calculateTabAreaHeight( tabPlacement, runCount, maxTabHeight );
|
y += calculateTabAreaHeight( tabPlacement, runCount, maxTabHeight );
|
||||||
if( tabsOverlapBorder )
|
if( tabsOverlapBorder )
|
||||||
y -= tabAreaInsets.bottom;
|
y -= tabAreaInsets.bottom;
|
||||||
h -= (y - insets.top);
|
h -= (y - insets.top);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BOTTOM:
|
||||||
|
h -= calculateTabAreaHeight( tabPlacement, runCount, maxTabHeight );
|
||||||
|
if( tabsOverlapBorder )
|
||||||
|
h += tabAreaInsets.top;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case LEFT:
|
||||||
|
x += calculateTabAreaWidth( tabPlacement, runCount, maxTabWidth );
|
||||||
|
if( tabsOverlapBorder )
|
||||||
|
x -= tabAreaInsets.right;
|
||||||
|
w -= (x - insets.left);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case RIGHT:
|
||||||
|
w -= calculateTabAreaWidth( tabPlacement, runCount, maxTabWidth );
|
||||||
|
if( tabsOverlapBorder )
|
||||||
|
w += tabAreaInsets.left;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// compute insets for separator or full border
|
if( contentSeparatorHeight != 0 && clientPropertyBoolean( tabPane, TABBED_PANE_SHOW_CONTENT_SEPARATOR, true ) ) {
|
||||||
boolean hasFullBorder = clientPropertyBoolean( tabPane, TABBED_PANE_HAS_FULL_BORDER, this.hasFullBorder );
|
// compute insets for separator or full border
|
||||||
int sh = scale( contentSeparatorHeight * 100 ); // multiply by 100 because rotateInsets() does not use floats
|
boolean hasFullBorder = clientPropertyBoolean( tabPane, TABBED_PANE_HAS_FULL_BORDER, this.hasFullBorder );
|
||||||
Insets ci = new Insets( 0, 0, 0, 0 );
|
int sh = scale( contentSeparatorHeight * 100 ); // multiply by 100 because rotateInsets() does not use floats
|
||||||
rotateInsets( hasFullBorder ? new Insets( sh, sh, sh, sh ) : new Insets( sh, 0, 0, 0 ), ci, tabPlacement );
|
Insets ci = new Insets( 0, 0, 0, 0 );
|
||||||
|
rotateInsets( hasFullBorder ? new Insets( sh, sh, sh, sh ) : new Insets( sh, 0, 0, 0 ), ci, tabPlacement );
|
||||||
|
|
||||||
// paint content area
|
// paint content separator or full border
|
||||||
g.setColor( contentAreaColor );
|
g.setColor( contentAreaColor );
|
||||||
Path2D path = new Path2D.Float( Path2D.WIND_EVEN_ODD );
|
Path2D path = new Path2D.Float( Path2D.WIND_EVEN_ODD );
|
||||||
path.append( new Rectangle2D.Float( x, y, w, h ), false );
|
path.append( new Rectangle2D.Float( x, y, w, h ), false );
|
||||||
path.append( new Rectangle2D.Float( x + (ci.left / 100f), y + (ci.top / 100f),
|
path.append( new Rectangle2D.Float( x + (ci.left / 100f), y + (ci.top / 100f),
|
||||||
w - (ci.left / 100f) - (ci.right / 100f), h - (ci.top / 100f) - (ci.bottom / 100f) ), false );
|
w - (ci.left / 100f) - (ci.right / 100f), h - (ci.top / 100f) - (ci.bottom / 100f) ), false );
|
||||||
((Graphics2D)g).fill( path );
|
((Graphics2D)g).fill( path );
|
||||||
|
}
|
||||||
|
|
||||||
// repaint selection in scroll-tab-layout because it may be painted before
|
// repaint selection in scroll-tab-layout because it may be painted before
|
||||||
// the content border was painted (from BasicTabbedPaneUI$ScrollableTabPanel)
|
// the content border was painted (from BasicTabbedPaneUI$ScrollableTabPanel)
|
||||||
|
|||||||
@@ -82,12 +82,8 @@ public class FlatToggleButtonUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatToggleButtonUI.class, FlatToggleButtonUI::new );
|
||||||
instance = new FlatToggleButtonUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -50,12 +50,8 @@ public class FlatToolBarSeparatorUI
|
|||||||
|
|
||||||
private boolean defaults_initialized = false;
|
private boolean defaults_initialized = false;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatToolBarSeparatorUI.class, FlatToolBarSeparatorUI::new );
|
||||||
instance = new FlatToolBarSeparatorUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -52,12 +52,8 @@ public class FlatToolTipUI
|
|||||||
{
|
{
|
||||||
private static PropertyChangeListener sharedPropertyChangedListener;
|
private static PropertyChangeListener sharedPropertyChangedListener;
|
||||||
|
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatToolTipUI.class, FlatToolTipUI::new );
|
||||||
instance = new FlatToolTipUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -35,7 +35,10 @@ import java.awt.event.MouseEvent;
|
|||||||
import java.awt.geom.Path2D;
|
import java.awt.geom.Path2D;
|
||||||
import java.awt.geom.Rectangle2D;
|
import java.awt.geom.Rectangle2D;
|
||||||
import java.awt.geom.RoundRectangle2D;
|
import java.awt.geom.RoundRectangle2D;
|
||||||
|
import java.util.IdentityHashMap;
|
||||||
|
import java.util.WeakHashMap;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
import java.util.function.Supplier;
|
||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
import javax.swing.JTable;
|
import javax.swing.JTable;
|
||||||
import javax.swing.LookAndFeel;
|
import javax.swing.LookAndFeel;
|
||||||
@@ -43,6 +46,7 @@ import javax.swing.SwingUtilities;
|
|||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
import javax.swing.border.Border;
|
import javax.swing.border.Border;
|
||||||
import javax.swing.border.CompoundBorder;
|
import javax.swing.border.CompoundBorder;
|
||||||
|
import javax.swing.plaf.ComponentUI;
|
||||||
import javax.swing.plaf.UIResource;
|
import javax.swing.plaf.UIResource;
|
||||||
import com.formdev.flatlaf.FlatClientProperties;
|
import com.formdev.flatlaf.FlatClientProperties;
|
||||||
import com.formdev.flatlaf.util.DerivedColor;
|
import com.formdev.flatlaf.util.DerivedColor;
|
||||||
@@ -59,6 +63,8 @@ public class FlatUIUtils
|
|||||||
{
|
{
|
||||||
public static final boolean MAC_USE_QUARTZ = Boolean.getBoolean( "apple.awt.graphics.UseQuartz" );
|
public static final boolean MAC_USE_QUARTZ = Boolean.getBoolean( "apple.awt.graphics.UseQuartz" );
|
||||||
|
|
||||||
|
private static WeakHashMap<LookAndFeel, IdentityHashMap<Object, ComponentUI>> sharedUIinstances = new WeakHashMap<>();
|
||||||
|
|
||||||
public static Rectangle addInsets( Rectangle r, Insets insets ) {
|
public static Rectangle addInsets( Rectangle r, Insets insets ) {
|
||||||
return new Rectangle(
|
return new Rectangle(
|
||||||
r.x - insets.left,
|
r.x - insets.left,
|
||||||
@@ -534,6 +540,19 @@ public class FlatUIUtils
|
|||||||
return explicitlySet;
|
return explicitlySet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a shared component UI for the given key and the current Laf.
|
||||||
|
* Each Laf instance has its own shared component UI instance.
|
||||||
|
* <p>
|
||||||
|
* This is for GUI builders that support Laf switching and
|
||||||
|
* may use multiple Laf instances at the same time.
|
||||||
|
*/
|
||||||
|
public static ComponentUI createSharedUI( Object key, Supplier<ComponentUI> newInstanceSupplier ) {
|
||||||
|
return sharedUIinstances
|
||||||
|
.computeIfAbsent( UIManager.getLookAndFeel(), k -> new IdentityHashMap<>() )
|
||||||
|
.computeIfAbsent( key, k -> newInstanceSupplier.get() );
|
||||||
|
}
|
||||||
|
|
||||||
//---- class HoverListener ------------------------------------------------
|
//---- class HoverListener ------------------------------------------------
|
||||||
|
|
||||||
public static class HoverListener
|
public static class HoverListener
|
||||||
|
|||||||
@@ -38,12 +38,8 @@ import javax.swing.plaf.basic.BasicViewportUI;
|
|||||||
public class FlatViewportUI
|
public class FlatViewportUI
|
||||||
extends BasicViewportUI
|
extends BasicViewportUI
|
||||||
{
|
{
|
||||||
private static ComponentUI instance;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
if( instance == null )
|
return FlatUIUtils.createSharedUI( FlatViewportUI.class, FlatViewportUI::new );
|
||||||
instance = new FlatViewportUI();
|
|
||||||
return instance;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import java.awt.Graphics2D;
|
|||||||
import java.awt.GraphicsConfiguration;
|
import java.awt.GraphicsConfiguration;
|
||||||
import java.awt.GraphicsEnvironment;
|
import java.awt.GraphicsEnvironment;
|
||||||
import java.awt.Insets;
|
import java.awt.Insets;
|
||||||
|
import java.awt.Toolkit;
|
||||||
import java.beans.PropertyChangeEvent;
|
import java.beans.PropertyChangeEvent;
|
||||||
import java.beans.PropertyChangeListener;
|
import java.beans.PropertyChangeListener;
|
||||||
import java.beans.PropertyChangeSupport;
|
import java.beans.PropertyChangeSupport;
|
||||||
@@ -162,6 +163,13 @@ public class UIScale
|
|||||||
if( !isUserScalingEnabled() )
|
if( !isUserScalingEnabled() )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// apply custom scale factor specified in system property "flatlaf.uiScale"
|
||||||
|
float customScaleFactor = getCustomScaleFactor();
|
||||||
|
if( customScaleFactor > 0 ) {
|
||||||
|
setUserScaleFactor( customScaleFactor );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// use font size to calculate scale factor (instead of DPI)
|
// use font size to calculate scale factor (instead of DPI)
|
||||||
// because even if we are on a HiDPI display it is not sure
|
// because even if we are on a HiDPI display it is not sure
|
||||||
// that a larger font size is set by the current LaF
|
// that a larger font size is set by the current LaF
|
||||||
@@ -170,7 +178,45 @@ public class UIScale
|
|||||||
if( font == null )
|
if( font == null )
|
||||||
font = UIManager.getFont( "Label.font" );
|
font = UIManager.getFont( "Label.font" );
|
||||||
|
|
||||||
setUserScaleFactor( computeScaleFactor( font ) );
|
float newScaleFactor;
|
||||||
|
if( SystemInfo.isWindows ) {
|
||||||
|
// Special handling for Windows to be compatible with OS scaling,
|
||||||
|
// which distinguish between "screen scaling" and "text scaling".
|
||||||
|
// - Windows "screen scaling" scales everything (text, icon, gaps, etc)
|
||||||
|
// and may have different scaling factors for each screen.
|
||||||
|
// - Windows "text scaling" increases only the font size, but on all screens.
|
||||||
|
//
|
||||||
|
// Both can be changed by the user in the Windows 10 Settings:
|
||||||
|
// - Settings > Display > Scale and layout
|
||||||
|
// - Settings > Ease of Access > Display > Make text bigger (100% - 225%)
|
||||||
|
if( font instanceof UIResource ) {
|
||||||
|
if( isSystemScalingEnabled() ) {
|
||||||
|
// Do not apply own scaling if the JRE scales using Windows screen scale factor.
|
||||||
|
// If user increases font size in Windows 10 settings, desktop property
|
||||||
|
// "win.messagebox.font" is changed and FlatLaf uses the larger font.
|
||||||
|
newScaleFactor = 1;
|
||||||
|
} else {
|
||||||
|
// If the JRE does not scale (Java 8), the size of the UI font
|
||||||
|
// (usually from desktop property "win.messagebox.font")
|
||||||
|
// combines the Windows screen and text scale factors.
|
||||||
|
// But the font in desktop property "win.defaultGUI.font" is only
|
||||||
|
// scaled with the Windows screen scale factor. So use it to compute
|
||||||
|
// our scale factor that is equal to Windows screen scale factor.
|
||||||
|
Font winFont = (Font) Toolkit.getDefaultToolkit().getDesktopProperty( "win.defaultGUI.font" );
|
||||||
|
newScaleFactor = computeScaleFactor( (winFont != null) ? winFont : font );
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// If font was explicitly set from outside (is not a UIResource)
|
||||||
|
// use it to compute scale factor. This allows applications to
|
||||||
|
// use custom fonts (e.g. that the user can change in UI) and
|
||||||
|
// get scaling if a larger font size is used.
|
||||||
|
// E.g. FlatLaf Demo supports increasing font size in "Font" menu and UI scales.
|
||||||
|
newScaleFactor = computeScaleFactor( font );
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
newScaleFactor = computeScaleFactor( font );
|
||||||
|
|
||||||
|
setUserScaleFactor( newScaleFactor );
|
||||||
}
|
}
|
||||||
|
|
||||||
private static float computeScaleFactor( Font font ) {
|
private static float computeScaleFactor( Font font ) {
|
||||||
@@ -206,8 +252,7 @@ public class UIScale
|
|||||||
if( !isUserScalingEnabled() )
|
if( !isUserScalingEnabled() )
|
||||||
return font;
|
return font;
|
||||||
|
|
||||||
String uiScale = System.getProperty( FlatSystemProperties.UI_SCALE );
|
float scaleFactor = getCustomScaleFactor();
|
||||||
float scaleFactor = parseScaleFactor( uiScale );
|
|
||||||
if( scaleFactor <= 0 )
|
if( scaleFactor <= 0 )
|
||||||
return font;
|
return font;
|
||||||
|
|
||||||
@@ -219,6 +264,13 @@ public class UIScale
|
|||||||
return new FontUIResource( font.deriveFont( (float) newFontSize ) );
|
return new FontUIResource( font.deriveFont( (float) newFontSize ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get custom scale factor specified in system property "flatlaf.uiScale".
|
||||||
|
*/
|
||||||
|
private static float getCustomScaleFactor() {
|
||||||
|
return parseScaleFactor( System.getProperty( FlatSystemProperties.UI_SCALE ) );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Similar to sun.java2d.SunGraphicsEnvironment.getScaleFactor(String)
|
* Similar to sun.java2d.SunGraphicsEnvironment.getScaleFactor(String)
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -30,8 +30,7 @@
|
|||||||
@textComponentBackground=#45494A
|
@textComponentBackground=#45494A
|
||||||
@menuBackground=darken(@background,5%)
|
@menuBackground=darken(@background,5%)
|
||||||
@menuHoverBackground=lighten(@menuBackground,10%,derived)
|
@menuHoverBackground=lighten(@menuBackground,10%,derived)
|
||||||
@menuCheckBackground=lighten(@menuBackground,10%,derived)
|
@menuCheckBackground=darken(@selectionBackground,10%)
|
||||||
@menuCheckHoverBackground=lighten(@menuBackground,20%,derived)
|
|
||||||
@menuAcceleratorForeground=darken(@foreground,15%)
|
@menuAcceleratorForeground=darken(@foreground,15%)
|
||||||
@menuAcceleratorSelectionForeground=@selectionForeground
|
@menuAcceleratorSelectionForeground=@selectionForeground
|
||||||
@cellFocusColor=#000
|
@cellFocusColor=#000
|
||||||
@@ -257,7 +256,7 @@ TabbedPane.underlineColor=#4A88C7
|
|||||||
TabbedPane.disabledUnderlineColor=#7a7a7a
|
TabbedPane.disabledUnderlineColor=#7a7a7a
|
||||||
TabbedPane.hoverColor=#2e3133
|
TabbedPane.hoverColor=#2e3133
|
||||||
TabbedPane.focusColor=#3d4b5c
|
TabbedPane.focusColor=#3d4b5c
|
||||||
TabbedPane.contentAreaColor=#323232
|
TabbedPane.contentAreaColor=#646464
|
||||||
|
|
||||||
|
|
||||||
#---- Table ----
|
#---- Table ----
|
||||||
|
|||||||
@@ -238,6 +238,7 @@ FileChooser.homeFolderIcon=com.formdev.flatlaf.icons.FlatFileChooserHomeFolderIc
|
|||||||
FileChooser.detailsViewIcon=com.formdev.flatlaf.icons.FlatFileChooserDetailsViewIcon
|
FileChooser.detailsViewIcon=com.formdev.flatlaf.icons.FlatFileChooserDetailsViewIcon
|
||||||
FileChooser.listViewIcon=com.formdev.flatlaf.icons.FlatFileChooserListViewIcon
|
FileChooser.listViewIcon=com.formdev.flatlaf.icons.FlatFileChooserListViewIcon
|
||||||
FileChooser.usesSingleFilePane=true
|
FileChooser.usesSingleFilePane=true
|
||||||
|
[win]FileChooser.useSystemExtensionHiding=true
|
||||||
|
|
||||||
|
|
||||||
#---- FileView ----
|
#---- FileView ----
|
||||||
@@ -358,7 +359,7 @@ MenuItem.acceleratorDelimiter=-
|
|||||||
|
|
||||||
# for MenuItem.selectionType=underline
|
# for MenuItem.selectionType=underline
|
||||||
MenuItem.underlineSelectionBackground=@menuHoverBackground
|
MenuItem.underlineSelectionBackground=@menuHoverBackground
|
||||||
MenuItem.underlineSelectionCheckBackground=@menuCheckHoverBackground
|
MenuItem.underlineSelectionCheckBackground=@menuCheckBackground
|
||||||
MenuItem.underlineSelectionColor=$TabbedPane.underlineColor
|
MenuItem.underlineSelectionColor=$TabbedPane.underlineColor
|
||||||
MenuItem.underlineSelectionHeight=3
|
MenuItem.underlineSelectionHeight=3
|
||||||
|
|
||||||
@@ -538,8 +539,10 @@ SplitPaneDivider.oneTouchArrowColor=$ComboBox.buttonArrowColor
|
|||||||
TabbedPane.tabHeight=32
|
TabbedPane.tabHeight=32
|
||||||
TabbedPane.tabSelectionHeight=3
|
TabbedPane.tabSelectionHeight=3
|
||||||
TabbedPane.contentSeparatorHeight=1
|
TabbedPane.contentSeparatorHeight=1
|
||||||
|
TabbedPane.showTabSeparators=false
|
||||||
|
TabbedPane.tabSeparatorsFullHeight=false
|
||||||
TabbedPane.hasFullBorder=false
|
TabbedPane.hasFullBorder=false
|
||||||
TabbedPane.tabInsets=0,12,0,12
|
TabbedPane.tabInsets=4,12,4,12
|
||||||
TabbedPane.tabAreaInsets=0,0,0,0
|
TabbedPane.tabAreaInsets=0,0,0,0
|
||||||
TabbedPane.selectedTabPadInsets=0,0,0,0
|
TabbedPane.selectedTabPadInsets=0,0,0,0
|
||||||
TabbedPane.tabRunOverlay=0
|
TabbedPane.tabRunOverlay=0
|
||||||
|
|||||||
@@ -30,8 +30,7 @@
|
|||||||
@textComponentBackground=#fff
|
@textComponentBackground=#fff
|
||||||
@menuBackground=#fff
|
@menuBackground=#fff
|
||||||
@menuHoverBackground=darken(@menuBackground,10%,derived)
|
@menuHoverBackground=darken(@menuBackground,10%,derived)
|
||||||
@menuCheckBackground=darken(@menuBackground,10%,derived)
|
@menuCheckBackground=lighten(@selectionBackground,40%)
|
||||||
@menuCheckHoverBackground=darken(@menuBackground,20%,derived)
|
|
||||||
@menuAcceleratorForeground=lighten(@foreground,30%)
|
@menuAcceleratorForeground=lighten(@foreground,30%)
|
||||||
@menuAcceleratorSelectionForeground=@selectionForeground
|
@menuAcceleratorSelectionForeground=@selectionForeground
|
||||||
@cellFocusColor=#000
|
@cellFocusColor=#000
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.formdev.flatlaf.demo;
|
package com.formdev.flatlaf.demo;
|
||||||
|
|
||||||
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_HAS_FULL_BORDER;
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_HAS_FULL_BORDER;
|
||||||
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_CONTENT_SEPARATOR;
|
||||||
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_TAB_SEPARATORS;
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_TAB_SEPARATORS;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
@@ -58,18 +59,24 @@ class TabsPanel
|
|||||||
|
|
||||||
private void showTabSeparatorsChanged() {
|
private void showTabSeparatorsChanged() {
|
||||||
Boolean showTabSeparators = showTabSeparatorsCheckBox.isSelected() ? true : null;
|
Boolean showTabSeparators = showTabSeparatorsCheckBox.isSelected() ? true : null;
|
||||||
tabbedPane1.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
putTabbedPanesClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
||||||
tabbedPane2.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
}
|
||||||
tabbedPane3.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
|
||||||
tabbedPane4.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
private void hideContentSeparatorChanged() {
|
||||||
|
Boolean showContentSeparator = hideContentSeparatorCheckBox.isSelected() ? false : null;
|
||||||
|
putTabbedPanesClientProperty( TABBED_PANE_SHOW_CONTENT_SEPARATOR, showContentSeparator );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void hasFullBorderChanged() {
|
private void hasFullBorderChanged() {
|
||||||
Boolean hasFullBorder = hasFullBorderCheckBox.isSelected() ? true : null;
|
Boolean hasFullBorder = hasFullBorderCheckBox.isSelected() ? true : null;
|
||||||
tabbedPane1.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
putTabbedPanesClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
||||||
tabbedPane2.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
}
|
||||||
tabbedPane3.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
|
||||||
tabbedPane4.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
private void putTabbedPanesClientProperty( String key, Object value ) {
|
||||||
|
tabbedPane1.putClientProperty( key, value );
|
||||||
|
tabbedPane2.putClientProperty( key, value );
|
||||||
|
tabbedPane3.putClientProperty( key, value );
|
||||||
|
tabbedPane4.putClientProperty( key, value );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void moreTabsChanged() {
|
private void moreTabsChanged() {
|
||||||
@@ -155,6 +162,7 @@ class TabsPanel
|
|||||||
moreTabsCheckBox = new JCheckBox();
|
moreTabsCheckBox = new JCheckBox();
|
||||||
tabScrollCheckBox = new JCheckBox();
|
tabScrollCheckBox = new JCheckBox();
|
||||||
showTabSeparatorsCheckBox = new JCheckBox();
|
showTabSeparatorsCheckBox = new JCheckBox();
|
||||||
|
hideContentSeparatorCheckBox = new JCheckBox();
|
||||||
hasFullBorderCheckBox = new JCheckBox();
|
hasFullBorderCheckBox = new JCheckBox();
|
||||||
CellConstraints cc = new CellConstraints();
|
CellConstraints cc = new CellConstraints();
|
||||||
|
|
||||||
@@ -278,6 +286,7 @@ class TabsPanel
|
|||||||
"[]" +
|
"[]" +
|
||||||
"[]" +
|
"[]" +
|
||||||
"[]" +
|
"[]" +
|
||||||
|
"[fill]" +
|
||||||
"[]",
|
"[]",
|
||||||
// rows
|
// rows
|
||||||
"[center]"));
|
"[center]"));
|
||||||
@@ -299,10 +308,15 @@ class TabsPanel
|
|||||||
showTabSeparatorsCheckBox.addActionListener(e -> showTabSeparatorsChanged());
|
showTabSeparatorsCheckBox.addActionListener(e -> showTabSeparatorsChanged());
|
||||||
panel14.add(showTabSeparatorsCheckBox, "cell 2 0");
|
panel14.add(showTabSeparatorsCheckBox, "cell 2 0");
|
||||||
|
|
||||||
|
//---- hideContentSeparatorCheckBox ----
|
||||||
|
hideContentSeparatorCheckBox.setText("Hide content separator");
|
||||||
|
hideContentSeparatorCheckBox.addActionListener(e -> hideContentSeparatorChanged());
|
||||||
|
panel14.add(hideContentSeparatorCheckBox, "cell 3 0");
|
||||||
|
|
||||||
//---- hasFullBorderCheckBox ----
|
//---- hasFullBorderCheckBox ----
|
||||||
hasFullBorderCheckBox.setText("Show content border");
|
hasFullBorderCheckBox.setText("Show content border");
|
||||||
hasFullBorderCheckBox.addActionListener(e -> hasFullBorderChanged());
|
hasFullBorderCheckBox.addActionListener(e -> hasFullBorderChanged());
|
||||||
panel14.add(hasFullBorderCheckBox, "cell 3 0,alignx left,growx 0");
|
panel14.add(hasFullBorderCheckBox, "cell 4 0,alignx left,growx 0");
|
||||||
}
|
}
|
||||||
panel9.add(panel14, cc.xywh(1, 11, 3, 1));
|
panel9.add(panel14, cc.xywh(1, 11, 3, 1));
|
||||||
}
|
}
|
||||||
@@ -318,6 +332,7 @@ class TabsPanel
|
|||||||
private JCheckBox moreTabsCheckBox;
|
private JCheckBox moreTabsCheckBox;
|
||||||
private JCheckBox tabScrollCheckBox;
|
private JCheckBox tabScrollCheckBox;
|
||||||
private JCheckBox showTabSeparatorsCheckBox;
|
private JCheckBox showTabSeparatorsCheckBox;
|
||||||
|
private JCheckBox hideContentSeparatorCheckBox;
|
||||||
private JCheckBox hasFullBorderCheckBox;
|
private JCheckBox hasFullBorderCheckBox;
|
||||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
JFDML JFormDesigner: "7.0.2.0.298" Java: "14" encoding: "UTF-8"
|
JFDML JFormDesigner: "7.0.2.0.298" Java: "15" encoding: "UTF-8"
|
||||||
|
|
||||||
new FormModel {
|
new FormModel {
|
||||||
contentType: "form/swing"
|
contentType: "form/swing"
|
||||||
@@ -144,7 +144,7 @@ new FormModel {
|
|||||||
} )
|
} )
|
||||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
"$layoutConstraints": "insets 0,hidemode 3"
|
"$layoutConstraints": "insets 0,hidemode 3"
|
||||||
"$columnConstraints": "[][][][]"
|
"$columnConstraints": "[][][][fill][]"
|
||||||
"$rowConstraints": "[center]"
|
"$rowConstraints": "[center]"
|
||||||
} ) {
|
} ) {
|
||||||
name: "panel14"
|
name: "panel14"
|
||||||
@@ -180,6 +180,16 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 2 0"
|
"value": "cell 2 0"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
|
name: "hideContentSeparatorCheckBox"
|
||||||
|
"text": "Hide content separator"
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hideContentSeparatorChanged", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 3 0"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
name: "hasFullBorderCheckBox"
|
name: "hasFullBorderCheckBox"
|
||||||
"text": "Show content border"
|
"text": "Show content border"
|
||||||
@@ -188,7 +198,7 @@ new FormModel {
|
|||||||
}
|
}
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hasFullBorderChanged", false ) )
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hasFullBorderChanged", false ) )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 3 0,alignx left,growx 0"
|
"value": "cell 4 0,alignx left,growx 0"
|
||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( class com.jgoodies.forms.layout.CellConstraints ) {
|
}, new FormLayoutConstraints( class com.jgoodies.forms.layout.CellConstraints ) {
|
||||||
"gridY": 11
|
"gridY": 11
|
||||||
@@ -199,7 +209,7 @@ new FormModel {
|
|||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( null ) {
|
}, new FormLayoutConstraints( null ) {
|
||||||
"location": new java.awt.Point( 0, 0 )
|
"location": new java.awt.Point( 0, 0 )
|
||||||
"size": new java.awt.Dimension( 625, 515 )
|
"size": new java.awt.Dimension( 700, 515 )
|
||||||
} )
|
} )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -746,7 +746,8 @@ public class FlatUIDefaultsInspector
|
|||||||
|
|
||||||
int dot = key.indexOf( '.' );
|
int dot = key.indexOf( '.' );
|
||||||
if( dot > 0 && !selected ) {
|
if( dot > 0 && !selected ) {
|
||||||
g.setColor( UIManager.getColor( "Label.disabledForeground" ) );
|
g.setColor( FlatUIUtils.getUIColor( "Label.disabledForeground",
|
||||||
|
FlatUIUtils.getUIColor( "Label.disabledText", Color.gray ) ) );
|
||||||
|
|
||||||
if( dot >= clippedText.length() )
|
if( dot >= clippedText.length() )
|
||||||
FlatUIUtils.drawString( this, g, clippedText, x, y );
|
FlatUIUtils.drawString( this, g, clippedText, x, y );
|
||||||
|
|||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.captionFont.height 12
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 5
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.smallCaptionFont.height 12
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.icon.font.height 12
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.menu.font.height 12
|
||||||
|
win.menu.height 19
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.messagebox.font.height 12
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.status.font.height 12
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.tooltip.font.height 12
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 5
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 44
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 5
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.25
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=13]
|
||||||
|
win.defaultGUI.font.height 13
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 28
|
||||||
|
win.frame.captionButtonWidth 46
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.frame.captionFont.height 19
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 28
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 6
|
||||||
|
win.frame.smallCaptionButtonHeight 28
|
||||||
|
win.frame.smallCaptionButtonWidth 28
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.frame.smallCaptionFont.height 19
|
||||||
|
win.frame.smallCaptionHeight 28
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.icon.font.height 19
|
||||||
|
win.icon.hspacing 143
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 94
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 24
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.menu.font.height 19
|
||||||
|
win.menu.height 28
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 21
|
||||||
|
win.scrollbar.width 21
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.status.font.height 19
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=19]
|
||||||
|
win.tooltip.font.height 19
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.25
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=13]
|
||||||
|
win.defaultGUI.font.height 13
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 34
|
||||||
|
win.frame.captionButtonWidth 56
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.frame.captionFont.height 23
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 34
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 6
|
||||||
|
win.frame.smallCaptionButtonHeight 34
|
||||||
|
win.frame.smallCaptionButtonWidth 28
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.frame.smallCaptionFont.height 23
|
||||||
|
win.frame.smallCaptionHeight 34
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.icon.font.height 23
|
||||||
|
win.icon.hspacing 143
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 94
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 24
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.menu.font.height 23
|
||||||
|
win.menu.height 34
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.messagebox.font.height 23
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 21
|
||||||
|
win.scrollbar.width 21
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.status.font.height 23
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=23]
|
||||||
|
win.tooltip.font.height 23
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 33
|
||||||
|
win.frame.captionButtonWidth 54
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 33
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 8
|
||||||
|
win.frame.smallCaptionButtonHeight 33
|
||||||
|
win.frame.smallCaptionButtonWidth 33
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 33
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 171
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 113
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 29
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 29
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 26
|
||||||
|
win.scrollbar.width 26
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.75
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 33
|
||||||
|
win.frame.captionButtonWidth 54
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.frame.captionFont.height 22
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 33
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 8
|
||||||
|
win.frame.smallCaptionButtonHeight 33
|
||||||
|
win.frame.smallCaptionButtonWidth 33
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.frame.smallCaptionFont.height 22
|
||||||
|
win.frame.smallCaptionHeight 33
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.icon.font.height 22
|
||||||
|
win.icon.hspacing 171
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 113
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 29
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.menu.font.height 22
|
||||||
|
win.menu.height 32
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.messagebox.font.height 22
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 26
|
||||||
|
win.scrollbar.width 26
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.status.font.height 22
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=22]
|
||||||
|
win.tooltip.font.height 22
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 39
|
||||||
|
win.frame.captionButtonWidth 64
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.frame.captionFont.height 27
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 39
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 8
|
||||||
|
win.frame.smallCaptionButtonHeight 39
|
||||||
|
win.frame.smallCaptionButtonWidth 33
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.frame.smallCaptionFont.height 27
|
||||||
|
win.frame.smallCaptionHeight 39
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.icon.font.height 27
|
||||||
|
win.icon.hspacing 171
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 113
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 29
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.menu.font.height 27
|
||||||
|
win.menu.height 39
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.messagebox.font.height 27
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 26
|
||||||
|
win.scrollbar.width 26
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.status.font.height 27
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=27]
|
||||||
|
win.tooltip.font.height 27
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.75
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=19]
|
||||||
|
win.defaultGUI.font.height 19
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 39
|
||||||
|
win.frame.captionButtonWidth 64
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.frame.captionFont.height 26
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 39
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 9
|
||||||
|
win.frame.smallCaptionButtonHeight 39
|
||||||
|
win.frame.smallCaptionButtonWidth 39
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.frame.smallCaptionFont.height 26
|
||||||
|
win.frame.smallCaptionHeight 39
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.icon.font.height 26
|
||||||
|
win.icon.hspacing 200
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 131
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 33
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.menu.font.height 26
|
||||||
|
win.menu.height 39
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.messagebox.font.height 26
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 30
|
||||||
|
win.scrollbar.width 30
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.status.font.height 26
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=26]
|
||||||
|
win.tooltip.font.height 26
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.75
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.75
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=19]
|
||||||
|
win.defaultGUI.font.height 19
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 47
|
||||||
|
win.frame.captionButtonWidth 77
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.frame.captionFont.height 32
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 47
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 9
|
||||||
|
win.frame.smallCaptionButtonHeight 47
|
||||||
|
win.frame.smallCaptionButtonWidth 39
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.frame.smallCaptionFont.height 32
|
||||||
|
win.frame.smallCaptionHeight 47
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.icon.font.height 32
|
||||||
|
win.icon.hspacing 200
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 131
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 33
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.menu.font.height 32
|
||||||
|
win.menu.height 47
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.messagebox.font.height 32
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 30
|
||||||
|
win.scrollbar.width 30
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.status.font.height 32
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=32]
|
||||||
|
win.tooltip.font.height 32
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=21]
|
||||||
|
win.defaultGUI.font.height 21
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 44
|
||||||
|
win.frame.captionButtonWidth 72
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.frame.captionFont.height 24
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 44
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 10
|
||||||
|
win.frame.smallCaptionButtonHeight 44
|
||||||
|
win.frame.smallCaptionButtonWidth 44
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.frame.smallCaptionFont.height 24
|
||||||
|
win.frame.smallCaptionHeight 44
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.icon.font.height 24
|
||||||
|
win.icon.hspacing 228
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 150
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 38
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.menu.font.height 24
|
||||||
|
win.menu.height 38
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.messagebox.font.height 24
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 34
|
||||||
|
win.scrollbar.width 34
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.status.font.height 24
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=24]
|
||||||
|
win.tooltip.font.height 24
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 2.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=21]
|
||||||
|
win.defaultGUI.font.height 21
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 44
|
||||||
|
win.frame.captionButtonWidth 72
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.frame.captionFont.height 30
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 44
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 10
|
||||||
|
win.frame.smallCaptionButtonHeight 44
|
||||||
|
win.frame.smallCaptionButtonWidth 44
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.frame.smallCaptionFont.height 30
|
||||||
|
win.frame.smallCaptionHeight 44
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.icon.font.height 30
|
||||||
|
win.icon.hspacing 228
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 150
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 38
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.menu.font.height 30
|
||||||
|
win.menu.height 44
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=29]
|
||||||
|
win.messagebox.font.height 29
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 34
|
||||||
|
win.scrollbar.width 34
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.status.font.height 30
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=30]
|
||||||
|
win.tooltip.font.height 30
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 3.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=21]
|
||||||
|
win.defaultGUI.font.height 21
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 54
|
||||||
|
win.frame.captionButtonWidth 89
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.frame.captionFont.height 36
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 54
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 10
|
||||||
|
win.frame.smallCaptionButtonHeight 54
|
||||||
|
win.frame.smallCaptionButtonWidth 44
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.frame.smallCaptionFont.height 36
|
||||||
|
win.frame.smallCaptionHeight 54
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.icon.font.height 36
|
||||||
|
win.icon.hspacing 228
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 150
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 38
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.menu.font.height 36
|
||||||
|
win.menu.height 54
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.messagebox.font.height 36
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 34
|
||||||
|
win.scrollbar.width 34
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.status.font.height 36
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=36]
|
||||||
|
win.tooltip.font.height 36
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.25
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 3.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=24]
|
||||||
|
win.defaultGUI.font.height 24
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 61
|
||||||
|
win.frame.captionButtonWidth 100
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.frame.captionFont.height 41
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 61
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 11
|
||||||
|
win.frame.smallCaptionButtonHeight 61
|
||||||
|
win.frame.smallCaptionButtonWidth 50
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.frame.smallCaptionFont.height 41
|
||||||
|
win.frame.smallCaptionHeight 61
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.icon.font.height 41
|
||||||
|
win.icon.hspacing 257
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 169
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 43
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.menu.font.height 41
|
||||||
|
win.menu.height 61
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.messagebox.font.height 41
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 38
|
||||||
|
win.scrollbar.width 38
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.status.font.height 41
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=41]
|
||||||
|
win.tooltip.font.height 41
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 3.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 3.75
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=32]
|
||||||
|
win.defaultGUI.font.height 32
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 66
|
||||||
|
win.frame.captionButtonWidth 109
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.frame.captionFont.height 45
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 66
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 15
|
||||||
|
win.frame.smallCaptionButtonHeight 66
|
||||||
|
win.frame.smallCaptionButtonWidth 66
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.frame.smallCaptionFont.height 45
|
||||||
|
win.frame.smallCaptionHeight 66
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.icon.font.height 45
|
||||||
|
win.icon.hspacing 342
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 225
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 57
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.menu.font.height 45
|
||||||
|
win.menu.height 66
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=44]
|
||||||
|
win.messagebox.font.height 44
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 51
|
||||||
|
win.scrollbar.width 51
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.status.font.height 45
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=45]
|
||||||
|
win.tooltip.font.height 45
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 1.8.0_202
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 3.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 4.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=32]
|
||||||
|
win.defaultGUI.font.height 32
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 81
|
||||||
|
win.frame.captionButtonWidth 133
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.frame.captionFont.height 54
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 81
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 15
|
||||||
|
win.frame.smallCaptionButtonHeight 81
|
||||||
|
win.frame.smallCaptionButtonWidth 66
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.frame.smallCaptionFont.height 54
|
||||||
|
win.frame.smallCaptionHeight 81
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.icon.font.height 54
|
||||||
|
win.icon.hspacing 342
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 225
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 57
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.menu.font.height 54
|
||||||
|
win.menu.height 81
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.messagebox.font.height 54
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 51
|
||||||
|
win.scrollbar.width 51
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.status.font.height 54
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=54]
|
||||||
|
win.tooltip.font.height 54
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.captionFont.height 12
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.smallCaptionFont.height 12
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.icon.font.height 12
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.menu.font.height 12
|
||||||
|
win.menu.height 19
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.messagebox.font.height 12
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.status.font.height 12
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.tooltip.font.height 12
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=16]
|
||||||
|
win.defaultGUI.font.height 16
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 44
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.25
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.25
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=13]
|
||||||
|
win.defaultGUI.font.height 13
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 37
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=14]
|
||||||
|
win.messagebox.font.height 14
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.25
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.25
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=13]
|
||||||
|
win.defaultGUI.font.height 13
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 45
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 1.5
|
||||||
|
Font scale: 1.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.captionFont.height 12
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.smallCaptionFont.height 12
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.icon.font.height 12
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.menu.font.height 12
|
||||||
|
win.menu.height 19
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.messagebox.font.height 12
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.status.font.height 12
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.tooltip.font.height 12
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.5
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 21
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.5
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.5
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=11]
|
||||||
|
win.defaultGUI.font.height 11
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 26
|
||||||
|
win.frame.captionButtonWidth 43
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 26
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 26
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 26
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 26
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.75
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 1.75
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=9]
|
||||||
|
win.defaultGUI.font.height 9
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 37
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 1.75
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 1.75
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=9]
|
||||||
|
win.defaultGUI.font.height 9
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 44
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.0
|
||||||
|
|
||||||
|
Java scale: 2.0
|
||||||
|
Font scale: 1.0
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=8]
|
||||||
|
win.defaultGUI.font.height 8
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.captionFont.height 12
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.frame.smallCaptionFont.height 12
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.icon.font.height 12
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.menu.font.height 12
|
||||||
|
win.menu.height 19
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.messagebox.font.height 12
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.status.font.height 12
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=12]
|
||||||
|
win.tooltip.font.height 12
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 2.0
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=8]
|
||||||
|
win.defaultGUI.font.height 8
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 2.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=8]
|
||||||
|
win.defaultGUI.font.height 8
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 45
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 2.25
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 2.25
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=7]
|
||||||
|
win.defaultGUI.font.height 7
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 44
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 3.0
|
||||||
|
Text scale: 1.25
|
||||||
|
|
||||||
|
Java scale: 3.0
|
||||||
|
Font scale: 1.25
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=5]
|
||||||
|
win.defaultGUI.font.height 5
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 22
|
||||||
|
win.frame.captionButtonWidth 36
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.captionFont.height 15
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 22
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 22
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.frame.smallCaptionFont.height 15
|
||||||
|
win.frame.smallCaptionHeight 22
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.icon.font.height 15
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.menu.font.height 15
|
||||||
|
win.menu.height 22
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.messagebox.font.height 15
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.status.font.height 15
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=15]
|
||||||
|
win.tooltip.font.height 15
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
Java version: 9.0.4
|
||||||
|
OS: Windows 10
|
||||||
|
|
||||||
|
Screen scale: 3.0
|
||||||
|
Text scale: 1.5
|
||||||
|
|
||||||
|
Java scale: 3.0
|
||||||
|
Font scale: 1.5
|
||||||
|
|
||||||
|
DnD.gestureMotionThreshold 2
|
||||||
|
awt.dynamicLayoutSupported true
|
||||||
|
awt.file.showAttribCol false
|
||||||
|
awt.file.showHiddenFiles true
|
||||||
|
awt.font.desktophints {Text-specific antialiasing enable key=LCD HRGB antialiasing text mode, Text-specific LCD contrast key=120}
|
||||||
|
awt.mouse.numButtons 5
|
||||||
|
awt.multiClickInterval 500
|
||||||
|
awt.wheelMousePresent true
|
||||||
|
win.3d.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.3d.darkShadowColor java.awt.Color[r=105,g=105,b=105]
|
||||||
|
win.3d.highlightColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.3d.lightColor java.awt.Color[r=227,g=227,b=227]
|
||||||
|
win.3d.shadowColor java.awt.Color[r=160,g=160,b=160]
|
||||||
|
win.ansiFixed.font java.awt.Font[family=Monospaced,name=Monospaced,style=plain,size=13]
|
||||||
|
win.ansiFixed.font.height 13
|
||||||
|
win.ansiVar.font java.awt.Font[family=Microsoft Sans Serif,name=Microsoft Sans Serif,style=plain,size=11]
|
||||||
|
win.ansiVar.font.height 11
|
||||||
|
win.button.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.caret.width 1
|
||||||
|
win.defaultGUI.font java.awt.Font[family=Tahoma,name=Tahoma,style=plain,size=5]
|
||||||
|
win.defaultGUI.font.height 5
|
||||||
|
win.desktop.backgroundColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.deviceDefault.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.deviceDefault.font.height 16
|
||||||
|
win.drag.height 4
|
||||||
|
win.drag.width 4
|
||||||
|
win.frame.activeBorderColor java.awt.Color[r=180,g=180,b=180]
|
||||||
|
win.frame.activeCaptionColor java.awt.Color[r=153,g=180,b=209]
|
||||||
|
win.frame.activeCaptionGradientColor java.awt.Color[r=185,g=209,b=234]
|
||||||
|
win.frame.backgroundColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.frame.captionButtonHeight 27
|
||||||
|
win.frame.captionButtonWidth 44
|
||||||
|
win.frame.captionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.captionFont.height 18
|
||||||
|
win.frame.captionGradientsOn true
|
||||||
|
win.frame.captionHeight 27
|
||||||
|
win.frame.captionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.color java.awt.Color[r=100,g=100,b=100]
|
||||||
|
win.frame.fullWindowDragsOn true
|
||||||
|
win.frame.inactiveBorderColor java.awt.Color[r=244,g=247,b=252]
|
||||||
|
win.frame.inactiveCaptionColor java.awt.Color[r=191,g=205,b=219]
|
||||||
|
win.frame.inactiveCaptionGradientColor java.awt.Color[r=215,g=228,b=242]
|
||||||
|
win.frame.inactiveCaptionTextColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.frame.sizingBorderWidth 1
|
||||||
|
win.frame.smallCaptionButtonHeight 27
|
||||||
|
win.frame.smallCaptionButtonWidth 22
|
||||||
|
win.frame.smallCaptionFont java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.frame.smallCaptionFont.height 18
|
||||||
|
win.frame.smallCaptionHeight 27
|
||||||
|
win.frame.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.highContrast.on false
|
||||||
|
win.icon.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.icon.font.height 18
|
||||||
|
win.icon.hspacing 114
|
||||||
|
win.icon.titleWrappingOn true
|
||||||
|
win.icon.vspacing 75
|
||||||
|
win.item.highlightColor java.awt.Color[r=0,g=120,b=215]
|
||||||
|
win.item.highlightTextColor java.awt.Color[r=255,g=255,b=255]
|
||||||
|
win.item.hotTrackedColor java.awt.Color[r=0,g=102,b=204]
|
||||||
|
win.item.hotTrackingOn true
|
||||||
|
win.mdi.backgroundColor java.awt.Color[r=171,g=171,b=171]
|
||||||
|
win.menu.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.menu.buttonWidth 19
|
||||||
|
win.menu.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.menu.font.height 18
|
||||||
|
win.menu.height 27
|
||||||
|
win.menu.keyboardCuesOn false
|
||||||
|
win.menu.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.menubar.backgroundColor java.awt.Color[r=240,g=240,b=240]
|
||||||
|
win.messagebox.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.messagebox.font.height 18
|
||||||
|
win.oemFixed.font java.awt.Font[family=Dialog,name=8514oem,style=plain,size=18]
|
||||||
|
win.oemFixed.font.height 18
|
||||||
|
win.properties.version 3
|
||||||
|
win.scrollbar.backgroundColor java.awt.Color[r=200,g=200,b=200]
|
||||||
|
win.scrollbar.height 17
|
||||||
|
win.scrollbar.width 17
|
||||||
|
win.sound.asterisk WinPlaySound(SystemAsterisk)
|
||||||
|
win.sound.close WinPlaySound(Close)
|
||||||
|
win.sound.default WinPlaySound(.Default)
|
||||||
|
win.sound.exclamation WinPlaySound(SystemExclamation)
|
||||||
|
win.sound.exit WinPlaySound(SystemExit)
|
||||||
|
win.sound.hand WinPlaySound(SystemHand)
|
||||||
|
win.sound.maximize WinPlaySound(Maximize)
|
||||||
|
win.sound.menuCommand WinPlaySound(MenuCommand)
|
||||||
|
win.sound.menuPopup WinPlaySound(MenuPopup)
|
||||||
|
win.sound.minimize WinPlaySound(Minimize)
|
||||||
|
win.sound.open WinPlaySound(Open)
|
||||||
|
win.sound.question WinPlaySound(SystemQuestion)
|
||||||
|
win.sound.restoreDown WinPlaySound(RestoreDown)
|
||||||
|
win.sound.restoreUp WinPlaySound(RestoreUp)
|
||||||
|
win.sound.start WinPlaySound(SystemStart)
|
||||||
|
win.status.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.status.font.height 18
|
||||||
|
win.system.font java.awt.Font[family=Dialog,name=Dialog,style=bold,size=16]
|
||||||
|
win.system.font.height 16
|
||||||
|
win.systemFixed.font java.awt.Font[family=Dialog,name=Fixedsys,style=plain,size=18]
|
||||||
|
win.systemFixed.font.height 18
|
||||||
|
win.text.fontSmoothingContrast 1200
|
||||||
|
win.text.fontSmoothingOn true
|
||||||
|
win.text.fontSmoothingOrientation 1
|
||||||
|
win.text.fontSmoothingType 2
|
||||||
|
win.text.grayedTextColor java.awt.Color[r=109,g=109,b=109]
|
||||||
|
win.tooltip.backgroundColor java.awt.Color[r=255,g=255,b=225]
|
||||||
|
win.tooltip.font java.awt.Font[family=Segoe UI,name=Segoe UI,style=plain,size=18]
|
||||||
|
win.tooltip.font.height 18
|
||||||
|
win.tooltip.textColor java.awt.Color[r=0,g=0,b=0]
|
||||||
|
win.xpstyle.colorName NormalColor
|
||||||
|
win.xpstyle.dllName C:\Windows\resources\themes\Aero\Aero.msstyles
|
||||||
|
win.xpstyle.sizeName NormalSize
|
||||||
|
win.xpstyle.themeActive true
|
||||||
@@ -285,7 +285,7 @@ FileChooser.listViewIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFil
|
|||||||
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
||||||
FileChooser.readOnly false
|
FileChooser.readOnly false
|
||||||
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
||||||
FileChooser.useSystemExtensionHiding false
|
FileChooser.useSystemExtensionHiding true
|
||||||
FileChooser.usesSingleFilePane true
|
FileChooser.usesSingleFilePane true
|
||||||
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
||||||
|
|
||||||
@@ -445,7 +445,7 @@ JideTabbedPane.foreground #bbbbbb javax.swing.plaf.ColorUIResource [UI]
|
|||||||
JideTabbedPane.shadow #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.shadow #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaBackground #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.tabAreaBackground #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabRunOverlay 0
|
JideTabbedPane.tabRunOverlay 0
|
||||||
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
||||||
|
|
||||||
@@ -542,7 +542,7 @@ MenuItem.arrowIcon [lazy] 6,10 com.formdev.flatlaf.icons.FlatMenu
|
|||||||
MenuItem.background #303234 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.background #303234 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
||||||
MenuItem.borderPainted true
|
MenuItem.borderPainted true
|
||||||
MenuItem.checkBackground #484c4f com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
MenuItem.checkBackground #3c588b javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
MenuItem.disabledForeground #888888 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.disabledForeground #888888 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.font [active] $defaultFont [UI]
|
MenuItem.font [active] $defaultFont [UI]
|
||||||
@@ -557,7 +557,7 @@ MenuItem.selectionForeground #bbbbbb javax.swing.plaf.ColorUIResource [UI]
|
|||||||
MenuItem.textAcceleratorGap 24
|
MenuItem.textAcceleratorGap 24
|
||||||
MenuItem.textNoAcceleratorGap 6
|
MenuItem.textNoAcceleratorGap 6
|
||||||
MenuItem.underlineSelectionBackground #484c4f com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
MenuItem.underlineSelectionBackground #484c4f com.formdev.flatlaf.util.DerivedColor [UI] lighten(10% autoInverse)
|
||||||
MenuItem.underlineSelectionCheckBackground #616569 com.formdev.flatlaf.util.DerivedColor [UI] lighten(20% autoInverse)
|
MenuItem.underlineSelectionCheckBackground #3c588b javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionColor #4a88c7 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.underlineSelectionColor #4a88c7 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionHeight 3
|
MenuItem.underlineSelectionHeight 3
|
||||||
|
|
||||||
@@ -905,7 +905,7 @@ SplitPaneUI com.formdev.flatlaf.ui.FlatSplitPaneUI
|
|||||||
#---- TabbedPane ----
|
#---- TabbedPane ----
|
||||||
|
|
||||||
TabbedPane.background #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.background #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
||||||
TabbedPane.contentAreaColor #323232 javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.contentAreaColor #646464 javax.swing.plaf.ColorUIResource [UI]
|
||||||
TabbedPane.contentOpaque true
|
TabbedPane.contentOpaque true
|
||||||
TabbedPane.contentSeparatorHeight 1
|
TabbedPane.contentSeparatorHeight 1
|
||||||
TabbedPane.darkShadow #7e7e7e javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.darkShadow #7e7e7e javax.swing.plaf.ColorUIResource [UI]
|
||||||
@@ -924,11 +924,13 @@ TabbedPane.selectedLabelShift -1
|
|||||||
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.selectionFollowsFocus true
|
TabbedPane.selectionFollowsFocus true
|
||||||
TabbedPane.shadow #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.shadow #3c3f41 javax.swing.plaf.ColorUIResource [UI]
|
||||||
|
TabbedPane.showTabSeparators false
|
||||||
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabHeight 32
|
TabbedPane.tabHeight 32
|
||||||
TabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabRunOverlay 0
|
TabbedPane.tabRunOverlay 0
|
||||||
TabbedPane.tabSelectionHeight 3
|
TabbedPane.tabSelectionHeight 3
|
||||||
|
TabbedPane.tabSeparatorsFullHeight false
|
||||||
TabbedPane.tabsOpaque true
|
TabbedPane.tabsOpaque true
|
||||||
TabbedPane.tabsOverlapBorder true
|
TabbedPane.tabsOverlapBorder true
|
||||||
TabbedPane.textIconGap 4
|
TabbedPane.textIconGap 4
|
||||||
@@ -1272,6 +1274,7 @@ infoText #bbbbbb javax.swing.plaf.ColorUIResource [UI]
|
|||||||
|
|
||||||
#---- laf ----
|
#---- laf ----
|
||||||
|
|
||||||
|
laf.dark true
|
||||||
laf.scaleFactor [active] 1.0
|
laf.scaleFactor [active] 1.0
|
||||||
|
|
||||||
|
|
||||||
@@ -289,7 +289,7 @@ FileChooser.listViewIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFil
|
|||||||
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
||||||
FileChooser.readOnly false
|
FileChooser.readOnly false
|
||||||
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
||||||
FileChooser.useSystemExtensionHiding false
|
FileChooser.useSystemExtensionHiding true
|
||||||
FileChooser.usesSingleFilePane true
|
FileChooser.usesSingleFilePane true
|
||||||
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
||||||
|
|
||||||
@@ -450,7 +450,7 @@ JideTabbedPane.foreground #000000 javax.swing.plaf.ColorUIResource [UI]
|
|||||||
JideTabbedPane.shadow #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.shadow #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaBackground #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.tabAreaBackground #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabRunOverlay 0
|
JideTabbedPane.tabRunOverlay 0
|
||||||
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
||||||
|
|
||||||
@@ -547,7 +547,7 @@ MenuItem.arrowIcon [lazy] 6,10 com.formdev.flatlaf.icons.FlatMenu
|
|||||||
MenuItem.background #ffffff javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.background #ffffff javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
||||||
MenuItem.borderPainted true
|
MenuItem.borderPainted true
|
||||||
MenuItem.checkBackground #e6e6e6 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
MenuItem.checkBackground #bfd9f2 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
MenuItem.disabledForeground #8c8c8c javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.disabledForeground #8c8c8c javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.font [active] $defaultFont [UI]
|
MenuItem.font [active] $defaultFont [UI]
|
||||||
@@ -562,7 +562,7 @@ MenuItem.selectionForeground #ffffff javax.swing.plaf.ColorUIResource [UI]
|
|||||||
MenuItem.textAcceleratorGap 24
|
MenuItem.textAcceleratorGap 24
|
||||||
MenuItem.textNoAcceleratorGap 6
|
MenuItem.textNoAcceleratorGap 6
|
||||||
MenuItem.underlineSelectionBackground #e6e6e6 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
MenuItem.underlineSelectionBackground #e6e6e6 com.formdev.flatlaf.util.DerivedColor [UI] darken(10% autoInverse)
|
||||||
MenuItem.underlineSelectionCheckBackground #cccccc com.formdev.flatlaf.util.DerivedColor [UI] darken(20% autoInverse)
|
MenuItem.underlineSelectionCheckBackground #bfd9f2 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionColor #4083c9 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.underlineSelectionColor #4083c9 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionHeight 3
|
MenuItem.underlineSelectionHeight 3
|
||||||
|
|
||||||
@@ -929,11 +929,13 @@ TabbedPane.selectedLabelShift -1
|
|||||||
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.selectionFollowsFocus true
|
TabbedPane.selectionFollowsFocus true
|
||||||
TabbedPane.shadow #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.shadow #f2f2f2 javax.swing.plaf.ColorUIResource [UI]
|
||||||
|
TabbedPane.showTabSeparators false
|
||||||
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabHeight 32
|
TabbedPane.tabHeight 32
|
||||||
TabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabRunOverlay 0
|
TabbedPane.tabRunOverlay 0
|
||||||
TabbedPane.tabSelectionHeight 3
|
TabbedPane.tabSelectionHeight 3
|
||||||
|
TabbedPane.tabSeparatorsFullHeight false
|
||||||
TabbedPane.tabsOpaque true
|
TabbedPane.tabsOpaque true
|
||||||
TabbedPane.tabsOverlapBorder true
|
TabbedPane.tabsOverlapBorder true
|
||||||
TabbedPane.textIconGap 4
|
TabbedPane.textIconGap 4
|
||||||
@@ -1277,6 +1279,7 @@ infoText #000000 javax.swing.plaf.ColorUIResource [UI]
|
|||||||
|
|
||||||
#---- laf ----
|
#---- laf ----
|
||||||
|
|
||||||
|
laf.dark false
|
||||||
laf.scaleFactor [active] 1.0
|
laf.scaleFactor [active] 1.0
|
||||||
|
|
||||||
|
|
||||||
@@ -277,7 +277,7 @@ FileChooser.listViewIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFil
|
|||||||
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
FileChooser.newFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserNewFolderIcon [UI]
|
||||||
FileChooser.readOnly false
|
FileChooser.readOnly false
|
||||||
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
FileChooser.upFolderIcon [lazy] 16,16 com.formdev.flatlaf.icons.FlatFileChooserUpFolderIcon [UI]
|
||||||
FileChooser.useSystemExtensionHiding false
|
FileChooser.useSystemExtensionHiding true
|
||||||
FileChooser.usesSingleFilePane true
|
FileChooser.usesSingleFilePane true
|
||||||
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
FileChooserUI com.formdev.flatlaf.ui.FlatFileChooserUI
|
||||||
|
|
||||||
@@ -438,7 +438,7 @@ JideTabbedPane.foreground #ff0000 javax.swing.plaf.ColorUIResource [UI]
|
|||||||
JideTabbedPane.shadow #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.shadow #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaBackground #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
JideTabbedPane.tabAreaBackground #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
||||||
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
JideTabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
JideTabbedPane.tabRunOverlay 0
|
JideTabbedPane.tabRunOverlay 0
|
||||||
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
JideTabbedPaneUI com.formdev.flatlaf.jideoss.ui.FlatJideTabbedPaneUI
|
||||||
|
|
||||||
@@ -535,7 +535,7 @@ MenuItem.arrowIcon [lazy] 6,10 com.formdev.flatlaf.icons.FlatMenu
|
|||||||
MenuItem.background #ffffff javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.background #ffffff javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
MenuItem.border [lazy] 0,0,0,0 false com.formdev.flatlaf.ui.FlatMenuItemBorder [UI]
|
||||||
MenuItem.borderPainted true
|
MenuItem.borderPainted true
|
||||||
MenuItem.checkBackground #e6e6e6 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.checkBackground #ccccff javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
MenuItem.checkMargins 2,2,2,2 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
MenuItem.disabledForeground #000088 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.disabledForeground #000088 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.font [active] $defaultFont [UI]
|
MenuItem.font [active] $defaultFont [UI]
|
||||||
@@ -550,7 +550,7 @@ MenuItem.selectionForeground #ffff00 javax.swing.plaf.ColorUIResource [UI]
|
|||||||
MenuItem.textAcceleratorGap 24
|
MenuItem.textAcceleratorGap 24
|
||||||
MenuItem.textNoAcceleratorGap 6
|
MenuItem.textNoAcceleratorGap 6
|
||||||
MenuItem.underlineSelectionBackground #e6e6e6 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.underlineSelectionBackground #e6e6e6 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionCheckBackground #cccccc javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.underlineSelectionCheckBackground #ccccff javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionColor #4a88c7 javax.swing.plaf.ColorUIResource [UI]
|
MenuItem.underlineSelectionColor #4a88c7 javax.swing.plaf.ColorUIResource [UI]
|
||||||
MenuItem.underlineSelectionHeight 3
|
MenuItem.underlineSelectionHeight 3
|
||||||
|
|
||||||
@@ -919,12 +919,14 @@ TabbedPane.selectedLabelShift -1
|
|||||||
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.selectedTabPadInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.selectionFollowsFocus true
|
TabbedPane.selectionFollowsFocus true
|
||||||
TabbedPane.shadow #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.shadow #ccffcc javax.swing.plaf.ColorUIResource [UI]
|
||||||
|
TabbedPane.showTabSeparators false
|
||||||
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabAreaInsets 0,0,0,0 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabHeight 32
|
TabbedPane.tabHeight 32
|
||||||
TabbedPane.tabInsets 0,12,0,12 javax.swing.plaf.InsetsUIResource [UI]
|
TabbedPane.tabInsets 4,12,4,12 javax.swing.plaf.InsetsUIResource [UI]
|
||||||
TabbedPane.tabRunOverlay 0
|
TabbedPane.tabRunOverlay 0
|
||||||
TabbedPane.tabSelectionHeight 3
|
TabbedPane.tabSelectionHeight 3
|
||||||
TabbedPane.tabSeparatorColor #0000ff javax.swing.plaf.ColorUIResource [UI]
|
TabbedPane.tabSeparatorColor #0000ff javax.swing.plaf.ColorUIResource [UI]
|
||||||
|
TabbedPane.tabSeparatorsFullHeight false
|
||||||
TabbedPane.tabsOpaque true
|
TabbedPane.tabsOpaque true
|
||||||
TabbedPane.tabsOverlapBorder true
|
TabbedPane.tabsOverlapBorder true
|
||||||
TabbedPane.textIconGap 4
|
TabbedPane.textIconGap 4
|
||||||
@@ -1269,6 +1271,7 @@ infoText #ff0000 javax.swing.plaf.ColorUIResource [UI]
|
|||||||
|
|
||||||
#---- laf ----
|
#---- laf ----
|
||||||
|
|
||||||
|
laf.dark false
|
||||||
laf.scaleFactor [active] 1.0
|
laf.scaleFactor [active] 1.0
|
||||||
|
|
||||||
|
|
||||||
@@ -59,10 +59,10 @@ public class FlatChooserTest
|
|||||||
"ltr,insets dialog,hidemode 3",
|
"ltr,insets dialog,hidemode 3",
|
||||||
// columns
|
// columns
|
||||||
"[]" +
|
"[]" +
|
||||||
"[]",
|
"[grow]",
|
||||||
// rows
|
// rows
|
||||||
"[top]" +
|
"[top]" +
|
||||||
"[grow,top]" +
|
"[grow,fill]" +
|
||||||
"[]"));
|
"[]"));
|
||||||
|
|
||||||
//---- colorChooserLabel ----
|
//---- colorChooserLabel ----
|
||||||
@@ -73,7 +73,7 @@ public class FlatChooserTest
|
|||||||
//---- fileChooserLabel ----
|
//---- fileChooserLabel ----
|
||||||
fileChooserLabel.setText("JFileChooser:");
|
fileChooserLabel.setText("JFileChooser:");
|
||||||
add(fileChooserLabel, "cell 0 1");
|
add(fileChooserLabel, "cell 0 1");
|
||||||
add(fileChooser1, "cell 1 1,growy");
|
add(fileChooser1, "cell 1 1,growx");
|
||||||
|
|
||||||
//---- label1 ----
|
//---- label1 ----
|
||||||
label1.setText("icons:");
|
label1.setText("icons:");
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
JFDML JFormDesigner: "7.0.1.0.272" Java: "13.0.2" encoding: "UTF-8"
|
JFDML JFormDesigner: "7.0.2.0.298" Java: "15" encoding: "UTF-8"
|
||||||
|
|
||||||
new FormModel {
|
new FormModel {
|
||||||
contentType: "form/swing"
|
contentType: "form/swing"
|
||||||
@@ -8,8 +8,8 @@ new FormModel {
|
|||||||
}
|
}
|
||||||
add( new FormContainer( "com.formdev.flatlaf.testing.FlatTestPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
add( new FormContainer( "com.formdev.flatlaf.testing.FlatTestPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
"$layoutConstraints": "ltr,insets dialog,hidemode 3"
|
"$layoutConstraints": "ltr,insets dialog,hidemode 3"
|
||||||
"$columnConstraints": "[][]"
|
"$columnConstraints": "[][grow]"
|
||||||
"$rowConstraints": "[top][grow,top][]"
|
"$rowConstraints": "[top][grow,fill][]"
|
||||||
} ) {
|
} ) {
|
||||||
name: "this"
|
name: "this"
|
||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
@@ -32,7 +32,7 @@ new FormModel {
|
|||||||
add( new FormComponent( "javax.swing.JFileChooser" ) {
|
add( new FormComponent( "javax.swing.JFileChooser" ) {
|
||||||
name: "fileChooser1"
|
name: "fileChooser1"
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 1,growy"
|
"value": "cell 1 1,growx"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "label1"
|
name: "label1"
|
||||||
|
|||||||
@@ -186,6 +186,8 @@ public class FlatComponentsTest
|
|||||||
JLabel spinnerLabel = new JLabel();
|
JLabel spinnerLabel = new JLabel();
|
||||||
JSpinner spinner1 = new JSpinner();
|
JSpinner spinner1 = new JSpinner();
|
||||||
JSpinner spinner2 = new JSpinner();
|
JSpinner spinner2 = new JSpinner();
|
||||||
|
FlatComponentsTest.ButtonlessSpinner buttonlessSpinner1 = new FlatComponentsTest.ButtonlessSpinner();
|
||||||
|
FlatComponentsTest.ButtonlessSpinner buttonlessSpinner2 = new FlatComponentsTest.ButtonlessSpinner();
|
||||||
JComboBox<String> comboBox7 = new JComboBox<>();
|
JComboBox<String> comboBox7 = new JComboBox<>();
|
||||||
JSpinner spinner3 = new JSpinner();
|
JSpinner spinner3 = new JSpinner();
|
||||||
JLabel textFieldLabel = new JLabel();
|
JLabel textFieldLabel = new JLabel();
|
||||||
@@ -678,6 +680,8 @@ public class FlatComponentsTest
|
|||||||
//---- spinner2 ----
|
//---- spinner2 ----
|
||||||
spinner2.setEnabled(false);
|
spinner2.setEnabled(false);
|
||||||
add(spinner2, "cell 2 6,growx");
|
add(spinner2, "cell 2 6,growx");
|
||||||
|
add(buttonlessSpinner1, "cell 3 6,growx");
|
||||||
|
add(buttonlessSpinner2, "cell 4 6,growx");
|
||||||
|
|
||||||
//---- comboBox7 ----
|
//---- comboBox7 ----
|
||||||
comboBox7.setEditable(true);
|
comboBox7.setEditable(true);
|
||||||
@@ -1427,4 +1431,22 @@ public class FlatComponentsTest
|
|||||||
setBorder( null );
|
setBorder( null );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---- class ButtonlessSpinner --------------------------------------------
|
||||||
|
|
||||||
|
private static class ButtonlessSpinner
|
||||||
|
extends JSpinner
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void updateUI() {
|
||||||
|
super.updateUI();
|
||||||
|
|
||||||
|
// remove arrow buttons
|
||||||
|
for( Component c : getComponents() ) {
|
||||||
|
String name = c.getName();
|
||||||
|
if( "Spinner.nextButton".equals( name ) || "Spinner.previousButton".equals( name ) )
|
||||||
|
remove( c );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
JFDML JFormDesigner: "7.0.2.0.298" Java: "14" encoding: "UTF-8"
|
JFDML JFormDesigner: "7.0.2.0.298" Java: "15" encoding: "UTF-8"
|
||||||
|
|
||||||
new FormModel {
|
new FormModel {
|
||||||
contentType: "form/swing"
|
contentType: "form/swing"
|
||||||
@@ -456,6 +456,16 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 2 6,growx"
|
"value": "cell 2 6,growx"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "com.formdev.flatlaf.testing.FlatComponentsTest$ButtonlessSpinner" ) {
|
||||||
|
name: "buttonlessSpinner1"
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 3 6,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "com.formdev.flatlaf.testing.FlatComponentsTest$ButtonlessSpinner" ) {
|
||||||
|
name: "buttonlessSpinner2"
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 4 6,growx"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JComboBox" ) {
|
add( new FormComponent( "javax.swing.JComboBox" ) {
|
||||||
name: "comboBox7"
|
name: "comboBox7"
|
||||||
"editable": true
|
"editable": true
|
||||||
|
|||||||
@@ -17,10 +17,12 @@
|
|||||||
package com.formdev.flatlaf.testing;
|
package com.formdev.flatlaf.testing;
|
||||||
|
|
||||||
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_HAS_FULL_BORDER;
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_HAS_FULL_BORDER;
|
||||||
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_CONTENT_SEPARATOR;
|
||||||
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_TAB_SEPARATORS;
|
import static com.formdev.flatlaf.FlatClientProperties.TABBED_PANE_SHOW_TAB_SEPARATORS;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import javax.swing.border.*;
|
import javax.swing.border.*;
|
||||||
|
import com.formdev.flatlaf.util.ScaledImageIcon;
|
||||||
import com.jgoodies.forms.layout.*;
|
import com.jgoodies.forms.layout.*;
|
||||||
import net.miginfocom.swing.*;
|
import net.miginfocom.swing.*;
|
||||||
|
|
||||||
@@ -65,18 +67,24 @@ public class FlatContainerTest
|
|||||||
|
|
||||||
private void showTabSeparatorsChanged() {
|
private void showTabSeparatorsChanged() {
|
||||||
Boolean showTabSeparators = showTabSeparatorsCheckBox.isSelected() ? true : null;
|
Boolean showTabSeparators = showTabSeparatorsCheckBox.isSelected() ? true : null;
|
||||||
tabbedPane1.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
putTabbedPanesClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
||||||
tabbedPane2.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
}
|
||||||
tabbedPane3.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
|
||||||
tabbedPane4.putClientProperty( TABBED_PANE_SHOW_TAB_SEPARATORS, showTabSeparators );
|
private void hideContentSeparatorChanged() {
|
||||||
|
Boolean showContentSeparator = hideContentSeparatorCheckBox.isSelected() ? false : null;
|
||||||
|
putTabbedPanesClientProperty( TABBED_PANE_SHOW_CONTENT_SEPARATOR, showContentSeparator );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void hasFullBorderChanged() {
|
private void hasFullBorderChanged() {
|
||||||
Boolean hasFullBorder = hasFullBorderCheckBox.isSelected() ? true : null;
|
Boolean hasFullBorder = hasFullBorderCheckBox.isSelected() ? true : null;
|
||||||
tabbedPane1.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
putTabbedPanesClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
||||||
tabbedPane2.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
}
|
||||||
tabbedPane3.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
|
||||||
tabbedPane4.putClientProperty( TABBED_PANE_HAS_FULL_BORDER, hasFullBorder );
|
private void putTabbedPanesClientProperty( String key, Object value ) {
|
||||||
|
tabbedPane1.putClientProperty( key, value );
|
||||||
|
tabbedPane2.putClientProperty( key, value );
|
||||||
|
tabbedPane3.putClientProperty( key, value );
|
||||||
|
tabbedPane4.putClientProperty( key, value );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void moreTabsChanged() {
|
private void moreTabsChanged() {
|
||||||
@@ -98,7 +106,7 @@ public class FlatContainerTest
|
|||||||
addTab( tabbedPane, "Tab 8", "tab content 8" );
|
addTab( tabbedPane, "Tab 8", "tab content 8" );
|
||||||
} else {
|
} else {
|
||||||
int tabCount = tabbedPane.getTabCount();
|
int tabCount = tabbedPane.getTabCount();
|
||||||
if( tabCount > 3 ) {
|
if( tabCount > 4 ) {
|
||||||
for( int i = 0; i < 5; i++ )
|
for( int i = 0; i < 5; i++ )
|
||||||
tabbedPane.removeTabAt( tabbedPane.getTabCount() - 1 );
|
tabbedPane.removeTabAt( tabbedPane.getTabCount() - 1 );
|
||||||
}
|
}
|
||||||
@@ -115,6 +123,8 @@ public class FlatContainerTest
|
|||||||
|
|
||||||
addTab( tabbedPane, "Disabled", "tab content 3" );
|
addTab( tabbedPane, "Disabled", "tab content 3" );
|
||||||
tabbedPane.setEnabledAt( 2, false );
|
tabbedPane.setEnabledAt( 2, false );
|
||||||
|
|
||||||
|
tabbedPane.addTab( "Tab 4", new JLabel( "non-opaque content", SwingConstants.CENTER ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -131,6 +141,27 @@ public class FlatContainerTest
|
|||||||
return tab;
|
return tab;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void tabIconsChanged() {
|
||||||
|
boolean showTabIcons = tabIconsCheckBox.isSelected();
|
||||||
|
|
||||||
|
setTabIcons( tabbedPane1, showTabIcons );
|
||||||
|
setTabIcons( tabbedPane2, showTabIcons );
|
||||||
|
setTabIcons( tabbedPane3, showTabIcons );
|
||||||
|
setTabIcons( tabbedPane4, showTabIcons );
|
||||||
|
|
||||||
|
tabIconSizeSpinner.setEnabled( showTabIcons );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setTabIcons( JTabbedPane tabbedPane, boolean showTabIcons ) {
|
||||||
|
Object iconSize = tabIconSizeSpinner.getValue();
|
||||||
|
|
||||||
|
Icon icon = showTabIcons
|
||||||
|
? new ScaledImageIcon( new ImageIcon( getClass().getResource( "/com/formdev/flatlaf/testing/test" + iconSize + ".png" ) ) )
|
||||||
|
: null;
|
||||||
|
tabbedPane.setIconAt( 0, icon );
|
||||||
|
tabbedPane.setIconAt( 1, icon );
|
||||||
|
}
|
||||||
|
|
||||||
private void initComponents() {
|
private void initComponents() {
|
||||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||||
JPanel panel9 = new JPanel();
|
JPanel panel9 = new JPanel();
|
||||||
@@ -153,7 +184,10 @@ public class FlatContainerTest
|
|||||||
moreTabsCheckBox = new JCheckBox();
|
moreTabsCheckBox = new JCheckBox();
|
||||||
tabScrollCheckBox = new JCheckBox();
|
tabScrollCheckBox = new JCheckBox();
|
||||||
showTabSeparatorsCheckBox = new JCheckBox();
|
showTabSeparatorsCheckBox = new JCheckBox();
|
||||||
|
hideContentSeparatorCheckBox = new JCheckBox();
|
||||||
hasFullBorderCheckBox = new JCheckBox();
|
hasFullBorderCheckBox = new JCheckBox();
|
||||||
|
tabIconsCheckBox = new JCheckBox();
|
||||||
|
tabIconSizeSpinner = new JSpinner();
|
||||||
CellConstraints cc = new CellConstraints();
|
CellConstraints cc = new CellConstraints();
|
||||||
|
|
||||||
//======== this ========
|
//======== this ========
|
||||||
@@ -262,7 +296,10 @@ public class FlatContainerTest
|
|||||||
"[]" +
|
"[]" +
|
||||||
"[]" +
|
"[]" +
|
||||||
"[]" +
|
"[]" +
|
||||||
"[]",
|
"[fill]" +
|
||||||
|
"[]" +
|
||||||
|
"[fill]" +
|
||||||
|
"[fill]",
|
||||||
// rows
|
// rows
|
||||||
"[center]"));
|
"[center]"));
|
||||||
|
|
||||||
@@ -283,10 +320,26 @@ public class FlatContainerTest
|
|||||||
showTabSeparatorsCheckBox.addActionListener(e -> showTabSeparatorsChanged());
|
showTabSeparatorsCheckBox.addActionListener(e -> showTabSeparatorsChanged());
|
||||||
panel14.add(showTabSeparatorsCheckBox, "cell 2 0");
|
panel14.add(showTabSeparatorsCheckBox, "cell 2 0");
|
||||||
|
|
||||||
|
//---- hideContentSeparatorCheckBox ----
|
||||||
|
hideContentSeparatorCheckBox.setText("Hide content separator");
|
||||||
|
hideContentSeparatorCheckBox.addActionListener(e -> hideContentSeparatorChanged());
|
||||||
|
panel14.add(hideContentSeparatorCheckBox, "cell 3 0");
|
||||||
|
|
||||||
//---- hasFullBorderCheckBox ----
|
//---- hasFullBorderCheckBox ----
|
||||||
hasFullBorderCheckBox.setText("Show content border");
|
hasFullBorderCheckBox.setText("Show content border");
|
||||||
hasFullBorderCheckBox.addActionListener(e -> hasFullBorderChanged());
|
hasFullBorderCheckBox.addActionListener(e -> hasFullBorderChanged());
|
||||||
panel14.add(hasFullBorderCheckBox, "cell 3 0,alignx left,growx 0");
|
panel14.add(hasFullBorderCheckBox, "cell 4 0,alignx left,growx 0");
|
||||||
|
|
||||||
|
//---- tabIconsCheckBox ----
|
||||||
|
tabIconsCheckBox.setText("Tab icons");
|
||||||
|
tabIconsCheckBox.addActionListener(e -> tabIconsChanged());
|
||||||
|
panel14.add(tabIconsCheckBox, "cell 5 0");
|
||||||
|
|
||||||
|
//---- tabIconSizeSpinner ----
|
||||||
|
tabIconSizeSpinner.setModel(new SpinnerListModel(new String[] {"16", "24", "32", "48", "64"}));
|
||||||
|
tabIconSizeSpinner.setEnabled(false);
|
||||||
|
tabIconSizeSpinner.addChangeListener(e -> tabIconsChanged());
|
||||||
|
panel14.add(tabIconSizeSpinner, "cell 6 0");
|
||||||
}
|
}
|
||||||
panel9.add(panel14, cc.xywh(1, 11, 3, 1));
|
panel9.add(panel14, cc.xywh(1, 11, 3, 1));
|
||||||
}
|
}
|
||||||
@@ -302,7 +355,10 @@ public class FlatContainerTest
|
|||||||
private JCheckBox moreTabsCheckBox;
|
private JCheckBox moreTabsCheckBox;
|
||||||
private JCheckBox tabScrollCheckBox;
|
private JCheckBox tabScrollCheckBox;
|
||||||
private JCheckBox showTabSeparatorsCheckBox;
|
private JCheckBox showTabSeparatorsCheckBox;
|
||||||
|
private JCheckBox hideContentSeparatorCheckBox;
|
||||||
private JCheckBox hasFullBorderCheckBox;
|
private JCheckBox hasFullBorderCheckBox;
|
||||||
|
private JCheckBox tabIconsCheckBox;
|
||||||
|
private JSpinner tabIconSizeSpinner;
|
||||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||||
|
|
||||||
//---- class Tab1Panel ----------------------------------------------------
|
//---- class Tab1Panel ----------------------------------------------------
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
JFDML JFormDesigner: "7.0.2.0.298" Java: "14" encoding: "UTF-8"
|
JFDML JFormDesigner: "7.0.2.0.298" Java: "15" encoding: "UTF-8"
|
||||||
|
|
||||||
new FormModel {
|
new FormModel {
|
||||||
contentType: "form/swing"
|
contentType: "form/swing"
|
||||||
@@ -131,7 +131,7 @@ new FormModel {
|
|||||||
} )
|
} )
|
||||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
"$layoutConstraints": "insets 0,hidemode 3"
|
"$layoutConstraints": "insets 0,hidemode 3"
|
||||||
"$columnConstraints": "[][][][]"
|
"$columnConstraints": "[][][][fill][][fill][fill]"
|
||||||
"$rowConstraints": "[center]"
|
"$rowConstraints": "[center]"
|
||||||
} ) {
|
} ) {
|
||||||
name: "panel14"
|
name: "panel14"
|
||||||
@@ -168,6 +168,16 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 2 0"
|
"value": "cell 2 0"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
|
name: "hideContentSeparatorCheckBox"
|
||||||
|
"text": "Hide content separator"
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hideContentSeparatorChanged", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 3 0"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
name: "hasFullBorderCheckBox"
|
name: "hasFullBorderCheckBox"
|
||||||
"text": "Show content border"
|
"text": "Show content border"
|
||||||
@@ -176,7 +186,36 @@ new FormModel {
|
|||||||
}
|
}
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hasFullBorderChanged", false ) )
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "hasFullBorderChanged", false ) )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 3 0,alignx left,growx 0"
|
"value": "cell 4 0,alignx left,growx 0"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
|
name: "tabIconsCheckBox"
|
||||||
|
"text": "Tab icons"
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "tabIconsChanged", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 0"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JSpinner" ) {
|
||||||
|
name: "tabIconSizeSpinner"
|
||||||
|
"model": new javax.swing.SpinnerListModel {
|
||||||
|
list: new java.util.ArrayList {
|
||||||
|
add( "16" )
|
||||||
|
add( "24" )
|
||||||
|
add( "32" )
|
||||||
|
add( "48" )
|
||||||
|
add( "64" )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"enabled": false
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
addEvent( new FormEvent( "javax.swing.event.ChangeListener", "stateChanged", "tabIconsChanged", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 6 0"
|
||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( class com.jgoodies.forms.layout.CellConstraints ) {
|
}, new FormLayoutConstraints( class com.jgoodies.forms.layout.CellConstraints ) {
|
||||||
"gridY": 11
|
"gridY": 11
|
||||||
@@ -187,7 +226,7 @@ new FormModel {
|
|||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( null ) {
|
}, new FormLayoutConstraints( null ) {
|
||||||
"location": new java.awt.Point( 0, 0 )
|
"location": new java.awt.Point( 0, 0 )
|
||||||
"size": new java.awt.Dimension( 625, 515 )
|
"size": new java.awt.Dimension( 810, 515 )
|
||||||
} )
|
} )
|
||||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
"$layoutConstraints": "hidemode 3,align center center"
|
"$layoutConstraints": "hidemode 3,align center center"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user