Lines Matching refs:State

137     String getString(Component c, Part part, State state, Prop prop) {
141 TypeEnum getTypeEnum(Component c, Part part, State state, Prop prop) {
143 State.getValue(part, state),
148 private static String getTypeEnumName(Component c, Part part, State state, Prop prop) {
150 State.getValue(part, state),
167 int getInt(Component c, Part part, State state, Prop prop, int fallback) {
169 State.getValue(part, state),
182 Dimension getDimension(Component c, Part part, State state, Prop prop) {
184 State.getValue(part, state),
198 Point getPoint(Component c, Part part, State state, Prop prop) {
200 State.getValue(part, state),
219 Insets getMargin(Component c, Part part, State state, Prop prop) {
221 State.getValue(part, state),
238 State.getValue(part, skin.state),
248 Color getColor(Component c, Part part, State state, Prop prop, Color fallback) {
346 State state = State.NORMAL;
459 long getThemeTransitionDuration(Component c, Part part, State stateFrom,
460 State stateTo, Prop prop) {
463 State.getValue(part, stateFrom),
464 State.getValue(part, stateTo),
476 final State state;
485 Skin(Part part, State state) {
489 Skin(Component component, Part part, State state) {
513 private int getWidth(State state) {
521 return getWidth((state != null) ? state : State.NORMAL);
524 private int getHeight(State state) {
532 return getHeight((state != null) ? state : State.NORMAL);
554 void paintSkin(Graphics g, int dx, int dy, State state) {
568 void paintSkin(Graphics g, Rectangle r, State state) {
584 void paintSkin(Graphics g, int dx, int dy, int dw, int dh, State state) {
609 void paintSkinRaw(Graphics g, int dx, int dy, int dw, int dh, State state) {
626 void paintSkin(Graphics g, int dx, int dy, int dw, int dh, State state,
651 State state = (State)args[1];
666 State.getValue(part, state),
694 protected State getState() {
695 State state = State.NORMAL;
697 state = State.DISABLED;
699 state = State.PRESSED;
701 state = State.HOT;
734 private boolean getBoolean(Component c, Part part, State state, Prop prop) {
736 State.getValue(part, state),
742 static Dimension getPartSize(Part part, State state) {
744 State.getValue(part, state));