public abstract class State<T extends JComponent> extends Object
Represents a built in, or custom, state in Nimbus.
Synth provides several built in states, which are:
However, there are many more states that could be described in a LookAndFeel, and it would be nice to style components differently based on these different states. For example, a progress bar could be "indeterminate". It would be very convenient to allow this to be defined as a "state".
This class, State, is intended to be used for such situations. Simply implement the abstract #isInState method. It returns true if the given JComponent is "in this state", false otherwise. This method will be called many times in performance sensitive loops. It must execute very quickly.
For example, the following might be an implementation of a custom "Indeterminate" state for JProgressBars:
public final class IndeterminateState extends State<JProgressBar> {
public IndeterminateState() {
super("Indeterminate");
}
@Override
protected boolean isInState(JProgressBar c) {
return c.isIndeterminate();
}
}
Modifier | Constructor and Description |
---|---|
protected |
State(String name)
Create a new custom State.
|
Modifier and Type | Method and Description |
---|---|
protected abstract boolean |
isInState(T c)
Gets whether the specified JComponent is in the custom state represented
by this class.
|
String |
toString()
Answers a string containing a concise, human-readable
description of the receiver.
|
protected State(String name)
Create a new custom State. Specify the name for the state. The name should be unique within the states set for any one particular component. The name of the state should coincide with the name used in UIDefaults.
For example, the following would be correct:
defaults.put("Button.States", "Enabled, Foo, Disabled");
defaults.put("Button.Foo", new FooState("Foo"));
name
- a simple user friendly name for the state, such as "Indeterminate"
or "EmbeddedPanel" or "Blurred". It is customary to use camel case,
with the first letter capitalized.public String toString()
Object
protected abstract boolean isInState(T c)
Gets whether the specified JComponent is in the custom state represented by this class. This is an extremely performance sensitive loop. Please take proper precautions to ensure that it executes quickly.
Nimbus uses this method to help determine what state a JComponent is
in. For example, a custom State could exist for JProgressBar such that
it would return true
when the progress bar is indeterminate.
Such an implementation of this method would simply be:
return c.isIndeterminate();
c
- the JComponent to test. This will never be null.c
is in the custom state represented by
this State
instance Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.