From 3628a03c9de0bf3166021b2dcf0ebb7f36f5f403 Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Thu, 24 Aug 2023 11:54:32 +0200 Subject: [PATCH] introduced FlatUIAction --- .../com/formdev/flatlaf/ui/FlatMenuBarUI.java | 9 ++- .../formdev/flatlaf/ui/FlatTabbedPaneUI.java | 21 +------ .../com/formdev/flatlaf/ui/FlatUIAction.java | 62 +++++++++++++++++++ 3 files changed, 70 insertions(+), 22 deletions(-) create mode 100644 flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatUIAction.java diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatMenuBarUI.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatMenuBarUI.java index 4cdb44fa..7bf0901f 100644 --- a/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatMenuBarUI.java +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatMenuBarUI.java @@ -27,7 +27,6 @@ import java.awt.event.ActionEvent; import java.beans.PropertyChangeListener; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; -import javax.swing.AbstractAction; import javax.swing.ActionMap; import javax.swing.BoxLayout; import javax.swing.JComponent; @@ -149,7 +148,7 @@ public class FlatMenuBarUI map = new ActionMapUIResource(); SwingUtilities.replaceUIActionMap( menuBar, map ); } - map.put( "takeFocus", new TakeFocus() ); + map.put( "takeFocus", new TakeFocus( "takeFocus" ) ); } /** @since 2 */ @@ -373,8 +372,12 @@ public class FlatMenuBarUI * On other platforms, the popup of the first menu is shown. */ private static class TakeFocus - extends AbstractAction + extends FlatUIAction { + public TakeFocus( String name ) { + super( name ); + } + @Override public void actionPerformed( ActionEvent e ) { JMenuBar menuBar = (JMenuBar) e.getSource(); diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatTabbedPaneUI.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatTabbedPaneUI.java index 52bc470c..c39510d9 100644 --- a/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatTabbedPaneUI.java +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatTabbedPaneUI.java @@ -3520,10 +3520,8 @@ public class FlatTabbedPaneUI //---- class RunWithOriginalLayoutManagerDelegateAction ------------------- private static class RunWithOriginalLayoutManagerDelegateAction - implements Action + extends FlatUIAction { - private final Action delegate; - static void install( ActionMap map, String key ) { Action oldAction = map.get( key ); if( oldAction == null || oldAction instanceof RunWithOriginalLayoutManagerDelegateAction ) @@ -3533,24 +3531,9 @@ public class FlatTabbedPaneUI } private RunWithOriginalLayoutManagerDelegateAction( Action delegate ) { - this.delegate = delegate; + super( delegate ); } - @Override - public Object getValue( String key ) { - return delegate.getValue( key ); - } - - @Override - public boolean isEnabled() { - return delegate.isEnabled(); - } - - @Override public void putValue( String key, Object value ) {} - @Override public void setEnabled( boolean b ) {} - @Override public void addPropertyChangeListener( PropertyChangeListener listener ) {} - @Override public void removePropertyChangeListener( PropertyChangeListener listener ) {} - @Override public void actionPerformed( ActionEvent e ) { JTabbedPane tabbedPane = (JTabbedPane) e.getSource(); diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatUIAction.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatUIAction.java new file mode 100644 index 00000000..b509c471 --- /dev/null +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/ui/FlatUIAction.java @@ -0,0 +1,62 @@ +/* + * Copyright 2023 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.ui; + +import java.beans.PropertyChangeListener; +import javax.swing.Action; + +/** + * Base class for UI actions used in ActionMap. + * (similar to class sun.swing.UIAction) + * + * @author Karl Tauber + * @since 3.3 + */ +public abstract class FlatUIAction + implements Action +{ + protected final String name; + protected final Action delegate; + + protected FlatUIAction( String name ) { + this.name = name; + this.delegate = null; + } + + protected FlatUIAction( Action delegate ) { + this.name = null; + this.delegate = delegate; + } + + @Override + public Object getValue( String key ) { + if( key == NAME && delegate == null ) + return name; + return (delegate != null) ? delegate.getValue( key ) : null; + } + + @Override + public boolean isEnabled() { + return (delegate != null) ? delegate.isEnabled() : true; + } + + // do nothing in following methods because this class is immutable + @Override public void putValue( String key, Object value ) {} + @Override public void setEnabled( boolean b ) {} + @Override public void addPropertyChangeListener( PropertyChangeListener listener ) {} + @Override public void removePropertyChangeListener( PropertyChangeListener listener ) {} +}