![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.pivot.wtk.skin.terra.TerraTabPaneSkin Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you 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 org.apache.pivot.wtk.skin.terra;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.GradientPaint;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.geom.Line2D;
import java.awt.geom.RoundRectangle2D;
import org.apache.pivot.collections.Dictionary;
import org.apache.pivot.collections.Sequence;
import org.apache.pivot.util.Vote;
import org.apache.pivot.wtk.ApplicationContext;
import org.apache.pivot.wtk.Bounds;
import org.apache.pivot.wtk.Button;
import org.apache.pivot.wtk.ButtonGroup;
import org.apache.pivot.wtk.ButtonGroupListener;
import org.apache.pivot.wtk.Component;
import org.apache.pivot.wtk.ComponentStateListener;
import org.apache.pivot.wtk.Dimensions;
import org.apache.pivot.wtk.BoxPane;
import org.apache.pivot.wtk.GraphicsUtilities;
import org.apache.pivot.wtk.HorizontalAlignment;
import org.apache.pivot.wtk.Insets;
import org.apache.pivot.wtk.Keyboard;
import org.apache.pivot.wtk.Mouse;
import org.apache.pivot.wtk.Orientation;
import org.apache.pivot.wtk.Panorama;
import org.apache.pivot.wtk.Platform;
import org.apache.pivot.wtk.TabPane;
import org.apache.pivot.wtk.TabPaneAttributeListener;
import org.apache.pivot.wtk.TabPaneListener;
import org.apache.pivot.wtk.TabPaneSelectionListener;
import org.apache.pivot.wtk.Theme;
import org.apache.pivot.wtk.VerticalAlignment;
import org.apache.pivot.wtk.content.ButtonData;
import org.apache.pivot.wtk.content.ButtonDataRenderer;
import org.apache.pivot.wtk.effects.ClipDecorator;
import org.apache.pivot.wtk.effects.Transition;
import org.apache.pivot.wtk.effects.TransitionListener;
import org.apache.pivot.wtk.effects.easing.Easing;
import org.apache.pivot.wtk.effects.easing.Quadratic;
import org.apache.pivot.wtk.media.Image;
import org.apache.pivot.wtk.skin.ButtonSkin;
import org.apache.pivot.wtk.skin.ContainerSkin;
/**
* Tab pane skin.
*/
public class TerraTabPaneSkin extends ContainerSkin
implements TabPaneListener, TabPaneSelectionListener, TabPaneAttributeListener {
/**
* Tab button component.
*/
public class TabButton extends Button {
public TabButton(Component tab) {
super(tab);
super.setToggleButton(true);
setDataRenderer(DEFAULT_DATA_RENDERER);
setSkin(new TabButtonSkin());
}
@Override
public void setToggleButton(boolean toggleButton) {
throw new UnsupportedOperationException();
}
@Override
public void setTriState(boolean triState) {
throw new UnsupportedOperationException();
}
@Override
public void press() {
// If the tab pane is collapsible, toggle the button selection;
// otherwise, select it
setSelected(collapsible ? !isSelected() : true);
super.press();
}
}
/**
* Tab button skin.
*
* Note that this class does not respect preferred size constraints,
* because it will never be called to use them.
*/
public class TabButtonSkin extends ButtonSkin {
@Override
public int getPreferredWidth(int height) {
Dimensions preferredSize = getPreferredSize();
return preferredSize.width;
}
@Override
public int getPreferredHeight(int width) {
Dimensions preferredSize = getPreferredSize();
return preferredSize.height;
}
@Override
public Dimensions getPreferredSize() {
TabButton tabButton = (TabButton)getComponent();
Button.DataRenderer dataRenderer = tabButton.getDataRenderer();
dataRenderer.render(tabButton.getButtonData(), tabButton, false);
Dimensions preferredContentSize = dataRenderer.getPreferredSize();
int preferredWidth = 0;
int preferredHeight = 0;
switch (tabOrientation) {
case HORIZONTAL: {
preferredWidth = preferredContentSize.width
+ buttonPadding.left + buttonPadding.right + 2;
preferredHeight = preferredContentSize.height
+ buttonPadding.top + buttonPadding.bottom + 2;
break;
}
case VERTICAL: {
preferredWidth = preferredContentSize.height
+ buttonPadding.top + buttonPadding.bottom + 2;
preferredHeight = preferredContentSize.width
+ buttonPadding.left + buttonPadding.right + 2;
break;
}
}
Dimensions preferredSize = new Dimensions(preferredWidth, preferredHeight);
return preferredSize;
}
@Override
public int getBaseline(int width, int height) {
TabButton tabButton = (TabButton)getComponent();
Button.DataRenderer dataRenderer = tabButton.getDataRenderer();
dataRenderer.render(tabButton.getButtonData(), tabButton, false);
int clientWidth = Math.max(width - (buttonPadding.left + buttonPadding.right + 2), 0);
int clientHeight = Math.max(height - (buttonPadding.top + buttonPadding.bottom + 2), 0);
int baseline = dataRenderer.getBaseline(clientWidth, clientHeight);
if (baseline != -1) {
baseline += buttonPadding.top + 1;
}
return baseline;
}
@Override
public void paint(Graphics2D graphics) {
TabButton tabButton = (TabButton)getComponent();
Component tab = (Component)tabButton.getButtonData();
boolean active = (selectionChangeTransition != null
&& selectionChangeTransition.tab == tab);
Color backgroundColor, buttonBevelColor;
if (tabButton.isSelected()
|| active) {
backgroundColor = activeTabColor;
buttonBevelColor = activeButtonBevelColor;
} else {
backgroundColor = inactiveTabColor;
buttonBevelColor = inactiveButtonBevelColor;
}
int width = getWidth();
int height = getHeight();
// Draw the background
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
switch(tabOrientation) {
case HORIZONTAL: {
graphics.setPaint(new GradientPaint(width / 2f, 0, buttonBevelColor,
width / 2f, height / 2f, backgroundColor));
graphics.fill(new RoundRectangle2D.Double(0.5, 0.5, width - 1, height - 1 + CORNER_RADIUS,
CORNER_RADIUS, CORNER_RADIUS));
break;
}
case VERTICAL: {
graphics.setPaint(new GradientPaint(0, height / 2f, buttonBevelColor,
width / 2f, height / 2f, backgroundColor));
graphics.fill(new RoundRectangle2D.Double(0.5, 0.5, width - 1 + CORNER_RADIUS, height - 1,
CORNER_RADIUS, CORNER_RADIUS));
break;
}
}
// Draw the border
graphics.setPaint(borderColor);
graphics.setStroke(new BasicStroke(1));
switch(tabOrientation) {
case HORIZONTAL: {
graphics.draw(new RoundRectangle2D.Double(0.5, 0.5, width - 1, height + CORNER_RADIUS - 1,
CORNER_RADIUS, CORNER_RADIUS));
break;
}
case VERTICAL: {
graphics.draw(new RoundRectangle2D.Double(0.5, 0.5, width + CORNER_RADIUS - 1, height - 1,
CORNER_RADIUS, CORNER_RADIUS));
break;
}
}
graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_OFF);
if (!(tabButton.isSelected()
|| active)) {
// Draw divider
switch(tabOrientation) {
case HORIZONTAL: {
graphics.draw(new Line2D.Double(0.5, height - 0.5, width - 0.5, height - 0.5));
break;
}
case VERTICAL: {
graphics.draw(new Line2D.Double(width - 0.5, 0.5, width - 0.5, height - 0.5));
break;
}
}
}
// Paint the content
Button.DataRenderer dataRenderer = tabButton.getDataRenderer();
dataRenderer.render(tabButton.getButtonData(), tabButton, false);
Graphics2D contentGraphics = (Graphics2D)graphics.create();
switch (tabOrientation) {
case HORIZONTAL: {
dataRenderer.setSize(Math.max(getWidth() - (buttonPadding.left + buttonPadding.right + 2), 0),
Math.max(getHeight() - (buttonPadding.top + buttonPadding.bottom + 2), 0));
contentGraphics.translate(buttonPadding.left + 1, buttonPadding.top + 1);
break;
}
case VERTICAL: {
dataRenderer.setSize(Math.max(getHeight() - (buttonPadding.top + buttonPadding.bottom + 2), 0),
Math.max(getWidth() - (buttonPadding.left + buttonPadding.right + 2), 0));
contentGraphics.translate(buttonPadding.top + 1, buttonPadding.left + 1);
contentGraphics.rotate(-Math.PI / 2d);
contentGraphics.translate(-dataRenderer.getWidth(), 0);
break;
}
}
contentGraphics.clipRect(0, 0, dataRenderer.getWidth(), dataRenderer.getHeight());
dataRenderer.paint(contentGraphics);
contentGraphics.dispose();
}
@Override
public boolean isFocusable() {
return false;
}
@Override
public boolean mouseClick(Component component, Mouse.Button button, int x, int y, int count) {
boolean consumed = super.mouseClick(component, button, x, y, count);
TabButton tabButton = (TabButton)getComponent();
tabButton.press();
return consumed;
}
public Font getFont() {
return buttonFont;
}
public Color getColor() {
return buttonColor;
}
public Color getDisabledColor() {
return disabledButtonColor;
}
}
/**
* Selection change transition.
*/
public class SelectionChangeTransition extends Transition {
public final Component tab;
public final boolean expand;
private Easing easing = new Quadratic();
public SelectionChangeTransition(Component tab, boolean expand) {
super(SELECTION_CHANGE_DURATION, SELECTION_CHANGE_RATE, false);
this.tab = tab;
this.expand = expand;
}
public float getScale() {
int elapsedTime = getElapsedTime();
int duration = getDuration();
float scale;
if (expand) {
scale = easing.easeOut(elapsedTime, 0, 1, duration);
} else {
scale = easing.easeIn(elapsedTime, 1, -1, duration);
}
return scale;
}
@Override
public void start(TransitionListener transitionListener) {
TabPane tabPane = (TabPane)getComponent();
if (expand) {
tab.setVisible(true);
}
tab.getDecorators().add(clipDecorator);
tabPane.setEnabled(false);
super.start(transitionListener);
}
@Override
public void stop() {
TabPane tabPane = (TabPane)getComponent();
if (!expand) {
tab.setVisible(false);
}
tab.getDecorators().remove(clipDecorator);
tabPane.setEnabled(true);
super.stop();
}
@Override
protected void update() {
invalidateComponent();
}
}
protected Panorama buttonPanorama = new Panorama();
protected BoxPane buttonBoxPane = new BoxPane();
private ButtonGroup tabButtonGroup = new ButtonGroup();
private Color activeTabColor;
private Color inactiveTabColor;
private Color borderColor;
private Insets padding;
private Font buttonFont;
private Color buttonColor;
private Color disabledButtonColor;
private Insets buttonPadding;
private Color activeButtonBevelColor;
private Color inactiveButtonBevelColor;
private boolean collapsible = false;
private Orientation tabOrientation = Orientation.HORIZONTAL;
private SelectionChangeTransition selectionChangeTransition = null;
private ClipDecorator clipDecorator = new ClipDecorator();
private ComponentStateListener tabStateListener = new ComponentStateListener.Adapter() {
@Override
public void enabledChanged(Component component) {
TabPane tabPane = (TabPane)getComponent();
int i = tabPane.getTabs().indexOf(component);
buttonBoxPane.get(i).setEnabled(component.isEnabled());
}
};
private static final int SELECTION_CHANGE_DURATION = 250;
private static final int SELECTION_CHANGE_RATE = 30;
public static final int CORNER_RADIUS = 4;
public static final int GRADIENT_BEVEL_THICKNESS = 8;
private static final Button.DataRenderer DEFAULT_DATA_RENDERER = new ButtonDataRenderer() {
@Override
public void render(Object data, Button button, boolean highlighted) {
Component tab = (Component)data;
super.render(new ButtonData(TabPane.getIcon(tab), TabPane.getLabel(tab)),
button, highlighted);
}
};
public TerraTabPaneSkin() {
TerraTheme theme = (TerraTheme)Theme.getTheme();
activeTabColor = theme.getColor(11);
inactiveTabColor = theme.getColor(9);
borderColor = theme.getColor(7);
padding = new Insets(6);
buttonFont = theme.getFont();
buttonColor = theme.getColor(1);
disabledButtonColor = theme.getColor(7);
buttonPadding = new Insets(3, 4, 3, 4);
activeButtonBevelColor = TerraTheme.brighten(activeTabColor);
inactiveButtonBevelColor = TerraTheme.brighten(inactiveTabColor);
buttonBoxPane.getStyles().put("fill", true);
buttonPanorama.getStyles().put("buttonBackgroundColor", borderColor);
buttonPanorama.getStyles().put("buttonPadding", 6);
buttonPanorama.setView(buttonBoxPane);
tabButtonGroup.getButtonGroupListeners().add(new ButtonGroupListener.Adapter() {
@Override
public void selectionChanged(ButtonGroup buttonGroup, Button previousSelection) {
Button button = tabButtonGroup.getSelection();
int index = (button == null) ? -1 : buttonBoxPane.indexOf(button);
TabPane tabPane = (TabPane)getComponent();
tabPane.setSelectedIndex(index);
}
});
setButtonSpacing(2);
}
@Override
public void install(Component component) {
super.install(component);
TabPane tabPane = (TabPane)component;
// Add this as a listener on the tab pane
tabPane.getTabPaneListeners().add(this);
tabPane.getTabPaneSelectionListeners().add(this);
tabPane.getTabPaneAttributeListeners().add(this);
// Add the tab buttons
tabPane.add(buttonPanorama);
Sequence tabs = tabPane.getTabs();
int selectedIndex = tabPane.getSelectedIndex();
for (int i = 0, n = tabs.getLength(); i < n; i++) {
Component tab = tabs.get(i);
tab.setVisible(i == selectedIndex);
TabButton tabButton = new TabButton(tab);
tabButton.setButtonGroup(tabButtonGroup);
buttonBoxPane.add(tabButton);
// Listen for state changes on the tab
tabButton.setEnabled(tab.isEnabled());
tab.getComponentStateListeners().add(tabStateListener);
}
selectedIndexChanged(tabPane, -1);
}
@Override
public int getPreferredWidth(int height) {
int preferredWidth = 0;
TabPane tabPane = (TabPane)getComponent();
Component selectedTab = tabPane.getSelectedTab();
Component corner = tabPane.getCorner();
switch (tabOrientation) {
case HORIZONTAL: {
if (height != -1) {
if (corner != null) {
height = Math.max(height - Math.max(corner.getPreferredHeight(-1),
Math.max(buttonPanorama.getPreferredHeight(-1) - 1, 0)), 0);
} else {
height = Math.max(height - (buttonPanorama.getPreferredHeight(-1) - 1), 0);
}
height = Math.max(height - (padding.top + padding.bottom + 2), 0);
}
preferredWidth = getPreferredTabWidth(height) + (padding.left + padding.right + 2);
int buttonAreaPreferredWidth = buttonPanorama.getPreferredWidth(-1);
if (corner != null) {
buttonAreaPreferredWidth += corner.getPreferredWidth(-1);
}
preferredWidth = Math.max(preferredWidth, buttonAreaPreferredWidth);
break;
}
case VERTICAL: {
if (height != -1) {
height = Math.max(height - (padding.top + padding.bottom + 2), 0);
}
if (selectedTab == null
&& selectionChangeTransition == null) {
preferredWidth = 1;
} else {
preferredWidth = getPreferredTabWidth(height) + (padding.left + padding.right);
if (selectionChangeTransition != null) {
float scale = selectionChangeTransition.getScale();
preferredWidth = (int)(preferredWidth * scale);
}
preferredWidth += 2;
}
if (corner != null) {
preferredWidth += Math.max(corner.getPreferredWidth(-1),
Math.max(buttonPanorama.getPreferredWidth(-1) - 1, 0));
} else {
preferredWidth += Math.max(buttonPanorama.getPreferredWidth(-1) - 1, 0);
}
break;
}
}
return preferredWidth;
}
@Override
public int getPreferredHeight(int width) {
int preferredHeight = 0;
TabPane tabPane = (TabPane)getComponent();
Component selectedTab = tabPane.getSelectedTab();
Component corner = tabPane.getCorner();
switch (tabOrientation) {
case HORIZONTAL: {
if (width != -1) {
width = Math.max(width - (padding.left + padding.right + 2), 0);
}
if (selectedTab == null
&& selectionChangeTransition == null) {
preferredHeight = 1;
} else {
preferredHeight = getPreferredTabHeight(width) + (padding.top + padding.bottom);
if (selectionChangeTransition != null) {
float scale = selectionChangeTransition.getScale();
preferredHeight = (int)(preferredHeight * scale);
}
preferredHeight += 2;
}
if (corner != null) {
preferredHeight += Math.max(corner.getPreferredHeight(-1),
Math.max(buttonPanorama.getPreferredHeight(-1) - 1, 0));
} else {
preferredHeight += Math.max(buttonPanorama.getPreferredHeight(-1) - 1, 0);
}
break;
}
case VERTICAL: {
if (width != -1) {
if (corner != null) {
width = Math.max(width - Math.max(corner.getPreferredWidth(-1),
Math.max(buttonPanorama.getPreferredWidth(-1) - 1, 0)), 0);
} else {
width = Math.max(width - (buttonPanorama.getPreferredWidth(-1) - 1), 0);
}
width = Math.max(width - (padding.left + padding.right + 2), 0);
}
preferredHeight = getPreferredTabHeight(width) + (padding.top + padding.bottom + 2);
int buttonAreaPreferredHeight = buttonPanorama.getPreferredHeight(-1);
if (corner != null) {
buttonAreaPreferredHeight += corner.getPreferredHeight(-1);
}
preferredHeight = Math.max(preferredHeight, buttonAreaPreferredHeight);
break;
}
}
return preferredHeight;
}
@Override
public Dimensions getPreferredSize() {
TabPane tabPane = (TabPane)getComponent();
int preferredWidth;
int preferredHeight;
Component selectedTab = tabPane.getSelectedTab();
Component corner = tabPane.getCorner();
switch (tabOrientation) {
case HORIZONTAL: {
if (selectedTab == null
&& selectionChangeTransition == null) {
preferredWidth = getPreferredTabWidth(-1) + (padding.left + padding.right + 2);
preferredHeight = 1;
} else {
Dimensions preferredTabSize = getPreferredTabSize();
preferredWidth = preferredTabSize.width + (padding.left + padding.right + 2);
preferredHeight = preferredTabSize.height + (padding.top + padding.bottom);
if (selectionChangeTransition != null) {
float scale = selectionChangeTransition.getScale();
preferredHeight = (int)(preferredHeight * scale);
}
preferredHeight += 2;
}
int buttonAreaPreferredWidth = buttonPanorama.getPreferredWidth(-1);
if (corner != null) {
buttonAreaPreferredWidth += corner.getPreferredWidth(-1);
preferredHeight += Math.max(corner.getPreferredHeight(-1),
Math.max(buttonPanorama.getPreferredHeight(-1) - 1, 0));
} else {
preferredHeight += Math.max(buttonPanorama.getPreferredHeight(-1) - 1, 0);
}
preferredWidth = Math.max(preferredWidth, buttonAreaPreferredWidth);
break;
}
case VERTICAL: {
if (selectedTab == null
&& selectionChangeTransition == null) {
preferredWidth = 1;
preferredHeight = getPreferredTabHeight(-1) + (padding.top + padding.bottom + 2);
} else {
Dimensions preferredTabSize = getPreferredTabSize();
preferredWidth = preferredTabSize.width + (padding.left + padding.right);
preferredHeight = preferredTabSize.height + (padding.top + padding.bottom + 2);
if (selectionChangeTransition != null) {
float scale = selectionChangeTransition.getScale();
preferredWidth = (int)(preferredWidth * scale);
}
preferredWidth += 2;
}
int buttonAreaPreferredHeight = buttonPanorama.getPreferredHeight(-1);
if (corner != null) {
preferredWidth += Math.max(corner.getPreferredWidth(-1),
Math.max(buttonPanorama.getPreferredWidth(-1) - 1, 0));
buttonAreaPreferredHeight += corner.getPreferredHeight(-1);
} else {
preferredWidth += Math.max(buttonPanorama.getPreferredWidth(-1) - 1, 0);
}
preferredHeight = Math.max(preferredHeight, buttonAreaPreferredHeight);
break;
}
default: {
preferredWidth = 0;
preferredHeight = 0;
}
}
return new Dimensions(preferredWidth, preferredHeight);
}
@Override
public int getBaseline(int width, int height) {
int baseline = -1;
if (tabOrientation == Orientation.HORIZONTAL
&& buttonBoxPane.getLength() > 0) {
TabButton firstTabButton = (TabButton)buttonBoxPane.get(0);
int buttonHeight = buttonBoxPane.getPreferredHeight();
baseline = firstTabButton.getBaseline(firstTabButton.getPreferredWidth(buttonHeight),
buttonHeight);
}
return baseline;
}
private int getPreferredTabWidth(int height) {
int preferredTabWidth = 0;
TabPane tabPane = (TabPane)getComponent();
for (Component tab : tabPane.getTabs()) {
preferredTabWidth = Math.max(preferredTabWidth, tab.getPreferredWidth(height));
}
return preferredTabWidth;
}
private int getPreferredTabHeight(int width) {
int preferredTabHeight = 0;
TabPane tabPane = (TabPane)getComponent();
for (Component tab : tabPane.getTabs()) {
preferredTabHeight = Math.max(preferredTabHeight, tab.getPreferredHeight(width));
}
return preferredTabHeight;
}
private Dimensions getPreferredTabSize() {
int preferredTabWidth = 0;
int preferredTabHeight = 0;
TabPane tabPane = (TabPane)getComponent();
for (Component tab : tabPane.getTabs()) {
Dimensions preferredSize = tab.getPreferredSize();
preferredTabWidth = Math.max(preferredTabWidth, preferredSize.width);
preferredTabHeight = Math.max(preferredTabHeight, preferredSize.height);
}
return new Dimensions(preferredTabWidth, preferredTabHeight);
}
@Override
public void layout() {
TabPane tabPane = (TabPane)getComponent();
int width = getWidth();
int height = getHeight();
int tabX = 0;
int tabY = 0;
int tabWidth = 0;
int tabHeight = 0;
Component corner = tabPane.getCorner();
Dimensions buttonPanoramaSize = buttonPanorama.getPreferredSize();
switch (tabOrientation) {
case HORIZONTAL: {
int buttonPanoramaWidth = Math.min(width, buttonPanoramaSize.width);
int buttonPanoramaHeight = buttonPanoramaSize.height;
int buttonPanoramaY = 0;
if (corner != null) {
int cornerWidth = width - buttonPanoramaWidth;
int cornerHeight = Math.max(corner.getPreferredHeight(-1), buttonPanoramaSize.height - 1);
int cornerX = buttonPanoramaWidth;
int cornerY = Math.max(buttonPanoramaHeight - cornerHeight - 1, 0);
buttonPanoramaY = Math.max(cornerHeight - buttonPanoramaHeight + 1, 0);
corner.setLocation(cornerX, cornerY);
corner.setSize(cornerWidth, cornerHeight);
}
buttonPanorama.setLocation(0, buttonPanoramaY);
buttonPanorama.setSize(buttonPanoramaWidth, buttonPanoramaHeight);
tabX = padding.left + 1;
tabY = padding.top + buttonPanoramaY + buttonPanoramaHeight;
tabWidth = Math.max(width - (padding.left + padding.right + 2), 0);
tabHeight = Math.max(height - (padding.top + padding.bottom
+ buttonPanoramaY + buttonPanoramaHeight + 1), 0);
break;
}
case VERTICAL: {
int buttonPanoramaWidth = buttonPanoramaSize.width;
int buttonPanoramaHeight = Math.min(height,
buttonPanoramaSize.height);
int buttonPanoramaX = 0;
if (corner != null) {
int cornerWidth = corner.getPreferredWidth(-1);
int cornerHeight = height - buttonPanoramaHeight;
int cornerX = Math.max(buttonPanoramaWidth - cornerWidth - 1, 0);
int cornerY = buttonPanoramaHeight;
buttonPanoramaX = Math.max(cornerWidth - buttonPanoramaWidth + 1, 0);
corner.setLocation(cornerX, cornerY);
corner.setSize(cornerWidth, cornerHeight);
}
buttonPanorama.setLocation(buttonPanoramaX, 0);
buttonPanorama.setSize(buttonPanoramaWidth, buttonPanoramaHeight);
tabX = padding.left + buttonPanoramaX + buttonPanoramaWidth;
tabY = padding.top + 1;
tabWidth = Math.max(width - (padding.left + padding.right
+ buttonPanoramaX + buttonPanoramaWidth + 1), 0);
tabHeight = Math.max(height - (padding.top + padding.bottom + 2), 0);
break;
}
}
// Lay out the tabs
for (Component tab : tabPane.getTabs()) {
tab.setLocation(tabX, tabY);
if (selectionChangeTransition != null
&& selectionChangeTransition.isRunning()) {
clipDecorator.setSize(tabWidth, tabHeight);
switch (tabOrientation) {
case HORIZONTAL: {
tab.setSize(tabWidth, getPreferredTabHeight(tabWidth));
break;
}
case VERTICAL: {
tab.setSize(getPreferredTabWidth(tabHeight), tabHeight);
break;
}
}
} else {
tab.setSize(tabWidth, tabHeight);
}
}
}
@Override
public void paint(Graphics2D graphics) {
TabPane tabPane = (TabPane)getComponent();
Bounds tabPaneBounds = tabPane.getBounds();
// Call the base class to paint the background
super.paint(graphics);
// Paint the content background and border
int x = 0;
int y = 0;
int width = 0;
int height = 0;
switch (tabOrientation) {
case HORIZONTAL: {
x = 0;
y = Math.max(buttonPanorama.getY() + buttonPanorama.getHeight() - 1, 0);
width = tabPaneBounds.width;
height = Math.max(tabPaneBounds.height - y, 0);
break;
}
case VERTICAL: {
x = Math.max(buttonPanorama.getX() + buttonPanorama.getWidth() - 1, 0);
y = 0;
width = Math.max(tabPaneBounds.width - x, 0);
height = tabPaneBounds.height;
break;
}
}
int selectedIndex = tabPane.getSelectedIndex();
if (selectedIndex != -1
|| selectionChangeTransition != null) {
Bounds contentBounds = new Bounds(x, y, width, height);
graphics.setPaint(activeTabColor);
graphics.fillRect(contentBounds.x, contentBounds.y,
contentBounds.width, contentBounds.height);
// Draw the border
graphics.setPaint(borderColor);
// TODO Don't use drawRect() here; use Rectangle2D
GraphicsUtilities.drawRect(graphics, contentBounds.x, contentBounds.y,
contentBounds.width, contentBounds.height);
}
}
public Color getActiveTabColor() {
return activeTabColor;
}
public void setActiveTabColor(Color activeTabColor) {
if (activeTabColor == null) {
throw new IllegalArgumentException("activeTabColor is null.");
}
this.activeTabColor = activeTabColor;
activeButtonBevelColor = TerraTheme.brighten(activeTabColor);
repaintComponent();
}
public final void setActiveTabColor(String activeTabColor) {
if (activeTabColor == null) {
throw new IllegalArgumentException("activeTabColor is null.");
}
setActiveTabColor(GraphicsUtilities.decodeColor(activeTabColor));
}
public final void setActiveTabColor(int activeTabColor) {
TerraTheme theme = (TerraTheme)Theme.getTheme();
setActiveTabColor(theme.getColor(activeTabColor));
}
public Color getInactiveTabColor() {
return inactiveTabColor;
}
public void setInactiveTabColor(Color inactiveTabColor) {
if (inactiveTabColor == null) {
throw new IllegalArgumentException("inactiveTabColor is null.");
}
this.inactiveTabColor = inactiveTabColor;
inactiveButtonBevelColor = TerraTheme.brighten(inactiveTabColor);
repaintComponent();
}
public final void setInactiveTabColor(String inactiveTabColor) {
if (inactiveTabColor == null) {
throw new IllegalArgumentException("inactiveTabColor is null.");
}
setInactiveTabColor(GraphicsUtilities.decodeColor(inactiveTabColor));
}
public final void setInactiveTabColor(int inactiveTabColor) {
TerraTheme theme = (TerraTheme)Theme.getTheme();
setInactiveTabColor(theme.getColor(inactiveTabColor));
}
public Color getBorderColor() {
return borderColor;
}
public void setBorderColor(Color borderColor) {
if (borderColor == null) {
throw new IllegalArgumentException("borderColor is null.");
}
this.borderColor = borderColor;
buttonPanorama.getStyles().put("buttonBackgroundColor", borderColor);
repaintComponent();
}
public final void setBorderColor(String borderColor) {
if (borderColor == null) {
throw new IllegalArgumentException("borderColor is null.");
}
setBorderColor(GraphicsUtilities.decodeColor(borderColor));
}
public final void setBorderColor(int borderColor) {
TerraTheme theme = (TerraTheme)Theme.getTheme();
setBorderColor(theme.getColor(borderColor));
}
public Insets getPadding() {
return padding;
}
public void setPadding(Insets padding) {
if (padding == null) {
throw new IllegalArgumentException("padding is null.");
}
this.padding = padding;
invalidateComponent();
}
public final void setPadding(Dictionary padding) {
if (padding == null) {
throw new IllegalArgumentException("padding is null.");
}
setPadding(new Insets(padding));
}
public final void setPadding(int padding) {
setPadding(new Insets(padding));
}
public final void setPadding(Number padding) {
if (padding == null) {
throw new IllegalArgumentException("padding is null.");
}
setPadding(padding.intValue());
}
public final void setPadding(String padding) {
if (padding == null) {
throw new IllegalArgumentException("padding is null.");
}
setPadding(Insets.decode(padding));
}
public Font getButtonFont() {
return buttonFont;
}
public void setButtonFont(Font buttonFont) {
if (buttonFont == null) {
throw new IllegalArgumentException("buttonFont is null.");
}
this.buttonFont = buttonFont;
invalidateComponent();
}
public final void setButtonFont(String buttonFont) {
if (buttonFont == null) {
throw new IllegalArgumentException("font is null.");
}
setButtonFont(decodeFont(buttonFont));
}
public final void setButtonFont(Dictionary buttonFont) {
if (buttonFont == null) {
throw new IllegalArgumentException("font is null.");
}
setButtonFont(Theme.deriveFont(buttonFont));
}
public Color getButtonColor() {
return buttonColor;
}
public void setButtonColor(Color buttonColor) {
if (buttonColor == null) {
throw new IllegalArgumentException("buttonColor is null.");
}
this.buttonColor = buttonColor;
repaintComponent();
}
public final void setButtonColor(String buttonColor) {
if (buttonColor == null) {
throw new IllegalArgumentException("buttonColor is null.");
}
setButtonColor(GraphicsUtilities.decodeColor(buttonColor));
}
public final void setButtonColor(int buttonColor) {
TerraTheme theme = (TerraTheme)Theme.getTheme();
setButtonColor(theme.getColor(buttonColor));
}
public Insets getButtonPadding() {
return buttonPadding;
}
public void setButtonPadding(Insets buttonPadding) {
if (buttonPadding == null) {
throw new IllegalArgumentException("buttonPadding is null.");
}
this.buttonPadding = buttonPadding;
invalidateComponent();
for (Component tabButton : buttonBoxPane) {
tabButton.invalidate();
}
}
public final void setButtonPadding(int buttonPadding) {
setButtonPadding(new Insets(buttonPadding));
}
public int getButtonSpacing() {
return (Integer)buttonBoxPane.getStyles().get("spacing");
}
public void setButtonSpacing(int buttonSpacing) {
buttonBoxPane.getStyles().put("spacing", buttonSpacing);
}
public Orientation getTabOrientation() {
return tabOrientation;
}
public void setTabOrientation(Orientation tabOrientation) {
if (tabOrientation == null) {
throw new IllegalArgumentException("tabOrientation is null.");
}
this.tabOrientation = tabOrientation;
// Invalidate the tab buttons since their preferred sizes have changed
for (Component tabButton : buttonBoxPane) {
tabButton.invalidate();
}
buttonBoxPane.setOrientation(tabOrientation);
switch (tabOrientation) {
case HORIZONTAL: {
buttonBoxPane.getStyles().put("horizontalAlignment", HorizontalAlignment.LEFT);
break;
}
case VERTICAL: {
buttonBoxPane.getStyles().put("verticalAlignment", VerticalAlignment.TOP);
break;
}
}
}
public void setTabOrientation(String tabOrientation) {
if (tabOrientation == null) {
throw new IllegalArgumentException("tabOrientation is null.");
}
setTabOrientation(Orientation.valueOf(tabOrientation.toUpperCase()));
}
public boolean isCollapsible() {
return collapsible;
}
public void setCollapsible(boolean collapsible) {
this.collapsible = collapsible;
}
@Override
public boolean keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation) {
boolean consumed = super.keyPressed(component, keyCode, keyLocation);
Keyboard.Modifier commandModifier = Platform.getCommandModifier();
if (!consumed
&& Keyboard.isPressed(commandModifier)) {
TabPane tabPane = (TabPane)getComponent();
TabPane.TabSequence tabs = tabPane.getTabs();
int selectedIndex = -1;
switch (keyCode) {
case Keyboard.KeyCode.KEYPAD_1:
case Keyboard.KeyCode.N1: {
selectedIndex = 0;
break;
}
case Keyboard.KeyCode.KEYPAD_2:
case Keyboard.KeyCode.N2: {
selectedIndex = 1;
break;
}
case Keyboard.KeyCode.KEYPAD_3:
case Keyboard.KeyCode.N3: {
selectedIndex = 2;
break;
}
case Keyboard.KeyCode.KEYPAD_4:
case Keyboard.KeyCode.N4: {
selectedIndex = 3;
break;
}
case Keyboard.KeyCode.KEYPAD_5:
case Keyboard.KeyCode.N5: {
selectedIndex = 4;
break;
}
case Keyboard.KeyCode.KEYPAD_6:
case Keyboard.KeyCode.N6: {
selectedIndex = 5;
break;
}
case Keyboard.KeyCode.KEYPAD_7:
case Keyboard.KeyCode.N7: {
selectedIndex = 6;
break;
}
case Keyboard.KeyCode.KEYPAD_8:
case Keyboard.KeyCode.N8: {
selectedIndex = 7;
break;
}
case Keyboard.KeyCode.KEYPAD_9:
case Keyboard.KeyCode.N9: {
selectedIndex = 8;
break;
}
}
if (selectedIndex >= 0
&& selectedIndex < tabs.getLength()
&& tabs.get(selectedIndex).isEnabled()) {
tabPane.setSelectedIndex(selectedIndex);
consumed = true;
}
}
return consumed;
}
// Tab pane events
@Override
public void tabInserted(TabPane tabPane, int index) {
if (selectionChangeTransition != null) {
selectionChangeTransition.end();
}
Component tab = tabPane.getTabs().get(index);
tab.setVisible(false);
// Create a new button for the tab
TabButton tabButton = new TabButton(tab);
tabButton.setButtonGroup(tabButtonGroup);
buttonBoxPane.insert(tabButton, index);
// Listen for state changes on the tab
tabButton.setEnabled(tab.isEnabled());
tab.getComponentStateListeners().add(tabStateListener);
// If this is the first tab, select it
if (tabPane.getTabs().getLength() == 1) {
tabPane.setSelectedIndex(0);
}
invalidateComponent();
}
@Override
public void tabsRemoved(TabPane tabPane, int index, Sequence removed) {
if (selectionChangeTransition != null) {
selectionChangeTransition.end();
}
// Remove the buttons
Sequence removedButtons = buttonBoxPane.remove(index, removed.getLength());
for (int i = 0, n = removed.getLength(); i < n; i++) {
TabButton tabButton = (TabButton)removedButtons.get(i);
tabButton.setButtonGroup(null);
// Stop listening for state changes on the tab
Component tab = (Component)tabButton.getButtonData();
tab.getComponentStateListeners().remove(tabStateListener);
}
invalidateComponent();
}
@Override
public void cornerChanged(TabPane tabPane, Component previousCorner) {
invalidateComponent();
}
// Tab pane selection events
@Override
public Vote previewSelectedIndexChange(TabPane tabPane, int selectedIndex) {
Vote vote;
if (tabPane.isShowing()
&& selectionChangeTransition == null) {
int previousSelectedIndex = tabPane.getSelectedIndex();
if (selectedIndex == -1) {
// Collapse
Component tab = tabPane.getTabs().get(previousSelectedIndex);
selectionChangeTransition = new SelectionChangeTransition(tab, false);
} else {
if (previousSelectedIndex == -1) {
// Expand
Component tab = tabPane.getTabs().get(selectedIndex);
selectionChangeTransition = new SelectionChangeTransition(tab, true);
}
}
if (selectionChangeTransition != null) {
selectionChangeTransition.start(new TransitionListener() {
@Override
public void transitionCompleted(Transition transition) {
TabPane tabPane = (TabPane)getComponent();
SelectionChangeTransition selectionChangeTransition =
(SelectionChangeTransition)transition;
int selectedIndex;
if (selectionChangeTransition.expand) {
selectedIndex = tabPane.getTabs().indexOf(selectionChangeTransition.tab);
} else {
selectedIndex = -1;
}
tabPane.setSelectedIndex(selectedIndex);
TerraTabPaneSkin.this.selectionChangeTransition = null;
}
});
}
}
if (selectionChangeTransition == null
|| !selectionChangeTransition.isRunning()) {
vote = Vote.APPROVE;
} else {
vote = Vote.DEFER;
}
return vote;
}
@Override
public void selectedIndexChangeVetoed(TabPane tabPane, Vote reason) {
if (reason == Vote.DENY
&& selectionChangeTransition != null) {
// NOTE We stop, rather than end, the transition so the completion
// event isn't fired; if the event fires, the listener will set
// the selection state
selectionChangeTransition.stop();
selectionChangeTransition = null;
invalidateComponent();
}
}
@Override
public void selectedIndexChanged(TabPane tabPane, int previousSelectedIndex) {
int selectedIndex = tabPane.getSelectedIndex();
if (selectedIndex == -1) {
Button button = tabButtonGroup.getSelection();
if (button != null) {
button.setSelected(false);
}
} else {
final Button button = (Button)buttonBoxPane.get(selectedIndex);
button.setSelected(true);
Component selectedTab = tabPane.getTabs().get(selectedIndex);
selectedTab.setVisible(true);
selectedTab.requestFocus();
ApplicationContext.queueCallback(new Runnable(){
@Override
public void run() {
button.scrollAreaToVisible(0, 0, button.getWidth(), button.getHeight());
}
});
}
if (previousSelectedIndex != -1) {
Component previousSelectedTab = tabPane.getTabs().get(previousSelectedIndex);
previousSelectedTab.setVisible(false);
}
if (selectedIndex == -1
|| previousSelectedIndex == -1) {
invalidateComponent();
}
}
// Tab pane attribute events
@Override
public void labelChanged(TabPane tabPane, Component component, String previousLabel) {
int i = tabPane.getTabs().indexOf(component);
buttonBoxPane.get(i).invalidate();
invalidateComponent();
}
@Override
public void iconChanged(TabPane tabPane, Component component, Image previousIcon) {
int i = tabPane.getTabs().indexOf(component);
buttonBoxPane.get(i).invalidate();
invalidateComponent();
}
@Override
public void closeableChanged(TabPane tabPane, Component component) {
int i = tabPane.getTabs().indexOf(component);
buttonBoxPane.get(i).invalidate();
invalidateComponent();
}
@Override
public void tooltipTextChanged(TabPane tabPane, Component component, String previousTooltipText) {
int i = tabPane.getTabs().indexOf(component);
buttonBoxPane.get(i).setTooltipText(TabPane.getTooltipText(component));
buttonBoxPane.get(i).invalidate();
invalidateComponent();
}
}