mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 22:47:13 -06:00
Compare commits
55 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f40ab130e | ||
|
|
7489526eb7 | ||
|
|
e439d91763 | ||
|
|
793969e39b | ||
|
|
9f7ffe8d77 | ||
|
|
eecb867227 | ||
|
|
bff9f135e6 | ||
|
|
03627281d7 | ||
|
|
c83b4093f0 | ||
|
|
7f9f22df3e | ||
|
|
fd48582a9f | ||
|
|
e5761128f9 | ||
|
|
87dd5a9ebb | ||
|
|
f2ddfadc9d | ||
|
|
b1a7983f18 | ||
|
|
b319cb278b | ||
|
|
78e3d781fc | ||
|
|
34834917b0 | ||
|
|
9446c287e9 | ||
|
|
31b0cf396e | ||
|
|
00bb13c230 | ||
|
|
3bf09ee731 | ||
|
|
5b07941c4c | ||
|
|
23c30ec46d | ||
|
|
22c06300f1 | ||
|
|
37cca1b106 | ||
|
|
f0a49c806e | ||
|
|
a1d5f65588 | ||
|
|
b6789e14a4 | ||
|
|
c72ee30a25 | ||
|
|
686d667c4f | ||
|
|
26d603db5d | ||
|
|
409840aef9 | ||
|
|
1f3c264afe | ||
|
|
cd69d9a1a7 | ||
|
|
a000c8fd99 | ||
|
|
84d05603ef | ||
|
|
9d046ecd1d | ||
|
|
030e1809f3 | ||
|
|
5853bd4a96 | ||
|
|
10695ff51b | ||
|
|
f421659fea | ||
|
|
df4f51eff3 | ||
|
|
7e61d6a850 | ||
|
|
0910bd23c4 | ||
|
|
5a29753912 | ||
|
|
a467356437 | ||
|
|
094967f52a | ||
|
|
757b0812ba | ||
|
|
8f4f5d8c92 | ||
|
|
4e266483ba | ||
|
|
7433dc9cf3 | ||
|
|
409a773e36 | ||
|
|
48bdd5c3df | ||
|
|
5796057a75 |
26
.travis.yml
26
.travis.yml
@@ -19,11 +19,21 @@ before_install:
|
|||||||
- ./gradlew --version
|
- ./gradlew --version
|
||||||
- java -version
|
- java -version
|
||||||
|
|
||||||
deploy:
|
stages:
|
||||||
provider: script
|
- name: test
|
||||||
script: ./gradlew bintrayUpload
|
- name: snapshot
|
||||||
skip_cleanup: true # to upload artifacts created during the build
|
if: branch = master AND type IN (push) AND tag IS blank
|
||||||
on:
|
- name: release
|
||||||
branch: master
|
if: type IN (push) AND tag IS present
|
||||||
jdk: openjdk11
|
|
||||||
tags: true
|
jobs:
|
||||||
|
include:
|
||||||
|
# publish snapshot to oss.jfrog.org
|
||||||
|
- stage: snapshot
|
||||||
|
jdk: openjdk11
|
||||||
|
script: ./gradlew artifactoryPublish
|
||||||
|
|
||||||
|
# release a new stable version to bintray
|
||||||
|
- stage: release
|
||||||
|
jdk: openjdk11
|
||||||
|
script: ./gradlew bintrayUpload -Drelease=true
|
||||||
|
|||||||
40
CHANGELOG.md
40
CHANGELOG.md
@@ -1,6 +1,46 @@
|
|||||||
FlatLaf Change Log
|
FlatLaf Change Log
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
## 0.27
|
||||||
|
|
||||||
|
- Support `JInternalFrame` and `JDesktopPane`. (issues #39 and #11)
|
||||||
|
- Table: Support positioning the column sort arrow in header right, left, top or
|
||||||
|
bottom. (issue #34)
|
||||||
|
- ProgressBar: Fixed visual artifacts in indeterminate mode, on HiDPI screens at
|
||||||
|
125%, 150% and 175% scaling, when the progress moves around.
|
||||||
|
- TabbedPane: New option to allow tab separators to take full height (to enable
|
||||||
|
use `UIManager.put( "TabbedPane.tabSeparatorsFullHeight", true );`). (issue
|
||||||
|
#59, PR #62)
|
||||||
|
- CheckBox and RadioButton: Do not fill background if `contentAreaFilled` is
|
||||||
|
`false`. (issue #58, PR #63)
|
||||||
|
- ToggleButton: Make toggle button square if it has an icon but no text or text
|
||||||
|
is "..." or a single character.
|
||||||
|
- ToolBar: No longer use special rollover border for buttons in toolbar. (issue
|
||||||
|
#36)
|
||||||
|
- ToolBar: Added empty space around buttons in toolbar and toolbar itself (see
|
||||||
|
UI default values `Button.toolbar.spacingInsets` and `ToolBar.borderMargins`).
|
||||||
|
(issue #56)
|
||||||
|
- Fixed "illegal reflective access operation" warning on macOS when using Java
|
||||||
|
12 or later. (issue #60, PR #61)
|
||||||
|
|
||||||
|
|
||||||
|
## 0.26
|
||||||
|
|
||||||
|
- Menus:
|
||||||
|
- Changed menu bar and popup menu background colors (made brighter in light
|
||||||
|
themes and darker in dark themes).
|
||||||
|
- Highlight items in menu bar on mouse hover. (issue #49)
|
||||||
|
- Popup menus now have empty space at the top and bottom.
|
||||||
|
- Menu items now have larger left and right margins.
|
||||||
|
- Made `JMenu`, `JMenuItem`, `JCheckBoxMenuItem` and `JRadioButtonMenuItem`
|
||||||
|
non-opaque.
|
||||||
|
- TextField, FormattedTextField and PasswordField: Select all text when a text
|
||||||
|
field gains focus for the first time and selection was not set explicitly.
|
||||||
|
This can be configured to newer or always select all text on focus gain (see
|
||||||
|
UI default value `TextComponent.selectAllOnFocusPolicy`).
|
||||||
|
- ProgressBar: Made progress bar paint smooth in indeterminate mode.
|
||||||
|
|
||||||
|
|
||||||
## 0.25.1
|
## 0.25.1
|
||||||
|
|
||||||
Re-release of 0.25 because of problems with Maven Central.
|
Re-release of 0.25 because of problems with Maven Central.
|
||||||
|
|||||||
27
README.md
27
README.md
@@ -45,13 +45,26 @@ build script:
|
|||||||
|
|
||||||
groupId: com.formdev
|
groupId: com.formdev
|
||||||
artifactId: flatlaf
|
artifactId: flatlaf
|
||||||
version: 0.25.1
|
version: (see button below)
|
||||||
|
|
||||||
Otherwise download `flatlaf-<version>.jar` here:
|
Otherwise download `flatlaf-<version>.jar` here:
|
||||||
|
|
||||||
[](https://bintray.com/jformdesigner/flatlaf/flatlaf/_latestVersion)
|
[](https://bintray.com/jformdesigner/flatlaf/flatlaf/_latestVersion)
|
||||||
|
|
||||||
|
|
||||||
|
### Snapshots
|
||||||
|
|
||||||
|
FlatLaf snapshot binaries are available in
|
||||||
|
[JFrog Artifactory](https://oss.jfrog.org/artifactory/oss-snapshot-local/com/formdev/).
|
||||||
|
To access the latest snapshot, change the FlatLaf version(s) in the dependencies
|
||||||
|
to `<version>-SNAPSHOT` (e.g. `0.27-SNAPSHOT`) and add the repository
|
||||||
|
`https://oss.jfrog.org/artifactory/oss-snapshot-local` to your build (see
|
||||||
|
[Maven](https://maven.apache.org/guides/mini/guide-multiple-repositories.html)
|
||||||
|
and
|
||||||
|
[Gradle](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:declaring_custom_repository)
|
||||||
|
docs).
|
||||||
|
|
||||||
|
|
||||||
Addons
|
Addons
|
||||||
------
|
------
|
||||||
|
|
||||||
@@ -59,6 +72,18 @@ Addons
|
|||||||
- [JIDE Common Layer](flatlaf-jide-oss)
|
- [JIDE Common Layer](flatlaf-jide-oss)
|
||||||
|
|
||||||
|
|
||||||
|
Projects using FlatLaf
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
- [NetBeans](https://netbeans.apache.org/) 11.3
|
||||||
|
- [jclasslib bytecode viewer](https://github.com/ingokegel/jclasslib) 5.5
|
||||||
|
- [j-lawyer](https://github.com/jlawyerorg/j-lawyer-org)
|
||||||
|
- [Rest Suite](https://github.com/supanadit/restsuite)
|
||||||
|
- [ControllerBuddy](https://github.com/bwRavencl/ControllerBuddy)
|
||||||
|
- [SpringRemote](https://github.com/HaleyWang/SpringRemote)
|
||||||
|
- and more...
|
||||||
|
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
|||||||
@@ -14,9 +14,14 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = "0.25.1"
|
val releaseVersion = "0.27"
|
||||||
|
val developmentVersion = "0.28-SNAPSHOT"
|
||||||
|
|
||||||
|
version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
|
version = rootProject.version
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
@@ -33,3 +38,39 @@ println( "FlatLaf Version: ${version}" )
|
|||||||
println( "Gradle ${gradle.gradleVersion} at ${gradle.gradleHomeDir}" )
|
println( "Gradle ${gradle.gradleVersion} at ${gradle.gradleHomeDir}" )
|
||||||
println( "Java ${System.getProperty( "java.version" )}" )
|
println( "Java ${System.getProperty( "java.version" )}" )
|
||||||
println()
|
println()
|
||||||
|
|
||||||
|
|
||||||
|
extra["bintray.user"] = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
||||||
|
extra["bintray.key"] = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
||||||
|
|
||||||
|
// if true, do not upload to bintray
|
||||||
|
extra["bintray.dryRun"] = false
|
||||||
|
|
||||||
|
// if true, uploaded artifacts are visible to all
|
||||||
|
// if false, only visible to owner when logged into bintray
|
||||||
|
extra["bintray.publish"] = true
|
||||||
|
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
tasks {
|
||||||
|
withType<JavaCompile>().configureEach {
|
||||||
|
sourceCompatibility = "1.8"
|
||||||
|
targetCompatibility = "1.8"
|
||||||
|
|
||||||
|
options.encoding = "ISO-8859-1"
|
||||||
|
}
|
||||||
|
|
||||||
|
withType<Jar>().configureEach {
|
||||||
|
// manifest for all created JARs
|
||||||
|
manifest.attributes(mapOf(
|
||||||
|
"Implementation-Vendor" to "FormDev Software GmbH",
|
||||||
|
"Implementation-Copyright" to "Copyright (C) ${java.time.LocalDate.now().year} FormDev Software GmbH. All rights reserved.",
|
||||||
|
"Implementation-Version" to project.version))
|
||||||
|
|
||||||
|
// add META-INF/LICENSE to all created JARs
|
||||||
|
from("${rootDir}/LICENSE") {
|
||||||
|
into("META-INF")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -14,12 +14,11 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
|
if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
|
||||||
@@ -34,11 +33,6 @@ if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
assemble {
|
assemble {
|
||||||
dependsOn(
|
dependsOn(
|
||||||
@@ -53,7 +47,7 @@ tasks {
|
|||||||
targetCompatibility = "9"
|
targetCompatibility = "9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
archiveBaseName.set( "flatlaf" )
|
archiveBaseName.set( "flatlaf" )
|
||||||
|
|
||||||
@@ -68,6 +62,7 @@ tasks {
|
|||||||
options {
|
options {
|
||||||
this as StandardJavadocDocletOptions
|
this as StandardJavadocDocletOptions
|
||||||
tags = listOf( "uiDefault", "clientProperty" )
|
tags = listOf( "uiDefault", "clientProperty" )
|
||||||
|
addStringOption( "Xdoclint:all,-missing", "-Xdoclint:all,-missing" )
|
||||||
}
|
}
|
||||||
isFailOnError = false
|
isFailOnError = false
|
||||||
}
|
}
|
||||||
@@ -127,8 +122,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -142,6 +137,29 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
artifactory {
|
||||||
|
setContextUrl( "https://oss.jfrog.org" )
|
||||||
|
|
||||||
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
|
} )
|
||||||
|
|
||||||
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
invokeMethod( "publications", "maven" )
|
||||||
|
setProperty( "publishArtifacts", true )
|
||||||
|
setProperty( "publishPom", true )
|
||||||
|
} )
|
||||||
|
} )
|
||||||
|
|
||||||
|
resolve( delegateClosureOf<org.jfrog.gradle.plugin.artifactory.dsl.ResolverConfig> {
|
||||||
|
setProperty( "repoKey", "jcenter" )
|
||||||
|
} )
|
||||||
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ public interface FlatClientProperties
|
|||||||
* <p>
|
* <p>
|
||||||
* <strong>Components</strong> {@link javax.swing.JToggleButton}
|
* <strong>Components</strong> {@link javax.swing.JToggleButton}
|
||||||
*
|
*
|
||||||
* @see #TOGGLE_BUTTON_TYPE
|
* @see #BUTTON_TYPE
|
||||||
*/
|
*/
|
||||||
String BUTTON_TYPE_TAB = "tab";
|
String BUTTON_TYPE_TAB = "tab";
|
||||||
|
|
||||||
@@ -141,10 +141,44 @@ public interface FlatClientProperties
|
|||||||
*/
|
*/
|
||||||
String TABBED_PANE_TAB_HEIGHT = "JTabbedPane.tabHeight";
|
String TABBED_PANE_TAB_HEIGHT = "JTabbedPane.tabHeight";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies whether all text is selected when the text component gains focus.
|
||||||
|
* <p>
|
||||||
|
* <strong>Component</strong> {@link javax.swing.JTextField} (and subclasses)<br>
|
||||||
|
* <strong>Value type</strong> {@link java.lang.String}<br>
|
||||||
|
* <strong>Allowed Values</strong> {@link #SELECT_ALL_ON_FOCUS_POLICY_NEVER},
|
||||||
|
* {@link #SELECT_ALL_ON_FOCUS_POLICY_ONCE} (default) or
|
||||||
|
* {@link #SELECT_ALL_ON_FOCUS_POLICY_ALWAYS}
|
||||||
|
*/
|
||||||
|
String SELECT_ALL_ON_FOCUS_POLICY = "JTextField.selectAllOnFocusPolicy";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Never select all text when the text component gains focus.
|
||||||
|
*
|
||||||
|
* @see #SELECT_ALL_ON_FOCUS_POLICY
|
||||||
|
*/
|
||||||
|
String SELECT_ALL_ON_FOCUS_POLICY_NEVER = "never";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Select all text when the text component gains focus for the first time
|
||||||
|
* and selection was not modified (is at end of text).
|
||||||
|
* This is the default.
|
||||||
|
*
|
||||||
|
* @see #SELECT_ALL_ON_FOCUS_POLICY
|
||||||
|
*/
|
||||||
|
String SELECT_ALL_ON_FOCUS_POLICY_ONCE = "once";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Always select all text when the text component gains focus.
|
||||||
|
*
|
||||||
|
* @see #SELECT_ALL_ON_FOCUS_POLICY
|
||||||
|
*/
|
||||||
|
String SELECT_ALL_ON_FOCUS_POLICY_ALWAYS = "always";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Placeholder text that is only painted if the text field is empty.
|
* Placeholder text that is only painted if the text field is empty.
|
||||||
* <p>
|
* <p>
|
||||||
* <strong>Component</strong> {@link javax.swing.JTextField} or {@link javax.swing.JComboBox}<br>
|
* <strong>Component</strong> {@link javax.swing.JTextField} (and subclasses) or {@link javax.swing.JComboBox}<br>
|
||||||
* <strong>Value type</strong> {@link java.lang.String}
|
* <strong>Value type</strong> {@link java.lang.String}
|
||||||
*/
|
*/
|
||||||
String PLACEHOLDER_TEXT = "JTextField.placeholderText";
|
String PLACEHOLDER_TEXT = "JTextField.placeholderText";
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ import java.awt.event.KeyEvent;
|
|||||||
import java.beans.PropertyChangeEvent;
|
import java.beans.PropertyChangeEvent;
|
||||||
import java.beans.PropertyChangeListener;
|
import java.beans.PropertyChangeListener;
|
||||||
import java.lang.ref.WeakReference;
|
import java.lang.ref.WeakReference;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
@@ -194,7 +195,11 @@ public abstract class FlatLaf
|
|||||||
// use Mac Aqua LaF as base
|
// use Mac Aqua LaF as base
|
||||||
String aquaLafClassName = "com.apple.laf.AquaLookAndFeel";
|
String aquaLafClassName = "com.apple.laf.AquaLookAndFeel";
|
||||||
try {
|
try {
|
||||||
base = (BasicLookAndFeel) Class.forName( aquaLafClassName ).newInstance();
|
if( SystemInfo.IS_JAVA_9_OR_LATER ) {
|
||||||
|
Method m = UIManager.class.getMethod( "createLookAndFeel", String.class );
|
||||||
|
base = (BasicLookAndFeel) m.invoke( null, "Mac OS X" );
|
||||||
|
} else
|
||||||
|
base = (BasicLookAndFeel) Class.forName( aquaLafClassName ).newInstance();
|
||||||
} catch( Exception ex ) {
|
} catch( Exception ex ) {
|
||||||
LOG.log( Level.SEVERE, "FlatLaf: Failed to initialize base look and feel '" + aquaLafClassName + "'.", ex );
|
LOG.log( Level.SEVERE, "FlatLaf: Failed to initialize base look and feel '" + aquaLafClassName + "'.", ex );
|
||||||
throw new IllegalStateException();
|
throw new IllegalStateException();
|
||||||
@@ -294,10 +299,9 @@ public abstract class FlatLaf
|
|||||||
|
|
||||||
// override fonts
|
// override fonts
|
||||||
for( Object key : defaults.keySet() ) {
|
for( Object key : defaults.keySet() ) {
|
||||||
if( key instanceof String && ((String)key).endsWith( ".font" ) )
|
if( key instanceof String && (((String)key).endsWith( ".font" ) || ((String)key).endsWith( "Font" )) )
|
||||||
defaults.put( key, uiFont );
|
defaults.put( key, uiFont );
|
||||||
}
|
}
|
||||||
defaults.put( "MenuItem.acceleratorFont", uiFont );
|
|
||||||
|
|
||||||
// use smaller font for progress bar
|
// use smaller font for progress bar
|
||||||
defaults.put( "ProgressBar.font", UIScale.scaleFont( uiFont, 0.85f ) );
|
defaults.put( "ProgressBar.font", UIScale.scaleFont( uiFont, 0.85f ) );
|
||||||
|
|||||||
@@ -221,7 +221,8 @@ class UIDefaultsLoader
|
|||||||
return resolveValue( properties, newValue );
|
return resolveValue( properties, newValue );
|
||||||
}
|
}
|
||||||
|
|
||||||
private enum ValueType { UNKNOWN, STRING, INTEGER, FLOAT, BORDER, ICON, INSETS, DIMENSION, COLOR, SCALEDINTEGER, INSTANCE, CLASS }
|
private enum ValueType { UNKNOWN, STRING, CHARACTER, INTEGER, FLOAT, BORDER, ICON, INSETS, DIMENSION, COLOR,
|
||||||
|
SCALEDINTEGER, SCALEDFLOAT, SCALEDINSETS, SCALEDDIMENSION, INSTANCE, CLASS }
|
||||||
|
|
||||||
static Object parseValue( String key, String value ) {
|
static Object parseValue( String key, String value ) {
|
||||||
return parseValue( key, value, v -> v, Collections.emptyList() );
|
return parseValue( key, value, v -> v, Collections.emptyList() );
|
||||||
@@ -284,6 +285,8 @@ class UIDefaultsLoader
|
|||||||
valueType = ValueType.DIMENSION;
|
valueType = ValueType.DIMENSION;
|
||||||
else if( key.endsWith( "Width" ) || key.endsWith( "Height" ) )
|
else if( key.endsWith( "Width" ) || key.endsWith( "Height" ) )
|
||||||
valueType = ValueType.INTEGER;
|
valueType = ValueType.INTEGER;
|
||||||
|
else if( key.endsWith( "Char" ) )
|
||||||
|
valueType = ValueType.CHARACTER;
|
||||||
else if( key.endsWith( "UI" ) )
|
else if( key.endsWith( "UI" ) )
|
||||||
valueType = ValueType.STRING;
|
valueType = ValueType.STRING;
|
||||||
}
|
}
|
||||||
@@ -291,6 +294,7 @@ class UIDefaultsLoader
|
|||||||
// parse value
|
// parse value
|
||||||
switch( valueType ) {
|
switch( valueType ) {
|
||||||
case STRING: return value;
|
case STRING: return value;
|
||||||
|
case CHARACTER: return parseCharacter( value );
|
||||||
case INTEGER: return parseInteger( value, true );
|
case INTEGER: return parseInteger( value, true );
|
||||||
case FLOAT: return parseFloat( value, true );
|
case FLOAT: return parseFloat( value, true );
|
||||||
case BORDER: return parseBorder( value, resolver, addonClassLoaders );
|
case BORDER: return parseBorder( value, resolver, addonClassLoaders );
|
||||||
@@ -299,6 +303,9 @@ class UIDefaultsLoader
|
|||||||
case DIMENSION: return parseDimension( value );
|
case DIMENSION: return parseDimension( value );
|
||||||
case COLOR: return parseColorOrFunction( value, resolver, true );
|
case COLOR: return parseColorOrFunction( value, resolver, true );
|
||||||
case SCALEDINTEGER: return parseScaledInteger( value );
|
case SCALEDINTEGER: return parseScaledInteger( value );
|
||||||
|
case SCALEDFLOAT: return parseScaledFloat( value );
|
||||||
|
case SCALEDINSETS: return parseScaledInsets( value );
|
||||||
|
case SCALEDDIMENSION:return parseScaledDimension( value );
|
||||||
case INSTANCE: return parseInstance( value, addonClassLoaders );
|
case INSTANCE: return parseInstance( value, addonClassLoaders );
|
||||||
case CLASS: return parseClass( value, addonClassLoaders );
|
case CLASS: return parseClass( value, addonClassLoaders );
|
||||||
case UNKNOWN:
|
case UNKNOWN:
|
||||||
@@ -595,6 +602,12 @@ class UIDefaultsLoader
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Character parseCharacter( String value ) {
|
||||||
|
if( value.length() != 1 )
|
||||||
|
throw new IllegalArgumentException( "invalid character '" + value + "'" );
|
||||||
|
return value.charAt( 0 );
|
||||||
|
}
|
||||||
|
|
||||||
private static Integer parseInteger( String value, int min, int max ) {
|
private static Integer parseInteger( String value, int min, int max ) {
|
||||||
Integer integer = parseInteger( value, true );
|
Integer integer = parseInteger( value, true );
|
||||||
if( integer.intValue() < min || integer.intValue() > max )
|
if( integer.intValue() < min || integer.intValue() > max )
|
||||||
@@ -629,6 +642,27 @@ class UIDefaultsLoader
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static ActiveValue parseScaledFloat( String value ) {
|
||||||
|
float val = parseFloat( value, true );
|
||||||
|
return (ActiveValue) t -> {
|
||||||
|
return UIScale.scale( val );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ActiveValue parseScaledInsets( String value ) {
|
||||||
|
Insets insets = parseInsets( value );
|
||||||
|
return (ActiveValue) t -> {
|
||||||
|
return UIScale.scale( insets );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ActiveValue parseScaledDimension( String value ) {
|
||||||
|
Dimension dimension = parseDimension( value );
|
||||||
|
return (ActiveValue) t -> {
|
||||||
|
return UIScale.scale( dimension );
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Split string and trim parts.
|
* Split string and trim parts.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ public class FlatAscendingSortIcon
|
|||||||
g.setColor( sortIconColor );
|
g.setColor( sortIconColor );
|
||||||
if( chevron ) {
|
if( chevron ) {
|
||||||
// chevron arrow
|
// chevron arrow
|
||||||
Path2D path = FlatUIUtils.createPath( false, 1,5, 5,1, 9,5 );
|
Path2D path = FlatUIUtils.createPath( false, 1,4, 5,0, 9,4 );
|
||||||
g.setStroke( new BasicStroke( 1f ) );
|
g.setStroke( new BasicStroke( 1f ) );
|
||||||
g.draw( path );
|
g.draw( path );
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ public class FlatDescendingSortIcon
|
|||||||
g.setColor( sortIconColor );
|
g.setColor( sortIconColor );
|
||||||
if( chevron ) {
|
if( chevron ) {
|
||||||
// chevron arrow
|
// chevron arrow
|
||||||
Path2D path = FlatUIUtils.createPath( false, 1,1, 5,5, 9,1 );
|
Path2D path = FlatUIUtils.createPath( false, 1,0, 5,4, 9,0 );
|
||||||
g.setStroke( new BasicStroke( 1f ) );
|
g.setStroke( new BasicStroke( 1f ) );
|
||||||
g.draw( path );
|
g.draw( path );
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -0,0 +1,60 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2019 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.icons;
|
||||||
|
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Component;
|
||||||
|
import java.awt.Dimension;
|
||||||
|
import java.awt.Graphics2D;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import com.formdev.flatlaf.ui.FlatButtonUI;
|
||||||
|
import com.formdev.flatlaf.ui.FlatUIUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for internal frame icons.
|
||||||
|
*
|
||||||
|
* @uiDefault InternalFrame.buttonHoverBackground Color
|
||||||
|
* @uiDefault InternalFrame.buttonPressedBackground Color
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public abstract class FlatInternalFrameAbstractIcon
|
||||||
|
extends FlatAbstractIcon
|
||||||
|
{
|
||||||
|
private final Color hoverBackground;
|
||||||
|
private final Color pressedBackground;
|
||||||
|
|
||||||
|
public FlatInternalFrameAbstractIcon() {
|
||||||
|
this( UIManager.getDimension( "InternalFrame.buttonSize" ),
|
||||||
|
UIManager.getColor( "InternalFrame.buttonHoverBackground" ),
|
||||||
|
UIManager.getColor( "InternalFrame.buttonPressedBackground" ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
public FlatInternalFrameAbstractIcon( Dimension size, Color hoverBackground, Color pressedBackground ) {
|
||||||
|
super( size.width, size.height, null );
|
||||||
|
this.hoverBackground = hoverBackground;
|
||||||
|
this.pressedBackground = pressedBackground;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void paintBackground( Component c, Graphics2D g ) {
|
||||||
|
Color background = FlatButtonUI.buttonStateColor( c, null, null, null, hoverBackground, pressedBackground );
|
||||||
|
if( background != null ) {
|
||||||
|
FlatUIUtils.setColor( g, background, c.getBackground() );
|
||||||
|
g.fillRect( 0, 0, width, height );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,30 +17,42 @@
|
|||||||
package com.formdev.flatlaf.icons;
|
package com.formdev.flatlaf.icons;
|
||||||
|
|
||||||
import java.awt.BasicStroke;
|
import java.awt.BasicStroke;
|
||||||
|
import java.awt.Color;
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
import java.awt.geom.Line2D;
|
import java.awt.geom.Line2D;
|
||||||
import java.awt.geom.Path2D;
|
import java.awt.geom.Path2D;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
|
import com.formdev.flatlaf.ui.FlatButtonUI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* "close" icon for {@link javax.swing.JInternalFrame}.
|
* "close" icon for {@link javax.swing.JInternalFrame}.
|
||||||
*
|
*
|
||||||
* @uiDefault InternalFrame.iconColor Color
|
* @uiDefault InternalFrame.buttonHoverBackground Color
|
||||||
|
* @uiDefault InternalFrame.buttonPressedBackground Color
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatInternalFrameCloseIcon
|
public class FlatInternalFrameCloseIcon
|
||||||
extends FlatAbstractIcon
|
extends FlatInternalFrameAbstractIcon
|
||||||
{
|
{
|
||||||
|
private final Color hoverForeground = UIManager.getColor( "InternalFrame.closeHoverForeground" );
|
||||||
|
private final Color pressedForeground = UIManager.getColor( "InternalFrame.closePressedForeground" );
|
||||||
|
|
||||||
public FlatInternalFrameCloseIcon() {
|
public FlatInternalFrameCloseIcon() {
|
||||||
super( 16, 16, UIManager.getColor( "InternalFrame.iconColor" ) );
|
super( UIManager.getDimension( "InternalFrame.buttonSize" ),
|
||||||
|
UIManager.getColor( "InternalFrame.closeHoverBackground" ),
|
||||||
|
UIManager.getColor( "InternalFrame.closePressedBackground" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintIcon( Component c, Graphics2D g ) {
|
protected void paintIcon( Component c, Graphics2D g ) {
|
||||||
float mx = 8;
|
paintBackground( c, g );
|
||||||
float my = 8;
|
|
||||||
|
g.setColor( FlatButtonUI.buttonStateColor( c, c.getForeground(), null, null, hoverForeground, pressedForeground ) );
|
||||||
|
|
||||||
|
float mx = width / 2;
|
||||||
|
float my = height / 2;
|
||||||
float r = 3.25f;
|
float r = 3.25f;
|
||||||
|
|
||||||
Path2D path = new Path2D.Float( Path2D.WIND_EVEN_ODD );
|
Path2D path = new Path2D.Float( Path2D.WIND_EVEN_ODD );
|
||||||
|
|||||||
@@ -18,24 +18,23 @@ package com.formdev.flatlaf.icons;
|
|||||||
|
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
import javax.swing.UIManager;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* "iconify" icon for {@link javax.swing.JInternalFrame}.
|
* "iconify" icon for {@link javax.swing.JInternalFrame}.
|
||||||
*
|
*
|
||||||
* @uiDefault InternalFrame.iconColor Color
|
|
||||||
*
|
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatInternalFrameIconifyIcon
|
public class FlatInternalFrameIconifyIcon
|
||||||
extends FlatAbstractIcon
|
extends FlatInternalFrameAbstractIcon
|
||||||
{
|
{
|
||||||
public FlatInternalFrameIconifyIcon() {
|
public FlatInternalFrameIconifyIcon() {
|
||||||
super( 16, 16, UIManager.getColor( "InternalFrame.iconColor" ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintIcon( Component c, Graphics2D g ) {
|
protected void paintIcon( Component c, Graphics2D g ) {
|
||||||
g.fillRect( 3, 8, 10, 1 );
|
paintBackground( c, g );
|
||||||
|
|
||||||
|
g.setColor( c.getForeground() );
|
||||||
|
g.fillRect( (width / 2) - 4, height / 2, 8, 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,25 +18,24 @@ package com.formdev.flatlaf.icons;
|
|||||||
|
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
import javax.swing.UIManager;
|
|
||||||
import com.formdev.flatlaf.ui.FlatUIUtils;
|
import com.formdev.flatlaf.ui.FlatUIUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* "maximize" icon for {@link javax.swing.JInternalFrame}.
|
* "maximize" icon for {@link javax.swing.JInternalFrame}.
|
||||||
*
|
*
|
||||||
* @uiDefault InternalFrame.iconColor Color
|
|
||||||
*
|
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatInternalFrameMaximizeIcon
|
public class FlatInternalFrameMaximizeIcon
|
||||||
extends FlatAbstractIcon
|
extends FlatInternalFrameAbstractIcon
|
||||||
{
|
{
|
||||||
public FlatInternalFrameMaximizeIcon() {
|
public FlatInternalFrameMaximizeIcon() {
|
||||||
super( 16, 16, UIManager.getColor( "InternalFrame.iconColor" ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintIcon( Component c, Graphics2D g ) {
|
protected void paintIcon( Component c, Graphics2D g ) {
|
||||||
g.fill( FlatUIUtils.createRectangle( 3, 3, 10, 10, 1 ) );
|
paintBackground( c, g );
|
||||||
|
|
||||||
|
g.setColor( c.getForeground() );
|
||||||
|
g.fill( FlatUIUtils.createRectangle( (width / 2) - 4, (height / 2) - 4, 8, 8, 1 ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,30 +21,32 @@ import java.awt.Graphics2D;
|
|||||||
import java.awt.geom.Area;
|
import java.awt.geom.Area;
|
||||||
import java.awt.geom.Path2D;
|
import java.awt.geom.Path2D;
|
||||||
import java.awt.geom.Rectangle2D;
|
import java.awt.geom.Rectangle2D;
|
||||||
import javax.swing.UIManager;
|
|
||||||
import com.formdev.flatlaf.ui.FlatUIUtils;
|
import com.formdev.flatlaf.ui.FlatUIUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* "minimize" (actually "restore") icon for {@link javax.swing.JInternalFrame}.
|
* "minimize" (actually "restore") icon for {@link javax.swing.JInternalFrame}.
|
||||||
*
|
*
|
||||||
* @uiDefault InternalFrame.iconColor Color
|
|
||||||
*
|
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatInternalFrameMinimizeIcon
|
public class FlatInternalFrameMinimizeIcon
|
||||||
extends FlatAbstractIcon
|
extends FlatInternalFrameAbstractIcon
|
||||||
{
|
{
|
||||||
public FlatInternalFrameMinimizeIcon() {
|
public FlatInternalFrameMinimizeIcon() {
|
||||||
super( 16, 16, UIManager.getColor( "InternalFrame.iconColor" ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintIcon( Component c, Graphics2D g ) {
|
protected void paintIcon( Component c, Graphics2D g ) {
|
||||||
Path2D r1 = FlatUIUtils.createRectangle( 5, 3, 8, 8, 1 );
|
paintBackground( c, g );
|
||||||
Path2D r2 = FlatUIUtils.createRectangle( 3, 5, 8, 8, 1 );
|
|
||||||
|
g.setColor( c.getForeground() );
|
||||||
|
|
||||||
|
int x = (width / 2) - 4;
|
||||||
|
int y = (height / 2) - 4;
|
||||||
|
Path2D r1 = FlatUIUtils.createRectangle( x + 1, y - 1, 8, 8, 1 );
|
||||||
|
Path2D r2 = FlatUIUtils.createRectangle( x - 1, y + 1, 8, 8, 1 );
|
||||||
|
|
||||||
Area area = new Area( r1 );
|
Area area = new Area( r1 );
|
||||||
area.subtract( new Area( new Rectangle2D.Float( 3, 5, 8, 8 ) ) );
|
area.subtract( new Area( new Rectangle2D.Float( x - 1, y + 1, 8, 8 ) ) );
|
||||||
g.fill( area );
|
g.fill( area );
|
||||||
|
|
||||||
g.fill( r2 );
|
g.fill( r2 );
|
||||||
|
|||||||
@@ -23,9 +23,10 @@ import java.awt.GradientPaint;
|
|||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
import java.awt.Insets;
|
import java.awt.Insets;
|
||||||
import java.awt.Paint;
|
import java.awt.Paint;
|
||||||
import javax.swing.JButton;
|
import javax.swing.AbstractButton;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
import javax.swing.plaf.UIResource;
|
import javax.swing.plaf.UIResource;
|
||||||
|
import com.formdev.flatlaf.util.UIScale;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Border for {@link javax.swing.JButton}.
|
* Border for {@link javax.swing.JButton}.
|
||||||
@@ -43,6 +44,8 @@ import javax.swing.plaf.UIResource;
|
|||||||
* @uiDefault Button.default.focusedBorderColor Color
|
* @uiDefault Button.default.focusedBorderColor Color
|
||||||
* @uiDefault Button.default.focusColor Color
|
* @uiDefault Button.default.focusColor Color
|
||||||
* @uiDefault Button.default.borderWidth int
|
* @uiDefault Button.default.borderWidth int
|
||||||
|
* @uiDefault Button.toolbar.margin Insets
|
||||||
|
* @uiDefault Button.toolbar.spacingInsets Insets
|
||||||
* @uiDefault Button.arc int
|
* @uiDefault Button.arc int
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
@@ -61,12 +64,17 @@ public class FlatButtonBorder
|
|||||||
protected final Color defaultFocusedBorderColor = UIManager.getColor( "Button.default.focusedBorderColor" );
|
protected final Color defaultFocusedBorderColor = UIManager.getColor( "Button.default.focusedBorderColor" );
|
||||||
protected final Color defaultFocusColor = UIManager.getColor( "Button.default.focusColor" );
|
protected final Color defaultFocusColor = UIManager.getColor( "Button.default.focusColor" );
|
||||||
protected final int defaultBorderWidth = UIManager.getInt( "Button.default.borderWidth" );
|
protected final int defaultBorderWidth = UIManager.getInt( "Button.default.borderWidth" );
|
||||||
|
protected final Insets toolbarMargin = UIManager.getInsets( "Button.toolbar.margin" );
|
||||||
|
protected final Insets toolbarSpacingInsets = UIManager.getInsets( "Button.toolbar.spacingInsets" );
|
||||||
protected final int arc = UIManager.getInt( "Button.arc" );
|
protected final int arc = UIManager.getInt( "Button.arc" );
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||||
if( FlatButtonUI.isContentAreaFilled( c ) && !FlatButtonUI.isHelpButton( c ) && !FlatToggleButtonUI.isTabButton( c ) )
|
if( FlatButtonUI.isContentAreaFilled( c ) &&
|
||||||
super.paintBorder( c, g, x, y, width, height );
|
!FlatButtonUI.isToolBarButton( c ) &&
|
||||||
|
!FlatButtonUI.isHelpButton( c ) &&
|
||||||
|
!FlatToggleButtonUI.isTabButton( c ) )
|
||||||
|
super.paintBorder( c, g, x, y, width, height );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -95,11 +103,22 @@ public class FlatButtonBorder
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Insets getBorderInsets( Component c, Insets insets ) {
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
insets = super.getBorderInsets( c, insets );
|
if( FlatButtonUI.isToolBarButton( c ) ) {
|
||||||
|
// In toolbars, use button margin only if explicitly set.
|
||||||
|
// Otherwise use toolbar margin specified in UI defaults.
|
||||||
|
Insets margin = (c instanceof AbstractButton)
|
||||||
|
? ((AbstractButton)c).getMargin()
|
||||||
|
: null;
|
||||||
|
|
||||||
// use smaller left and right insets for icon-only buttons (so that they are square)
|
FlatUIUtils.setInsets( insets, UIScale.scale( FlatUIUtils.addInsets( toolbarSpacingInsets,
|
||||||
if( FlatButtonUI.isIconOnlyButton( c ) && ((JButton)c).getMargin() instanceof UIResource )
|
(margin != null && !(margin instanceof UIResource)) ? margin : toolbarMargin ) ) );
|
||||||
insets.left = insets.right = Math.min( insets.top, insets.bottom );
|
} else {
|
||||||
|
insets = super.getBorderInsets( c, insets );
|
||||||
|
|
||||||
|
// use smaller left and right insets for icon-only buttons (so that they are square)
|
||||||
|
if( FlatButtonUI.isIconOnlyButton( c ) && ((AbstractButton)c).getMargin() instanceof UIResource )
|
||||||
|
insets.left = insets.right = Math.min( insets.top, insets.bottom );
|
||||||
|
}
|
||||||
|
|
||||||
return insets;
|
return insets;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ import java.awt.FontMetrics;
|
|||||||
import java.awt.GradientPaint;
|
import java.awt.GradientPaint;
|
||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
|
import java.awt.Insets;
|
||||||
import java.awt.Rectangle;
|
import java.awt.Rectangle;
|
||||||
import java.awt.geom.RoundRectangle2D;
|
import java.awt.geom.RoundRectangle2D;
|
||||||
import java.beans.PropertyChangeEvent;
|
import java.beans.PropertyChangeEvent;
|
||||||
@@ -34,6 +35,7 @@ import javax.swing.ButtonModel;
|
|||||||
import javax.swing.Icon;
|
import javax.swing.Icon;
|
||||||
import javax.swing.JButton;
|
import javax.swing.JButton;
|
||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JToggleButton;
|
||||||
import javax.swing.JToolBar;
|
import javax.swing.JToolBar;
|
||||||
import javax.swing.LookAndFeel;
|
import javax.swing.LookAndFeel;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
@@ -81,6 +83,7 @@ import com.formdev.flatlaf.util.UIScale;
|
|||||||
* @uiDefault Button.shadowWidth int default is 2
|
* @uiDefault Button.shadowWidth int default is 2
|
||||||
* @uiDefault Button.shadowColor Color optional
|
* @uiDefault Button.shadowColor Color optional
|
||||||
* @uiDefault Button.default.shadowColor Color optional
|
* @uiDefault Button.default.shadowColor Color optional
|
||||||
|
* @uiDefault Button.toolbar.spacingInsets Insets
|
||||||
* @uiDefault Button.toolbar.hoverBackground Color
|
* @uiDefault Button.toolbar.hoverBackground Color
|
||||||
* @uiDefault Button.toolbar.pressedBackground Color
|
* @uiDefault Button.toolbar.pressedBackground Color
|
||||||
*
|
*
|
||||||
@@ -113,6 +116,7 @@ public class FlatButtonUI
|
|||||||
protected Color shadowColor;
|
protected Color shadowColor;
|
||||||
protected Color defaultShadowColor;
|
protected Color defaultShadowColor;
|
||||||
|
|
||||||
|
protected Insets toolbarSpacingInsets;
|
||||||
protected Color toolbarHoverBackground;
|
protected Color toolbarHoverBackground;
|
||||||
protected Color toolbarPressedBackground;
|
protected Color toolbarPressedBackground;
|
||||||
|
|
||||||
@@ -165,6 +169,7 @@ public class FlatButtonUI
|
|||||||
defaultPressedBackground = UIManager.getColor( "Button.default.pressedBackground" );
|
defaultPressedBackground = UIManager.getColor( "Button.default.pressedBackground" );
|
||||||
defaultBoldText = UIManager.getBoolean( "Button.default.boldText" );
|
defaultBoldText = UIManager.getBoolean( "Button.default.boldText" );
|
||||||
|
|
||||||
|
toolbarSpacingInsets = UIManager.getInsets( "Button.toolbar.spacingInsets" );
|
||||||
toolbarHoverBackground = UIManager.getColor( prefix + "toolbar.hoverBackground" );
|
toolbarHoverBackground = UIManager.getColor( prefix + "toolbar.hoverBackground" );
|
||||||
toolbarPressedBackground = UIManager.getColor( prefix + "toolbar.pressedBackground" );
|
toolbarPressedBackground = UIManager.getColor( prefix + "toolbar.pressedBackground" );
|
||||||
|
|
||||||
@@ -222,11 +227,11 @@ public class FlatButtonUI
|
|||||||
}
|
}
|
||||||
|
|
||||||
static boolean isIconOnlyButton( Component c ) {
|
static boolean isIconOnlyButton( Component c ) {
|
||||||
if( !(c instanceof JButton) )
|
if( !(c instanceof JButton) && !(c instanceof JToggleButton) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
Icon icon = ((JButton)c).getIcon();
|
Icon icon = ((AbstractButton)c).getIcon();
|
||||||
String text = ((JButton)c).getText();
|
String text = ((AbstractButton)c).getText();
|
||||||
return (icon != null && (text == null || text.isEmpty())) ||
|
return (icon != null && (text == null || text.isEmpty())) ||
|
||||||
(icon == null && text != null && ("...".equals( text ) || text.length() == 1));
|
(icon == null && text != null && ("...".equals( text ) || text.length() == 1));
|
||||||
}
|
}
|
||||||
@@ -239,7 +244,7 @@ public class FlatButtonUI
|
|||||||
return c instanceof JButton && clientPropertyEquals( (JButton) c, BUTTON_TYPE, BUTTON_TYPE_HELP );
|
return c instanceof JButton && clientPropertyEquals( (JButton) c, BUTTON_TYPE, BUTTON_TYPE_HELP );
|
||||||
}
|
}
|
||||||
|
|
||||||
static boolean isToolBarButton( JComponent c ) {
|
static boolean isToolBarButton( Component c ) {
|
||||||
return c.getParent() instanceof JToolBar;
|
return c.getParent() instanceof JToolBar;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -268,27 +273,42 @@ public class FlatButtonUI
|
|||||||
FlatUIUtils.setRenderingHints( g2 );
|
FlatUIUtils.setRenderingHints( g2 );
|
||||||
|
|
||||||
Border border = c.getBorder();
|
Border border = c.getBorder();
|
||||||
float focusWidth = (border instanceof FlatBorder) ? scale( (float) getFocusWidth( c ) ) : 0;
|
boolean isToolBarButton = isToolBarButton( c );
|
||||||
float arc = ((border instanceof FlatButtonBorder && !isSquareButton( c )) || isToolBarButton( c ))
|
float focusWidth = (border instanceof FlatBorder && !isToolBarButton) ? scale( (float) getFocusWidth( c ) ) : 0;
|
||||||
|
float arc = ((border instanceof FlatButtonBorder && !isSquareButton( c )) || isToolBarButton)
|
||||||
? scale( (float) this.arc ) : 0;
|
? scale( (float) this.arc ) : 0;
|
||||||
boolean def = isDefaultButton( c );
|
boolean def = isDefaultButton( c );
|
||||||
|
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
|
int width = c.getWidth();
|
||||||
|
int height = c.getHeight();
|
||||||
|
|
||||||
|
if( isToolBarButton ) {
|
||||||
|
Insets spacing = UIScale.scale( toolbarSpacingInsets );
|
||||||
|
x += spacing.left;
|
||||||
|
y += spacing.top;
|
||||||
|
width -= spacing.left + spacing.right;
|
||||||
|
height -= spacing.top + spacing.bottom;
|
||||||
|
}
|
||||||
|
|
||||||
// paint shadow
|
// paint shadow
|
||||||
Color shadowColor = def ? defaultShadowColor : this.shadowColor;
|
Color shadowColor = def ? defaultShadowColor : this.shadowColor;
|
||||||
if( shadowColor != null && shadowWidth > 0 && focusWidth > 0 && !c.hasFocus() && c.isEnabled() ) {
|
if( !isToolBarButton && shadowColor != null && shadowWidth > 0 && focusWidth > 0 && !c.hasFocus() && c.isEnabled() ) {
|
||||||
g2.setColor( shadowColor );
|
g2.setColor( shadowColor );
|
||||||
g2.fill( new RoundRectangle2D.Float( focusWidth, focusWidth + UIScale.scale( (float) shadowWidth ),
|
g2.fill( new RoundRectangle2D.Float( focusWidth, focusWidth + UIScale.scale( (float) shadowWidth ),
|
||||||
c.getWidth() - focusWidth * 2, c.getHeight() - focusWidth * 2, arc, arc ) );
|
width - focusWidth * 2, height - focusWidth * 2, arc, arc ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// paint background
|
// paint background
|
||||||
Color startBg = def ? defaultBackground : startBackground;
|
Color startBg = def ? defaultBackground : startBackground;
|
||||||
Color endBg = def ? defaultEndBackground : endBackground;
|
Color endBg = def ? defaultEndBackground : endBackground;
|
||||||
if( background == startBg && endBg != null && !startBg.equals( endBg ) )
|
if( background == startBg && endBg != null && !startBg.equals( endBg ) )
|
||||||
g2.setPaint( new GradientPaint( 0, 0, startBg, 0, c.getHeight(), endBg ) );
|
g2.setPaint( new GradientPaint( 0, 0, startBg, 0, height, endBg ) );
|
||||||
else
|
else
|
||||||
FlatUIUtils.setColor( g2, background, def ? defaultBackground : c.getBackground() );
|
FlatUIUtils.setColor( g2, background, def ? defaultBackground : c.getBackground() );
|
||||||
FlatUIUtils.paintComponentBackground( g2, 0, 0, c.getWidth(), c.getHeight(), focusWidth, arc );
|
|
||||||
|
FlatUIUtils.paintComponentBackground( g2, x, y, width, height, focusWidth, arc );
|
||||||
} finally {
|
} finally {
|
||||||
g2.dispose();
|
g2.dispose();
|
||||||
}
|
}
|
||||||
|
|||||||
128
flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatCaret.java
Normal file
128
flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatCaret.java
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import static com.formdev.flatlaf.FlatClientProperties.*;
|
||||||
|
import java.awt.EventQueue;
|
||||||
|
import java.awt.event.FocusEvent;
|
||||||
|
import java.awt.event.MouseEvent;
|
||||||
|
import javax.swing.JFormattedTextField;
|
||||||
|
import javax.swing.plaf.UIResource;
|
||||||
|
import javax.swing.text.DefaultCaret;
|
||||||
|
import javax.swing.text.Document;
|
||||||
|
import javax.swing.text.JTextComponent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Caret that can select all text on focus gained.
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
class FlatCaret
|
||||||
|
extends DefaultCaret
|
||||||
|
implements UIResource
|
||||||
|
{
|
||||||
|
private final String selectAllOnFocusPolicy;
|
||||||
|
|
||||||
|
private boolean wasFocused;
|
||||||
|
private boolean wasTemporaryLost;
|
||||||
|
private boolean isMousePressed;
|
||||||
|
|
||||||
|
FlatCaret( String selectAllOnFocusPolicy ) {
|
||||||
|
this.selectAllOnFocusPolicy = selectAllOnFocusPolicy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void install( JTextComponent c ) {
|
||||||
|
super.install( c );
|
||||||
|
|
||||||
|
// the dot and mark are lost when switching LaF
|
||||||
|
// --> move dot to end of text so that all text may be selected when it gains focus
|
||||||
|
Document doc = c.getDocument();
|
||||||
|
if( doc != null && getDot() == 0 && getMark() == 0 ) {
|
||||||
|
int length = doc.getLength();
|
||||||
|
if( length > 0 )
|
||||||
|
setDot( length );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void focusGained( FocusEvent e ) {
|
||||||
|
if( !wasTemporaryLost && !isMousePressed )
|
||||||
|
selectAllOnFocusGained();
|
||||||
|
wasTemporaryLost = false;
|
||||||
|
wasFocused = true;
|
||||||
|
|
||||||
|
super.focusGained( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void focusLost( FocusEvent e ) {
|
||||||
|
wasTemporaryLost = e.isTemporary();
|
||||||
|
super.focusLost( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mousePressed( MouseEvent e ) {
|
||||||
|
isMousePressed = true;
|
||||||
|
super.mousePressed( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseReleased( MouseEvent e ) {
|
||||||
|
isMousePressed = false;
|
||||||
|
super.mouseReleased( e );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void selectAllOnFocusGained() {
|
||||||
|
JTextComponent c = getComponent();
|
||||||
|
Document doc = c.getDocument();
|
||||||
|
if( doc == null || !c.isEnabled() || !c.isEditable() )
|
||||||
|
return;
|
||||||
|
|
||||||
|
Object selectAllOnFocusPolicy = c.getClientProperty( SELECT_ALL_ON_FOCUS_POLICY );
|
||||||
|
if( selectAllOnFocusPolicy == null )
|
||||||
|
selectAllOnFocusPolicy = this.selectAllOnFocusPolicy;
|
||||||
|
|
||||||
|
if( SELECT_ALL_ON_FOCUS_POLICY_NEVER.equals( selectAllOnFocusPolicy ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if( !SELECT_ALL_ON_FOCUS_POLICY_ALWAYS.equals( selectAllOnFocusPolicy ) ) {
|
||||||
|
// policy is "once" (or null or unknown)
|
||||||
|
|
||||||
|
// was already focused?
|
||||||
|
if( wasFocused )
|
||||||
|
return;
|
||||||
|
|
||||||
|
// check whether selection was modified before gaining focus
|
||||||
|
int dot = getDot();
|
||||||
|
int mark = getMark();
|
||||||
|
if( dot != mark || dot != doc.getLength() )
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// select all
|
||||||
|
if( c instanceof JFormattedTextField ) {
|
||||||
|
EventQueue.invokeLater( () -> {
|
||||||
|
setDot( 0 );
|
||||||
|
moveDot( doc.getLength() );
|
||||||
|
} );
|
||||||
|
} else {
|
||||||
|
setDot( 0 );
|
||||||
|
moveDot( doc.getLength() );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,308 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import java.awt.Component;
|
||||||
|
import java.awt.Container;
|
||||||
|
import java.awt.Dimension;
|
||||||
|
import java.awt.EventQueue;
|
||||||
|
import java.awt.Graphics2D;
|
||||||
|
import java.awt.Image;
|
||||||
|
import java.awt.Insets;
|
||||||
|
import java.awt.LayoutManager;
|
||||||
|
import java.awt.Point;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import java.awt.event.MouseEvent;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.beans.PropertyVetoException;
|
||||||
|
import javax.swing.BorderFactory;
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
import javax.swing.JButton;
|
||||||
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.event.MouseInputAdapter;
|
||||||
|
import javax.swing.event.MouseInputListener;
|
||||||
|
import javax.swing.JLabel;
|
||||||
|
import javax.swing.JLayeredPane;
|
||||||
|
import javax.swing.JRootPane;
|
||||||
|
import javax.swing.JToolTip;
|
||||||
|
import javax.swing.LookAndFeel;
|
||||||
|
import javax.swing.SwingConstants;
|
||||||
|
import javax.swing.SwingUtilities;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.plaf.ComponentUI;
|
||||||
|
import javax.swing.plaf.basic.BasicDesktopIconUI;
|
||||||
|
import com.formdev.flatlaf.util.UIScale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides the Flat LaF UI delegate for {@link javax.swing.JInternalFrame.JDesktopIcon}.
|
||||||
|
*
|
||||||
|
* <!-- BasicDesktopIconUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault DesktopIcon.border Border
|
||||||
|
*
|
||||||
|
* <!-- FlatDesktopIconUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault DesktopIcon.background Color
|
||||||
|
* @uiDefault DesktopIcon.foreground Color
|
||||||
|
* @uiDefault DesktopIcon.iconSize Dimension
|
||||||
|
* @uiDefault DesktopIcon.closeSize Dimension
|
||||||
|
* @uiDefault DesktopIcon.closeIcon Icon
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatDesktopIconUI
|
||||||
|
extends BasicDesktopIconUI
|
||||||
|
{
|
||||||
|
private Dimension iconSize;
|
||||||
|
private Dimension closeSize;
|
||||||
|
|
||||||
|
private JLabel dockIcon;
|
||||||
|
private JButton closeButton;
|
||||||
|
private JToolTip titleTip;
|
||||||
|
private ActionListener closeListener;
|
||||||
|
private MouseInputListener mouseInputListener;
|
||||||
|
|
||||||
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
|
return new FlatDesktopIconUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void uninstallUI( JComponent c ) {
|
||||||
|
super.uninstallUI( c );
|
||||||
|
|
||||||
|
dockIcon = null;
|
||||||
|
closeButton = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void installComponents() {
|
||||||
|
dockIcon = new JLabel();
|
||||||
|
dockIcon.setHorizontalAlignment( SwingConstants.CENTER );
|
||||||
|
|
||||||
|
closeButton = new JButton();
|
||||||
|
closeButton.setIcon( UIManager.getIcon( "DesktopIcon.closeIcon" ) );
|
||||||
|
closeButton.setFocusable( false );
|
||||||
|
closeButton.setBorder( BorderFactory.createEmptyBorder() );
|
||||||
|
closeButton.setOpaque( true );
|
||||||
|
closeButton.setBackground( FlatUIUtils.nonUIResource( desktopIcon.getBackground() ) );
|
||||||
|
closeButton.setForeground( FlatUIUtils.nonUIResource( desktopIcon.getForeground() ) );
|
||||||
|
closeButton.setVisible( false );
|
||||||
|
|
||||||
|
desktopIcon.setLayout( new FlatDesktopIconLayout() );
|
||||||
|
desktopIcon.add( closeButton );
|
||||||
|
desktopIcon.add( dockIcon );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void uninstallComponents() {
|
||||||
|
hideTitleTip();
|
||||||
|
|
||||||
|
desktopIcon.remove( dockIcon );
|
||||||
|
desktopIcon.remove( closeButton );
|
||||||
|
desktopIcon.setLayout( null );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void installDefaults() {
|
||||||
|
super.installDefaults();
|
||||||
|
|
||||||
|
LookAndFeel.installColors( desktopIcon, "DesktopIcon.background", "DesktopIcon.foreground" );
|
||||||
|
|
||||||
|
iconSize = UIManager.getDimension( "DesktopIcon.iconSize" );
|
||||||
|
closeSize = UIManager.getDimension( "DesktopIcon.closeSize" );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void installListeners() {
|
||||||
|
super.installListeners();
|
||||||
|
|
||||||
|
closeListener = e -> {
|
||||||
|
if( frame.isClosable() )
|
||||||
|
frame.doDefaultCloseAction();
|
||||||
|
};
|
||||||
|
closeButton.addActionListener( closeListener );
|
||||||
|
closeButton.addMouseListener( mouseInputListener );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void uninstallListeners() {
|
||||||
|
super.uninstallListeners();
|
||||||
|
|
||||||
|
closeButton.removeActionListener( closeListener );
|
||||||
|
closeButton.removeMouseListener( mouseInputListener );
|
||||||
|
closeListener = null;
|
||||||
|
mouseInputListener = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected MouseInputListener createMouseInputListener() {
|
||||||
|
mouseInputListener = new MouseInputAdapter() {
|
||||||
|
@Override
|
||||||
|
public void mouseReleased( MouseEvent e ) {
|
||||||
|
if( frame.isIcon() && desktopIcon.contains( e.getX(), e.getY() ) ) {
|
||||||
|
hideTitleTip();
|
||||||
|
closeButton.setVisible( false );
|
||||||
|
|
||||||
|
try {
|
||||||
|
frame.setIcon( false );
|
||||||
|
} catch( PropertyVetoException ex ) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseEntered( MouseEvent e ) {
|
||||||
|
showTitleTip();
|
||||||
|
if( frame.isClosable() )
|
||||||
|
closeButton.setVisible( true );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseExited( MouseEvent e ) {
|
||||||
|
hideTitleTip();
|
||||||
|
closeButton.setVisible( false );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return mouseInputListener;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showTitleTip() {
|
||||||
|
JRootPane rootPane = SwingUtilities.getRootPane( desktopIcon );
|
||||||
|
if( rootPane == null )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if( titleTip == null ) {
|
||||||
|
titleTip = new JToolTip();
|
||||||
|
rootPane.getLayeredPane().add( titleTip, JLayeredPane.POPUP_LAYER );
|
||||||
|
}
|
||||||
|
titleTip.setTipText( frame.getTitle() );
|
||||||
|
titleTip.setSize( titleTip.getPreferredSize() );
|
||||||
|
|
||||||
|
int tx = (desktopIcon.getWidth() - titleTip.getWidth()) / 2;
|
||||||
|
int ty = -(titleTip.getHeight() + UIScale.scale( 4 ));
|
||||||
|
Point pt = SwingUtilities.convertPoint( desktopIcon, tx, ty, titleTip.getParent() );
|
||||||
|
if( pt.x + titleTip.getWidth() > rootPane.getWidth() )
|
||||||
|
pt.x = rootPane.getWidth() - titleTip.getWidth();
|
||||||
|
if( pt.x < 0 )
|
||||||
|
pt.x = 0;
|
||||||
|
titleTip.setLocation( pt );
|
||||||
|
titleTip.repaint();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void hideTitleTip() {
|
||||||
|
if( titleTip == null )
|
||||||
|
return;
|
||||||
|
|
||||||
|
titleTip.setVisible( false );
|
||||||
|
titleTip.getParent().remove( titleTip );
|
||||||
|
titleTip = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dimension getPreferredSize( JComponent c ) {
|
||||||
|
return UIScale.scale( iconSize );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dimension getMinimumSize( JComponent c ) {
|
||||||
|
return getPreferredSize( c );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dimension getMaximumSize( JComponent c ) {
|
||||||
|
return getPreferredSize( c );
|
||||||
|
}
|
||||||
|
|
||||||
|
void updateDockIcon() {
|
||||||
|
// use invoke later to make sure that components are updated when switching LaF
|
||||||
|
EventQueue.invokeLater( () -> {
|
||||||
|
if( dockIcon != null )
|
||||||
|
updateDockIconLater();
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateDockIconLater() {
|
||||||
|
// make sure that frame is not selected
|
||||||
|
if( frame.isSelected() ) {
|
||||||
|
try {
|
||||||
|
frame.setSelected( false );
|
||||||
|
} catch( PropertyVetoException ex ) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// paint internal frame to buffered image
|
||||||
|
int frameWidth = Math.max( frame.getWidth(), 1 );
|
||||||
|
int frameHeight = Math.max( frame.getHeight(), 1 );
|
||||||
|
BufferedImage frameImage = new BufferedImage( frameWidth, frameHeight, BufferedImage.TYPE_INT_ARGB );
|
||||||
|
Graphics2D g = frameImage.createGraphics();
|
||||||
|
try {
|
||||||
|
//TODO fix missing internal frame header when switching LaF
|
||||||
|
frame.paint( g );
|
||||||
|
} finally {
|
||||||
|
g.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
// compute preview size (keep ratio; also works with non-square preview)
|
||||||
|
Insets insets = desktopIcon.getInsets();
|
||||||
|
int previewWidth = UIScale.scale( iconSize.width ) - insets.left - insets.right;
|
||||||
|
int previewHeight = UIScale.scale( iconSize.height ) - insets.top - insets.bottom;
|
||||||
|
float frameRatio = ((float) frameHeight / (float) frameWidth);
|
||||||
|
if( ((float) previewWidth / (float) frameWidth) > ((float) previewHeight / (float) frameHeight) )
|
||||||
|
previewWidth = Math.round( previewHeight / frameRatio );
|
||||||
|
else
|
||||||
|
previewHeight = Math.round( previewWidth * frameRatio );
|
||||||
|
|
||||||
|
// scale preview
|
||||||
|
Image previewImage = frameImage.getScaledInstance( previewWidth, previewHeight, Image.SCALE_SMOOTH );
|
||||||
|
dockIcon.setIcon( new ImageIcon( previewImage ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
//---- class DockIcon -----------------------------------------------------
|
||||||
|
|
||||||
|
private class FlatDesktopIconLayout
|
||||||
|
implements LayoutManager
|
||||||
|
{
|
||||||
|
@Override public void addLayoutComponent( String name, Component comp ) {}
|
||||||
|
@Override public void removeLayoutComponent( Component comp ) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dimension preferredLayoutSize( Container parent ) {
|
||||||
|
return dockIcon.getPreferredSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Dimension minimumLayoutSize( Container parent ) {
|
||||||
|
return dockIcon.getMinimumSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void layoutContainer( Container parent ) {
|
||||||
|
Insets insets = parent.getInsets();
|
||||||
|
|
||||||
|
// dock icon
|
||||||
|
dockIcon.setBounds( insets.left, insets.top,
|
||||||
|
parent.getWidth() - insets.left - insets.right,
|
||||||
|
parent.getHeight() - insets.top - insets.bottom );
|
||||||
|
|
||||||
|
// close button in upper right corner
|
||||||
|
Dimension cSize = UIScale.scale( closeSize );
|
||||||
|
closeButton.setBounds( parent.getWidth() - cSize.width, 0, cSize.width, cSize.height );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import javax.swing.DefaultDesktopManager;
|
||||||
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JInternalFrame;
|
||||||
|
import javax.swing.plaf.ComponentUI;
|
||||||
|
import javax.swing.plaf.UIResource;
|
||||||
|
import javax.swing.plaf.basic.BasicDesktopPaneUI;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides the Flat LaF UI delegate for {@link javax.swing.JDesktopPane}.
|
||||||
|
*
|
||||||
|
* <!-- BasicDesktopPaneUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault Desktop.background Color
|
||||||
|
* @uiDefault Desktop.minOnScreenInsets Insets
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatDesktopPaneUI
|
||||||
|
extends BasicDesktopPaneUI
|
||||||
|
{
|
||||||
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
|
return new FlatDesktopPaneUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void installDesktopManager() {
|
||||||
|
desktopManager = desktop.getDesktopManager();
|
||||||
|
if( desktopManager == null ) {
|
||||||
|
desktopManager = new FlatDesktopManager();
|
||||||
|
desktop.setDesktopManager( desktopManager );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//---- class FlatDesktopManager -------------------------------------------
|
||||||
|
|
||||||
|
private class FlatDesktopManager
|
||||||
|
extends DefaultDesktopManager
|
||||||
|
implements UIResource
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void iconifyFrame( JInternalFrame f ) {
|
||||||
|
super.iconifyFrame( f );
|
||||||
|
|
||||||
|
((FlatDesktopIconUI)f.getDesktopIcon().getUI()).updateDockIcon();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -50,9 +50,10 @@ public class FlatEmptyBorder
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Insets getBorderInsets( Component c, Insets insets ) {
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
insets.left = scale( left );
|
boolean leftToRight = left == right || c.getComponentOrientation().isLeftToRight();
|
||||||
|
insets.left = scale( leftToRight ? left : right );
|
||||||
insets.top = scale( top );
|
insets.top = scale( top );
|
||||||
insets.right = scale( right );
|
insets.right = scale( leftToRight ? right : left );
|
||||||
insets.bottom = scale( bottom );
|
insets.bottom = scale( bottom );
|
||||||
return insets;
|
return insets;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ import javax.swing.plaf.ComponentUI;
|
|||||||
* @uiDefault Component.minimumWidth int
|
* @uiDefault Component.minimumWidth int
|
||||||
* @uiDefault Component.isIntelliJTheme boolean
|
* @uiDefault Component.isIntelliJTheme boolean
|
||||||
* @uiDefault FormattedTextField.placeholderForeground Color
|
* @uiDefault FormattedTextField.placeholderForeground Color
|
||||||
|
* @uiDefault TextComponent.selectAllOnFocusPolicy String never, once (default) or always
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -0,0 +1,190 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import java.awt.BorderLayout;
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Dimension;
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.LayoutManager;
|
||||||
|
import java.beans.PropertyChangeEvent;
|
||||||
|
import java.beans.PropertyChangeListener;
|
||||||
|
import javax.swing.BorderFactory;
|
||||||
|
import javax.swing.BoxLayout;
|
||||||
|
import javax.swing.Icon;
|
||||||
|
import javax.swing.JInternalFrame;
|
||||||
|
import javax.swing.JLabel;
|
||||||
|
import javax.swing.JPanel;
|
||||||
|
import javax.swing.LookAndFeel;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.border.Border;
|
||||||
|
import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
|
||||||
|
import com.formdev.flatlaf.util.UIScale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides the Flat LaF internal frame title bar.
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatInternalFrameTitlePane
|
||||||
|
extends BasicInternalFrameTitlePane
|
||||||
|
{
|
||||||
|
private JLabel titleLabel;
|
||||||
|
private JPanel buttonPanel;
|
||||||
|
|
||||||
|
public FlatInternalFrameTitlePane( JInternalFrame f ) {
|
||||||
|
super( f );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void installDefaults() {
|
||||||
|
super.installDefaults();
|
||||||
|
|
||||||
|
LookAndFeel.installBorder( this, "InternalFrameTitlePane.border" );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected PropertyChangeListener createPropertyChangeListener() {
|
||||||
|
return new FlatPropertyChangeHandler();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected LayoutManager createLayout() {
|
||||||
|
return new BorderLayout( UIScale.scale( 4 ), 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void createButtons() {
|
||||||
|
super.createButtons();
|
||||||
|
|
||||||
|
iconButton.setContentAreaFilled( false );
|
||||||
|
maxButton.setContentAreaFilled( false );
|
||||||
|
closeButton.setContentAreaFilled( false );
|
||||||
|
|
||||||
|
Border emptyBorder = BorderFactory.createEmptyBorder();
|
||||||
|
iconButton.setBorder( emptyBorder );
|
||||||
|
maxButton.setBorder( emptyBorder );
|
||||||
|
closeButton.setBorder( emptyBorder );
|
||||||
|
|
||||||
|
updateButtonsVisibility();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void addSubComponents() {
|
||||||
|
titleLabel = new JLabel( frame.getTitle() );
|
||||||
|
titleLabel.setFont( FlatUIUtils.nonUIResource( getFont() ) );
|
||||||
|
titleLabel.setMinimumSize( new Dimension( UIScale.scale( 32 ), 1 ) );
|
||||||
|
updateFrameIcon();
|
||||||
|
updateColors();
|
||||||
|
|
||||||
|
buttonPanel = new JPanel();
|
||||||
|
buttonPanel.setLayout( new BoxLayout( buttonPanel, BoxLayout.LINE_AXIS ) );
|
||||||
|
buttonPanel.setOpaque( false );
|
||||||
|
|
||||||
|
buttonPanel.add( iconButton );
|
||||||
|
buttonPanel.add( maxButton );
|
||||||
|
buttonPanel.add( closeButton );
|
||||||
|
|
||||||
|
add( titleLabel, BorderLayout.CENTER );
|
||||||
|
add( buttonPanel, BorderLayout.LINE_END );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateFrameIcon() {
|
||||||
|
Icon frameIcon = frame.getFrameIcon();
|
||||||
|
if( frameIcon == UIManager.getIcon( "InternalFrame.icon" ) )
|
||||||
|
frameIcon = null;
|
||||||
|
titleLabel.setIcon( frameIcon );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateColors() {
|
||||||
|
Color background = FlatUIUtils.nonUIResource( frame.isSelected() ? selectedTitleColor : notSelectedTitleColor );
|
||||||
|
Color foreground = FlatUIUtils.nonUIResource( frame.isSelected() ? selectedTextColor : notSelectedTextColor );
|
||||||
|
|
||||||
|
titleLabel.setForeground( foreground );
|
||||||
|
iconButton.setBackground( background );
|
||||||
|
iconButton.setForeground( foreground );
|
||||||
|
maxButton.setBackground( background );
|
||||||
|
maxButton.setForeground( foreground );
|
||||||
|
closeButton.setBackground( background );
|
||||||
|
closeButton.setForeground( foreground );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateButtonsVisibility() {
|
||||||
|
iconButton.setVisible( frame.isIconifiable() );
|
||||||
|
maxButton.setVisible( frame.isMaximizable() );
|
||||||
|
closeButton.setVisible( frame.isClosable() );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Does nothing because FlatLaf internal frames do not have system menus.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
protected void assembleSystemMenu() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Does nothing because FlatLaf internal frames do not have system menus.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
protected void showSystemMenu() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void paintComponent( Graphics g ) {
|
||||||
|
paintTitleBackground( g );
|
||||||
|
}
|
||||||
|
|
||||||
|
//---- class FlatPropertyChangeHandler ------------------------------------
|
||||||
|
|
||||||
|
private class FlatPropertyChangeHandler
|
||||||
|
extends PropertyChangeHandler
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void propertyChange( PropertyChangeEvent e ) {
|
||||||
|
switch( e.getPropertyName() ) {
|
||||||
|
case JInternalFrame.TITLE_PROPERTY:
|
||||||
|
titleLabel.setText( frame.getTitle() );
|
||||||
|
break;
|
||||||
|
|
||||||
|
case JInternalFrame.FRAME_ICON_PROPERTY:
|
||||||
|
updateFrameIcon();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case JInternalFrame.IS_SELECTED_PROPERTY:
|
||||||
|
updateColors();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "iconable":
|
||||||
|
case "maximizable":
|
||||||
|
case "closable":
|
||||||
|
updateButtonsVisibility();
|
||||||
|
enableActions();
|
||||||
|
revalidate();
|
||||||
|
repaint();
|
||||||
|
|
||||||
|
// do not invoke super.propertyChange() because this adds/removes the buttons
|
||||||
|
return;
|
||||||
|
|
||||||
|
case "componentOrientation":
|
||||||
|
applyComponentOrientation( frame.getComponentOrientation() );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
super.propertyChange( e );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import static com.formdev.flatlaf.util.UIScale.scale;
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Component;
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.Graphics2D;
|
||||||
|
import java.awt.Insets;
|
||||||
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JInternalFrame;
|
||||||
|
import javax.swing.LookAndFeel;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.plaf.ComponentUI;
|
||||||
|
import javax.swing.plaf.basic.BasicInternalFrameUI;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides the Flat LaF UI delegate for {@link javax.swing.JInternalFrame}.
|
||||||
|
*
|
||||||
|
* <!-- BasicInternalFrameUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault control Color
|
||||||
|
* @uiDefault InternalFrame.icon Icon
|
||||||
|
* @uiDefault InternalFrame.border Border
|
||||||
|
* @uiDefault InternalFrame.layoutTitlePaneAtOrigin boolean
|
||||||
|
*
|
||||||
|
* <!-- BasicInternalFrameTitlePane -->
|
||||||
|
*
|
||||||
|
* @uiDefault InternalFrame.titleFont Font
|
||||||
|
* @uiDefault InternalFrame.icon Icon
|
||||||
|
* @uiDefault InternalFrame.maximizeIcon Icon
|
||||||
|
* @uiDefault InternalFrame.minimizeIcon Icon
|
||||||
|
* @uiDefault InternalFrame.iconifyIcon Icon
|
||||||
|
* @uiDefault InternalFrame.closeIcon Icon
|
||||||
|
* @uiDefault InternalFrame.activeTitleBackground Color
|
||||||
|
* @uiDefault InternalFrame.activeTitleForeground Color
|
||||||
|
* @uiDefault InternalFrame.inactiveTitleBackground Color
|
||||||
|
* @uiDefault InternalFrame.inactiveTitleForeground Color
|
||||||
|
* @uiDefault InternalFrame.closeButtonToolTip String
|
||||||
|
* @uiDefault InternalFrame.iconButtonToolTip String
|
||||||
|
* @uiDefault InternalFrame.restoreButtonToolTip String
|
||||||
|
* @uiDefault InternalFrame.maxButtonToolTip String
|
||||||
|
* @uiDefault InternalFrameTitlePane.closeButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.minimizeButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.restoreButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.maximizeButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.moveButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.sizeButtonText String
|
||||||
|
* @uiDefault InternalFrameTitlePane.closeButton.mnemonic Integer
|
||||||
|
* @uiDefault InternalFrameTitlePane.minimizeButton.mnemonic Integer
|
||||||
|
* @uiDefault InternalFrameTitlePane.restoreButton.mnemonic Integer
|
||||||
|
* @uiDefault InternalFrameTitlePane.maximizeButton.mnemonic Integer
|
||||||
|
* @uiDefault InternalFrameTitlePane.moveButton.mnemonic Integer
|
||||||
|
* @uiDefault InternalFrameTitlePane.sizeButton.mnemonic Integer
|
||||||
|
*
|
||||||
|
* <!-- FlatInternalFrameUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault InternalFrame.activeBorderColor Color
|
||||||
|
* @uiDefault InternalFrame.inactiveBorderColor Color
|
||||||
|
* @uiDefault InternalFrame.borderLineWidth int
|
||||||
|
* @uiDefault InternalFrame.borderMargins Insets
|
||||||
|
*
|
||||||
|
* <!-- FlatInternalFrameTitlePane -->
|
||||||
|
*
|
||||||
|
* @uiDefault InternalFrameTitlePane.border Border
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatInternalFrameUI
|
||||||
|
extends BasicInternalFrameUI
|
||||||
|
{
|
||||||
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
|
return new FlatInternalFrameUI( (JInternalFrame) c );
|
||||||
|
}
|
||||||
|
|
||||||
|
public FlatInternalFrameUI( JInternalFrame b ) {
|
||||||
|
super( b );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void installUI( JComponent c ) {
|
||||||
|
super.installUI( c );
|
||||||
|
|
||||||
|
LookAndFeel.installProperty( frame, "opaque", false );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected JComponent createNorthPane( JInternalFrame w ) {
|
||||||
|
return new FlatInternalFrameTitlePane( w );
|
||||||
|
}
|
||||||
|
|
||||||
|
//---- class FlatInternalFrameBorder --------------------------------------
|
||||||
|
|
||||||
|
public static class FlatInternalFrameBorder
|
||||||
|
extends FlatEmptyBorder
|
||||||
|
{
|
||||||
|
private final Color activeBorderColor = UIManager.getColor( "InternalFrame.activeBorderColor" );
|
||||||
|
private final Color inactiveBorderColor = UIManager.getColor( "InternalFrame.inactiveBorderColor" );
|
||||||
|
private final int borderLineWidth = FlatUIUtils.getUIInt( "InternalFrame.borderLineWidth", 1 );
|
||||||
|
|
||||||
|
public FlatInternalFrameBorder() {
|
||||||
|
super( UIManager.getInsets( "InternalFrame.borderMargins" ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
|
if( c instanceof JInternalFrame && ((JInternalFrame)c).isMaximum() ) {
|
||||||
|
insets.left = scale( Math.min( borderLineWidth, left ) );
|
||||||
|
insets.top = scale( Math.min( borderLineWidth, top ) );
|
||||||
|
insets.right = scale( Math.min( borderLineWidth, right ) );
|
||||||
|
insets.bottom = scale( Math.min( borderLineWidth, bottom ) );
|
||||||
|
return insets;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.getBorderInsets( c, insets );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||||
|
JInternalFrame f = (JInternalFrame) c;
|
||||||
|
|
||||||
|
Insets insets = getBorderInsets( c );
|
||||||
|
float lineWidth = scale( (float) borderLineWidth );
|
||||||
|
|
||||||
|
Graphics2D g2 = (Graphics2D) g.create();
|
||||||
|
try {
|
||||||
|
FlatUIUtils.setRenderingHints( g2 );
|
||||||
|
g2.setColor( f.isSelected() ? activeBorderColor : inactiveBorderColor );
|
||||||
|
g2.fill( FlatUIUtils.createRectangle(
|
||||||
|
x + insets.left - lineWidth,
|
||||||
|
y + insets.top - lineWidth,
|
||||||
|
width - insets.left - insets.right + (lineWidth * 2),
|
||||||
|
height - insets.top - insets.bottom + (lineWidth * 2),
|
||||||
|
lineWidth ) );
|
||||||
|
} finally {
|
||||||
|
g2.dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -29,13 +29,26 @@ import javax.swing.plaf.basic.BasicBorders;
|
|||||||
public class FlatMarginBorder
|
public class FlatMarginBorder
|
||||||
extends BasicBorders.MarginBorder
|
extends BasicBorders.MarginBorder
|
||||||
{
|
{
|
||||||
|
private final int left, right, top, bottom;
|
||||||
|
|
||||||
|
public FlatMarginBorder() {
|
||||||
|
left = right = top = bottom = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public FlatMarginBorder( Insets insets ) {
|
||||||
|
left = insets.left;
|
||||||
|
top = insets.top;
|
||||||
|
right = insets.right;
|
||||||
|
bottom = insets.bottom;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Insets getBorderInsets( Component c, Insets insets ) {
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
insets = super.getBorderInsets( c, insets );
|
insets = super.getBorderInsets( c, insets );
|
||||||
insets.top = scale( insets.top );
|
insets.top = scale( insets.top + top );
|
||||||
insets.left = scale( insets.left );
|
insets.left = scale( insets.left + left );
|
||||||
insets.bottom = scale( insets.bottom );
|
insets.bottom = scale( insets.bottom + bottom );
|
||||||
insets.right = scale( insets.right );
|
insets.right = scale( insets.right + right );
|
||||||
return insets;
|
return insets;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import static com.formdev.flatlaf.util.UIScale.scale;
|
||||||
|
import java.awt.Component;
|
||||||
|
import java.awt.Insets;
|
||||||
|
import javax.swing.JMenuBar;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Border for {@link javax.swing.JMenu}, {@link javax.swing.JMenuItem},
|
||||||
|
* {@link javax.swing.JCheckBoxMenuItem} and {@link javax.swing.JRadioButtonMenuItem}.
|
||||||
|
*
|
||||||
|
* @uiDefault MenuBar.itemMargins Insets
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatMenuItemBorder
|
||||||
|
extends FlatMarginBorder
|
||||||
|
{
|
||||||
|
private final Insets menuBarItemMargins = UIManager.getInsets( "MenuBar.itemMargins" );
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
|
if( c.getParent() instanceof JMenuBar ) {
|
||||||
|
insets.top = scale( menuBarItemMargins.top );
|
||||||
|
insets.left = scale( menuBarItemMargins.left );
|
||||||
|
insets.bottom = scale( menuBarItemMargins.bottom + 1 );
|
||||||
|
insets.right = scale( menuBarItemMargins.right );
|
||||||
|
return insets;
|
||||||
|
} else
|
||||||
|
return super.getBorderInsets( c, insets );
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,11 +17,17 @@
|
|||||||
package com.formdev.flatlaf.ui;
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
import static com.formdev.flatlaf.util.UIScale.scale;
|
import static com.formdev.flatlaf.util.UIScale.scale;
|
||||||
|
import java.awt.Color;
|
||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
import java.awt.Rectangle;
|
import java.awt.Rectangle;
|
||||||
|
import java.awt.event.MouseEvent;
|
||||||
import java.beans.PropertyChangeListener;
|
import java.beans.PropertyChangeListener;
|
||||||
|
import javax.swing.ButtonModel;
|
||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JMenu;
|
||||||
import javax.swing.JMenuItem;
|
import javax.swing.JMenuItem;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.event.MouseInputListener;
|
||||||
import javax.swing.plaf.ComponentUI;
|
import javax.swing.plaf.ComponentUI;
|
||||||
import javax.swing.plaf.basic.BasicMenuUI;
|
import javax.swing.plaf.basic.BasicMenuUI;
|
||||||
|
|
||||||
@@ -51,11 +57,17 @@ import javax.swing.plaf.basic.BasicMenuUI;
|
|||||||
* @uiDefault Menu.useMenuBarBackgroundForTopLevel boolean default is false
|
* @uiDefault Menu.useMenuBarBackgroundForTopLevel boolean default is false
|
||||||
* @uiDefault MenuBar.background Color used if Menu.useMenuBarBackgroundForTopLevel is true
|
* @uiDefault MenuBar.background Color used if Menu.useMenuBarBackgroundForTopLevel is true
|
||||||
*
|
*
|
||||||
|
* <!-- FlatMenuUI -->
|
||||||
|
*
|
||||||
|
* @uiDefault MenuBar.hoverBackground Color
|
||||||
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatMenuUI
|
public class FlatMenuUI
|
||||||
extends BasicMenuUI
|
extends BasicMenuUI
|
||||||
{
|
{
|
||||||
|
private Color hoverBackground;
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
return new FlatMenuUI();
|
return new FlatMenuUI();
|
||||||
}
|
}
|
||||||
@@ -64,10 +76,21 @@ public class FlatMenuUI
|
|||||||
protected void installDefaults() {
|
protected void installDefaults() {
|
||||||
super.installDefaults();
|
super.installDefaults();
|
||||||
|
|
||||||
|
menuItem.setRolloverEnabled( true );
|
||||||
|
|
||||||
|
hoverBackground = UIManager.getColor( "MenuBar.hoverBackground" );
|
||||||
|
|
||||||
// scale
|
// scale
|
||||||
defaultTextIconGap = scale( defaultTextIconGap );
|
defaultTextIconGap = scale( defaultTextIconGap );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void uninstallDefaults() {
|
||||||
|
super.uninstallDefaults();
|
||||||
|
|
||||||
|
hoverBackground = null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Scale defaultTextIconGap again if iconTextGap property has changed.
|
* Scale defaultTextIconGap again if iconTextGap property has changed.
|
||||||
*/
|
*/
|
||||||
@@ -81,6 +104,43 @@ public class FlatMenuUI
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected MouseInputListener createMouseInputListener( JComponent c ) {
|
||||||
|
return new BasicMenuUI.MouseInputHandler() {
|
||||||
|
@Override
|
||||||
|
public void mouseEntered( MouseEvent e ) {
|
||||||
|
super.mouseEntered( e );
|
||||||
|
rollover( e, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mouseExited( MouseEvent e ) {
|
||||||
|
super.mouseExited( e );
|
||||||
|
rollover( e, false );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void rollover( MouseEvent e, boolean rollover ) {
|
||||||
|
JMenu menu = (JMenu) e.getSource();
|
||||||
|
if( menu.isTopLevelMenu() && menu.isRolloverEnabled() ) {
|
||||||
|
menu.getModel().setRollover( rollover );
|
||||||
|
menu.repaint();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void paintBackground( Graphics g, JMenuItem menuItem, Color bgColor ) {
|
||||||
|
ButtonModel model = menuItem.getModel();
|
||||||
|
if( model.isArmed() || model.isSelected() ) {
|
||||||
|
super.paintBackground( g, menuItem, bgColor );
|
||||||
|
} else if( model.isRollover() && model.isEnabled() && ((JMenu)menuItem).isTopLevelMenu() ) {
|
||||||
|
FlatUIUtils.setColor( g, hoverBackground, menuItem.getBackground() );
|
||||||
|
g.fillRect( 0, 0, menuItem.getWidth(), menuItem.getHeight() );
|
||||||
|
} else
|
||||||
|
super.paintBackground( g, menuItem, bgColor );
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintText( Graphics g, JMenuItem menuItem, Rectangle textRect, String text ) {
|
protected void paintText( Graphics g, JMenuItem menuItem, Rectangle textRect, String text ) {
|
||||||
FlatMenuItemUI.paintText( g, menuItem, textRect, text, disabledForeground, selectionForeground );
|
FlatMenuItemUI.paintText( g, menuItem, textRect, text, disabledForeground, selectionForeground );
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ import javax.swing.LookAndFeel;
|
|||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
import javax.swing.plaf.ComponentUI;
|
import javax.swing.plaf.ComponentUI;
|
||||||
import javax.swing.plaf.basic.BasicPasswordFieldUI;
|
import javax.swing.plaf.basic.BasicPasswordFieldUI;
|
||||||
|
import javax.swing.text.Caret;
|
||||||
import com.formdev.flatlaf.FlatClientProperties;
|
import com.formdev.flatlaf.FlatClientProperties;
|
||||||
import com.formdev.flatlaf.util.SystemInfo;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the Flat LaF UI delegate for {@link javax.swing.JPasswordField}.
|
* Provides the Flat LaF UI delegate for {@link javax.swing.JPasswordField}.
|
||||||
@@ -55,6 +55,7 @@ import com.formdev.flatlaf.util.SystemInfo;
|
|||||||
* @uiDefault Component.minimumWidth int
|
* @uiDefault Component.minimumWidth int
|
||||||
* @uiDefault Component.isIntelliJTheme boolean
|
* @uiDefault Component.isIntelliJTheme boolean
|
||||||
* @uiDefault PasswordField.placeholderForeground Color
|
* @uiDefault PasswordField.placeholderForeground Color
|
||||||
|
* @uiDefault TextComponent.selectAllOnFocusPolicy String never, once (default) or always
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
@@ -76,10 +77,6 @@ public class FlatPasswordFieldUI
|
|||||||
protected void installDefaults() {
|
protected void installDefaults() {
|
||||||
super.installDefaults();
|
super.installDefaults();
|
||||||
|
|
||||||
// use other echoChar on Mac because the default is too large in SF font
|
|
||||||
if( SystemInfo.IS_MAC )
|
|
||||||
LookAndFeel.installProperty( getComponent(), "echoChar", '\u2022' );
|
|
||||||
|
|
||||||
String prefix = getPropertyPrefix();
|
String prefix = getPropertyPrefix();
|
||||||
focusWidth = UIManager.getInt( "Component.focusWidth" );
|
focusWidth = UIManager.getInt( "Component.focusWidth" );
|
||||||
minimumWidth = UIManager.getInt( "Component.minimumWidth" );
|
minimumWidth = UIManager.getInt( "Component.minimumWidth" );
|
||||||
@@ -116,6 +113,11 @@ public class FlatPasswordFieldUI
|
|||||||
focusListener = null;
|
focusListener = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Caret createCaret() {
|
||||||
|
return new FlatCaret( UIManager.getString( "TextComponent.selectAllOnFocusPolicy" ) );
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void propertyChange( PropertyChangeEvent e ) {
|
protected void propertyChange( PropertyChangeEvent e ) {
|
||||||
super.propertyChange( e );
|
super.propertyChange( e );
|
||||||
|
|||||||
@@ -16,7 +16,12 @@
|
|||||||
|
|
||||||
package com.formdev.flatlaf.ui;
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
|
import java.awt.Component;
|
||||||
|
import java.awt.Container;
|
||||||
|
import java.awt.Insets;
|
||||||
|
import javax.swing.JScrollPane;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
|
import com.formdev.flatlaf.util.UIScale;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Border for {@link javax.swing.JPopupMenu}.
|
* Border for {@link javax.swing.JPopupMenu}.
|
||||||
@@ -33,4 +38,18 @@ public class FlatPopupMenuBorder
|
|||||||
super( UIManager.getInsets( "PopupMenu.borderInsets" ),
|
super( UIManager.getInsets( "PopupMenu.borderInsets" ),
|
||||||
UIManager.getColor( "PopupMenu.borderColor" ) );
|
UIManager.getColor( "PopupMenu.borderColor" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Insets getBorderInsets( Component c, Insets insets ) {
|
||||||
|
if( c instanceof Container &&
|
||||||
|
((Container)c).getComponentCount() > 0 &&
|
||||||
|
((Container)c).getComponent( 0 ) instanceof JScrollPane )
|
||||||
|
{
|
||||||
|
// e.g. for combobox popups
|
||||||
|
insets.left = insets.top = insets.right = insets.bottom = UIScale.scale( 1 );
|
||||||
|
return insets;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.getBorderInsets( c, insets );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,4 +193,19 @@ public class FlatProgressBarUI
|
|||||||
paintString( g, x, y, width, height, amountFull, insets );
|
paintString( g, x, y, width, height, amountFull, insets );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void setAnimationIndex( int newValue ) {
|
||||||
|
super.setAnimationIndex( newValue );
|
||||||
|
|
||||||
|
// On HiDPI screens at 125%, 150% and 175% scaling, it occurs that antialiased painting
|
||||||
|
// may paint one pixel outside of the clipping area. This results in visual artifacts
|
||||||
|
// in indeterminate mode when the progress moves around.
|
||||||
|
// Unfortunately it is not safe to invoke getBox() from here (may throw NPE),
|
||||||
|
// which makes it impractical to get progress box and repaint increased box.
|
||||||
|
// Only solution is to repaint whole progress bar.
|
||||||
|
double systemScaleFactor = UIScale.getSystemScaleFactor( progressBar.getGraphicsConfiguration() );
|
||||||
|
if( (int) systemScaleFactor != systemScaleFactor )
|
||||||
|
progressBar.repaint();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,11 +118,13 @@ public class FlatRadioButtonUI
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void paint( Graphics g, JComponent c ) {
|
public void paint( Graphics g, JComponent c ) {
|
||||||
// fill background even if opaque if
|
// fill background even if not opaque if
|
||||||
// - used as cell renderer (because of selection background)
|
// - contentAreaFilled is true and
|
||||||
// - if background was explicitly set to a non-UIResource color
|
// - used as cell renderer (because of selection background)
|
||||||
|
// - or if background was explicitly set to a non-UIResource color
|
||||||
if( !c.isOpaque() &&
|
if( !c.isOpaque() &&
|
||||||
(c.getParent() instanceof CellRendererPane || !(c.getBackground() instanceof UIResource)) )
|
((AbstractButton)c).isContentAreaFilled() &&
|
||||||
|
(c.getParent() instanceof CellRendererPane || !(c.getBackground() instanceof UIResource)))
|
||||||
{
|
{
|
||||||
g.setColor( c.getBackground() );
|
g.setColor( c.getBackground() );
|
||||||
g.fillRect( 0, 0, c.getWidth(), c.getHeight() );
|
g.fillRect( 0, 0, c.getWidth(), c.getHeight() );
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ import com.formdev.flatlaf.util.UIScale;
|
|||||||
* @uiDefault TabbedPane.tabSelectionHeight int
|
* @uiDefault TabbedPane.tabSelectionHeight int
|
||||||
* @uiDefault TabbedPane.contentSeparatorHeight int
|
* @uiDefault TabbedPane.contentSeparatorHeight int
|
||||||
* @uiDefault TabbedPane.showTabSeparators boolean
|
* @uiDefault TabbedPane.showTabSeparators boolean
|
||||||
|
* @uiDefault TabbedPane.tabSeparatorsFullHeight boolean
|
||||||
* @uiDefault TabbedPane.hasFullBorder boolean
|
* @uiDefault TabbedPane.hasFullBorder boolean
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
@@ -103,6 +104,7 @@ public class FlatTabbedPaneUI
|
|||||||
protected int tabSelectionHeight;
|
protected int tabSelectionHeight;
|
||||||
protected int contentSeparatorHeight;
|
protected int contentSeparatorHeight;
|
||||||
protected boolean showTabSeparators;
|
protected boolean showTabSeparators;
|
||||||
|
protected boolean tabSeparatorsFullHeight;
|
||||||
protected boolean hasFullBorder;
|
protected boolean hasFullBorder;
|
||||||
protected boolean tabsOverlapBorder;
|
protected boolean tabsOverlapBorder;
|
||||||
|
|
||||||
@@ -128,6 +130,7 @@ public class FlatTabbedPaneUI
|
|||||||
tabSelectionHeight = UIManager.getInt( "TabbedPane.tabSelectionHeight" );
|
tabSelectionHeight = UIManager.getInt( "TabbedPane.tabSelectionHeight" );
|
||||||
contentSeparatorHeight = UIManager.getInt( "TabbedPane.contentSeparatorHeight" );
|
contentSeparatorHeight = UIManager.getInt( "TabbedPane.contentSeparatorHeight" );
|
||||||
showTabSeparators = UIManager.getBoolean( "TabbedPane.showTabSeparators" );
|
showTabSeparators = UIManager.getBoolean( "TabbedPane.showTabSeparators" );
|
||||||
|
tabSeparatorsFullHeight = UIManager.getBoolean( "TabbedPane.tabSeparatorsFullHeight" );
|
||||||
hasFullBorder = UIManager.getBoolean( "TabbedPane.hasFullBorder" );
|
hasFullBorder = UIManager.getBoolean( "TabbedPane.hasFullBorder" );
|
||||||
tabsOverlapBorder = UIManager.getBoolean( "TabbedPane.tabsOverlapBorder" );
|
tabsOverlapBorder = UIManager.getBoolean( "TabbedPane.tabsOverlapBorder" );
|
||||||
|
|
||||||
@@ -307,7 +310,7 @@ public class FlatTabbedPaneUI
|
|||||||
!isLastInRun( tabIndex ) )
|
!isLastInRun( tabIndex ) )
|
||||||
{
|
{
|
||||||
float sepWidth = UIScale.scale( 1f );
|
float sepWidth = UIScale.scale( 1f );
|
||||||
float offset = UIScale.scale( 5f );
|
float offset = tabSeparatorsFullHeight ? 0 : UIScale.scale( 5f );
|
||||||
|
|
||||||
g.setColor( (tabSeparatorColor != null) ? tabSeparatorColor : contentAreaColor );
|
g.setColor( (tabSeparatorColor != null) ? tabSeparatorColor : contentAreaColor );
|
||||||
if( tabPlacement == LEFT || tabPlacement == RIGHT ) {
|
if( tabPlacement == LEFT || tabPlacement == RIGHT ) {
|
||||||
|
|||||||
@@ -22,13 +22,20 @@ 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.Insets;
|
||||||
import java.awt.Rectangle;
|
import java.awt.Rectangle;
|
||||||
import java.awt.geom.Rectangle2D;
|
import java.awt.geom.Rectangle2D;
|
||||||
|
import java.util.Objects;
|
||||||
|
import javax.swing.Icon;
|
||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JScrollPane;
|
import javax.swing.JScrollPane;
|
||||||
import javax.swing.JTable;
|
import javax.swing.JTable;
|
||||||
|
import javax.swing.SwingConstants;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.border.Border;
|
||||||
import javax.swing.plaf.ComponentUI;
|
import javax.swing.plaf.ComponentUI;
|
||||||
|
import javax.swing.plaf.UIResource;
|
||||||
import javax.swing.plaf.basic.BasicTableHeaderUI;
|
import javax.swing.plaf.basic.BasicTableHeaderUI;
|
||||||
import javax.swing.table.TableCellRenderer;
|
import javax.swing.table.TableCellRenderer;
|
||||||
import javax.swing.table.TableColumn;
|
import javax.swing.table.TableColumn;
|
||||||
@@ -49,6 +56,7 @@ import com.formdev.flatlaf.util.UIScale;
|
|||||||
* @uiDefault TableHeader.separatorColor Color
|
* @uiDefault TableHeader.separatorColor Color
|
||||||
* @uiDefault TableHeader.bottomSeparatorColor Color
|
* @uiDefault TableHeader.bottomSeparatorColor Color
|
||||||
* @uiDefault TableHeader.height int
|
* @uiDefault TableHeader.height int
|
||||||
|
* @uiDefault TableHeader.sortIconPosition String right (default), left, top or bottom
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
@@ -58,6 +66,7 @@ public class FlatTableHeaderUI
|
|||||||
protected Color separatorColor;
|
protected Color separatorColor;
|
||||||
protected Color bottomSeparatorColor;
|
protected Color bottomSeparatorColor;
|
||||||
protected int height;
|
protected int height;
|
||||||
|
protected int sortIconPosition;
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
return new FlatTableHeaderUI();
|
return new FlatTableHeaderUI();
|
||||||
@@ -70,12 +79,33 @@ public class FlatTableHeaderUI
|
|||||||
separatorColor = UIManager.getColor( "TableHeader.separatorColor" );
|
separatorColor = UIManager.getColor( "TableHeader.separatorColor" );
|
||||||
bottomSeparatorColor = UIManager.getColor( "TableHeader.bottomSeparatorColor" );
|
bottomSeparatorColor = UIManager.getColor( "TableHeader.bottomSeparatorColor" );
|
||||||
height = UIManager.getInt( "TableHeader.height" );
|
height = UIManager.getInt( "TableHeader.height" );
|
||||||
|
switch( Objects.toString( UIManager.getString( "TableHeader.sortIconPosition" ), "right" ) ) {
|
||||||
|
default:
|
||||||
|
case "right": sortIconPosition = SwingConstants.RIGHT; break;
|
||||||
|
case "left": sortIconPosition = SwingConstants.LEFT; break;
|
||||||
|
case "top": sortIconPosition = SwingConstants.TOP; break;
|
||||||
|
case "bottom": sortIconPosition = SwingConstants.BOTTOM; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// use own renderer if necessary
|
||||||
|
if( sortIconPosition != SwingConstants.RIGHT ) {
|
||||||
|
TableCellRenderer defaultRenderer = header.getDefaultRenderer();
|
||||||
|
if( defaultRenderer instanceof UIResource )
|
||||||
|
header.setDefaultRenderer( new FlatTableCellHeaderRenderer( defaultRenderer ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void uninstallDefaults() {
|
protected void uninstallDefaults() {
|
||||||
super.uninstallDefaults();
|
super.uninstallDefaults();
|
||||||
|
|
||||||
|
// restore default renderer
|
||||||
|
TableCellRenderer defaultRenderer = header.getDefaultRenderer();
|
||||||
|
if( defaultRenderer instanceof FlatTableCellHeaderRenderer ) {
|
||||||
|
((FlatTableCellHeaderRenderer)defaultRenderer).reset();
|
||||||
|
header.setDefaultRenderer( ((FlatTableCellHeaderRenderer)defaultRenderer).delegate );
|
||||||
|
}
|
||||||
|
|
||||||
separatorColor = null;
|
separatorColor = null;
|
||||||
bottomSeparatorColor = null;
|
bottomSeparatorColor = null;
|
||||||
}
|
}
|
||||||
@@ -215,4 +245,83 @@ public class FlatTableHeaderUI
|
|||||||
parent = parent.getParent();
|
parent = parent.getParent();
|
||||||
return (parent instanceof JScrollPane) ? (JScrollPane) parent : null;
|
return (parent instanceof JScrollPane) ? (JScrollPane) parent : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---- class FlatTableCellHeaderRenderer ----------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A delegating header renderer that is only used to paint sort arrows at
|
||||||
|
* top, bottom or left position.
|
||||||
|
*/
|
||||||
|
private class FlatTableCellHeaderRenderer
|
||||||
|
implements TableCellRenderer, Border, UIResource
|
||||||
|
{
|
||||||
|
private final TableCellRenderer delegate;
|
||||||
|
|
||||||
|
private int oldHorizontalTextPosition = -1;
|
||||||
|
private Border origBorder;
|
||||||
|
private Icon sortIcon;
|
||||||
|
|
||||||
|
FlatTableCellHeaderRenderer( TableCellRenderer delegate ) {
|
||||||
|
this.delegate = delegate;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Component getTableCellRendererComponent( JTable table, Object value, boolean isSelected,
|
||||||
|
boolean hasFocus, int row, int column )
|
||||||
|
{
|
||||||
|
Component c = delegate.getTableCellRendererComponent( table, value, isSelected, hasFocus, row, column );
|
||||||
|
if( !(c instanceof JLabel) )
|
||||||
|
return c;
|
||||||
|
|
||||||
|
JLabel l = (JLabel) c;
|
||||||
|
|
||||||
|
if( sortIconPosition == SwingConstants.LEFT ) {
|
||||||
|
if( oldHorizontalTextPosition < 0 )
|
||||||
|
oldHorizontalTextPosition = l.getHorizontalTextPosition();
|
||||||
|
l.setHorizontalTextPosition( SwingConstants.RIGHT );
|
||||||
|
} else {
|
||||||
|
// top or bottom
|
||||||
|
sortIcon = l.getIcon();
|
||||||
|
origBorder = l.getBorder();
|
||||||
|
l.setIcon( null );
|
||||||
|
l.setBorder( this );
|
||||||
|
}
|
||||||
|
|
||||||
|
return l;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset() {
|
||||||
|
if( sortIconPosition == SwingConstants.LEFT && oldHorizontalTextPosition >= 0 ) {
|
||||||
|
Component c = getTableCellRendererComponent( header.getTable(), "", false, false, -1, 0 );
|
||||||
|
if( c instanceof JLabel && ((JLabel)c).getHorizontalTextPosition() == SwingConstants.RIGHT )
|
||||||
|
((JLabel)c).setHorizontalTextPosition( oldHorizontalTextPosition );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||||
|
if( origBorder != null )
|
||||||
|
origBorder.paintBorder( c, g, x, y, width, height );
|
||||||
|
|
||||||
|
if( sortIcon != null ) {
|
||||||
|
int xi = x + ((width - sortIcon.getIconWidth()) / 2);
|
||||||
|
int yi = (sortIconPosition == SwingConstants.TOP)
|
||||||
|
? y + UIScale.scale( 1 )
|
||||||
|
: y + height - sortIcon.getIconHeight()
|
||||||
|
- 1 // for gap
|
||||||
|
- (int) (1 * UIScale.getUserScaleFactor()); // for bottom border
|
||||||
|
sortIcon.paintIcon( c, g, xi, yi );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Insets getBorderInsets( Component c ) {
|
||||||
|
return (origBorder != null) ? origBorder.getBorderInsets( c ) : new Insets( 0, 0, 0, 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isBorderOpaque() {
|
||||||
|
return (origBorder != null) ? origBorder.isBorderOpaque() : false;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ import javax.swing.UIManager;
|
|||||||
import javax.swing.plaf.ComponentUI;
|
import javax.swing.plaf.ComponentUI;
|
||||||
import javax.swing.plaf.UIResource;
|
import javax.swing.plaf.UIResource;
|
||||||
import javax.swing.plaf.basic.BasicTextFieldUI;
|
import javax.swing.plaf.basic.BasicTextFieldUI;
|
||||||
|
import javax.swing.text.Caret;
|
||||||
import javax.swing.text.JTextComponent;
|
import javax.swing.text.JTextComponent;
|
||||||
import com.formdev.flatlaf.FlatClientProperties;
|
import com.formdev.flatlaf.FlatClientProperties;
|
||||||
|
|
||||||
@@ -62,6 +63,7 @@ import com.formdev.flatlaf.FlatClientProperties;
|
|||||||
* @uiDefault Component.minimumWidth int
|
* @uiDefault Component.minimumWidth int
|
||||||
* @uiDefault Component.isIntelliJTheme boolean
|
* @uiDefault Component.isIntelliJTheme boolean
|
||||||
* @uiDefault TextField.placeholderForeground Color
|
* @uiDefault TextField.placeholderForeground Color
|
||||||
|
* @uiDefault TextComponent.selectAllOnFocusPolicy String never, once (default) or always
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
@@ -119,6 +121,11 @@ public class FlatTextFieldUI
|
|||||||
focusListener = null;
|
focusListener = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Caret createCaret() {
|
||||||
|
return new FlatCaret( UIManager.getString( "TextComponent.selectAllOnFocusPolicy" ) );
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void propertyChange( PropertyChangeEvent e ) {
|
protected void propertyChange( PropertyChangeEvent e ) {
|
||||||
super.propertyChange( e );
|
super.propertyChange( e );
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ import javax.swing.UIManager;
|
|||||||
/**
|
/**
|
||||||
* Border for {@link javax.swing.JToolBar}.
|
* Border for {@link javax.swing.JToolBar}.
|
||||||
*
|
*
|
||||||
|
* @uiDefault ToolBar.borderMargins Insets
|
||||||
* @uiDefault ToolBar.gripColor Color
|
* @uiDefault ToolBar.gripColor Color
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
@@ -42,6 +43,10 @@ public class FlatToolBarBorder
|
|||||||
|
|
||||||
protected final Color gripColor = UIManager.getColor( "ToolBar.gripColor" );
|
protected final Color gripColor = UIManager.getColor( "ToolBar.gripColor" );
|
||||||
|
|
||||||
|
public FlatToolBarBorder() {
|
||||||
|
super( UIManager.getInsets( "ToolBar.borderMargins" ) );
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
|
||||||
// paint grip
|
// paint grip
|
||||||
|
|||||||
@@ -16,18 +16,14 @@
|
|||||||
|
|
||||||
package com.formdev.flatlaf.ui;
|
package com.formdev.flatlaf.ui;
|
||||||
|
|
||||||
import static com.formdev.flatlaf.util.UIScale.scale;
|
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Insets;
|
import java.awt.Insets;
|
||||||
import java.awt.event.ContainerEvent;
|
import java.awt.event.ContainerEvent;
|
||||||
import java.awt.event.ContainerListener;
|
import java.awt.event.ContainerListener;
|
||||||
import javax.swing.AbstractButton;
|
import javax.swing.AbstractButton;
|
||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
import javax.swing.UIManager;
|
|
||||||
import javax.swing.border.Border;
|
import javax.swing.border.Border;
|
||||||
import javax.swing.border.EmptyBorder;
|
|
||||||
import javax.swing.plaf.ComponentUI;
|
import javax.swing.plaf.ComponentUI;
|
||||||
import javax.swing.plaf.UIResource;
|
|
||||||
import javax.swing.plaf.basic.BasicToolBarUI;
|
import javax.swing.plaf.basic.BasicToolBarUI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -45,28 +41,15 @@ import javax.swing.plaf.basic.BasicToolBarUI;
|
|||||||
* @uiDefault ToolBar.floatingForeground Color
|
* @uiDefault ToolBar.floatingForeground Color
|
||||||
* @uiDefault ToolBar.isRollover boolean
|
* @uiDefault ToolBar.isRollover boolean
|
||||||
*
|
*
|
||||||
* <!-- FlatToolBarUI -->
|
|
||||||
*
|
|
||||||
* @uiDefault ToolBar.buttonMargins Insets
|
|
||||||
*
|
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
public class FlatToolBarUI
|
public class FlatToolBarUI
|
||||||
extends BasicToolBarUI
|
extends BasicToolBarUI
|
||||||
{
|
{
|
||||||
private Border rolloverBorder;
|
|
||||||
|
|
||||||
public static ComponentUI createUI( JComponent c ) {
|
public static ComponentUI createUI( JComponent c ) {
|
||||||
return new FlatToolBarUI();
|
return new FlatToolBarUI();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void uninstallUI( JComponent c ) {
|
|
||||||
super.uninstallUI( c );
|
|
||||||
|
|
||||||
rolloverBorder = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected ContainerListener createToolBarContListener() {
|
protected ContainerListener createToolBarContListener() {
|
||||||
return new ToolBarContListener() {
|
return new ToolBarContListener() {
|
||||||
@@ -90,26 +73,15 @@ public class FlatToolBarUI
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
// disable rollover border
|
||||||
protected Border createRolloverBorder() {
|
@Override protected void setBorderToRollover( Component c ) {}
|
||||||
return getRolloverBorder();
|
@Override protected void setBorderToNonRollover( Component c ) {}
|
||||||
}
|
@Override protected void setBorderToNormal( Component c ) {}
|
||||||
|
@Override protected void installRolloverBorders( JComponent c ) {}
|
||||||
@Override
|
@Override protected void installNonRolloverBorders( JComponent c ) {}
|
||||||
protected Border createNonRolloverBorder() {
|
@Override protected void installNormalBorders( JComponent c ) {}
|
||||||
return getRolloverBorder();
|
@Override protected Border createRolloverBorder() { return null; }
|
||||||
}
|
@Override protected Border createNonRolloverBorder() { return null; }
|
||||||
|
|
||||||
@Override
|
|
||||||
protected Border getNonRolloverBorder( AbstractButton b ) {
|
|
||||||
return getRolloverBorder();
|
|
||||||
}
|
|
||||||
|
|
||||||
private Border getRolloverBorder() {
|
|
||||||
if( rolloverBorder == null )
|
|
||||||
rolloverBorder = new FlatRolloverMarginBorder();
|
|
||||||
return rolloverBorder;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setOrientation( int orientation ) {
|
public void setOrientation( int orientation ) {
|
||||||
@@ -123,46 +95,4 @@ public class FlatToolBarUI
|
|||||||
|
|
||||||
super.setOrientation( orientation );
|
super.setOrientation( orientation );
|
||||||
}
|
}
|
||||||
|
|
||||||
//---- class FlatRolloverMarginBorder -------------------------------------
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Uses button margin only if explicitly set.
|
|
||||||
* Otherwise uses insets specified in constructor.
|
|
||||||
*/
|
|
||||||
private static class FlatRolloverMarginBorder
|
|
||||||
extends EmptyBorder
|
|
||||||
{
|
|
||||||
public FlatRolloverMarginBorder() {
|
|
||||||
super( UIManager.getInsets( "ToolBar.buttonMargins" ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Insets getBorderInsets( Component c, Insets insets ) {
|
|
||||||
Insets margin = (c instanceof AbstractButton)
|
|
||||||
? ((AbstractButton) c).getMargin()
|
|
||||||
: null;
|
|
||||||
|
|
||||||
if( margin == null || margin instanceof UIResource ) {
|
|
||||||
insets.top = top;
|
|
||||||
insets.left = left;
|
|
||||||
insets.bottom = bottom;
|
|
||||||
insets.right = right;
|
|
||||||
} else {
|
|
||||||
// margin explicitly set
|
|
||||||
insets.top = margin.top;
|
|
||||||
insets.left = margin.left;
|
|
||||||
insets.bottom = margin.bottom;
|
|
||||||
insets.right = margin.right;
|
|
||||||
}
|
|
||||||
|
|
||||||
// scale
|
|
||||||
insets.top = scale( insets.top );
|
|
||||||
insets.left = scale( insets.left );
|
|
||||||
insets.bottom = scale( insets.bottom );
|
|
||||||
insets.right = scale( insets.right );
|
|
||||||
|
|
||||||
return insets;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import java.awt.Color;
|
|||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Container;
|
import java.awt.Container;
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
|
import java.awt.Font;
|
||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
import java.awt.Graphics2D;
|
import java.awt.Graphics2D;
|
||||||
import java.awt.Insets;
|
import java.awt.Insets;
|
||||||
@@ -37,7 +38,7 @@ import java.util.function.Consumer;
|
|||||||
import javax.swing.JComponent;
|
import javax.swing.JComponent;
|
||||||
import javax.swing.LookAndFeel;
|
import javax.swing.LookAndFeel;
|
||||||
import javax.swing.UIManager;
|
import javax.swing.UIManager;
|
||||||
import javax.swing.plaf.ColorUIResource;
|
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;
|
||||||
import com.formdev.flatlaf.util.HiDPIUtils;
|
import com.formdev.flatlaf.util.HiDPIUtils;
|
||||||
@@ -83,6 +84,13 @@ public class FlatUIUtils
|
|||||||
insets1.right + insets2.right );
|
insets1.right + insets2.right );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void setInsets( Insets dest, Insets src ) {
|
||||||
|
dest.top = src.top;
|
||||||
|
dest.left = src.left;
|
||||||
|
dest.bottom = src.bottom;
|
||||||
|
dest.right = src.right;
|
||||||
|
}
|
||||||
|
|
||||||
public static Color getUIColor( String key, int defaultColorRGB ) {
|
public static Color getUIColor( String key, int defaultColorRGB ) {
|
||||||
Color color = UIManager.getColor( key );
|
Color color = UIManager.getColor( key );
|
||||||
return (color != null) ? color : new Color( defaultColorRGB );
|
return (color != null) ? color : new Color( defaultColorRGB );
|
||||||
@@ -109,7 +117,11 @@ public class FlatUIUtils
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Color nonUIResource( Color c ) {
|
public static Color nonUIResource( Color c ) {
|
||||||
return (c instanceof ColorUIResource) ? new Color( c.getRGB(), true ) : c;
|
return (c instanceof UIResource) ? new Color( c.getRGB(), true ) : c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Font nonUIResource( Font font ) {
|
||||||
|
return (font instanceof UIResource) ? new Font( font.getName(), font.getStyle(), font.getSize() ) : font;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int minimumWidth( JComponent c, int minimumWidth ) {
|
public static int minimumWidth( JComponent c, int minimumWidth ) {
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
@selectionInactiveForeground=@foreground
|
@selectionInactiveForeground=@foreground
|
||||||
@disabledText=#777777
|
@disabledText=#777777
|
||||||
@textComponentBackground=#45494A
|
@textComponentBackground=#45494A
|
||||||
|
@menuBackground=darken(@background,5%)
|
||||||
@cellFocusColor=#000000
|
@cellFocusColor=#000000
|
||||||
@icon=#adadad
|
@icon=#adadad
|
||||||
|
|
||||||
@@ -130,6 +131,34 @@ Component.focusColor=#3d6185
|
|||||||
Component.linkColor=#589df6
|
Component.linkColor=#589df6
|
||||||
|
|
||||||
|
|
||||||
|
#---- Desktop ----
|
||||||
|
|
||||||
|
Desktop.background=#3E434C
|
||||||
|
|
||||||
|
|
||||||
|
#---- DesktopIcon ----
|
||||||
|
|
||||||
|
DesktopIcon.background=lighten($Desktop.background,10%)
|
||||||
|
|
||||||
|
|
||||||
|
#---- InternalFrame ----
|
||||||
|
|
||||||
|
InternalFrame.activeTitleBackground=darken(@background,10%)
|
||||||
|
InternalFrame.activeTitleForeground=@foreground
|
||||||
|
InternalFrame.inactiveTitleBackground=darken(@background,5%)
|
||||||
|
InternalFrame.inactiveTitleForeground=@disabledText
|
||||||
|
|
||||||
|
InternalFrame.activeBorderColor=lighten($Component.borderColor,10%)
|
||||||
|
InternalFrame.inactiveBorderColor=$Component.borderColor
|
||||||
|
|
||||||
|
InternalFrame.buttonHoverBackground=lighten(10%,autoInverse)
|
||||||
|
InternalFrame.buttonPressedBackground=lighten(20%,autoInverse)
|
||||||
|
InternalFrame.closeHoverBackground=lazy(Actions.Red)
|
||||||
|
InternalFrame.closePressedBackground=darken(Actions.Red,10%,lazy)
|
||||||
|
InternalFrame.closeHoverForeground=#fff
|
||||||
|
InternalFrame.closePressedForeground=#fff
|
||||||
|
|
||||||
|
|
||||||
#---- List ----
|
#---- List ----
|
||||||
|
|
||||||
List.background=@textComponentBackground
|
List.background=@textComponentBackground
|
||||||
@@ -144,6 +173,7 @@ Menu.icon.disabledArrowColor=#606060
|
|||||||
#---- MenuBar ----
|
#---- MenuBar ----
|
||||||
|
|
||||||
MenuBar.borderColor=#515151
|
MenuBar.borderColor=#515151
|
||||||
|
MenuBar.hoverBackground=lighten($MenuBar.background,10%)
|
||||||
|
|
||||||
|
|
||||||
#---- MenuItemCheckBox ----
|
#---- MenuItemCheckBox ----
|
||||||
|
|||||||
@@ -21,9 +21,12 @@ CheckBoxUI=com.formdev.flatlaf.ui.FlatCheckBoxUI
|
|||||||
CheckBoxMenuItemUI=com.formdev.flatlaf.ui.FlatCheckBoxMenuItemUI
|
CheckBoxMenuItemUI=com.formdev.flatlaf.ui.FlatCheckBoxMenuItemUI
|
||||||
ColorChooserUI=com.formdev.flatlaf.ui.FlatColorChooserUI
|
ColorChooserUI=com.formdev.flatlaf.ui.FlatColorChooserUI
|
||||||
ComboBoxUI=com.formdev.flatlaf.ui.FlatComboBoxUI
|
ComboBoxUI=com.formdev.flatlaf.ui.FlatComboBoxUI
|
||||||
|
DesktopIconUI=com.formdev.flatlaf.ui.FlatDesktopIconUI
|
||||||
|
DesktopPaneUI=com.formdev.flatlaf.ui.FlatDesktopPaneUI
|
||||||
EditorPaneUI=com.formdev.flatlaf.ui.FlatEditorPaneUI
|
EditorPaneUI=com.formdev.flatlaf.ui.FlatEditorPaneUI
|
||||||
FileChooserUI=com.formdev.flatlaf.ui.FlatFileChooserUI
|
FileChooserUI=com.formdev.flatlaf.ui.FlatFileChooserUI
|
||||||
FormattedTextFieldUI=com.formdev.flatlaf.ui.FlatFormattedTextFieldUI
|
FormattedTextFieldUI=com.formdev.flatlaf.ui.FlatFormattedTextFieldUI
|
||||||
|
InternalFrameUI=com.formdev.flatlaf.ui.FlatInternalFrameUI
|
||||||
LabelUI=com.formdev.flatlaf.ui.FlatLabelUI
|
LabelUI=com.formdev.flatlaf.ui.FlatLabelUI
|
||||||
ListUI=com.formdev.flatlaf.ui.FlatListUI
|
ListUI=com.formdev.flatlaf.ui.FlatListUI
|
||||||
MenuUI=com.formdev.flatlaf.ui.FlatMenuUI
|
MenuUI=com.formdev.flatlaf.ui.FlatMenuUI
|
||||||
@@ -59,6 +62,7 @@ ViewportUI=com.formdev.flatlaf.ui.FlatViewportUI
|
|||||||
#---- variables ----
|
#---- variables ----
|
||||||
|
|
||||||
@textComponentMargin=2,6,2,6
|
@textComponentMargin=2,6,2,6
|
||||||
|
@menuItemMargin=2,8,2,8
|
||||||
|
|
||||||
|
|
||||||
#---- system colors ----
|
#---- system colors ----
|
||||||
@@ -99,6 +103,9 @@ Button.defaultButtonFollowsFocus=false
|
|||||||
|
|
||||||
Button.default.borderWidth=1
|
Button.default.borderWidth=1
|
||||||
|
|
||||||
|
Button.toolbar.margin=3,3,3,3
|
||||||
|
Button.toolbar.spacingInsets=1,2,1,2
|
||||||
|
|
||||||
|
|
||||||
#---- Caret ----
|
#---- Caret ----
|
||||||
|
|
||||||
@@ -117,10 +124,12 @@ CheckBox.rollover=true
|
|||||||
|
|
||||||
#---- CheckBoxMenuItem ----
|
#---- CheckBoxMenuItem ----
|
||||||
|
|
||||||
CheckBoxMenuItem.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
CheckBoxMenuItem.border=com.formdev.flatlaf.ui.FlatMenuItemBorder
|
||||||
CheckBoxMenuItem.checkIcon=com.formdev.flatlaf.icons.FlatCheckBoxMenuItemIcon
|
CheckBoxMenuItem.checkIcon=com.formdev.flatlaf.icons.FlatCheckBoxMenuItemIcon
|
||||||
CheckBoxMenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
CheckBoxMenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
||||||
CheckBoxMenuItem.margin=2,2,2,2
|
CheckBoxMenuItem.margin=@menuItemMargin
|
||||||
|
CheckBoxMenuItem.opaque=false
|
||||||
|
CheckBoxMenuItem.background=@menuBackground
|
||||||
|
|
||||||
|
|
||||||
#---- ColorChooser ----
|
#---- ColorChooser ----
|
||||||
@@ -145,6 +154,14 @@ Component.arrowType=chevron
|
|||||||
Component.hideMnemonics=true
|
Component.hideMnemonics=true
|
||||||
|
|
||||||
|
|
||||||
|
#---- DesktopIcon ----
|
||||||
|
|
||||||
|
DesktopIcon.border=4,4,4,4
|
||||||
|
DesktopIcon.iconSize=64,64
|
||||||
|
DesktopIcon.closeSize=20,20
|
||||||
|
DesktopIcon.closeIcon=com.formdev.flatlaf.icons.FlatInternalFrameCloseIcon
|
||||||
|
|
||||||
|
|
||||||
#---- EditorPane ----
|
#---- EditorPane ----
|
||||||
|
|
||||||
EditorPane.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
EditorPane.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
||||||
@@ -194,6 +211,23 @@ HelpButton.questionMarkColor=$CheckBox.icon.checkmarkColor
|
|||||||
HelpButton.disabledQuestionMarkColor=$CheckBox.icon.disabledCheckmarkColor
|
HelpButton.disabledQuestionMarkColor=$CheckBox.icon.disabledCheckmarkColor
|
||||||
|
|
||||||
|
|
||||||
|
#---- InternalFrame ----
|
||||||
|
|
||||||
|
InternalFrame.border=com.formdev.flatlaf.ui.FlatInternalFrameUI$FlatInternalFrameBorder
|
||||||
|
InternalFrame.borderLineWidth=1
|
||||||
|
InternalFrame.borderMargins=6,6,6,6
|
||||||
|
InternalFrame.buttonSize=24,24
|
||||||
|
InternalFrame.closeIcon=com.formdev.flatlaf.icons.FlatInternalFrameCloseIcon
|
||||||
|
InternalFrame.iconifyIcon=com.formdev.flatlaf.icons.FlatInternalFrameIconifyIcon
|
||||||
|
InternalFrame.maximizeIcon=com.formdev.flatlaf.icons.FlatInternalFrameMaximizeIcon
|
||||||
|
InternalFrame.minimizeIcon=com.formdev.flatlaf.icons.FlatInternalFrameMinimizeIcon
|
||||||
|
|
||||||
|
|
||||||
|
#---- InternalFrameTitlePane ----
|
||||||
|
|
||||||
|
InternalFrameTitlePane.border=0,8,0,0
|
||||||
|
|
||||||
|
|
||||||
#---- List ----
|
#---- List ----
|
||||||
|
|
||||||
List.border=1,0,1,0
|
List.border=1,0,1,0
|
||||||
@@ -212,23 +246,29 @@ List.dropLineColor=@dropLineColor
|
|||||||
|
|
||||||
#---- Menu ----
|
#---- Menu ----
|
||||||
|
|
||||||
Menu.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
Menu.border=com.formdev.flatlaf.ui.FlatMenuItemBorder
|
||||||
Menu.arrowIcon=com.formdev.flatlaf.icons.FlatMenuArrowIcon
|
Menu.arrowIcon=com.formdev.flatlaf.icons.FlatMenuArrowIcon
|
||||||
Menu.margin=2,2,2,2
|
Menu.margin=@menuItemMargin
|
||||||
Menu.submenuPopupOffsetX={scaledInteger}-4
|
Menu.submenuPopupOffsetX={scaledInteger}-4
|
||||||
Menu.submenuPopupOffsetY={scaledInteger}-1
|
Menu.submenuPopupOffsetY={scaledInteger}-4
|
||||||
|
Menu.opaque=false
|
||||||
|
Menu.background=@menuBackground
|
||||||
|
|
||||||
|
|
||||||
#---- MenuBar ----
|
#---- MenuBar ----
|
||||||
|
|
||||||
MenuBar.border=com.formdev.flatlaf.ui.FlatMenuBarBorder
|
MenuBar.border=com.formdev.flatlaf.ui.FlatMenuBarBorder
|
||||||
|
MenuBar.background=@menuBackground
|
||||||
|
MenuBar.itemMargins=3,3,3,3
|
||||||
|
|
||||||
|
|
||||||
#---- MenuItem ----
|
#---- MenuItem ----
|
||||||
|
|
||||||
MenuItem.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
MenuItem.border=com.formdev.flatlaf.ui.FlatMenuItemBorder
|
||||||
MenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
MenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
||||||
MenuItem.margin=2,2,2,2
|
MenuItem.margin=@menuItemMargin
|
||||||
|
MenuItem.opaque=false
|
||||||
|
MenuItem.background=@menuBackground
|
||||||
|
|
||||||
|
|
||||||
#---- OptionPane ----
|
#---- OptionPane ----
|
||||||
@@ -260,12 +300,14 @@ PasswordField.border=com.formdev.flatlaf.ui.FlatBorder
|
|||||||
PasswordField.margin=@textComponentMargin
|
PasswordField.margin=@textComponentMargin
|
||||||
PasswordField.background=@textComponentBackground
|
PasswordField.background=@textComponentBackground
|
||||||
PasswordField.placeholderForeground=@disabledText
|
PasswordField.placeholderForeground=@disabledText
|
||||||
|
PasswordField.echoChar=\u2022
|
||||||
|
|
||||||
|
|
||||||
#---- PopupMenu ----
|
#---- PopupMenu ----
|
||||||
|
|
||||||
PopupMenu.border=com.formdev.flatlaf.ui.FlatPopupMenuBorder
|
PopupMenu.border=com.formdev.flatlaf.ui.FlatPopupMenuBorder
|
||||||
PopupMenu.borderInsets=1,1,1,1
|
PopupMenu.borderInsets=4,1,4,1
|
||||||
|
PopupMenu.background=@menuBackground
|
||||||
|
|
||||||
|
|
||||||
#---- PopupMenuSeparator ----
|
#---- PopupMenuSeparator ----
|
||||||
@@ -281,6 +323,8 @@ ProgressBar.border=com.formdev.flatlaf.ui.FlatEmptyBorder
|
|||||||
ProgressBar.arc=4
|
ProgressBar.arc=4
|
||||||
ProgressBar.horizontalSize=146,4
|
ProgressBar.horizontalSize=146,4
|
||||||
ProgressBar.verticalSize=4,146
|
ProgressBar.verticalSize=4,146
|
||||||
|
ProgressBar.cycleTime=4000
|
||||||
|
ProgressBar.repaintInterval=15
|
||||||
|
|
||||||
|
|
||||||
#---- RadioButton ----
|
#---- RadioButton ----
|
||||||
@@ -295,10 +339,12 @@ RadioButton.rollover=true
|
|||||||
|
|
||||||
#---- RadioButtonMenuItem ----
|
#---- RadioButtonMenuItem ----
|
||||||
|
|
||||||
RadioButtonMenuItem.border=com.formdev.flatlaf.ui.FlatMarginBorder
|
RadioButtonMenuItem.border=com.formdev.flatlaf.ui.FlatMenuItemBorder
|
||||||
RadioButtonMenuItem.checkIcon=com.formdev.flatlaf.icons.FlatRadioButtonMenuItemIcon
|
RadioButtonMenuItem.checkIcon=com.formdev.flatlaf.icons.FlatRadioButtonMenuItemIcon
|
||||||
RadioButtonMenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
RadioButtonMenuItem.arrowIcon=com.formdev.flatlaf.icons.FlatMenuItemArrowIcon
|
||||||
RadioButtonMenuItem.margin=2,2,2,2
|
RadioButtonMenuItem.margin=@menuItemMargin
|
||||||
|
RadioButtonMenuItem.opaque=false
|
||||||
|
RadioButtonMenuItem.background=@menuBackground
|
||||||
|
|
||||||
|
|
||||||
#---- ScrollBar ----
|
#---- ScrollBar ----
|
||||||
@@ -407,6 +453,12 @@ TextArea.margin=@textComponentMargin
|
|||||||
TextArea.background=@textComponentBackground
|
TextArea.background=@textComponentBackground
|
||||||
|
|
||||||
|
|
||||||
|
#---- TextComponent ----
|
||||||
|
|
||||||
|
# allowed values: "never", "once" (default) or "always"
|
||||||
|
TextComponent.selectAllOnFocusPolicy=once
|
||||||
|
|
||||||
|
|
||||||
#---- TextField ----
|
#---- TextField ----
|
||||||
|
|
||||||
TextField.border=com.formdev.flatlaf.ui.FlatBorder
|
TextField.border=com.formdev.flatlaf.ui.FlatBorder
|
||||||
@@ -453,8 +505,8 @@ ToggleButton.tab.focusBackground=$TabbedPane.focusColor
|
|||||||
#---- ToolBar ----
|
#---- ToolBar ----
|
||||||
|
|
||||||
ToolBar.border=com.formdev.flatlaf.ui.FlatToolBarBorder
|
ToolBar.border=com.formdev.flatlaf.ui.FlatToolBarBorder
|
||||||
|
ToolBar.borderMargins=2,2,2,2
|
||||||
ToolBar.isRollover=true
|
ToolBar.isRollover=true
|
||||||
ToolBar.buttonMargins=3,3,3,3
|
|
||||||
ToolBar.gripColor=@icon
|
ToolBar.gripColor=@icon
|
||||||
ToolBar.dockingBackground=@background
|
ToolBar.dockingBackground=@background
|
||||||
ToolBar.floatingBackground=@background
|
ToolBar.floatingBackground=@background
|
||||||
@@ -463,6 +515,8 @@ ToolBar.separatorSize=null
|
|||||||
ToolBar.separatorWidth=7
|
ToolBar.separatorWidth=7
|
||||||
ToolBar.separatorColor=$Separator.foreground
|
ToolBar.separatorColor=$Separator.foreground
|
||||||
|
|
||||||
|
ToolBar.spacingBorder=$Button.toolbar.spacingInsets
|
||||||
|
|
||||||
|
|
||||||
#---- ToolTip ----
|
#---- ToolTip ----
|
||||||
|
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
@selectionInactiveForeground=@foreground
|
@selectionInactiveForeground=@foreground
|
||||||
@disabledText=#8C8C8C
|
@disabledText=#8C8C8C
|
||||||
@textComponentBackground=#ffffff
|
@textComponentBackground=#ffffff
|
||||||
|
@menuBackground=#fff
|
||||||
@cellFocusColor=#000000
|
@cellFocusColor=#000000
|
||||||
@icon=#afafaf
|
@icon=#afafaf
|
||||||
|
|
||||||
@@ -132,11 +133,39 @@ Component.focusColor=#97c3f3
|
|||||||
Component.linkColor=#2470B3
|
Component.linkColor=#2470B3
|
||||||
|
|
||||||
|
|
||||||
|
#---- Desktop ----
|
||||||
|
|
||||||
|
Desktop.background=#E6EBF0
|
||||||
|
|
||||||
|
|
||||||
|
#---- DesktopIcon ----
|
||||||
|
|
||||||
|
DesktopIcon.background=darken($Desktop.background,10%)
|
||||||
|
|
||||||
|
|
||||||
#---- HelpButton ----
|
#---- HelpButton ----
|
||||||
|
|
||||||
HelpButton.questionMarkColor=#4F9EE3
|
HelpButton.questionMarkColor=#4F9EE3
|
||||||
|
|
||||||
|
|
||||||
|
#---- InternalFrame ----
|
||||||
|
|
||||||
|
InternalFrame.activeTitleBackground=#fff
|
||||||
|
InternalFrame.activeTitleForeground=@foreground
|
||||||
|
InternalFrame.inactiveTitleBackground=#fafafa
|
||||||
|
InternalFrame.inactiveTitleForeground=@disabledText
|
||||||
|
|
||||||
|
InternalFrame.activeBorderColor=darken($Component.borderColor,20%)
|
||||||
|
InternalFrame.inactiveBorderColor=$Component.borderColor
|
||||||
|
|
||||||
|
InternalFrame.buttonHoverBackground=darken(10%,autoInverse)
|
||||||
|
InternalFrame.buttonPressedBackground=darken(20%,autoInverse)
|
||||||
|
InternalFrame.closeHoverBackground=lazy(Actions.Red)
|
||||||
|
InternalFrame.closePressedBackground=darken(Actions.Red,10%,lazy)
|
||||||
|
InternalFrame.closeHoverForeground=#fff
|
||||||
|
InternalFrame.closePressedForeground=#fff
|
||||||
|
|
||||||
|
|
||||||
#---- List ----
|
#---- List ----
|
||||||
|
|
||||||
List.background=@textComponentBackground
|
List.background=@textComponentBackground
|
||||||
@@ -151,6 +180,7 @@ Menu.icon.disabledArrowColor=#ABABAB
|
|||||||
#---- MenuBar ----
|
#---- MenuBar ----
|
||||||
|
|
||||||
MenuBar.borderColor=#cdcdcd
|
MenuBar.borderColor=#cdcdcd
|
||||||
|
MenuBar.hoverBackground=darken($MenuBar.background,10%)
|
||||||
|
|
||||||
|
|
||||||
#---- MenuItemCheckBox ----
|
#---- MenuItemCheckBox ----
|
||||||
|
|||||||
@@ -14,11 +14,17 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
|
|
||||||
|
// Although artifactory plugin is not used in this subproject, the plugin is required
|
||||||
|
// because otherwise gradle fails with following error:
|
||||||
|
// Caused by: org.codehaus.groovy.runtime.typehandling.GroovyCastException:
|
||||||
|
// Cannot cast object 'task ':bintrayUpload''
|
||||||
|
// with class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask_Decorated'
|
||||||
|
// to class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask'
|
||||||
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -28,11 +34,6 @@ dependencies {
|
|||||||
implementation( "com.jgoodies:jgoodies-forms:1.9.0" )
|
implementation( "com.jgoodies:jgoodies-forms:1.9.0" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
jar {
|
jar {
|
||||||
dependsOn( ":flatlaf-core:jar" )
|
dependsOn( ":flatlaf-core:jar" )
|
||||||
@@ -46,14 +47,18 @@ tasks {
|
|||||||
|
|
||||||
// include all dependencies in jar
|
// include all dependencies in jar
|
||||||
from( {
|
from( {
|
||||||
configurations.runtimeClasspath.get().filter { it.name.endsWith( "jar" ) }.map { zipTree( it ) }
|
configurations.runtimeClasspath.get()
|
||||||
|
.filter { it.name.endsWith( "jar" ) }
|
||||||
|
.map { zipTree( it ).matching {
|
||||||
|
exclude( "META-INF/LICENSE" )
|
||||||
|
} }
|
||||||
} )
|
} )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setConfigurations( "archives" )
|
setConfigurations( "archives" )
|
||||||
|
|
||||||
@@ -67,6 +72,7 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package com.formdev.flatlaf.demo;
|
package com.formdev.flatlaf.demo;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
import javax.swing.text.DefaultEditorKit;
|
||||||
import net.miginfocom.swing.*;
|
import net.miginfocom.swing.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -113,6 +114,10 @@ class BasicComponentsPanel
|
|||||||
JScrollPane scrollPane12 = new JScrollPane();
|
JScrollPane scrollPane12 = new JScrollPane();
|
||||||
JTextPane textPane4 = new JTextPane();
|
JTextPane textPane4 = new JTextPane();
|
||||||
JTextPane textPane5 = new JTextPane();
|
JTextPane textPane5 = new JTextPane();
|
||||||
|
JPopupMenu popupMenu1 = new JPopupMenu();
|
||||||
|
JMenuItem cutMenuItem = new JMenuItem();
|
||||||
|
JMenuItem copyMenuItem = new JMenuItem();
|
||||||
|
JMenuItem pasteMenuItem = new JMenuItem();
|
||||||
|
|
||||||
//======== this ========
|
//======== this ========
|
||||||
setLayout(new MigLayout(
|
setLayout(new MigLayout(
|
||||||
@@ -260,6 +265,8 @@ class BasicComponentsPanel
|
|||||||
|
|
||||||
//---- comboBoxLabel ----
|
//---- comboBoxLabel ----
|
||||||
comboBoxLabel.setText("JComboBox:");
|
comboBoxLabel.setText("JComboBox:");
|
||||||
|
comboBoxLabel.setDisplayedMnemonic('C');
|
||||||
|
comboBoxLabel.setLabelFor(comboBox1);
|
||||||
add(comboBoxLabel, "cell 0 4");
|
add(comboBoxLabel, "cell 0 4");
|
||||||
|
|
||||||
//---- comboBox1 ----
|
//---- comboBox1 ----
|
||||||
@@ -314,6 +321,8 @@ class BasicComponentsPanel
|
|||||||
|
|
||||||
//---- spinnerLabel ----
|
//---- spinnerLabel ----
|
||||||
spinnerLabel.setText("JSpinner:");
|
spinnerLabel.setText("JSpinner:");
|
||||||
|
spinnerLabel.setLabelFor(spinner1);
|
||||||
|
spinnerLabel.setDisplayedMnemonic('S');
|
||||||
add(spinnerLabel, "cell 0 5");
|
add(spinnerLabel, "cell 0 5");
|
||||||
add(spinner1, "cell 1 5,growx");
|
add(spinner1, "cell 1 5,growx");
|
||||||
|
|
||||||
@@ -328,10 +337,13 @@ class BasicComponentsPanel
|
|||||||
|
|
||||||
//---- textFieldLabel ----
|
//---- textFieldLabel ----
|
||||||
textFieldLabel.setText("JTextField:");
|
textFieldLabel.setText("JTextField:");
|
||||||
|
textFieldLabel.setDisplayedMnemonic('T');
|
||||||
|
textFieldLabel.setLabelFor(textField1);
|
||||||
add(textFieldLabel, "cell 0 6");
|
add(textFieldLabel, "cell 0 6");
|
||||||
|
|
||||||
//---- textField1 ----
|
//---- textField1 ----
|
||||||
textField1.setText("editable");
|
textField1.setText("editable");
|
||||||
|
textField1.setComponentPopupMenu(popupMenu1);
|
||||||
add(textField1, "cell 1 6,growx");
|
add(textField1, "cell 1 6,growx");
|
||||||
|
|
||||||
//---- textField2 ----
|
//---- textField2 ----
|
||||||
@@ -356,10 +368,13 @@ class BasicComponentsPanel
|
|||||||
|
|
||||||
//---- formattedTextFieldLabel ----
|
//---- formattedTextFieldLabel ----
|
||||||
formattedTextFieldLabel.setText("JFormattedTextField:");
|
formattedTextFieldLabel.setText("JFormattedTextField:");
|
||||||
|
formattedTextFieldLabel.setLabelFor(formattedTextField1);
|
||||||
|
formattedTextFieldLabel.setDisplayedMnemonic('O');
|
||||||
add(formattedTextFieldLabel, "cell 0 7");
|
add(formattedTextFieldLabel, "cell 0 7");
|
||||||
|
|
||||||
//---- formattedTextField1 ----
|
//---- formattedTextField1 ----
|
||||||
formattedTextField1.setText("editable");
|
formattedTextField1.setText("editable");
|
||||||
|
formattedTextField1.setComponentPopupMenu(popupMenu1);
|
||||||
add(formattedTextField1, "cell 1 7,growx");
|
add(formattedTextField1, "cell 1 7,growx");
|
||||||
|
|
||||||
//---- formattedTextField2 ----
|
//---- formattedTextField2 ----
|
||||||
@@ -582,7 +597,27 @@ class BasicComponentsPanel
|
|||||||
//---- textPane5 ----
|
//---- textPane5 ----
|
||||||
textPane5.setText("no scroll pane");
|
textPane5.setText("no scroll pane");
|
||||||
add(textPane5, "cell 5 11,growx");
|
add(textPane5, "cell 5 11,growx");
|
||||||
|
|
||||||
|
//======== popupMenu1 ========
|
||||||
|
{
|
||||||
|
|
||||||
|
//---- cutMenuItem ----
|
||||||
|
cutMenuItem.setText("Cut");
|
||||||
|
popupMenu1.add(cutMenuItem);
|
||||||
|
|
||||||
|
//---- copyMenuItem ----
|
||||||
|
copyMenuItem.setText("Copy");
|
||||||
|
popupMenu1.add(copyMenuItem);
|
||||||
|
|
||||||
|
//---- pasteMenuItem ----
|
||||||
|
pasteMenuItem.setText("Paste");
|
||||||
|
popupMenu1.add(pasteMenuItem);
|
||||||
|
}
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||||
|
|
||||||
|
cutMenuItem.addActionListener( new DefaultEditorKit.CutAction() );
|
||||||
|
copyMenuItem.addActionListener( new DefaultEditorKit.CopyAction() );
|
||||||
|
pasteMenuItem.addActionListener( new DefaultEditorKit.PasteAction() );
|
||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||||
|
|||||||
@@ -183,6 +183,8 @@ new FormModel {
|
|||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "comboBoxLabel"
|
name: "comboBoxLabel"
|
||||||
"text": "JComboBox:"
|
"text": "JComboBox:"
|
||||||
|
"displayedMnemonic": 67
|
||||||
|
"labelFor": new FormReference( "comboBox1" )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 0 4"
|
"value": "cell 0 4"
|
||||||
} )
|
} )
|
||||||
@@ -254,6 +256,8 @@ new FormModel {
|
|||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "spinnerLabel"
|
name: "spinnerLabel"
|
||||||
"text": "JSpinner:"
|
"text": "JSpinner:"
|
||||||
|
"labelFor": new FormReference( "spinner1" )
|
||||||
|
"displayedMnemonic": 83
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 0 5"
|
"value": "cell 0 5"
|
||||||
} )
|
} )
|
||||||
@@ -281,12 +285,15 @@ new FormModel {
|
|||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "textFieldLabel"
|
name: "textFieldLabel"
|
||||||
"text": "JTextField:"
|
"text": "JTextField:"
|
||||||
|
"displayedMnemonic": 84
|
||||||
|
"labelFor": new FormReference( "textField1" )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 0 6"
|
"value": "cell 0 6"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JTextField" ) {
|
add( new FormComponent( "javax.swing.JTextField" ) {
|
||||||
name: "textField1"
|
name: "textField1"
|
||||||
"text": "editable"
|
"text": "editable"
|
||||||
|
"componentPopupMenu": &FormReference0 new FormReference( "popupMenu1" )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 6,growx"
|
"value": "cell 1 6,growx"
|
||||||
} )
|
} )
|
||||||
@@ -321,12 +328,15 @@ new FormModel {
|
|||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "formattedTextFieldLabel"
|
name: "formattedTextFieldLabel"
|
||||||
"text": "JFormattedTextField:"
|
"text": "JFormattedTextField:"
|
||||||
|
"labelFor": new FormReference( "formattedTextField1" )
|
||||||
|
"displayedMnemonic": 79
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 0 7"
|
"value": "cell 0 7"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JFormattedTextField" ) {
|
add( new FormComponent( "javax.swing.JFormattedTextField" ) {
|
||||||
name: "formattedTextField1"
|
name: "formattedTextField1"
|
||||||
"text": "editable"
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 7,growx"
|
"value": "cell 1 7,growx"
|
||||||
} )
|
} )
|
||||||
@@ -585,7 +595,25 @@ 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( 790, 715 )
|
"size": new java.awt.Dimension( 790, 440 )
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JPopupMenu", new FormLayoutManager( class javax.swing.JPopupMenu ) ) {
|
||||||
|
name: "popupMenu1"
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "cutMenuItem"
|
||||||
|
"text": "Cut"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "copyMenuItem"
|
||||||
|
"text": "Copy"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "pasteMenuItem"
|
||||||
|
"text": "Paste"
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( null ) {
|
||||||
|
"location": new java.awt.Point( 0, 500 )
|
||||||
|
"size": new java.awt.Dimension( 91, 87 )
|
||||||
} )
|
} )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ package com.formdev.flatlaf.demo;
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.awt.event.*;
|
import java.awt.event.*;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
import javax.swing.text.DefaultEditorKit;
|
||||||
import com.formdev.flatlaf.demo.intellijthemes.*;
|
import com.formdev.flatlaf.demo.intellijthemes.*;
|
||||||
import com.formdev.flatlaf.extras.FlatSVGIcon;
|
import com.formdev.flatlaf.extras.FlatSVGIcon;
|
||||||
import net.miginfocom.swing.*;
|
import net.miginfocom.swing.*;
|
||||||
@@ -175,21 +176,18 @@ class DemoFrame
|
|||||||
cutMenuItem.setText("Cut");
|
cutMenuItem.setText("Cut");
|
||||||
cutMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
cutMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
||||||
cutMenuItem.setMnemonic('C');
|
cutMenuItem.setMnemonic('C');
|
||||||
cutMenuItem.addActionListener(e -> menuItemActionPerformed(e));
|
|
||||||
editMenu.add(cutMenuItem);
|
editMenu.add(cutMenuItem);
|
||||||
|
|
||||||
//---- copyMenuItem ----
|
//---- copyMenuItem ----
|
||||||
copyMenuItem.setText("Copy");
|
copyMenuItem.setText("Copy");
|
||||||
copyMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
copyMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
||||||
copyMenuItem.setMnemonic('O');
|
copyMenuItem.setMnemonic('O');
|
||||||
copyMenuItem.addActionListener(e -> menuItemActionPerformed(e));
|
|
||||||
editMenu.add(copyMenuItem);
|
editMenu.add(copyMenuItem);
|
||||||
|
|
||||||
//---- pasteMenuItem ----
|
//---- pasteMenuItem ----
|
||||||
pasteMenuItem.setText("Paste");
|
pasteMenuItem.setText("Paste");
|
||||||
pasteMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_V, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
pasteMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_V, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
|
||||||
pasteMenuItem.setMnemonic('P');
|
pasteMenuItem.setMnemonic('P');
|
||||||
pasteMenuItem.addActionListener(e -> menuItemActionPerformed(e));
|
|
||||||
editMenu.add(pasteMenuItem);
|
editMenu.add(pasteMenuItem);
|
||||||
editMenu.addSeparator();
|
editMenu.addSeparator();
|
||||||
|
|
||||||
@@ -385,6 +383,10 @@ class DemoFrame
|
|||||||
pasteButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/menu-paste.svg" ) );
|
pasteButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/menu-paste.svg" ) );
|
||||||
refreshButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/refresh.svg" ) );
|
refreshButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/refresh.svg" ) );
|
||||||
showToggleButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/show.svg" ) );
|
showToggleButton.setIcon( new FlatSVGIcon( "com/formdev/flatlaf/demo/icons/show.svg" ) );
|
||||||
|
|
||||||
|
cutMenuItem.addActionListener( new DefaultEditorKit.CutAction() );
|
||||||
|
copyMenuItem.addActionListener( new DefaultEditorKit.CopyAction() );
|
||||||
|
pasteMenuItem.addActionListener( new DefaultEditorKit.PasteAction() );
|
||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||||
|
|||||||
@@ -179,21 +179,18 @@ new FormModel {
|
|||||||
"text": "Cut"
|
"text": "Cut"
|
||||||
"accelerator": static javax.swing.KeyStroke getKeyStroke( 88, 4226, false )
|
"accelerator": static javax.swing.KeyStroke getKeyStroke( 88, 4226, false )
|
||||||
"mnemonic": 67
|
"mnemonic": 67
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "menuItemActionPerformed", true ) )
|
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
name: "copyMenuItem"
|
name: "copyMenuItem"
|
||||||
"text": "Copy"
|
"text": "Copy"
|
||||||
"accelerator": static javax.swing.KeyStroke getKeyStroke( 67, 4226, false )
|
"accelerator": static javax.swing.KeyStroke getKeyStroke( 67, 4226, false )
|
||||||
"mnemonic": 79
|
"mnemonic": 79
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "menuItemActionPerformed", true ) )
|
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
name: "pasteMenuItem"
|
name: "pasteMenuItem"
|
||||||
"text": "Paste"
|
"text": "Paste"
|
||||||
"accelerator": static javax.swing.KeyStroke getKeyStroke( 86, 4226, false )
|
"accelerator": static javax.swing.KeyStroke getKeyStroke( 86, 4226, false )
|
||||||
"mnemonic": 80
|
"mnemonic": 80
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "menuItemActionPerformed", true ) )
|
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JPopupMenu$Separator" ) {
|
add( new FormComponent( "javax.swing.JPopupMenu$Separator" ) {
|
||||||
name: "separator3"
|
name: "separator3"
|
||||||
|
|||||||
@@ -10,7 +10,8 @@
|
|||||||
"selectionForeground": "#ffffff",
|
"selectionForeground": "#ffffff",
|
||||||
"selectionInactiveBackground": "#C36200",
|
"selectionInactiveBackground": "#C36200",
|
||||||
"selectionBackgroundInactive": "#c36200",
|
"selectionBackgroundInactive": "#c36200",
|
||||||
"background" : "#F5F5F5"
|
"background" : "#FFFFFF",
|
||||||
|
"focusColor" : "#f57900"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Borders": {
|
"Borders": {
|
||||||
@@ -23,6 +24,7 @@
|
|||||||
"startBorderColor": "#C4C4C4",
|
"startBorderColor": "#C4C4C4",
|
||||||
"endBorderColor": "#C4C4C4",
|
"endBorderColor": "#C4C4C4",
|
||||||
"focusedBorderColor" : "#f57900",
|
"focusedBorderColor" : "#f57900",
|
||||||
|
"background" : "#F5F5F5",
|
||||||
"default": {
|
"default": {
|
||||||
"foreground": "#FFFFFF",
|
"foreground": "#FFFFFF",
|
||||||
"startBackground": "#f57900",
|
"startBackground": "#f57900",
|
||||||
@@ -40,8 +42,6 @@
|
|||||||
"WelcomeScreen.background" : "#F5F5F5",
|
"WelcomeScreen.background" : "#F5F5F5",
|
||||||
"WelcomeScreen.Projects.background" : "#ffffff",
|
"WelcomeScreen.Projects.background" : "#ffffff",
|
||||||
|
|
||||||
"List.background" : "#ffffff",
|
|
||||||
|
|
||||||
"MenuBar.foreground" : "#5c616c",
|
"MenuBar.foreground" : "#5c616c",
|
||||||
"Menu.background" : "#ffffff",
|
"Menu.background" : "#ffffff",
|
||||||
"Menu.separatorColor" : "#F5F5F5",
|
"Menu.separatorColor" : "#F5F5F5",
|
||||||
@@ -49,8 +49,10 @@
|
|||||||
"MenuItem.foreground" : "#5c616c",
|
"MenuItem.foreground" : "#5c616c",
|
||||||
"MenuItem.background" : "#ffffff",
|
"MenuItem.background" : "#ffffff",
|
||||||
"PopupMenuSeparator.height" : "1",
|
"PopupMenuSeparator.height" : "1",
|
||||||
|
"Separator.separatorColor" : "#9ba2ab",
|
||||||
|
|
||||||
"Tree.background" : "#ffffff",
|
"Tree.background" : "#ffffff",
|
||||||
|
"Tree.rowHeight": "23",
|
||||||
|
|
||||||
"ProgressBar.background" : "#f57900",
|
"ProgressBar.background" : "#f57900",
|
||||||
"ProgressBar.foreground" : "#f57900",
|
"ProgressBar.foreground" : "#f57900",
|
||||||
@@ -69,9 +71,11 @@
|
|||||||
"ParameterInfo.background" : "#fffae3",
|
"ParameterInfo.background" : "#fffae3",
|
||||||
"ParameterInfo.currentOverloadBackground" : "#fffae3",
|
"ParameterInfo.currentOverloadBackground" : "#fffae3",
|
||||||
|
|
||||||
|
"List.background" : "#ffffff",
|
||||||
"List.dropLineColor" : "#f57900",
|
"List.dropLineColor" : "#f57900",
|
||||||
"List.selectionBackground": "#f57900",
|
"List.selectionBackground": "#f57900",
|
||||||
"List.selectionForeground": "#ffffff",
|
"List.selectionForeground": "#ffffff",
|
||||||
|
"List.selectionInactiveBackground": "#C36200",
|
||||||
|
|
||||||
"Table.background" : "#ffffff",
|
"Table.background" : "#ffffff",
|
||||||
"Table.selectionBackground" : "#f57900",
|
"Table.selectionBackground" : "#f57900",
|
||||||
@@ -83,6 +87,7 @@
|
|||||||
|
|
||||||
"TabbedPane.underlineColor" : "#f57900",
|
"TabbedPane.underlineColor" : "#f57900",
|
||||||
"TabbedPane.tabSelectionHeight" : 2,
|
"TabbedPane.tabSelectionHeight" : 2,
|
||||||
|
"TabbedPane.background" : "#F5F5F5",
|
||||||
|
|
||||||
"Link.hoverForeground" : "#f57900",
|
"Link.hoverForeground" : "#f57900",
|
||||||
"Link.activeForeground" : "#f57900",
|
"Link.activeForeground" : "#f57900",
|
||||||
@@ -98,8 +103,22 @@
|
|||||||
"TextArea.background" : "#ffffff",
|
"TextArea.background" : "#ffffff",
|
||||||
"TextPane.background" : "#ffffff",
|
"TextPane.background" : "#ffffff",
|
||||||
"PasswordField.background" : "#ffffff",
|
"PasswordField.background" : "#ffffff",
|
||||||
|
"FormattedTextField.background" : "#ffffff",
|
||||||
|
"Editor.background" : "#f5f5f5",
|
||||||
|
"EditorPane.background" : "#ffffff",
|
||||||
|
|
||||||
"CompletionPopup.background" : "#ffffff",
|
"CheckBox.background" : "#F5F5F5",
|
||||||
|
"RadioButton.background" : "#F5F5F5",
|
||||||
|
"Slider.background" : "#F5F5F5",
|
||||||
|
"Spinner.background" : "#F5F5F5",
|
||||||
|
"OptionPane.background" : "#F5F5F5",
|
||||||
|
|
||||||
|
"CompletionPopup": {
|
||||||
|
"selectionBackground" : "#F5790055",
|
||||||
|
"nonFocusedMask": false,
|
||||||
|
"matchForeground": "#F57900",
|
||||||
|
"selectionInactiveBackground": "#C36200"
|
||||||
|
},
|
||||||
|
|
||||||
"Plugins.lightSelectionBackground" : "#dddee1",
|
"Plugins.lightSelectionBackground" : "#dddee1",
|
||||||
"Plugins.SearchField.background" : "#ffffff",
|
"Plugins.SearchField.background" : "#ffffff",
|
||||||
@@ -116,8 +135,10 @@
|
|||||||
"Counter.foreground" : "#ffffff",
|
"Counter.foreground" : "#ffffff",
|
||||||
|
|
||||||
"SearchEverywhere.SearchField.background" : "#ffffff",
|
"SearchEverywhere.SearchField.background" : "#ffffff",
|
||||||
|
"SearchEverywhere.Header.background" : "#F5F5F5",
|
||||||
|
|
||||||
"ToolTip.background" : "#fffae3",
|
"ToolTip.background" : "#F5F5F5",
|
||||||
|
"ToolTip.Actions.background" : "#F5F5F5",
|
||||||
|
|
||||||
"ToolWindow.Header.background" : "#e7e8eb",
|
"ToolWindow.Header.background" : "#e7e8eb",
|
||||||
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
|
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
|
||||||
@@ -128,8 +149,12 @@
|
|||||||
"ToolWindow.HeaderTab.underlineColor" : "#f57900",
|
"ToolWindow.HeaderTab.underlineColor" : "#f57900",
|
||||||
"DefaultTabs.underlineHeight" : 2,
|
"DefaultTabs.underlineHeight" : 2,
|
||||||
"DefaultTabs.underlineColor" : "#f57900",
|
"DefaultTabs.underlineColor" : "#f57900",
|
||||||
|
"DefaultTabs.background" : "#F5F5F5",
|
||||||
"EditorTabs.underlineHeight" : 2,
|
"EditorTabs.underlineHeight" : 2,
|
||||||
"EditorTabs.underlineColor" : "#f57900"
|
"EditorTabs.underlineColor" : "#f57900",
|
||||||
|
"EditorTabs.background" : "#F5F5F5",
|
||||||
|
|
||||||
|
"Notification.background" : "#F5F5F5"
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,8 @@
|
|||||||
"selectionForeground": "#ffffff",
|
"selectionForeground": "#ffffff",
|
||||||
"selectionInactiveBackground": "#1e61b0",
|
"selectionInactiveBackground": "#1e61b0",
|
||||||
"selectionBackgroundInactive": "#1e61b0",
|
"selectionBackgroundInactive": "#1e61b0",
|
||||||
"background" : "#F5F5F5"
|
"background" : "#FFFFFF",
|
||||||
|
"focusColor" : "#2679db"
|
||||||
},
|
},
|
||||||
|
|
||||||
"Borders": {
|
"Borders": {
|
||||||
@@ -23,6 +24,7 @@
|
|||||||
"startBorderColor": "#C4C4C4",
|
"startBorderColor": "#C4C4C4",
|
||||||
"endBorderColor": "#C4C4C4",
|
"endBorderColor": "#C4C4C4",
|
||||||
"focusedBorderColor" : "#2679db",
|
"focusedBorderColor" : "#2679db",
|
||||||
|
"background" : "#F5F5F5",
|
||||||
"default": {
|
"default": {
|
||||||
"foreground": "#FFFFFF",
|
"foreground": "#FFFFFF",
|
||||||
"startBackground": "#2679db",
|
"startBackground": "#2679db",
|
||||||
@@ -40,8 +42,6 @@
|
|||||||
"WelcomeScreen.background" : "#F5F5F5",
|
"WelcomeScreen.background" : "#F5F5F5",
|
||||||
"WelcomeScreen.Projects.background" : "#ffffff",
|
"WelcomeScreen.Projects.background" : "#ffffff",
|
||||||
|
|
||||||
"List.background" : "#ffffff",
|
|
||||||
|
|
||||||
"MenuBar.foreground" : "#5c616c",
|
"MenuBar.foreground" : "#5c616c",
|
||||||
"Menu.background" : "#ffffff",
|
"Menu.background" : "#ffffff",
|
||||||
"Menu.separatorColor" : "#F5F5F5",
|
"Menu.separatorColor" : "#F5F5F5",
|
||||||
@@ -49,8 +49,10 @@
|
|||||||
"MenuItem.foreground" : "#5c616c",
|
"MenuItem.foreground" : "#5c616c",
|
||||||
"MenuItem.background" : "#ffffff",
|
"MenuItem.background" : "#ffffff",
|
||||||
"PopupMenuSeparator.height" : "1",
|
"PopupMenuSeparator.height" : "1",
|
||||||
|
"Separator.separatorColor" : "#9ba2ab",
|
||||||
|
|
||||||
"Tree.background" : "#ffffff",
|
"Tree.background" : "#ffffff",
|
||||||
|
"Tree.rowHeight": "23",
|
||||||
|
|
||||||
"ProgressBar.background" : "#2679db",
|
"ProgressBar.background" : "#2679db",
|
||||||
"ProgressBar.foreground" : "#2679db",
|
"ProgressBar.foreground" : "#2679db",
|
||||||
@@ -69,9 +71,11 @@
|
|||||||
"ParameterInfo.background" : "#fffae3",
|
"ParameterInfo.background" : "#fffae3",
|
||||||
"ParameterInfo.currentOverloadBackground" : "#fffae3",
|
"ParameterInfo.currentOverloadBackground" : "#fffae3",
|
||||||
|
|
||||||
|
"List.background" : "#ffffff",
|
||||||
"List.dropLineColor" : "#2679db",
|
"List.dropLineColor" : "#2679db",
|
||||||
"List.selectionBackground": "#2679db",
|
"List.selectionBackground": "#2679db",
|
||||||
"List.selectionForeground": "#ffffff",
|
"List.selectionForeground": "#ffffff",
|
||||||
|
"List.selectionInactiveBackground": "#1e61b0",
|
||||||
|
|
||||||
"Table.background" : "#ffffff",
|
"Table.background" : "#ffffff",
|
||||||
"Table.selectionBackground" : "#2679db",
|
"Table.selectionBackground" : "#2679db",
|
||||||
@@ -83,6 +87,7 @@
|
|||||||
|
|
||||||
"TabbedPane.underlineColor" : "#2679db",
|
"TabbedPane.underlineColor" : "#2679db",
|
||||||
"TabbedPane.tabSelectionHeight" : 2,
|
"TabbedPane.tabSelectionHeight" : 2,
|
||||||
|
"TabbedPane.background" : "#F5F5F5",
|
||||||
|
|
||||||
"Link.hoverForeground" : "#2679db",
|
"Link.hoverForeground" : "#2679db",
|
||||||
"Link.activeForeground" : "#2679db",
|
"Link.activeForeground" : "#2679db",
|
||||||
@@ -98,8 +103,22 @@
|
|||||||
"TextArea.background" : "#ffffff",
|
"TextArea.background" : "#ffffff",
|
||||||
"TextPane.background" : "#ffffff",
|
"TextPane.background" : "#ffffff",
|
||||||
"PasswordField.background" : "#ffffff",
|
"PasswordField.background" : "#ffffff",
|
||||||
|
"FormattedTextField.background" : "#ffffff",
|
||||||
|
"Editor.background" : "#f5f5f5",
|
||||||
|
"EditorPane.background" : "#ffffff",
|
||||||
|
|
||||||
"CompletionPopup.background" : "#ffffff",
|
"CheckBox.background" : "#F5F5F5",
|
||||||
|
"RadioButton.background" : "#F5F5F5",
|
||||||
|
"Slider.background" : "#F5F5F5",
|
||||||
|
"Spinner.background" : "#F5F5F5",
|
||||||
|
"OptionPane.background" : "#F5F5F5",
|
||||||
|
|
||||||
|
"CompletionPopup": {
|
||||||
|
"selectionBackground" : "#2679db55",
|
||||||
|
"nonFocusedMask": false,
|
||||||
|
"matchForeground": "#2679db",
|
||||||
|
"selectionInactiveBackground": "#1e61b0"
|
||||||
|
},
|
||||||
|
|
||||||
"Plugins.lightSelectionBackground" : "#dddee1",
|
"Plugins.lightSelectionBackground" : "#dddee1",
|
||||||
"Plugins.SearchField.background" : "#ffffff",
|
"Plugins.SearchField.background" : "#ffffff",
|
||||||
@@ -116,8 +135,10 @@
|
|||||||
"Counter.foreground" : "#ffffff",
|
"Counter.foreground" : "#ffffff",
|
||||||
|
|
||||||
"SearchEverywhere.SearchField.background" : "#ffffff",
|
"SearchEverywhere.SearchField.background" : "#ffffff",
|
||||||
|
"SearchEverywhere.Header.background" : "#F5F5F5",
|
||||||
|
|
||||||
"ToolTip.background" : "#fffae3",
|
"ToolTip.background" : "#F5F5F5",
|
||||||
|
"ToolTip.Actions.background" : "#F5F5F5",
|
||||||
|
|
||||||
"ToolWindow.Header.background" : "#e7e8eb",
|
"ToolWindow.Header.background" : "#e7e8eb",
|
||||||
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
|
"ToolWindow.HeaderTab.selectedBackground" : "#dddee1",
|
||||||
@@ -128,8 +149,12 @@
|
|||||||
"ToolWindow.HeaderTab.underlineColor" : "#2679db",
|
"ToolWindow.HeaderTab.underlineColor" : "#2679db",
|
||||||
"DefaultTabs.underlineHeight" : 2,
|
"DefaultTabs.underlineHeight" : 2,
|
||||||
"DefaultTabs.underlineColor" : "#2679db",
|
"DefaultTabs.underlineColor" : "#2679db",
|
||||||
|
"DefaultTabs.background" : "#F5F5F5",
|
||||||
"EditorTabs.underlineHeight" : 2,
|
"EditorTabs.underlineHeight" : 2,
|
||||||
"EditorTabs.underlineColor" : "#2679db"
|
"EditorTabs.underlineColor" : "#2679db",
|
||||||
|
"EditorTabs.background" : "#F5F5F5",
|
||||||
|
|
||||||
|
"Notification.background" : "#F5F5F5"
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#42A5F5",
|
"Checkbox.Focus.Wide.Dark": "#42A5F5",
|
||||||
"Checkbox.Foreground.Disabled": "#D3DAE3",
|
"Checkbox.Foreground.Disabled": "#D3DAE3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
|
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
|
||||||
"Checkbox.Background.Selected": "#2f343f",
|
"Checkbox.Background.Selected": "#42A5F5",
|
||||||
"Checkbox.Background.Selected.Dark": "#2f343f",
|
"Checkbox.Background.Selected.Dark": "#2f343f",
|
||||||
"Checkbox.Border.Selected": "#42A5F5",
|
"Checkbox.Border.Selected": "#42A5F5",
|
||||||
"Checkbox.Border.Selected.Dark": "#42A5F5",
|
"Checkbox.Border.Selected.Dark": "#42A5F5",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#42A5F5",
|
"Checkbox.Focus.Wide.Dark": "#42A5F5",
|
||||||
"Checkbox.Foreground.Disabled": "#D3DAE3",
|
"Checkbox.Foreground.Disabled": "#D3DAE3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
|
"Checkbox.Foreground.Disabled.Dark": "#D3DAE3",
|
||||||
"Checkbox.Background.Selected": "#2f343f",
|
"Checkbox.Background.Selected": "#42A5F5",
|
||||||
"Checkbox.Background.Selected.Dark": "#2f343f",
|
"Checkbox.Background.Selected.Dark": "#2f343f",
|
||||||
"Checkbox.Border.Selected": "#42A5F5",
|
"Checkbox.Border.Selected": "#42A5F5",
|
||||||
"Checkbox.Border.Selected.Dark": "#42A5F5",
|
"Checkbox.Border.Selected.Dark": "#42A5F5",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
||||||
"Checkbox.Foreground.Disabled": "#6B727D",
|
"Checkbox.Foreground.Disabled": "#6B727D",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
|
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
|
||||||
"Checkbox.Background.Selected": "#282C34",
|
"Checkbox.Background.Selected": "#2979ff",
|
||||||
"Checkbox.Background.Selected.Dark": "#282C34",
|
"Checkbox.Background.Selected.Dark": "#282C34",
|
||||||
"Checkbox.Border.Selected": "#2979ff",
|
"Checkbox.Border.Selected": "#2979ff",
|
||||||
"Checkbox.Border.Selected.Dark": "#2979ff",
|
"Checkbox.Border.Selected.Dark": "#2979ff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
||||||
"Checkbox.Foreground.Disabled": "#6B727D",
|
"Checkbox.Foreground.Disabled": "#6B727D",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
|
"Checkbox.Foreground.Disabled.Dark": "#6B727D",
|
||||||
"Checkbox.Background.Selected": "#282C34",
|
"Checkbox.Background.Selected": "#2979ff",
|
||||||
"Checkbox.Background.Selected.Dark": "#282C34",
|
"Checkbox.Background.Selected.Dark": "#282C34",
|
||||||
"Checkbox.Border.Selected": "#2979ff",
|
"Checkbox.Border.Selected": "#2979ff",
|
||||||
"Checkbox.Border.Selected.Dark": "#2979ff",
|
"Checkbox.Border.Selected.Dark": "#2979ff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
||||||
"Checkbox.Foreground.Disabled": "#b8b8b9",
|
"Checkbox.Foreground.Disabled": "#b8b8b9",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
|
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
|
||||||
"Checkbox.Background.Selected": "#F4F4F4",
|
"Checkbox.Background.Selected": "#2979ff",
|
||||||
"Checkbox.Background.Selected.Dark": "#F4F4F4",
|
"Checkbox.Background.Selected.Dark": "#F4F4F4",
|
||||||
"Checkbox.Border.Selected": "#2979ff",
|
"Checkbox.Border.Selected": "#2979ff",
|
||||||
"Checkbox.Border.Selected.Dark": "#2979ff",
|
"Checkbox.Border.Selected.Dark": "#2979ff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
"Checkbox.Focus.Wide.Dark": "#2979ff",
|
||||||
"Checkbox.Foreground.Disabled": "#b8b8b9",
|
"Checkbox.Foreground.Disabled": "#b8b8b9",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
|
"Checkbox.Foreground.Disabled.Dark": "#b8b8b9",
|
||||||
"Checkbox.Background.Selected": "#F4F4F4",
|
"Checkbox.Background.Selected": "#2979ff",
|
||||||
"Checkbox.Background.Selected.Dark": "#F4F4F4",
|
"Checkbox.Background.Selected.Dark": "#F4F4F4",
|
||||||
"Checkbox.Border.Selected": "#2979ff",
|
"Checkbox.Border.Selected": "#2979ff",
|
||||||
"Checkbox.Border.Selected.Dark": "#2979ff",
|
"Checkbox.Border.Selected.Dark": "#2979ff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#FF79C5",
|
"Checkbox.Focus.Wide.Dark": "#FF79C5",
|
||||||
"Checkbox.Foreground.Disabled": "#6272A4",
|
"Checkbox.Foreground.Disabled": "#6272A4",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
|
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
|
||||||
"Checkbox.Background.Selected": "#282A36",
|
"Checkbox.Background.Selected": "#FF79C5",
|
||||||
"Checkbox.Background.Selected.Dark": "#282A36",
|
"Checkbox.Background.Selected.Dark": "#282A36",
|
||||||
"Checkbox.Border.Selected": "#FF79C5",
|
"Checkbox.Border.Selected": "#FF79C5",
|
||||||
"Checkbox.Border.Selected.Dark": "#FF79C5",
|
"Checkbox.Border.Selected.Dark": "#FF79C5",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#FF79C5",
|
"Checkbox.Focus.Wide.Dark": "#FF79C5",
|
||||||
"Checkbox.Foreground.Disabled": "#6272A4",
|
"Checkbox.Foreground.Disabled": "#6272A4",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
|
"Checkbox.Foreground.Disabled.Dark": "#6272A4",
|
||||||
"Checkbox.Background.Selected": "#282A36",
|
"Checkbox.Background.Selected": "#FF79C5",
|
||||||
"Checkbox.Background.Selected.Dark": "#282A36",
|
"Checkbox.Background.Selected.Dark": "#282A36",
|
||||||
"Checkbox.Border.Selected": "#FF79C5",
|
"Checkbox.Border.Selected": "#FF79C5",
|
||||||
"Checkbox.Border.Selected.Dark": "#FF79C5",
|
"Checkbox.Border.Selected.Dark": "#FF79C5",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#79CB60",
|
"Checkbox.Focus.Wide.Dark": "#79CB60",
|
||||||
"Checkbox.Foreground.Disabled": "#9ba0a3",
|
"Checkbox.Foreground.Disabled": "#9ba0a3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
|
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
|
||||||
"Checkbox.Background.Selected": "#F7F8FA",
|
"Checkbox.Background.Selected": "#79CB60",
|
||||||
"Checkbox.Background.Selected.Dark": "#F7F8FA",
|
"Checkbox.Background.Selected.Dark": "#F7F8FA",
|
||||||
"Checkbox.Border.Selected": "#79CB60",
|
"Checkbox.Border.Selected": "#79CB60",
|
||||||
"Checkbox.Border.Selected.Dark": "#79CB60",
|
"Checkbox.Border.Selected.Dark": "#79CB60",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#79CB60",
|
"Checkbox.Focus.Wide.Dark": "#79CB60",
|
||||||
"Checkbox.Foreground.Disabled": "#9ba0a3",
|
"Checkbox.Foreground.Disabled": "#9ba0a3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
|
"Checkbox.Foreground.Disabled.Dark": "#9ba0a3",
|
||||||
"Checkbox.Background.Selected": "#F7F8FA",
|
"Checkbox.Background.Selected": "#79CB60",
|
||||||
"Checkbox.Background.Selected.Dark": "#F7F8FA",
|
"Checkbox.Background.Selected.Dark": "#F7F8FA",
|
||||||
"Checkbox.Border.Selected": "#79CB60",
|
"Checkbox.Border.Selected": "#79CB60",
|
||||||
"Checkbox.Border.Selected.Dark": "#79CB60",
|
"Checkbox.Border.Selected.Dark": "#79CB60",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2AA298",
|
"Checkbox.Focus.Wide.Dark": "#2AA298",
|
||||||
"Checkbox.Foreground.Disabled": "#93A1A1",
|
"Checkbox.Foreground.Disabled": "#93A1A1",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
|
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
|
||||||
"Checkbox.Background.Selected": "#F0F0F0",
|
"Checkbox.Background.Selected": "#2AA298",
|
||||||
"Checkbox.Background.Selected.Dark": "#F0F0F0",
|
"Checkbox.Background.Selected.Dark": "#F0F0F0",
|
||||||
"Checkbox.Border.Selected": "#2AA298",
|
"Checkbox.Border.Selected": "#2AA298",
|
||||||
"Checkbox.Border.Selected.Dark": "#2AA298",
|
"Checkbox.Border.Selected.Dark": "#2AA298",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#2AA298",
|
"Checkbox.Focus.Wide.Dark": "#2AA298",
|
||||||
"Checkbox.Foreground.Disabled": "#93A1A1",
|
"Checkbox.Foreground.Disabled": "#93A1A1",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
|
"Checkbox.Foreground.Disabled.Dark": "#93A1A1",
|
||||||
"Checkbox.Background.Selected": "#F0F0F0",
|
"Checkbox.Background.Selected": "#2AA298",
|
||||||
"Checkbox.Background.Selected.Dark": "#F0F0F0",
|
"Checkbox.Background.Selected.Dark": "#F0F0F0",
|
||||||
"Checkbox.Border.Selected": "#2AA298",
|
"Checkbox.Border.Selected": "#2AA298",
|
||||||
"Checkbox.Border.Selected.Dark": "#2AA298",
|
"Checkbox.Border.Selected.Dark": "#2AA298",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#FF9800",
|
"Checkbox.Focus.Wide.Dark": "#FF9800",
|
||||||
"Checkbox.Foreground.Disabled": "#474747",
|
"Checkbox.Foreground.Disabled": "#474747",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#474747",
|
"Checkbox.Foreground.Disabled.Dark": "#474747",
|
||||||
"Checkbox.Background.Selected": "#212121",
|
"Checkbox.Background.Selected": "#FF9800",
|
||||||
"Checkbox.Background.Selected.Dark": "#212121",
|
"Checkbox.Background.Selected.Dark": "#212121",
|
||||||
"Checkbox.Border.Selected": "#FF9800",
|
"Checkbox.Border.Selected": "#FF9800",
|
||||||
"Checkbox.Border.Selected.Dark": "#FF9800",
|
"Checkbox.Border.Selected.Dark": "#FF9800",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#FF9800",
|
"Checkbox.Focus.Wide.Dark": "#FF9800",
|
||||||
"Checkbox.Foreground.Disabled": "#474747",
|
"Checkbox.Foreground.Disabled": "#474747",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#474747",
|
"Checkbox.Foreground.Disabled.Dark": "#474747",
|
||||||
"Checkbox.Background.Selected": "#212121",
|
"Checkbox.Background.Selected": "#FF9800",
|
||||||
"Checkbox.Background.Selected.Dark": "#212121",
|
"Checkbox.Background.Selected.Dark": "#212121",
|
||||||
"Checkbox.Border.Selected": "#FF9800",
|
"Checkbox.Border.Selected": "#FF9800",
|
||||||
"Checkbox.Border.Selected.Dark": "#FF9800",
|
"Checkbox.Border.Selected.Dark": "#FF9800",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#84ffff",
|
"Checkbox.Focus.Wide.Dark": "#84ffff",
|
||||||
"Checkbox.Foreground.Disabled": "#464B5D",
|
"Checkbox.Foreground.Disabled": "#464B5D",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
|
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
|
||||||
"Checkbox.Background.Selected": "#0F111A",
|
"Checkbox.Background.Selected": "#84ffff",
|
||||||
"Checkbox.Background.Selected.Dark": "#0F111A",
|
"Checkbox.Background.Selected.Dark": "#0F111A",
|
||||||
"Checkbox.Border.Selected": "#84ffff",
|
"Checkbox.Border.Selected": "#84ffff",
|
||||||
"Checkbox.Border.Selected.Dark": "#84ffff",
|
"Checkbox.Border.Selected.Dark": "#84ffff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#84ffff",
|
"Checkbox.Focus.Wide.Dark": "#84ffff",
|
||||||
"Checkbox.Foreground.Disabled": "#464B5D",
|
"Checkbox.Foreground.Disabled": "#464B5D",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
|
"Checkbox.Foreground.Disabled.Dark": "#464B5D",
|
||||||
"Checkbox.Background.Selected": "#0F111A",
|
"Checkbox.Background.Selected": "#84ffff",
|
||||||
"Checkbox.Background.Selected.Dark": "#0F111A",
|
"Checkbox.Background.Selected.Dark": "#0F111A",
|
||||||
"Checkbox.Border.Selected": "#84ffff",
|
"Checkbox.Border.Selected": "#84ffff",
|
||||||
"Checkbox.Border.Selected.Dark": "#84ffff",
|
"Checkbox.Border.Selected.Dark": "#84ffff",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#00BCD4",
|
"Checkbox.Focus.Wide.Dark": "#00BCD4",
|
||||||
"Checkbox.Foreground.Disabled": "#D2D4D5",
|
"Checkbox.Foreground.Disabled": "#D2D4D5",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
|
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
|
||||||
"Checkbox.Background.Selected": "#FAFAFA",
|
"Checkbox.Background.Selected": "#00BCD4",
|
||||||
"Checkbox.Background.Selected.Dark": "#FAFAFA",
|
"Checkbox.Background.Selected.Dark": "#FAFAFA",
|
||||||
"Checkbox.Border.Selected": "#00BCD4",
|
"Checkbox.Border.Selected": "#00BCD4",
|
||||||
"Checkbox.Border.Selected.Dark": "#00BCD4",
|
"Checkbox.Border.Selected.Dark": "#00BCD4",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#00BCD4",
|
"Checkbox.Focus.Wide.Dark": "#00BCD4",
|
||||||
"Checkbox.Foreground.Disabled": "#D2D4D5",
|
"Checkbox.Foreground.Disabled": "#D2D4D5",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
|
"Checkbox.Foreground.Disabled.Dark": "#D2D4D5",
|
||||||
"Checkbox.Background.Selected": "#FAFAFA",
|
"Checkbox.Background.Selected": "#00BCD4",
|
||||||
"Checkbox.Background.Selected.Dark": "#FAFAFA",
|
"Checkbox.Background.Selected.Dark": "#FAFAFA",
|
||||||
"Checkbox.Border.Selected": "#00BCD4",
|
"Checkbox.Border.Selected": "#00BCD4",
|
||||||
"Checkbox.Border.Selected.Dark": "#00BCD4",
|
"Checkbox.Border.Selected.Dark": "#00BCD4",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#009688",
|
"Checkbox.Focus.Wide.Dark": "#009688",
|
||||||
"Checkbox.Foreground.Disabled": "#415967",
|
"Checkbox.Foreground.Disabled": "#415967",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#415967",
|
"Checkbox.Foreground.Disabled.Dark": "#415967",
|
||||||
"Checkbox.Background.Selected": "#263238",
|
"Checkbox.Background.Selected": "#009688",
|
||||||
"Checkbox.Background.Selected.Dark": "#263238",
|
"Checkbox.Background.Selected.Dark": "#263238",
|
||||||
"Checkbox.Border.Selected": "#009688",
|
"Checkbox.Border.Selected": "#009688",
|
||||||
"Checkbox.Border.Selected.Dark": "#009688",
|
"Checkbox.Border.Selected.Dark": "#009688",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#009688",
|
"Checkbox.Focus.Wide.Dark": "#009688",
|
||||||
"Checkbox.Foreground.Disabled": "#415967",
|
"Checkbox.Foreground.Disabled": "#415967",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#415967",
|
"Checkbox.Foreground.Disabled.Dark": "#415967",
|
||||||
"Checkbox.Background.Selected": "#263238",
|
"Checkbox.Background.Selected": "#009688",
|
||||||
"Checkbox.Background.Selected.Dark": "#263238",
|
"Checkbox.Background.Selected.Dark": "#263238",
|
||||||
"Checkbox.Border.Selected": "#009688",
|
"Checkbox.Border.Selected": "#009688",
|
||||||
"Checkbox.Border.Selected.Dark": "#009688",
|
"Checkbox.Border.Selected.Dark": "#009688",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#ab47bc",
|
"Checkbox.Focus.Wide.Dark": "#ab47bc",
|
||||||
"Checkbox.Foreground.Disabled": "#515772",
|
"Checkbox.Foreground.Disabled": "#515772",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#515772",
|
"Checkbox.Foreground.Disabled.Dark": "#515772",
|
||||||
"Checkbox.Background.Selected": "#292D3E",
|
"Checkbox.Background.Selected": "#ab47bc",
|
||||||
"Checkbox.Background.Selected.Dark": "#292D3E",
|
"Checkbox.Background.Selected.Dark": "#292D3E",
|
||||||
"Checkbox.Border.Selected": "#ab47bc",
|
"Checkbox.Border.Selected": "#ab47bc",
|
||||||
"Checkbox.Border.Selected.Dark": "#ab47bc",
|
"Checkbox.Border.Selected.Dark": "#ab47bc",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#ab47bc",
|
"Checkbox.Focus.Wide.Dark": "#ab47bc",
|
||||||
"Checkbox.Foreground.Disabled": "#515772",
|
"Checkbox.Foreground.Disabled": "#515772",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#515772",
|
"Checkbox.Foreground.Disabled.Dark": "#515772",
|
||||||
"Checkbox.Background.Selected": "#292D3E",
|
"Checkbox.Background.Selected": "#ab47bc",
|
||||||
"Checkbox.Background.Selected.Dark": "#292D3E",
|
"Checkbox.Background.Selected.Dark": "#292D3E",
|
||||||
"Checkbox.Border.Selected": "#ab47bc",
|
"Checkbox.Border.Selected": "#ab47bc",
|
||||||
"Checkbox.Border.Selected.Dark": "#ab47bc",
|
"Checkbox.Border.Selected.Dark": "#ab47bc",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#ffd866",
|
"Checkbox.Focus.Wide.Dark": "#ffd866",
|
||||||
"Checkbox.Foreground.Disabled": "#5b595c",
|
"Checkbox.Foreground.Disabled": "#5b595c",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
|
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
|
||||||
"Checkbox.Background.Selected": "#2D2A2E",
|
"Checkbox.Background.Selected": "#ffd866",
|
||||||
"Checkbox.Background.Selected.Dark": "#2D2A2E",
|
"Checkbox.Background.Selected.Dark": "#2D2A2E",
|
||||||
"Checkbox.Border.Selected": "#ffd866",
|
"Checkbox.Border.Selected": "#ffd866",
|
||||||
"Checkbox.Border.Selected.Dark": "#ffd866",
|
"Checkbox.Border.Selected.Dark": "#ffd866",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#ffd866",
|
"Checkbox.Focus.Wide.Dark": "#ffd866",
|
||||||
"Checkbox.Foreground.Disabled": "#5b595c",
|
"Checkbox.Foreground.Disabled": "#5b595c",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
|
"Checkbox.Foreground.Disabled.Dark": "#5b595c",
|
||||||
"Checkbox.Background.Selected": "#2D2A2E",
|
"Checkbox.Background.Selected": "#ffd866",
|
||||||
"Checkbox.Background.Selected.Dark": "#2D2A2E",
|
"Checkbox.Background.Selected.Dark": "#2D2A2E",
|
||||||
"Checkbox.Border.Selected": "#ffd866",
|
"Checkbox.Border.Selected": "#ffd866",
|
||||||
"Checkbox.Border.Selected.Dark": "#ffd866",
|
"Checkbox.Border.Selected.Dark": "#ffd866",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#7e57c2",
|
"Checkbox.Focus.Wide.Dark": "#7e57c2",
|
||||||
"Checkbox.Foreground.Disabled": "#697098",
|
"Checkbox.Foreground.Disabled": "#697098",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#697098",
|
"Checkbox.Foreground.Disabled.Dark": "#697098",
|
||||||
"Checkbox.Background.Selected": "#011627",
|
"Checkbox.Background.Selected": "#7e57c2",
|
||||||
"Checkbox.Background.Selected.Dark": "#011627",
|
"Checkbox.Background.Selected.Dark": "#011627",
|
||||||
"Checkbox.Border.Selected": "#7e57c2",
|
"Checkbox.Border.Selected": "#7e57c2",
|
||||||
"Checkbox.Border.Selected.Dark": "#7e57c2",
|
"Checkbox.Border.Selected.Dark": "#7e57c2",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#7e57c2",
|
"Checkbox.Focus.Wide.Dark": "#7e57c2",
|
||||||
"Checkbox.Foreground.Disabled": "#697098",
|
"Checkbox.Foreground.Disabled": "#697098",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#697098",
|
"Checkbox.Foreground.Disabled.Dark": "#697098",
|
||||||
"Checkbox.Background.Selected": "#011627",
|
"Checkbox.Background.Selected": "#7e57c2",
|
||||||
"Checkbox.Background.Selected.Dark": "#011627",
|
"Checkbox.Background.Selected.Dark": "#011627",
|
||||||
"Checkbox.Border.Selected": "#7e57c2",
|
"Checkbox.Border.Selected": "#7e57c2",
|
||||||
"Checkbox.Border.Selected.Dark": "#7e57c2",
|
"Checkbox.Border.Selected.Dark": "#7e57c2",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#d33682",
|
"Checkbox.Focus.Wide.Dark": "#d33682",
|
||||||
"Checkbox.Foreground.Disabled": "#2E5861",
|
"Checkbox.Foreground.Disabled": "#2E5861",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
|
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
|
||||||
"Checkbox.Background.Selected": "#002B36",
|
"Checkbox.Background.Selected": "#d33682",
|
||||||
"Checkbox.Background.Selected.Dark": "#002B36",
|
"Checkbox.Background.Selected.Dark": "#002B36",
|
||||||
"Checkbox.Border.Selected": "#d33682",
|
"Checkbox.Border.Selected": "#d33682",
|
||||||
"Checkbox.Border.Selected.Dark": "#d33682",
|
"Checkbox.Border.Selected.Dark": "#d33682",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#d33682",
|
"Checkbox.Focus.Wide.Dark": "#d33682",
|
||||||
"Checkbox.Foreground.Disabled": "#2E5861",
|
"Checkbox.Foreground.Disabled": "#2E5861",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
|
"Checkbox.Foreground.Disabled.Dark": "#2E5861",
|
||||||
"Checkbox.Background.Selected": "#002B36",
|
"Checkbox.Background.Selected": "#d33682",
|
||||||
"Checkbox.Background.Selected.Dark": "#002B36",
|
"Checkbox.Background.Selected.Dark": "#002B36",
|
||||||
"Checkbox.Border.Selected": "#d33682",
|
"Checkbox.Border.Selected": "#d33682",
|
||||||
"Checkbox.Border.Selected.Dark": "#d33682",
|
"Checkbox.Border.Selected.Dark": "#d33682",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#d33682",
|
"Checkbox.Focus.Wide.Dark": "#d33682",
|
||||||
"Checkbox.Foreground.Disabled": "#C9CCC3",
|
"Checkbox.Foreground.Disabled": "#C9CCC3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
|
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
|
||||||
"Checkbox.Background.Selected": "#fdf6e3",
|
"Checkbox.Background.Selected": "#d33682",
|
||||||
"Checkbox.Background.Selected.Dark": "#fdf6e3",
|
"Checkbox.Background.Selected.Dark": "#fdf6e3",
|
||||||
"Checkbox.Border.Selected": "#d33682",
|
"Checkbox.Border.Selected": "#d33682",
|
||||||
"Checkbox.Border.Selected.Dark": "#d33682",
|
"Checkbox.Border.Selected.Dark": "#d33682",
|
||||||
|
|||||||
@@ -850,7 +850,7 @@
|
|||||||
"Checkbox.Focus.Wide.Dark": "#d33682",
|
"Checkbox.Focus.Wide.Dark": "#d33682",
|
||||||
"Checkbox.Foreground.Disabled": "#C9CCC3",
|
"Checkbox.Foreground.Disabled": "#C9CCC3",
|
||||||
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
|
"Checkbox.Foreground.Disabled.Dark": "#C9CCC3",
|
||||||
"Checkbox.Background.Selected": "#fdf6e3",
|
"Checkbox.Background.Selected": "#d33682",
|
||||||
"Checkbox.Background.Selected.Dark": "#fdf6e3",
|
"Checkbox.Background.Selected.Dark": "#fdf6e3",
|
||||||
"Checkbox.Border.Selected": "#d33682",
|
"Checkbox.Border.Selected": "#d33682",
|
||||||
"Checkbox.Border.Selected.Dark": "#d33682",
|
"Checkbox.Border.Selected.Dark": "#d33682",
|
||||||
|
|||||||
@@ -14,8 +14,6 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
}
|
}
|
||||||
@@ -24,8 +22,3 @@ dependencies {
|
|||||||
implementation( project( ":flatlaf-core" ) )
|
implementation( project( ":flatlaf-core" ) )
|
||||||
implementation( "com.formdev:svgSalamander:1.1.2.1" )
|
implementation( "com.formdev:svgSalamander:1.1.2.1" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ build script:
|
|||||||
|
|
||||||
groupId: com.formdev
|
groupId: com.formdev
|
||||||
artifactId: flatlaf-jide-oss
|
artifactId: flatlaf-jide-oss
|
||||||
version: 0.25.1
|
version: (see button below)
|
||||||
|
|
||||||
Otherwise download `flatlaf-jide-oss-<version>.jar` here:
|
Otherwise download `flatlaf-jide-oss-<version>.jar` here:
|
||||||
|
|
||||||
|
|||||||
@@ -14,12 +14,11 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -27,11 +26,6 @@ dependencies {
|
|||||||
implementation( "com.jidesoft:jide-oss:3.6.18" )
|
implementation( "com.jidesoft:jide-oss:3.6.18" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
assemble {
|
assemble {
|
||||||
dependsOn(
|
dependsOn(
|
||||||
@@ -101,8 +95,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -116,6 +110,29 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
artifactory {
|
||||||
|
setContextUrl( "https://oss.jfrog.org" )
|
||||||
|
|
||||||
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
|
} )
|
||||||
|
|
||||||
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
invokeMethod( "publications", "maven" )
|
||||||
|
setProperty( "publishArtifacts", true )
|
||||||
|
setProperty( "publishPom", true )
|
||||||
|
} )
|
||||||
|
} )
|
||||||
|
|
||||||
|
resolve( delegateClosureOf<org.jfrog.gradle.plugin.artifactory.dsl.ResolverConfig> {
|
||||||
|
setProperty( "repoKey", "jcenter" )
|
||||||
|
} )
|
||||||
|
}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ build script:
|
|||||||
|
|
||||||
groupId: com.formdev
|
groupId: com.formdev
|
||||||
artifactId: flatlaf-swingx
|
artifactId: flatlaf-swingx
|
||||||
version: 0.25.1
|
version: (see button below)
|
||||||
|
|
||||||
Otherwise download `flatlaf-swingx-<version>.jar` here:
|
Otherwise download `flatlaf-swingx-<version>.jar` here:
|
||||||
|
|
||||||
|
|||||||
@@ -14,12 +14,11 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -27,11 +26,6 @@ dependencies {
|
|||||||
implementation( "org.swinglabs.swingx:swingx-all:1.6.5-1" )
|
implementation( "org.swinglabs.swingx:swingx-all:1.6.5-1" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
assemble {
|
assemble {
|
||||||
dependsOn(
|
dependsOn(
|
||||||
@@ -101,8 +95,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -116,6 +110,29 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
artifactory {
|
||||||
|
setContextUrl( "https://oss.jfrog.org" )
|
||||||
|
|
||||||
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
|
} )
|
||||||
|
|
||||||
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
invokeMethod( "publications", "maven" )
|
||||||
|
setProperty( "publishArtifacts", true )
|
||||||
|
setProperty( "publishPom", true )
|
||||||
|
} )
|
||||||
|
} )
|
||||||
|
|
||||||
|
resolve( delegateClosureOf<org.jfrog.gradle.plugin.artifactory.dsl.ResolverConfig> {
|
||||||
|
setProperty( "repoKey", "jcenter" )
|
||||||
|
} )
|
||||||
|
}
|
||||||
|
|||||||
@@ -14,8 +14,6 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
version = rootProject.version
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
}
|
}
|
||||||
@@ -38,8 +36,3 @@ dependencies {
|
|||||||
// implementation( "com.weblookandfeel:weblaf-ui:1.2.12" )
|
// implementation( "com.weblookandfeel:weblaf-ui:1.2.12" )
|
||||||
// implementation( "com.jgoodies:jgoodies-looks:2.7.0" )
|
// implementation( "com.jgoodies:jgoodies-looks:2.7.0" )
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -54,6 +54,15 @@ public class FlatComponentsTest
|
|||||||
progressBar4.setIndeterminate( indeterminate );
|
progressBar4.setIndeterminate( indeterminate );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void contentAreaFilledChanged() {
|
||||||
|
boolean contentAreaFilled = contentAreaFilledCheckBox.isSelected();
|
||||||
|
|
||||||
|
for( Component c : getComponents() ) {
|
||||||
|
if( c instanceof AbstractButton )
|
||||||
|
((AbstractButton)c).setContentAreaFilled( contentAreaFilled );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void initComponents() {
|
private void initComponents() {
|
||||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||||
JLabel labelLabel = new JLabel();
|
JLabel labelLabel = new JLabel();
|
||||||
@@ -78,18 +87,23 @@ public class FlatComponentsTest
|
|||||||
JToggleButton toggleButton10 = new JToggleButton();
|
JToggleButton toggleButton10 = new JToggleButton();
|
||||||
JToggleButton toggleButton3 = new JToggleButton();
|
JToggleButton toggleButton3 = new JToggleButton();
|
||||||
JToggleButton toggleButton4 = new JToggleButton();
|
JToggleButton toggleButton4 = new JToggleButton();
|
||||||
JToggleButton toggleButton5 = new JToggleButton();
|
JToggleButton toggleButton11 = new JToggleButton();
|
||||||
JToggleButton toggleButton8 = new JToggleButton();
|
JToggleButton toggleButton12 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton13 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton14 = new JToggleButton();
|
||||||
JLabel checkBoxLabel = new JLabel();
|
JLabel checkBoxLabel = new JLabel();
|
||||||
JCheckBox checkBox1 = new JCheckBox();
|
JCheckBox checkBox1 = new JCheckBox();
|
||||||
JCheckBox checkBox2 = new JCheckBox();
|
JCheckBox checkBox2 = new JCheckBox();
|
||||||
JCheckBox checkBox3 = new JCheckBox();
|
JCheckBox checkBox3 = new JCheckBox();
|
||||||
JCheckBox checkBox4 = new JCheckBox();
|
JCheckBox checkBox4 = new JCheckBox();
|
||||||
|
JToggleButton toggleButton5 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton8 = new JToggleButton();
|
||||||
JLabel radioButtonLabel = new JLabel();
|
JLabel radioButtonLabel = new JLabel();
|
||||||
JRadioButton radioButton1 = new JRadioButton();
|
JRadioButton radioButton1 = new JRadioButton();
|
||||||
JRadioButton radioButton2 = new JRadioButton();
|
JRadioButton radioButton2 = new JRadioButton();
|
||||||
JRadioButton radioButton3 = new JRadioButton();
|
JRadioButton radioButton3 = new JRadioButton();
|
||||||
JRadioButton radioButton4 = new JRadioButton();
|
JRadioButton radioButton4 = new JRadioButton();
|
||||||
|
contentAreaFilledCheckBox = new JCheckBox();
|
||||||
JLabel comboBoxLabel = new JLabel();
|
JLabel comboBoxLabel = new JLabel();
|
||||||
JComboBox<String> comboBox1 = new JComboBox<>();
|
JComboBox<String> comboBox1 = new JComboBox<>();
|
||||||
JComboBox<String> comboBox2 = new JComboBox<>();
|
JComboBox<String> comboBox2 = new JComboBox<>();
|
||||||
@@ -193,6 +207,9 @@ public class FlatComponentsTest
|
|||||||
JButton button7 = new JButton();
|
JButton button7 = new JButton();
|
||||||
JButton button8 = new JButton();
|
JButton button8 = new JButton();
|
||||||
JToggleButton toggleButton6 = new JToggleButton();
|
JToggleButton toggleButton6 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton15 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton16 = new JToggleButton();
|
||||||
|
JToggleButton toggleButton17 = new JToggleButton();
|
||||||
|
|
||||||
//======== this ========
|
//======== this ========
|
||||||
setLayout(new MigLayout(
|
setLayout(new MigLayout(
|
||||||
@@ -343,18 +360,25 @@ public class FlatComponentsTest
|
|||||||
toggleButton4.setSelected(true);
|
toggleButton4.setSelected(true);
|
||||||
add(toggleButton4, "cell 4 2");
|
add(toggleButton4, "cell 4 2");
|
||||||
|
|
||||||
//---- toggleButton5 ----
|
//---- toggleButton11 ----
|
||||||
toggleButton5.setText("tab");
|
toggleButton11.setIcon(UIManager.getIcon("Tree.closedIcon"));
|
||||||
toggleButton5.putClientProperty("JButton.buttonType", "tab");
|
toggleButton11.setSelected(true);
|
||||||
toggleButton5.setSelected(true);
|
add(toggleButton11, "cell 5 2");
|
||||||
add(toggleButton5, "cell 5 2");
|
|
||||||
|
|
||||||
//---- toggleButton8 ----
|
//---- toggleButton12 ----
|
||||||
toggleButton8.setText("tab");
|
toggleButton12.setText("...");
|
||||||
toggleButton8.putClientProperty("JButton.buttonType", "tab");
|
toggleButton12.setSelected(true);
|
||||||
toggleButton8.setEnabled(false);
|
add(toggleButton12, "cell 5 2");
|
||||||
toggleButton8.setSelected(true);
|
|
||||||
add(toggleButton8, "cell 5 2");
|
//---- toggleButton13 ----
|
||||||
|
toggleButton13.setText("\u2026");
|
||||||
|
toggleButton13.setSelected(true);
|
||||||
|
add(toggleButton13, "cell 5 2");
|
||||||
|
|
||||||
|
//---- toggleButton14 ----
|
||||||
|
toggleButton14.setText("#");
|
||||||
|
toggleButton14.setSelected(true);
|
||||||
|
add(toggleButton14, "cell 5 2");
|
||||||
|
|
||||||
//---- checkBoxLabel ----
|
//---- checkBoxLabel ----
|
||||||
checkBoxLabel.setText("JCheckBox");
|
checkBoxLabel.setText("JCheckBox");
|
||||||
@@ -382,6 +406,19 @@ public class FlatComponentsTest
|
|||||||
checkBox4.setEnabled(false);
|
checkBox4.setEnabled(false);
|
||||||
add(checkBox4, "cell 4 3");
|
add(checkBox4, "cell 4 3");
|
||||||
|
|
||||||
|
//---- toggleButton5 ----
|
||||||
|
toggleButton5.setText("tab");
|
||||||
|
toggleButton5.putClientProperty("JButton.buttonType", "tab");
|
||||||
|
toggleButton5.setSelected(true);
|
||||||
|
add(toggleButton5, "cell 5 3");
|
||||||
|
|
||||||
|
//---- toggleButton8 ----
|
||||||
|
toggleButton8.setText("tab");
|
||||||
|
toggleButton8.putClientProperty("JButton.buttonType", "tab");
|
||||||
|
toggleButton8.setEnabled(false);
|
||||||
|
toggleButton8.setSelected(true);
|
||||||
|
add(toggleButton8, "cell 5 3");
|
||||||
|
|
||||||
//---- radioButtonLabel ----
|
//---- radioButtonLabel ----
|
||||||
radioButtonLabel.setText("JRadioButton:");
|
radioButtonLabel.setText("JRadioButton:");
|
||||||
add(radioButtonLabel, "cell 0 4");
|
add(radioButtonLabel, "cell 0 4");
|
||||||
@@ -408,6 +445,12 @@ public class FlatComponentsTest
|
|||||||
radioButton4.setEnabled(false);
|
radioButton4.setEnabled(false);
|
||||||
add(radioButton4, "cell 4 4");
|
add(radioButton4, "cell 4 4");
|
||||||
|
|
||||||
|
//---- contentAreaFilledCheckBox ----
|
||||||
|
contentAreaFilledCheckBox.setText("contentAreaFilled");
|
||||||
|
contentAreaFilledCheckBox.setSelected(true);
|
||||||
|
contentAreaFilledCheckBox.addActionListener(e -> contentAreaFilledChanged());
|
||||||
|
add(contentAreaFilledCheckBox, "cell 5 4");
|
||||||
|
|
||||||
//---- comboBoxLabel ----
|
//---- comboBoxLabel ----
|
||||||
comboBoxLabel.setText("JComboBox:");
|
comboBoxLabel.setText("JComboBox:");
|
||||||
add(comboBoxLabel, "cell 0 5");
|
add(comboBoxLabel, "cell 0 5");
|
||||||
@@ -963,6 +1006,21 @@ public class FlatComponentsTest
|
|||||||
toggleButton6.setIcon(UIManager.getIcon("Tree.leafIcon"));
|
toggleButton6.setIcon(UIManager.getIcon("Tree.leafIcon"));
|
||||||
toggleButton6.setSelected(true);
|
toggleButton6.setSelected(true);
|
||||||
toolBar1.add(toggleButton6);
|
toolBar1.add(toggleButton6);
|
||||||
|
|
||||||
|
//---- toggleButton15 ----
|
||||||
|
toggleButton15.setIcon(UIManager.getIcon("FileView.computerIcon"));
|
||||||
|
toggleButton15.setSelected(true);
|
||||||
|
toolBar1.add(toggleButton15);
|
||||||
|
|
||||||
|
//---- toggleButton16 ----
|
||||||
|
toggleButton16.setIcon(UIManager.getIcon("FileView.floppyDriveIcon"));
|
||||||
|
toggleButton16.setSelected(true);
|
||||||
|
toolBar1.add(toggleButton16);
|
||||||
|
|
||||||
|
//---- toggleButton17 ----
|
||||||
|
toggleButton17.setIcon(UIManager.getIcon("FileView.hardDriveIcon"));
|
||||||
|
toggleButton17.setSelected(true);
|
||||||
|
toolBar1.add(toggleButton17);
|
||||||
}
|
}
|
||||||
add(toolBar1, "cell 1 23 3 1,growx");
|
add(toolBar1, "cell 1 23 3 1,growx");
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||||
@@ -974,6 +1032,7 @@ public class FlatComponentsTest
|
|||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||||
|
private JCheckBox contentAreaFilledCheckBox;
|
||||||
private JProgressBar progressBar3;
|
private JProgressBar progressBar3;
|
||||||
private JProgressBar progressBar4;
|
private JProgressBar progressBar4;
|
||||||
private JSlider slider3;
|
private JSlider slider3;
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ new FormModel {
|
|||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button13"
|
name: "button13"
|
||||||
"icon": new com.jformdesigner.model.SwingIcon( 2, "Tree.closedIcon" )
|
"icon": &SwingIcon0 new com.jformdesigner.model.SwingIcon( 2, "Tree.closedIcon" )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 5 1"
|
"value": "cell 5 1"
|
||||||
} )
|
} )
|
||||||
@@ -170,18 +170,29 @@ new FormModel {
|
|||||||
"value": "cell 4 2"
|
"value": "cell 4 2"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
name: "toggleButton5"
|
name: "toggleButton11"
|
||||||
"text": "tab"
|
"icon": #SwingIcon0
|
||||||
"$client.JButton.buttonType": "tab"
|
|
||||||
"selected": true
|
"selected": true
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 5 2"
|
"value": "cell 5 2"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
name: "toggleButton8"
|
name: "toggleButton12"
|
||||||
"text": "tab"
|
"text": "..."
|
||||||
"$client.JButton.buttonType": "tab"
|
"selected": true
|
||||||
"enabled": false
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 2"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton13"
|
||||||
|
"text": "…"
|
||||||
|
"selected": true
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 2"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton14"
|
||||||
|
"text": "#"
|
||||||
"selected": true
|
"selected": true
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 5 2"
|
"value": "cell 5 2"
|
||||||
@@ -222,6 +233,23 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 4 3"
|
"value": "cell 4 3"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton5"
|
||||||
|
"text": "tab"
|
||||||
|
"$client.JButton.buttonType": "tab"
|
||||||
|
"selected": true
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 3"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton8"
|
||||||
|
"text": "tab"
|
||||||
|
"$client.JButton.buttonType": "tab"
|
||||||
|
"enabled": false
|
||||||
|
"selected": true
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 3"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "radioButtonLabel"
|
name: "radioButtonLabel"
|
||||||
"text": "JRadioButton:"
|
"text": "JRadioButton:"
|
||||||
@@ -258,6 +286,17 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 4 4"
|
"value": "cell 4 4"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
|
name: "contentAreaFilledCheckBox"
|
||||||
|
"text": "contentAreaFilled"
|
||||||
|
"selected": true
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "contentAreaFilledChanged", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 5 4"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "comboBoxLabel"
|
name: "comboBoxLabel"
|
||||||
"text": "JComboBox:"
|
"text": "JComboBox:"
|
||||||
@@ -773,18 +812,18 @@ new FormModel {
|
|||||||
"orientation": 1
|
"orientation": 1
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button9"
|
name: "button9"
|
||||||
"icon": &SwingIcon0 new com.jformdesigner.model.SwingIcon( 2, "Tree.closedIcon" )
|
"icon": &SwingIcon1 new com.jformdesigner.model.SwingIcon( 2, "Tree.closedIcon" )
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button10"
|
name: "button10"
|
||||||
"icon": &SwingIcon1 new com.jformdesigner.model.SwingIcon( 2, "Tree.openIcon" )
|
"icon": &SwingIcon2 new com.jformdesigner.model.SwingIcon( 2, "Tree.openIcon" )
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
||||||
name: "separator5"
|
name: "separator5"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button11"
|
name: "button11"
|
||||||
"icon": &SwingIcon2 new com.jformdesigner.model.SwingIcon( 2, "Tree.leafIcon" )
|
"icon": &SwingIcon3 new com.jformdesigner.model.SwingIcon( 2, "Tree.leafIcon" )
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
name: "toggleButton7"
|
name: "toggleButton7"
|
||||||
@@ -952,18 +991,18 @@ new FormModel {
|
|||||||
name: "toolBar1"
|
name: "toolBar1"
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button4"
|
name: "button4"
|
||||||
"icon": #SwingIcon0
|
"icon": #SwingIcon1
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button6"
|
name: "button6"
|
||||||
"icon": #SwingIcon1
|
"icon": #SwingIcon2
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
||||||
name: "separator3"
|
name: "separator3"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "button7"
|
name: "button7"
|
||||||
"icon": #SwingIcon2
|
"icon": #SwingIcon3
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
add( new FormComponent( "javax.swing.JToolBar$Separator" ) {
|
||||||
name: "separator4"
|
name: "separator4"
|
||||||
@@ -979,6 +1018,21 @@ new FormModel {
|
|||||||
"icon": new com.jformdesigner.model.SwingIcon( 2, "Tree.leafIcon" )
|
"icon": new com.jformdesigner.model.SwingIcon( 2, "Tree.leafIcon" )
|
||||||
"selected": true
|
"selected": true
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton15"
|
||||||
|
"icon": new com.jformdesigner.model.SwingIcon( 2, "FileView.computerIcon" )
|
||||||
|
"selected": true
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton16"
|
||||||
|
"icon": new com.jformdesigner.model.SwingIcon( 2, "FileView.floppyDriveIcon" )
|
||||||
|
"selected": true
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JToggleButton" ) {
|
||||||
|
name: "toggleButton17"
|
||||||
|
"icon": new com.jformdesigner.model.SwingIcon( 2, "FileView.hardDriveIcon" )
|
||||||
|
"selected": true
|
||||||
|
} )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 23 3 1,growx"
|
"value": "cell 1 23 3 1,growx"
|
||||||
} )
|
} )
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ package com.formdev.flatlaf.testing;
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.beans.PropertyVetoException;
|
import java.beans.PropertyVetoException;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
import com.formdev.flatlaf.icons.FlatFileViewFloppyDriveIcon;
|
||||||
import com.formdev.flatlaf.util.UIScale;
|
import com.formdev.flatlaf.util.UIScale;
|
||||||
import net.miginfocom.swing.*;
|
import net.miginfocom.swing.*;
|
||||||
|
|
||||||
@@ -49,10 +50,25 @@ public class FlatInternalFrameTest
|
|||||||
maximizableCheckBox.isSelected(),
|
maximizableCheckBox.isSelected(),
|
||||||
iconifiableCheckBox.isSelected() );
|
iconifiableCheckBox.isSelected() );
|
||||||
|
|
||||||
JPanel panel = new JPanel();
|
if( iconCheckBox.isSelected() )
|
||||||
panel.setBackground( new Color( (int) (Math.random() * 0xffffff) ) );
|
internalFrame.setFrameIcon( new FlatFileViewFloppyDriveIcon() );
|
||||||
|
|
||||||
|
JPanel panel = new JPanel() {
|
||||||
|
private final Color color = new Color( (int) (Math.random() * 0xffffff) | 0x20000000, true );
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void paintComponent( Graphics g ) {
|
||||||
|
super.paintComponent( g );
|
||||||
|
|
||||||
|
g.setColor( color );
|
||||||
|
g.fillRect( 20, 20, getWidth() - 40, getHeight() - 40 );
|
||||||
|
}
|
||||||
|
};
|
||||||
internalFrame.setContentPane( panel );
|
internalFrame.setContentPane( panel );
|
||||||
|
|
||||||
|
if( !palette.getComponentOrientation().isLeftToRight() )
|
||||||
|
internalFrame.setComponentOrientation( ComponentOrientation.RIGHT_TO_LEFT );
|
||||||
|
|
||||||
internalFrame.setBounds( frameX + UIScale.scale( GAP ) * (frameCount % 10),
|
internalFrame.setBounds( frameX + UIScale.scale( GAP ) * (frameCount % 10),
|
||||||
frameY + UIScale.scale( GAP ) * (frameCount % 10), UIScale.scale( 200 ), UIScale.scale( 200 ) );
|
frameY + UIScale.scale( GAP ) * (frameCount % 10), UIScale.scale( 200 ), UIScale.scale( 200 ) );
|
||||||
desktopPane.add( internalFrame, JLayeredPane.DEFAULT_LAYER );
|
desktopPane.add( internalFrame, JLayeredPane.DEFAULT_LAYER );
|
||||||
@@ -76,6 +92,7 @@ public class FlatInternalFrameTest
|
|||||||
closableCheckBox = new JCheckBox();
|
closableCheckBox = new JCheckBox();
|
||||||
iconifiableCheckBox = new JCheckBox();
|
iconifiableCheckBox = new JCheckBox();
|
||||||
maximizableCheckBox = new JCheckBox();
|
maximizableCheckBox = new JCheckBox();
|
||||||
|
iconCheckBox = new JCheckBox();
|
||||||
titleLabel = new JLabel();
|
titleLabel = new JLabel();
|
||||||
titleField = new JTextField();
|
titleField = new JTextField();
|
||||||
createFrameButton = new JButton();
|
createFrameButton = new JButton();
|
||||||
@@ -107,6 +124,7 @@ public class FlatInternalFrameTest
|
|||||||
// rows
|
// rows
|
||||||
"[fill]0" +
|
"[fill]0" +
|
||||||
"[]0" +
|
"[]0" +
|
||||||
|
"[]0" +
|
||||||
"[]unrel" +
|
"[]unrel" +
|
||||||
"[]unrel"));
|
"[]unrel"));
|
||||||
|
|
||||||
@@ -130,18 +148,22 @@ public class FlatInternalFrameTest
|
|||||||
maximizableCheckBox.setSelected(true);
|
maximizableCheckBox.setSelected(true);
|
||||||
paletteContentPane.add(maximizableCheckBox, "cell 1 1,alignx left,growx 0");
|
paletteContentPane.add(maximizableCheckBox, "cell 1 1,alignx left,growx 0");
|
||||||
|
|
||||||
|
//---- iconCheckBox ----
|
||||||
|
iconCheckBox.setText("Frame icon");
|
||||||
|
paletteContentPane.add(iconCheckBox, "cell 0 2");
|
||||||
|
|
||||||
//---- titleLabel ----
|
//---- titleLabel ----
|
||||||
titleLabel.setText("Frame title:");
|
titleLabel.setText("Frame title:");
|
||||||
paletteContentPane.add(titleLabel, "cell 0 2");
|
paletteContentPane.add(titleLabel, "cell 0 3");
|
||||||
paletteContentPane.add(titleField, "cell 1 2");
|
paletteContentPane.add(titleField, "cell 1 3");
|
||||||
|
|
||||||
//---- createFrameButton ----
|
//---- createFrameButton ----
|
||||||
createFrameButton.setText("Create Frame");
|
createFrameButton.setText("Create Frame");
|
||||||
createFrameButton.addActionListener(e -> createInternalFrame());
|
createFrameButton.addActionListener(e -> createInternalFrame());
|
||||||
paletteContentPane.add(createFrameButton, "cell 1 3,alignx right,growx 0");
|
paletteContentPane.add(createFrameButton, "cell 1 4,alignx right,growx 0");
|
||||||
}
|
}
|
||||||
desktopPane.add(palette, JLayeredPane.PALETTE_LAYER);
|
desktopPane.add(palette, JLayeredPane.PALETTE_LAYER);
|
||||||
palette.setBounds(15, 25, 220, 160);
|
palette.setBounds(15, 25, 220, 185);
|
||||||
}
|
}
|
||||||
add(desktopPane, "cell 0 0,width 600,height 600");
|
add(desktopPane, "cell 0 0,width 600,height 600");
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||||
@@ -157,6 +179,7 @@ public class FlatInternalFrameTest
|
|||||||
private JCheckBox closableCheckBox;
|
private JCheckBox closableCheckBox;
|
||||||
private JCheckBox iconifiableCheckBox;
|
private JCheckBox iconifiableCheckBox;
|
||||||
private JCheckBox maximizableCheckBox;
|
private JCheckBox maximizableCheckBox;
|
||||||
|
private JCheckBox iconCheckBox;
|
||||||
private JLabel titleLabel;
|
private JLabel titleLabel;
|
||||||
private JTextField titleField;
|
private JTextField titleField;
|
||||||
private JButton createFrameButton;
|
private JButton createFrameButton;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
JFDML JFormDesigner: "7.0.0.0.194" Java: "11.0.2" encoding: "UTF-8"
|
JFDML JFormDesigner: "7.0.0.0.194" Java: "13.0.1" encoding: "UTF-8"
|
||||||
|
|
||||||
new FormModel {
|
new FormModel {
|
||||||
contentType: "form/swing"
|
contentType: "form/swing"
|
||||||
@@ -14,7 +14,7 @@ new FormModel {
|
|||||||
add( new FormContainer( "javax.swing.JInternalFrame", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
add( new FormContainer( "javax.swing.JInternalFrame", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
"$layoutConstraints": "hidemode 3"
|
"$layoutConstraints": "hidemode 3"
|
||||||
"$columnConstraints": "[fill][fill]"
|
"$columnConstraints": "[fill][fill]"
|
||||||
"$rowConstraints": "[fill]0[]0[]unrel[]unrel"
|
"$rowConstraints": "[fill]0[]0[]0[]unrel[]unrel"
|
||||||
} ) {
|
} ) {
|
||||||
name: "palette"
|
name: "palette"
|
||||||
"visible": true
|
"visible": true
|
||||||
@@ -50,29 +50,35 @@ new FormModel {
|
|||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 1,alignx left,growx 0"
|
"value": "cell 1 1,alignx left,growx 0"
|
||||||
} )
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||||
|
name: "iconCheckBox"
|
||||||
|
"text": "Frame icon"
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 2"
|
||||||
|
} )
|
||||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
name: "titleLabel"
|
name: "titleLabel"
|
||||||
"text": "Frame title:"
|
"text": "Frame title:"
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 0 2"
|
"value": "cell 0 3"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JTextField" ) {
|
add( new FormComponent( "javax.swing.JTextField" ) {
|
||||||
name: "titleField"
|
name: "titleField"
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 2"
|
"value": "cell 1 3"
|
||||||
} )
|
} )
|
||||||
add( new FormComponent( "javax.swing.JButton" ) {
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
name: "createFrameButton"
|
name: "createFrameButton"
|
||||||
"text": "Create Frame"
|
"text": "Create Frame"
|
||||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "createInternalFrame", false ) )
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "createInternalFrame", false ) )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
"value": "cell 1 3,alignx right,growx 0"
|
"value": "cell 1 4,alignx right,growx 0"
|
||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( null ) {
|
}, new FormLayoutConstraints( null ) {
|
||||||
"x": 15
|
"x": 15
|
||||||
"y": 25
|
"y": 25
|
||||||
"width": 220
|
"width": 220
|
||||||
"height": 160
|
"height": 185
|
||||||
"layer": 100
|
"layer": 100
|
||||||
} )
|
} )
|
||||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
|||||||
@@ -403,8 +403,8 @@ public class FlatTestFrame
|
|||||||
|
|
||||||
private void updateComponentsRecur( Container container, BiConsumer<Component, String> action ) {
|
private void updateComponentsRecur( Container container, BiConsumer<Component, String> action ) {
|
||||||
for( Component c : container.getComponents() ) {
|
for( Component c : container.getComponents() ) {
|
||||||
if( c instanceof JPanel ) {
|
if( c instanceof JPanel || c instanceof JDesktopPane ) {
|
||||||
updateComponentsRecur( (JPanel) c, action );
|
updateComponentsRecur( (Container) c, action );
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,339 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.testing;
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
import javax.swing.text.DefaultEditorKit;
|
||||||
|
import net.miginfocom.swing.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class FlatTextComponentsTest
|
||||||
|
extends FlatTestPanel
|
||||||
|
{
|
||||||
|
public static void main( String[] args ) {
|
||||||
|
SwingUtilities.invokeLater( () -> {
|
||||||
|
FlatTestFrame frame = FlatTestFrame.create( args, "FlatTextComponentsTest" );
|
||||||
|
frame.showFrame( FlatTextComponentsTest::new );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
FlatTextComponentsTest() {
|
||||||
|
initComponents();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void changeText() {
|
||||||
|
textField1.setText( "new text" );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initComponents() {
|
||||||
|
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||||
|
JLabel textFieldLabel = new JLabel();
|
||||||
|
textField1 = new JTextField();
|
||||||
|
JTextField textField3 = new JTextField();
|
||||||
|
JTextField textField2 = new JTextField();
|
||||||
|
JButton button1 = new JButton();
|
||||||
|
JLabel formattedTextFieldLabel = new JLabel();
|
||||||
|
JFormattedTextField formattedTextField1 = new JFormattedTextField();
|
||||||
|
JFormattedTextField formattedTextField3 = new JFormattedTextField();
|
||||||
|
JLabel passwordFieldLabel = new JLabel();
|
||||||
|
JPasswordField passwordField1 = new JPasswordField();
|
||||||
|
JPasswordField passwordField3 = new JPasswordField();
|
||||||
|
JLabel textAreaLabel = new JLabel();
|
||||||
|
JScrollPane scrollPane1 = new JScrollPane();
|
||||||
|
JTextArea textArea1 = new JTextArea();
|
||||||
|
JScrollPane scrollPane3 = new JScrollPane();
|
||||||
|
JTextArea textArea3 = new JTextArea();
|
||||||
|
JLabel editorPaneLabel = new JLabel();
|
||||||
|
JScrollPane scrollPane5 = new JScrollPane();
|
||||||
|
JEditorPane editorPane1 = new JEditorPane();
|
||||||
|
JScrollPane scrollPane7 = new JScrollPane();
|
||||||
|
JEditorPane editorPane3 = new JEditorPane();
|
||||||
|
JLabel textPaneLabel = new JLabel();
|
||||||
|
JScrollPane scrollPane9 = new JScrollPane();
|
||||||
|
JTextPane textPane1 = new JTextPane();
|
||||||
|
JScrollPane scrollPane11 = new JScrollPane();
|
||||||
|
JTextPane textPane3 = new JTextPane();
|
||||||
|
JLabel comboBoxLabel = new JLabel();
|
||||||
|
JComboBox<String> comboBox1 = new JComboBox<>();
|
||||||
|
JComboBox<String> comboBox3 = new JComboBox<>();
|
||||||
|
JLabel spinnerLabel = new JLabel();
|
||||||
|
JSpinner spinner1 = new JSpinner();
|
||||||
|
JPopupMenu popupMenu1 = new JPopupMenu();
|
||||||
|
JMenuItem cutMenuItem = new JMenuItem();
|
||||||
|
JMenuItem copyMenuItem = new JMenuItem();
|
||||||
|
JMenuItem pasteMenuItem = new JMenuItem();
|
||||||
|
|
||||||
|
//======== this ========
|
||||||
|
setName("this");
|
||||||
|
setLayout(new MigLayout(
|
||||||
|
"ltr,insets dialog,hidemode 3",
|
||||||
|
// columns
|
||||||
|
"[]" +
|
||||||
|
"[]" +
|
||||||
|
"[::100]" +
|
||||||
|
"[100,fill]" +
|
||||||
|
"[fill]",
|
||||||
|
// rows
|
||||||
|
"[]" +
|
||||||
|
"[]" +
|
||||||
|
"[]" +
|
||||||
|
"[50,fill]" +
|
||||||
|
"[50,fill]" +
|
||||||
|
"[50,fill]" +
|
||||||
|
"[]" +
|
||||||
|
"[]"));
|
||||||
|
|
||||||
|
//---- textFieldLabel ----
|
||||||
|
textFieldLabel.setText("JTextField:");
|
||||||
|
textFieldLabel.setDisplayedMnemonic('T');
|
||||||
|
textFieldLabel.setLabelFor(textField1);
|
||||||
|
textFieldLabel.setName("textFieldLabel");
|
||||||
|
add(textFieldLabel, "cell 0 0");
|
||||||
|
|
||||||
|
//---- textField1 ----
|
||||||
|
textField1.setText("editable");
|
||||||
|
textField1.setComponentPopupMenu(popupMenu1);
|
||||||
|
textField1.setName("textField1");
|
||||||
|
add(textField1, "cell 1 0,growx");
|
||||||
|
|
||||||
|
//---- textField3 ----
|
||||||
|
textField3.setText("longer text for testing horizontal scrolling");
|
||||||
|
textField3.setComponentPopupMenu(popupMenu1);
|
||||||
|
textField3.setName("textField3");
|
||||||
|
add(textField3, "cell 2 0,growx");
|
||||||
|
|
||||||
|
//---- textField2 ----
|
||||||
|
textField2.setText("partly selected");
|
||||||
|
textField2.setSelectionStart(1);
|
||||||
|
textField2.setSelectionEnd(4);
|
||||||
|
textField2.setComponentPopupMenu(popupMenu1);
|
||||||
|
textField2.setName("textField2");
|
||||||
|
add(textField2, "cell 3 0");
|
||||||
|
|
||||||
|
//---- button1 ----
|
||||||
|
button1.setText("change text");
|
||||||
|
button1.setName("button1");
|
||||||
|
button1.addActionListener(e -> changeText());
|
||||||
|
add(button1, "cell 4 0");
|
||||||
|
|
||||||
|
//---- formattedTextFieldLabel ----
|
||||||
|
formattedTextFieldLabel.setText("JFormattedTextField:");
|
||||||
|
formattedTextFieldLabel.setDisplayedMnemonic('F');
|
||||||
|
formattedTextFieldLabel.setLabelFor(formattedTextField1);
|
||||||
|
formattedTextFieldLabel.setName("formattedTextFieldLabel");
|
||||||
|
add(formattedTextFieldLabel, "cell 0 1");
|
||||||
|
|
||||||
|
//---- formattedTextField1 ----
|
||||||
|
formattedTextField1.setText("editable");
|
||||||
|
formattedTextField1.setComponentPopupMenu(popupMenu1);
|
||||||
|
formattedTextField1.setName("formattedTextField1");
|
||||||
|
add(formattedTextField1, "cell 1 1,growx");
|
||||||
|
|
||||||
|
//---- formattedTextField3 ----
|
||||||
|
formattedTextField3.setText("longer text for testing horizontal scrolling");
|
||||||
|
formattedTextField3.setComponentPopupMenu(popupMenu1);
|
||||||
|
formattedTextField3.setName("formattedTextField3");
|
||||||
|
add(formattedTextField3, "cell 2 1,growx");
|
||||||
|
|
||||||
|
//---- passwordFieldLabel ----
|
||||||
|
passwordFieldLabel.setText("JPasswordField:");
|
||||||
|
passwordFieldLabel.setDisplayedMnemonic('P');
|
||||||
|
passwordFieldLabel.setLabelFor(passwordField1);
|
||||||
|
passwordFieldLabel.setName("passwordFieldLabel");
|
||||||
|
add(passwordFieldLabel, "cell 0 2");
|
||||||
|
|
||||||
|
//---- passwordField1 ----
|
||||||
|
passwordField1.setText("editable");
|
||||||
|
passwordField1.setComponentPopupMenu(popupMenu1);
|
||||||
|
passwordField1.setName("passwordField1");
|
||||||
|
add(passwordField1, "cell 1 2,growx");
|
||||||
|
|
||||||
|
//---- passwordField3 ----
|
||||||
|
passwordField3.setText("longer text for testing horizontal scrolling");
|
||||||
|
passwordField3.setComponentPopupMenu(popupMenu1);
|
||||||
|
passwordField3.setName("passwordField3");
|
||||||
|
add(passwordField3, "cell 2 2,growx");
|
||||||
|
|
||||||
|
//---- textAreaLabel ----
|
||||||
|
textAreaLabel.setText("JTextArea:");
|
||||||
|
textAreaLabel.setDisplayedMnemonic('A');
|
||||||
|
textAreaLabel.setLabelFor(textArea1);
|
||||||
|
textAreaLabel.setName("textAreaLabel");
|
||||||
|
add(textAreaLabel, "cell 0 3");
|
||||||
|
|
||||||
|
//======== scrollPane1 ========
|
||||||
|
{
|
||||||
|
scrollPane1.setName("scrollPane1");
|
||||||
|
|
||||||
|
//---- textArea1 ----
|
||||||
|
textArea1.setText("editable");
|
||||||
|
textArea1.setComponentPopupMenu(popupMenu1);
|
||||||
|
textArea1.setName("textArea1");
|
||||||
|
scrollPane1.setViewportView(textArea1);
|
||||||
|
}
|
||||||
|
add(scrollPane1, "cell 1 3,growx");
|
||||||
|
|
||||||
|
//======== scrollPane3 ========
|
||||||
|
{
|
||||||
|
scrollPane3.setName("scrollPane3");
|
||||||
|
|
||||||
|
//---- textArea3 ----
|
||||||
|
textArea3.setText("longer text for testing horizontal scrolling");
|
||||||
|
textArea3.setComponentPopupMenu(popupMenu1);
|
||||||
|
textArea3.setName("textArea3");
|
||||||
|
scrollPane3.setViewportView(textArea3);
|
||||||
|
}
|
||||||
|
add(scrollPane3, "cell 2 3,growx");
|
||||||
|
|
||||||
|
//---- editorPaneLabel ----
|
||||||
|
editorPaneLabel.setText("JEditorPane");
|
||||||
|
editorPaneLabel.setDisplayedMnemonic('J');
|
||||||
|
editorPaneLabel.setLabelFor(editorPane1);
|
||||||
|
editorPaneLabel.setName("editorPaneLabel");
|
||||||
|
add(editorPaneLabel, "cell 0 4");
|
||||||
|
|
||||||
|
//======== scrollPane5 ========
|
||||||
|
{
|
||||||
|
scrollPane5.setName("scrollPane5");
|
||||||
|
|
||||||
|
//---- editorPane1 ----
|
||||||
|
editorPane1.setText("editable");
|
||||||
|
editorPane1.setComponentPopupMenu(popupMenu1);
|
||||||
|
editorPane1.setName("editorPane1");
|
||||||
|
scrollPane5.setViewportView(editorPane1);
|
||||||
|
}
|
||||||
|
add(scrollPane5, "cell 1 4,growx");
|
||||||
|
|
||||||
|
//======== scrollPane7 ========
|
||||||
|
{
|
||||||
|
scrollPane7.setName("scrollPane7");
|
||||||
|
|
||||||
|
//---- editorPane3 ----
|
||||||
|
editorPane3.setText("longer text for testing horizontal scrolling");
|
||||||
|
editorPane3.setComponentPopupMenu(popupMenu1);
|
||||||
|
editorPane3.setName("editorPane3");
|
||||||
|
scrollPane7.setViewportView(editorPane3);
|
||||||
|
}
|
||||||
|
add(scrollPane7, "cell 2 4,growx");
|
||||||
|
|
||||||
|
//---- textPaneLabel ----
|
||||||
|
textPaneLabel.setText("JTextPane:");
|
||||||
|
textPaneLabel.setDisplayedMnemonic('N');
|
||||||
|
textPaneLabel.setLabelFor(textPane1);
|
||||||
|
textPaneLabel.setName("textPaneLabel");
|
||||||
|
add(textPaneLabel, "cell 0 5");
|
||||||
|
|
||||||
|
//======== scrollPane9 ========
|
||||||
|
{
|
||||||
|
scrollPane9.setName("scrollPane9");
|
||||||
|
|
||||||
|
//---- textPane1 ----
|
||||||
|
textPane1.setText("editable");
|
||||||
|
textPane1.setComponentPopupMenu(popupMenu1);
|
||||||
|
textPane1.setName("textPane1");
|
||||||
|
scrollPane9.setViewportView(textPane1);
|
||||||
|
}
|
||||||
|
add(scrollPane9, "cell 1 5,growx");
|
||||||
|
|
||||||
|
//======== scrollPane11 ========
|
||||||
|
{
|
||||||
|
scrollPane11.setName("scrollPane11");
|
||||||
|
|
||||||
|
//---- textPane3 ----
|
||||||
|
textPane3.setText("longer text for testing horizontal scrolling");
|
||||||
|
textPane3.setComponentPopupMenu(popupMenu1);
|
||||||
|
textPane3.setName("textPane3");
|
||||||
|
scrollPane11.setViewportView(textPane3);
|
||||||
|
}
|
||||||
|
add(scrollPane11, "cell 2 5,growx");
|
||||||
|
|
||||||
|
//---- comboBoxLabel ----
|
||||||
|
comboBoxLabel.setText("JComboBox:");
|
||||||
|
comboBoxLabel.setDisplayedMnemonic('C');
|
||||||
|
comboBoxLabel.setLabelFor(comboBox1);
|
||||||
|
comboBoxLabel.setName("comboBoxLabel");
|
||||||
|
add(comboBoxLabel, "cell 0 6");
|
||||||
|
|
||||||
|
//---- comboBox1 ----
|
||||||
|
comboBox1.setEditable(true);
|
||||||
|
comboBox1.setModel(new DefaultComboBoxModel<>(new String[] {
|
||||||
|
"editable",
|
||||||
|
"a",
|
||||||
|
"bb",
|
||||||
|
"ccc"
|
||||||
|
}));
|
||||||
|
comboBox1.setComponentPopupMenu(popupMenu1);
|
||||||
|
comboBox1.setName("comboBox1");
|
||||||
|
add(comboBox1, "cell 1 6,growx");
|
||||||
|
|
||||||
|
//---- comboBox3 ----
|
||||||
|
comboBox3.setModel(new DefaultComboBoxModel<>(new String[] {
|
||||||
|
"longer text for testing horizontal scrolling",
|
||||||
|
"a",
|
||||||
|
"bb",
|
||||||
|
"ccc"
|
||||||
|
}));
|
||||||
|
comboBox3.setEditable(true);
|
||||||
|
comboBox3.setPrototypeDisplayValue("12345");
|
||||||
|
comboBox3.setComponentPopupMenu(popupMenu1);
|
||||||
|
comboBox3.setName("comboBox3");
|
||||||
|
add(comboBox3, "cell 2 6,growx");
|
||||||
|
|
||||||
|
//---- spinnerLabel ----
|
||||||
|
spinnerLabel.setText("JSpinner:");
|
||||||
|
spinnerLabel.setDisplayedMnemonic('S');
|
||||||
|
spinnerLabel.setLabelFor(spinner1);
|
||||||
|
spinnerLabel.setName("spinnerLabel");
|
||||||
|
add(spinnerLabel, "cell 0 7");
|
||||||
|
|
||||||
|
//---- spinner1 ----
|
||||||
|
spinner1.setComponentPopupMenu(popupMenu1);
|
||||||
|
spinner1.setName("spinner1");
|
||||||
|
add(spinner1, "cell 1 7,growx");
|
||||||
|
|
||||||
|
//======== popupMenu1 ========
|
||||||
|
{
|
||||||
|
popupMenu1.setName("popupMenu1");
|
||||||
|
|
||||||
|
//---- cutMenuItem ----
|
||||||
|
cutMenuItem.setText("Cut");
|
||||||
|
cutMenuItem.setName("cutMenuItem");
|
||||||
|
popupMenu1.add(cutMenuItem);
|
||||||
|
|
||||||
|
//---- copyMenuItem ----
|
||||||
|
copyMenuItem.setText("Copy");
|
||||||
|
copyMenuItem.setName("copyMenuItem");
|
||||||
|
popupMenu1.add(copyMenuItem);
|
||||||
|
|
||||||
|
//---- pasteMenuItem ----
|
||||||
|
pasteMenuItem.setText("Paste");
|
||||||
|
pasteMenuItem.setName("pasteMenuItem");
|
||||||
|
popupMenu1.add(pasteMenuItem);
|
||||||
|
}
|
||||||
|
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||||
|
|
||||||
|
cutMenuItem.addActionListener( new DefaultEditorKit.CutAction() );
|
||||||
|
copyMenuItem.addActionListener( new DefaultEditorKit.CopyAction() );
|
||||||
|
pasteMenuItem.addActionListener( new DefaultEditorKit.PasteAction() );
|
||||||
|
}
|
||||||
|
|
||||||
|
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||||
|
private JTextField textField1;
|
||||||
|
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||||
|
}
|
||||||
@@ -0,0 +1,259 @@
|
|||||||
|
JFDML JFormDesigner: "7.0.0.0.194" Java: "13.0.1" encoding: "UTF-8"
|
||||||
|
|
||||||
|
new FormModel {
|
||||||
|
contentType: "form/swing"
|
||||||
|
root: new FormRoot {
|
||||||
|
"$setComponentNames": true
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.defaultVariableLocal": true
|
||||||
|
}
|
||||||
|
add( new FormContainer( "com.formdev.flatlaf.testing.FlatTestPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||||
|
"$layoutConstraints": "ltr,insets dialog,hidemode 3"
|
||||||
|
"$columnConstraints": "[][][::100][100,fill][fill]"
|
||||||
|
"$rowConstraints": "[][][][50,fill][50,fill][50,fill][][]"
|
||||||
|
} ) {
|
||||||
|
name: "this"
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "textFieldLabel"
|
||||||
|
"text": "JTextField:"
|
||||||
|
"displayedMnemonic": 84
|
||||||
|
"labelFor": new FormReference( "textField1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 0"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JTextField" ) {
|
||||||
|
name: "textField1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": &FormReference0 new FormReference( "popupMenu1" )
|
||||||
|
auxiliary() {
|
||||||
|
"JavaCodeGenerator.variableLocal": false
|
||||||
|
}
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 0,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JTextField" ) {
|
||||||
|
name: "textField3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 0,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JTextField" ) {
|
||||||
|
name: "textField2"
|
||||||
|
"text": "partly selected"
|
||||||
|
"selectionStart": 1
|
||||||
|
"selectionEnd": 4
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 3 0"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JButton" ) {
|
||||||
|
name: "button1"
|
||||||
|
"text": "change text"
|
||||||
|
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "changeText", false ) )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 4 0"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "formattedTextFieldLabel"
|
||||||
|
"text": "JFormattedTextField:"
|
||||||
|
"displayedMnemonic": 70
|
||||||
|
"labelFor": new FormReference( "formattedTextField1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 1"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JFormattedTextField" ) {
|
||||||
|
name: "formattedTextField1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 1,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JFormattedTextField" ) {
|
||||||
|
name: "formattedTextField3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 1,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "passwordFieldLabel"
|
||||||
|
"text": "JPasswordField:"
|
||||||
|
"displayedMnemonic": 80
|
||||||
|
"labelFor": new FormReference( "passwordField1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 2"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JPasswordField" ) {
|
||||||
|
name: "passwordField1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 2,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JPasswordField" ) {
|
||||||
|
name: "passwordField3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 2,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "textAreaLabel"
|
||||||
|
"text": "JTextArea:"
|
||||||
|
"displayedMnemonic": 65
|
||||||
|
"labelFor": new FormReference( "textArea1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 3"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane1"
|
||||||
|
add( new FormComponent( "javax.swing.JTextArea" ) {
|
||||||
|
name: "textArea1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 3,growx"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane3"
|
||||||
|
add( new FormComponent( "javax.swing.JTextArea" ) {
|
||||||
|
name: "textArea3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 3,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "editorPaneLabel"
|
||||||
|
"text": "JEditorPane"
|
||||||
|
"displayedMnemonic": 74
|
||||||
|
"labelFor": new FormReference( "editorPane1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 4"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane5"
|
||||||
|
add( new FormComponent( "javax.swing.JEditorPane" ) {
|
||||||
|
name: "editorPane1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 4,growx"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane7"
|
||||||
|
add( new FormComponent( "javax.swing.JEditorPane" ) {
|
||||||
|
name: "editorPane3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 4,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "textPaneLabel"
|
||||||
|
"text": "JTextPane:"
|
||||||
|
"displayedMnemonic": 78
|
||||||
|
"labelFor": new FormReference( "textPane1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 5"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane9"
|
||||||
|
add( new FormComponent( "javax.swing.JTextPane" ) {
|
||||||
|
name: "textPane1"
|
||||||
|
"text": "editable"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 5,growx"
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JScrollPane", new FormLayoutManager( class javax.swing.JScrollPane ) ) {
|
||||||
|
name: "scrollPane11"
|
||||||
|
add( new FormComponent( "javax.swing.JTextPane" ) {
|
||||||
|
name: "textPane3"
|
||||||
|
"text": "longer text for testing horizontal scrolling"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 5,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "comboBoxLabel"
|
||||||
|
"text": "JComboBox:"
|
||||||
|
"displayedMnemonic": 67
|
||||||
|
"labelFor": new FormReference( "comboBox1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 6"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JComboBox" ) {
|
||||||
|
name: "comboBox1"
|
||||||
|
"editable": true
|
||||||
|
"model": new javax.swing.DefaultComboBoxModel {
|
||||||
|
selectedItem: "editable"
|
||||||
|
addElement( "editable" )
|
||||||
|
addElement( "a" )
|
||||||
|
addElement( "bb" )
|
||||||
|
addElement( "ccc" )
|
||||||
|
}
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 6,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JComboBox" ) {
|
||||||
|
name: "comboBox3"
|
||||||
|
"model": new javax.swing.DefaultComboBoxModel {
|
||||||
|
selectedItem: "longer text for testing horizontal scrolling"
|
||||||
|
addElement( "longer text for testing horizontal scrolling" )
|
||||||
|
addElement( "a" )
|
||||||
|
addElement( "bb" )
|
||||||
|
addElement( "ccc" )
|
||||||
|
}
|
||||||
|
"editable": true
|
||||||
|
"prototypeDisplayValue": "12345"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 2 6,growx"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||||
|
name: "spinnerLabel"
|
||||||
|
"text": "JSpinner:"
|
||||||
|
"displayedMnemonic": 83
|
||||||
|
"labelFor": new FormReference( "spinner1" )
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 0 7"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JSpinner" ) {
|
||||||
|
name: "spinner1"
|
||||||
|
"componentPopupMenu": #FormReference0
|
||||||
|
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||||
|
"value": "cell 1 7,growx"
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( null ) {
|
||||||
|
"location": new java.awt.Point( 0, 0 )
|
||||||
|
"size": new java.awt.Dimension( 530, 340 )
|
||||||
|
} )
|
||||||
|
add( new FormContainer( "javax.swing.JPopupMenu", new FormLayoutManager( class javax.swing.JPopupMenu ) ) {
|
||||||
|
name: "popupMenu1"
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "cutMenuItem"
|
||||||
|
"text": "Cut"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "copyMenuItem"
|
||||||
|
"text": "Copy"
|
||||||
|
} )
|
||||||
|
add( new FormComponent( "javax.swing.JMenuItem" ) {
|
||||||
|
name: "pasteMenuItem"
|
||||||
|
"text": "Paste"
|
||||||
|
} )
|
||||||
|
}, new FormLayoutConstraints( null ) {
|
||||||
|
"location": new java.awt.Point( 0, 390 )
|
||||||
|
"size": new java.awt.Dimension( 91, 87 )
|
||||||
|
} )
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,341 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 FormDev Software GmbH
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.formdev.flatlaf.testing.uidefaults;
|
||||||
|
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Dimension;
|
||||||
|
import java.awt.Font;
|
||||||
|
import java.awt.Insets;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileWriter;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
import java.lang.reflect.Array;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.swing.Icon;
|
||||||
|
import javax.swing.ImageIcon;
|
||||||
|
import javax.swing.InputMap;
|
||||||
|
import javax.swing.JComponent;
|
||||||
|
import javax.swing.JToolBar;
|
||||||
|
import javax.swing.KeyStroke;
|
||||||
|
import javax.swing.ListCellRenderer;
|
||||||
|
import javax.swing.LookAndFeel;
|
||||||
|
import javax.swing.UIDefaults;
|
||||||
|
import javax.swing.UIDefaults.ActiveValue;
|
||||||
|
import javax.swing.UIDefaults.LazyValue;
|
||||||
|
import javax.swing.UIManager;
|
||||||
|
import javax.swing.border.Border;
|
||||||
|
import javax.swing.border.CompoundBorder;
|
||||||
|
import javax.swing.border.LineBorder;
|
||||||
|
import javax.swing.plaf.UIResource;
|
||||||
|
import javax.swing.plaf.basic.BasicLookAndFeel;
|
||||||
|
import com.formdev.flatlaf.FlatDarkLaf;
|
||||||
|
import com.formdev.flatlaf.FlatLaf;
|
||||||
|
import com.formdev.flatlaf.FlatLightLaf;
|
||||||
|
import com.formdev.flatlaf.util.SystemInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dumps look and feel UI defaults to files.
|
||||||
|
*
|
||||||
|
* @author Karl Tauber
|
||||||
|
*/
|
||||||
|
public class UIDefaultsDump
|
||||||
|
{
|
||||||
|
private final LookAndFeel lookAndFeel;
|
||||||
|
private final UIDefaults defaults;
|
||||||
|
|
||||||
|
private String lastPrefix;
|
||||||
|
private JComponent dummyComponent;
|
||||||
|
|
||||||
|
public static void main( String[] args ) {
|
||||||
|
System.setProperty( "sun.java2d.uiScale", "1x" );
|
||||||
|
System.setProperty( "flatlaf.uiScale", "1x" );
|
||||||
|
|
||||||
|
File dir = new File( "src/main/resources/com/formdev/flatlaf/testing/uidefaults" );
|
||||||
|
|
||||||
|
dump( FlatLightLaf.class.getName(), dir );
|
||||||
|
dump( FlatDarkLaf.class.getName(), dir );
|
||||||
|
|
||||||
|
// dump( MyBasicLookAndFeel.class.getName(), dir );
|
||||||
|
// dump( MetalLookAndFeel.class.getName(), dir );
|
||||||
|
//
|
||||||
|
// if( SystemInfo.IS_WINDOWS )
|
||||||
|
// dump( "com.sun.java.swing.plaf.windows.WindowsLookAndFeel", dir );
|
||||||
|
// else if( SystemInfo.IS_MAC )
|
||||||
|
// dump( "com.apple.laf.AquaLookAndFeel", dir );
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void dump( String lookAndFeelClassName, File dir ) {
|
||||||
|
try {
|
||||||
|
UIManager.setLookAndFeel( lookAndFeelClassName );
|
||||||
|
} catch( Exception ex ) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LookAndFeel lookAndFeel = UIManager.getLookAndFeel();
|
||||||
|
|
||||||
|
// dump to string
|
||||||
|
StringWriter stringWriter = new StringWriter( 100000 );
|
||||||
|
new UIDefaultsDump( lookAndFeel ).dump( new PrintWriter( stringWriter ) );
|
||||||
|
|
||||||
|
Class<?> lookAndFeelClass = lookAndFeel instanceof MyBasicLookAndFeel
|
||||||
|
? BasicLookAndFeel.class
|
||||||
|
: lookAndFeel.getClass();
|
||||||
|
String suffix = (SystemInfo.IS_MAC && lookAndFeel instanceof FlatLaf) ? "-mac" : "";
|
||||||
|
File file = new File( dir, lookAndFeelClass.getSimpleName() + "_"
|
||||||
|
+ System.getProperty( "java.version" ) + suffix + ".txt" );
|
||||||
|
|
||||||
|
// write to file
|
||||||
|
try( FileWriter fileWriter = new FileWriter( file ) ) {
|
||||||
|
fileWriter.write( stringWriter.toString().replace( "\r", "" ) );
|
||||||
|
} catch( IOException ex ) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private UIDefaultsDump( LookAndFeel lookAndFeel ) {
|
||||||
|
this.lookAndFeel = lookAndFeel;
|
||||||
|
this.defaults = lookAndFeel.getDefaults();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dump( PrintWriter out ) {
|
||||||
|
Class<?> lookAndFeelClass = lookAndFeel instanceof MyBasicLookAndFeel
|
||||||
|
? BasicLookAndFeel.class
|
||||||
|
: lookAndFeel.getClass();
|
||||||
|
out.printf( "Class %s%n", lookAndFeelClass.getName() );
|
||||||
|
out.printf( "ID %s%n", lookAndFeel.getID() );
|
||||||
|
out.printf( "Name %s%n", lookAndFeel.getName() );
|
||||||
|
out.printf( "Java %s%n", System.getProperty( "java.version" ) );
|
||||||
|
out.printf( "OS %s%n", System.getProperty( "os.name" ) );
|
||||||
|
|
||||||
|
defaults.entrySet().stream()
|
||||||
|
.sorted( (key1, key2) -> {
|
||||||
|
return String.valueOf( key1 ).compareTo( String.valueOf( key2 ) );
|
||||||
|
} )
|
||||||
|
.forEach( entry -> {
|
||||||
|
Object key = entry.getKey();
|
||||||
|
Object value = entry.getValue();
|
||||||
|
|
||||||
|
String strKey = String.valueOf( key );
|
||||||
|
int dotIndex = strKey.indexOf( '.' );
|
||||||
|
String prefix = (dotIndex > 0)
|
||||||
|
? strKey.substring( 0, dotIndex )
|
||||||
|
: strKey.endsWith( "UI" )
|
||||||
|
? strKey.substring( 0, strKey.length() - 2 )
|
||||||
|
: "";
|
||||||
|
if( !prefix.equals( lastPrefix ) ) {
|
||||||
|
lastPrefix = prefix;
|
||||||
|
out.printf( "%n%n#---- %s ----%n%n", prefix );
|
||||||
|
}
|
||||||
|
|
||||||
|
out.printf( "%-30s ", strKey );
|
||||||
|
dumpValue( out, value );
|
||||||
|
out.println();
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpValue( PrintWriter out, Object value ) {
|
||||||
|
if( value == null ||
|
||||||
|
value instanceof String ||
|
||||||
|
value instanceof Number ||
|
||||||
|
value instanceof Boolean )
|
||||||
|
{
|
||||||
|
out.print( value );
|
||||||
|
} else if( value instanceof Character ) {
|
||||||
|
char ch = ((Character)value).charValue();
|
||||||
|
if( ch >= ' ' && ch <= '~' )
|
||||||
|
out.printf( "'%c'", value );
|
||||||
|
else
|
||||||
|
out.printf( "'\\u%h'", (int) ch );
|
||||||
|
} else if( value.getClass().isArray() )
|
||||||
|
dumpArray( out, value );
|
||||||
|
else if( value instanceof List )
|
||||||
|
dumpList( out, (List<?>) value );
|
||||||
|
else if( value instanceof Color )
|
||||||
|
dumpColor( out, (Color) value );
|
||||||
|
else if( value instanceof Font )
|
||||||
|
dumpFont( out, (Font) value );
|
||||||
|
else if( value instanceof Insets )
|
||||||
|
dumpInsets( out, (Insets) value );
|
||||||
|
else if( value instanceof Dimension )
|
||||||
|
dumpDimension( out, (Dimension) value );
|
||||||
|
else if( value instanceof Border )
|
||||||
|
dumpBorder( out, (Border) value, null );
|
||||||
|
else if( value instanceof Icon )
|
||||||
|
dumpIcon( out, (Icon) value );
|
||||||
|
else if( value instanceof ListCellRenderer )
|
||||||
|
dumpListCellRenderer( out, (ListCellRenderer<?>) value );
|
||||||
|
else if( value instanceof InputMap )
|
||||||
|
dumpInputMap( out, (InputMap) value, null );
|
||||||
|
else if( value instanceof LazyValue )
|
||||||
|
dumpLazyValue( out, (LazyValue) value );
|
||||||
|
else if( value instanceof ActiveValue )
|
||||||
|
dumpActiveValue( out, (ActiveValue) value );
|
||||||
|
else
|
||||||
|
out.printf( "[unknown type] %s", dumpClass( value ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpArray( PrintWriter out, Object array ) {
|
||||||
|
int length = Array.getLength( array );
|
||||||
|
out.printf( "length=%d %s", length, dumpClass( array ) );
|
||||||
|
for( int i = 0; i < length; i++ ) {
|
||||||
|
out.printf( "%n [%d] ", i );
|
||||||
|
dumpValue( out, Array.get( array, i ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpList( PrintWriter out, List<?> list ) {
|
||||||
|
out.printf( "size=%d %s", list.size(), dumpClass( list ) );
|
||||||
|
for( int i = 0; i < list.size(); i++ ) {
|
||||||
|
out.printf( "%n [%d] ", i );
|
||||||
|
dumpValue( out, list.get( i ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpColor( PrintWriter out, Color color ) {
|
||||||
|
boolean hasAlpha = (color.getAlpha() != 255);
|
||||||
|
out.printf( hasAlpha ? "#%08x %s" : "#%06x %s",
|
||||||
|
hasAlpha ? color.getRGB() : (color.getRGB() & 0xffffff),
|
||||||
|
dumpClass( color ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpFont( PrintWriter out, Font font ) {
|
||||||
|
String strStyle = font.isBold()
|
||||||
|
? font.isItalic() ? "bolditalic" : "bold"
|
||||||
|
: font.isItalic() ? "italic" : "plain";
|
||||||
|
out.printf( "%s %s %d %s",
|
||||||
|
font.getName(), strStyle, font.getSize(),
|
||||||
|
dumpClass( font ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpInsets( PrintWriter out, Insets insets ) {
|
||||||
|
out.printf( "%d,%d,%d,%d %s",
|
||||||
|
insets.top, insets.left, insets.bottom, insets.right,
|
||||||
|
dumpClass( insets ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpDimension( PrintWriter out, Dimension dimension ) {
|
||||||
|
out.printf( "%d,%d %s",
|
||||||
|
dimension.width, dimension.height,
|
||||||
|
dumpClass( dimension ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpBorder( PrintWriter out, Border border, String indent ) {
|
||||||
|
if( indent == null )
|
||||||
|
indent = "";
|
||||||
|
out.print( indent );
|
||||||
|
|
||||||
|
if( border == null ) {
|
||||||
|
out.print( "null" );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if( border instanceof CompoundBorder ) {
|
||||||
|
CompoundBorder b = (CompoundBorder) border;
|
||||||
|
out.println( dumpClass( b ) );
|
||||||
|
dumpBorder( out, b.getOutsideBorder(), indent + " " );
|
||||||
|
out.println();
|
||||||
|
dumpBorder( out, b.getInsideBorder(), indent + " " );
|
||||||
|
} else {
|
||||||
|
if( border instanceof LineBorder ) {
|
||||||
|
LineBorder b = (LineBorder) border;
|
||||||
|
out.print( "line: " );
|
||||||
|
dumpValue( out, b.getLineColor() );
|
||||||
|
out.printf( " %d %b ", b.getThickness(), b.getRoundedCorners() );
|
||||||
|
}
|
||||||
|
|
||||||
|
if( dummyComponent == null )
|
||||||
|
dummyComponent = new JComponent() {};
|
||||||
|
|
||||||
|
JComponent c = dummyComponent;
|
||||||
|
if( border.getClass().getName().equals( "com.apple.laf.AquaToolBarUI$ToolBarBorder" ) )
|
||||||
|
c = new JToolBar();
|
||||||
|
|
||||||
|
Insets insets = border.getBorderInsets( c );
|
||||||
|
out.printf( "%d,%d,%d,%d %b %s",
|
||||||
|
insets.top, insets.left, insets.bottom, insets.right,
|
||||||
|
border.isBorderOpaque(),
|
||||||
|
dumpClass( border ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpIcon( PrintWriter out, Icon icon ) {
|
||||||
|
out.printf( "%d,%d %s",
|
||||||
|
icon.getIconWidth(), icon.getIconHeight(),
|
||||||
|
dumpClass( icon ) );
|
||||||
|
if( icon instanceof ImageIcon )
|
||||||
|
out.printf( " (%s)", dumpClass( ((ImageIcon)icon).getImage() ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpListCellRenderer( PrintWriter out, ListCellRenderer<?> listCellRenderer ) {
|
||||||
|
out.print( dumpClass( listCellRenderer ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpInputMap( PrintWriter out, InputMap inputMap, String indent ) {
|
||||||
|
if( indent == null )
|
||||||
|
indent = " ";
|
||||||
|
|
||||||
|
out.printf( "%d %s", inputMap.size(), dumpClass( inputMap ) );
|
||||||
|
|
||||||
|
KeyStroke[] keys = inputMap.keys();
|
||||||
|
if( keys != null ) {
|
||||||
|
Arrays.sort( keys, (keyStroke1, keyStroke2) -> {
|
||||||
|
return String.valueOf( keyStroke1 ).compareTo( String.valueOf( keyStroke2 ) );
|
||||||
|
} );
|
||||||
|
for( KeyStroke keyStroke : keys ) {
|
||||||
|
Object value = inputMap.get( keyStroke );
|
||||||
|
out.printf( "%n%s%-30s %s", indent, keyStroke, value );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InputMap parent = inputMap.getParent();
|
||||||
|
if( parent != null )
|
||||||
|
dumpInputMap( out, parent, indent + " " );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpLazyValue( PrintWriter out, LazyValue value ) {
|
||||||
|
out.print( "[lazy] " );
|
||||||
|
dumpValue( out, value.createValue( defaults ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dumpActiveValue( PrintWriter out, ActiveValue value ) {
|
||||||
|
out.print( "[active] " );
|
||||||
|
dumpValue( out, value.createValue( defaults ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
private String dumpClass( Object value ) {
|
||||||
|
String classname = value.getClass().getName();
|
||||||
|
if( value instanceof UIResource )
|
||||||
|
classname += " [UI]";
|
||||||
|
return classname;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---- class MyBasicLookAndFeel -------------------------------------------
|
||||||
|
|
||||||
|
public static class MyBasicLookAndFeel
|
||||||
|
extends BasicLookAndFeel
|
||||||
|
{
|
||||||
|
@Override public String getName() { return "Basic"; }
|
||||||
|
@Override public String getID() { return "Basic"; }
|
||||||
|
@Override public String getDescription() { return "Basic"; }
|
||||||
|
@Override public boolean isNativeLookAndFeel() { return false; }
|
||||||
|
@Override public boolean isSupportedLookAndFeel() { return true; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -24,6 +24,7 @@
|
|||||||
@selectionInactiveForeground=#ffffff
|
@selectionInactiveForeground=#ffffff
|
||||||
@disabledText=#000088
|
@disabledText=#000088
|
||||||
@textComponentBackground=#ffffff
|
@textComponentBackground=#ffffff
|
||||||
|
@menuBackground=#fff
|
||||||
@cellFocusColor=#ff0000
|
@cellFocusColor=#ff0000
|
||||||
@icon=#afafaf
|
@icon=#afafaf
|
||||||
|
|
||||||
@@ -129,11 +130,39 @@ Component.focusColor=#97c3f3
|
|||||||
#Component.arc=8
|
#Component.arc=8
|
||||||
|
|
||||||
|
|
||||||
|
#---- Desktop ----
|
||||||
|
|
||||||
|
Desktop.background=#afe
|
||||||
|
|
||||||
|
|
||||||
|
#---- DesktopIcon ----
|
||||||
|
|
||||||
|
DesktopIcon.background=darken($Desktop.background,20%)
|
||||||
|
|
||||||
|
|
||||||
#---- HelpButton ----
|
#---- HelpButton ----
|
||||||
|
|
||||||
HelpButton.questionMarkColor=#0000ff
|
HelpButton.questionMarkColor=#0000ff
|
||||||
|
|
||||||
|
|
||||||
|
#---- InternalFrame ----
|
||||||
|
|
||||||
|
InternalFrame.activeTitleBackground=#800
|
||||||
|
InternalFrame.activeTitleForeground=#faa
|
||||||
|
InternalFrame.inactiveTitleBackground=#080
|
||||||
|
InternalFrame.inactiveTitleForeground=#afa
|
||||||
|
|
||||||
|
InternalFrame.activeBorderColor=#f00
|
||||||
|
InternalFrame.inactiveBorderColor=#0f0
|
||||||
|
|
||||||
|
InternalFrame.buttonHoverBackground=#060
|
||||||
|
InternalFrame.buttonPressedBackground=#0a0
|
||||||
|
InternalFrame.closeHoverBackground=#008
|
||||||
|
InternalFrame.closePressedBackground=#00f
|
||||||
|
InternalFrame.closeHoverForeground=#fff
|
||||||
|
InternalFrame.closePressedForeground=#fff
|
||||||
|
|
||||||
|
|
||||||
#---- Label ----
|
#---- Label ----
|
||||||
|
|
||||||
Label.foreground=#008800
|
Label.foreground=#008800
|
||||||
@@ -157,6 +186,7 @@ Menu.icon.disabledArrowColor=#ABABAB
|
|||||||
#---- MenuBar ----
|
#---- MenuBar ----
|
||||||
|
|
||||||
MenuBar.borderColor=#4444ff
|
MenuBar.borderColor=#4444ff
|
||||||
|
MenuBar.hoverBackground=#fdd
|
||||||
|
|
||||||
|
|
||||||
#---- MenuItemCheckBox ----
|
#---- MenuItemCheckBox ----
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user