Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2005-2006 Laf-Widget 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 Laf-Widget Kirill Grouchnikov 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.jvnet.lafwidget.tabbed;
import java.awt.Insets;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.*;
import org.jvnet.lafwidget.*;
/**
* Adds tab overview dialog to tabbed panes.
*
* @author Kirill Grouchnikov
*/
public class TabOverviewDialogWidget extends LafWidgetAdapter {
/**
* Tab overview button.
*/
protected TabOverviewButton overviewButton;
/**
* The associated tabbed pane.
*/
protected JTabbedPane jtp;
/**
* Listens on changes to relevant tabbed pane properties.
*/
protected PropertyChangeListener propertyListener;
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#setComponent(javax.swing.JComponent)
*/
public void setComponent(JComponent jcomp) {
super.setComponent(jcomp);
this.jtp = (JTabbedPane) jcomp;
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#installComponents()
*/
public void installComponents() {
this.overviewButton = new TabOverviewButton(this.jtp);
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#installDefaults()
*/
public void installDefaults() {
TabPreviewPainter previewPainter = LafWidgetUtilities
.getTabPreviewPainter(this.jtp);
if ((previewPainter != null)
&& previewPainter.hasOverviewDialog(this.jtp)) {
LafWidgetSupport lafSupport = LafWidgetRepository.getRepository()
.getLafSupport();
Insets currTabAreaInsets = lafSupport.getTabAreaInsets(this.jtp);
if (currTabAreaInsets == null)
currTabAreaInsets = UIManager
.getInsets("TabbedPane.tabAreaInsets");
Insets tabAreaInsets = new Insets(currTabAreaInsets.top,
18 + currTabAreaInsets.left, currTabAreaInsets.bottom,
currTabAreaInsets.right);
lafSupport.setTabAreaInsets(this.jtp, tabAreaInsets);
this.jtp.add(this.overviewButton);
this.overviewButton.setVisible(true);
// this.jtp.setComponentZOrder(this.overviewButton, 0);
this.overviewButton.updateLocation(this.jtp, tabAreaInsets);
}
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#uninstallComponents()
*/
public void uninstallComponents() {
if (this.overviewButton.getParent() == this.jtp)
this.jtp.remove(this.overviewButton);
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#installListeners()
*/
public void installListeners() {
this.propertyListener = new PropertyChangeListener() {
public void propertyChange(PropertyChangeEvent evt) {
LafWidgetSupport lafSupport = LafWidgetRepository
.getRepository().getLafSupport();
Insets lafInsets = lafSupport
.getTabAreaInsets(TabOverviewDialogWidget.this.jtp);
final Insets currTabAreaInsets = (lafInsets == null) ? UIManager
.getInsets("TabbedPane.tabAreaInsets")
: lafInsets;
if (LafWidget.TABBED_PANE_PREVIEW_PAINTER.equals(evt
.getPropertyName())) {
TabPreviewPainter previewPainter = LafWidgetUtilities
.getTabPreviewPainter(TabOverviewDialogWidget.this.jtp);
if ((previewPainter != null)
&& previewPainter
.hasOverviewDialog(TabOverviewDialogWidget.this.jtp)) {
Insets tabAreaInsets = new Insets(
currTabAreaInsets.top,
18 + currTabAreaInsets.left,
currTabAreaInsets.bottom,
currTabAreaInsets.right);
lafSupport
.setTabAreaInsets(
TabOverviewDialogWidget.this.jtp,
tabAreaInsets);
TabOverviewDialogWidget.this.jtp
.add(TabOverviewDialogWidget.this.overviewButton);
TabOverviewDialogWidget.this.overviewButton
.setVisible(true);
// jtp.setComponentZOrder(overviewButton, 0);
TabOverviewDialogWidget.this.overviewButton
.updateLocation(
TabOverviewDialogWidget.this.jtp,
tabAreaInsets);
} else {
TabOverviewDialogWidget.this.jtp
.remove(TabOverviewDialogWidget.this.overviewButton);
}
}
if ("tabPlacement".equals(evt.getPropertyName())) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if (TabOverviewDialogWidget.this.overviewButton
.getParent() == TabOverviewDialogWidget.this.jtp)
TabOverviewDialogWidget.this.overviewButton
.updateLocation(
TabOverviewDialogWidget.this.jtp,
currTabAreaInsets);
}
});
}
if ("componentOrientation".equals(evt.getPropertyName())) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if (TabOverviewDialogWidget.this.overviewButton
.getParent() == TabOverviewDialogWidget.this.jtp)
TabOverviewDialogWidget.this.overviewButton
.updateLocation(
TabOverviewDialogWidget.this.jtp,
currTabAreaInsets);
}
});
}
}
};
this.jtp.addPropertyChangeListener(this.propertyListener);
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidgetAdapter#uninstallListeners()
*/
public void uninstallListeners() {
this.jtp.removePropertyChangeListener(this.propertyListener);
this.propertyListener = null;
}
/*
* (non-Javadoc)
*
* @see org.jvnet.lafwidget.LafWidget#requiresCustomLafSupport()
*/
public boolean requiresCustomLafSupport() {
return true;
}
}