org.pushingpixels.substance.extras.api.tabbed.TabOverviewDialogWidget Maven / Gradle / Ivy
/*
* Copyright (c) 2005-2021 Radiance Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of the copyright holder nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.substance.extras.api.tabbed;
import org.pushingpixels.substance.api.SubstanceWidget;
import org.pushingpixels.substance.extras.internal.SubstanceExtrasSynapse;
import org.pushingpixels.substance.extras.internal.tabbed.TabOverviewButton;
import org.pushingpixels.substance.extras.internal.tabbed.TabPreviewUtilities;
import org.pushingpixels.substance.internal.ui.SubstanceTabbedPaneUI;
import org.pushingpixels.substance.internal.utils.SubstanceSizeUtils;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ContainerAdapter;
import java.awt.event.ContainerEvent;
import java.awt.event.ContainerListener;
import java.beans.PropertyChangeListener;
/**
* Adds tab overview dialog to tabbed panes.
*
* @author Kirill Grouchnikov
*/
public class TabOverviewDialogWidget extends SubstanceWidget {
/**
* Tab overview button.
*/
protected TabOverviewButton overviewButton;
/**
* Listens on changes to relevant tabbed pane properties.
*/
protected PropertyChangeListener propertyListener;
/**
* Listens on tabs being added or removed.
*/
protected ContainerListener containerListener;
@Override
public void installComponents() {
this.overviewButton = new TabOverviewButton(this.jcomp);
}
@Override
public void installDefaults() {
TabPreviewPainter previewPainter = TabPreviewUtilities.getTabPreviewPainter(this.jcomp);
if ((previewPainter != null) && previewPainter.hasOverviewDialog(this.jcomp)) {
Insets currTabAreaInsets = this.getTabAreaInsets();
if (currTabAreaInsets == null)
currTabAreaInsets = UIManager.getInsets("TabbedPane.tabAreaInsets");
Insets tabAreaInsets = new Insets(currTabAreaInsets.top,
SubstanceSizeUtils.getLookupButtonSize() + 2 + currTabAreaInsets.left,
currTabAreaInsets.bottom, currTabAreaInsets.right);
setTabAreaInsets(tabAreaInsets);
this.jcomp.add(this.overviewButton);
this.overviewButton.setVisible(true);
this.jcomp.setComponentZOrder(this.overviewButton, 0);
this.overviewButton.updateLocation(this.jcomp, tabAreaInsets);
}
}
@Override
public void uninstallComponents() {
if (this.overviewButton.getParent() == this.jcomp)
this.jcomp.remove(this.overviewButton);
}
@Override
public void installListeners() {
this.propertyListener = propertyChangeEvent -> {
Insets lafInsets = getTabAreaInsets();
final Insets currTabAreaInsets = (lafInsets == null)
? UIManager.getInsets("TabbedPane.tabAreaInsets")
: lafInsets;
if (SubstanceExtrasSynapse.TABBED_PANE_PREVIEW_PAINTER.equals(propertyChangeEvent.getPropertyName())) {
TabPreviewPainter previewPainter = TabPreviewUtilities
.getTabPreviewPainter(TabOverviewDialogWidget.this.jcomp);
if ((previewPainter != null)
&& previewPainter.hasOverviewDialog(TabOverviewDialogWidget.this.jcomp)) {
Insets tabAreaInsets = new Insets(currTabAreaInsets.top,
SubstanceSizeUtils.getLookupButtonSize() + 2 + currTabAreaInsets.left,
currTabAreaInsets.bottom, currTabAreaInsets.right);
setTabAreaInsets(tabAreaInsets);
TabOverviewDialogWidget.this.jcomp
.add(TabOverviewDialogWidget.this.overviewButton);
TabOverviewDialogWidget.this.overviewButton.setVisible(true);
// jtp.setComponentZOrder(overviewButton, 0);
TabOverviewDialogWidget.this.overviewButton
.updateLocation(TabOverviewDialogWidget.this.jcomp, tabAreaInsets);
} else {
TabOverviewDialogWidget.this.jcomp
.remove(TabOverviewDialogWidget.this.overviewButton);
}
}
if ("tabPlacement".equals(propertyChangeEvent.getPropertyName())
|| "componentOrientation".equals(propertyChangeEvent.getPropertyName())
|| "tabAreaInsets".equals(propertyChangeEvent.getPropertyName())) {
SwingUtilities.invokeLater(() -> {
if (TabOverviewDialogWidget.this.overviewButton
.getParent() == TabOverviewDialogWidget.this.jcomp)
TabOverviewDialogWidget.this.overviewButton.updateLocation(
TabOverviewDialogWidget.this.jcomp, currTabAreaInsets);
});
}
};
this.jcomp.addPropertyChangeListener(this.propertyListener);
this.containerListener = new ContainerAdapter() {
@Override
public void componentAdded(ContainerEvent e) {
syncOverviewButtonVisibility();
}
@Override
public void componentRemoved(ContainerEvent e) {
syncOverviewButtonVisibility();
}
/**
* Syncs the visibility of the tab overview button.
*/
private void syncOverviewButtonVisibility() {
if (overviewButton.getParent() != jcomp)
return;
// fix for issue 12 - hide the overview button when
// there are no tabs
overviewButton.setVisible(jcomp.getTabCount() > 0);
}
};
this.jcomp.addContainerListener(this.containerListener);
}
@Override
public void uninstallListeners() {
this.jcomp.removePropertyChangeListener(this.propertyListener);
this.propertyListener = null;
this.jcomp.removeContainerListener(this.containerListener);
this.containerListener = null;
}
private Insets getTabAreaInsets() {
SubstanceTabbedPaneUI ui = (SubstanceTabbedPaneUI) this.jcomp.getUI();
return ui.getTabAreaInsets();
}
private void setTabAreaInsets(Insets tabAreaInsets) {
SubstanceTabbedPaneUI ui = (SubstanceTabbedPaneUI) this.jcomp.getUI();
ui.setTabAreaInsets(tabAreaInsets);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy