org.mini2Dx.ui.element.Tab Maven / Gradle / Ivy
/**
* Copyright (c) 2015 See AUTHORS file
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of the mini2Dx 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 HOLDER 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.mini2Dx.ui.element;
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.utils.Queue;
import org.mini2Dx.core.controller.button.ControllerButton;
import org.mini2Dx.core.exception.MdxException;
import org.mini2Dx.core.serialization.annotation.ConstructorArg;
import org.mini2Dx.core.serialization.annotation.Field;
import org.mini2Dx.ui.layout.HorizontalAlignment;
import org.mini2Dx.ui.navigation.ControllerHotKeyOperation;
import org.mini2Dx.ui.navigation.KeyboardHotKeyOperation;
import org.mini2Dx.ui.navigation.UiNavigation;
import org.mini2Dx.ui.navigation.VerticalUiNavigation;
import org.mini2Dx.ui.render.*;
/**
* A tab that contains {@link UiElement}s. Add to a {@link TabView}
*/
public class Tab extends Div implements Navigatable {
private final Queue controllerHotKeyOperations = new Queue();
private final Queue keyboardHotKeyOperations = new Queue();
private static final String FLEX_LAYOUT = "flex-column:xs-12c";
private UiNavigation navigation = new VerticalUiNavigation();
private boolean titleOrIconChanged = true;
private FlexRow tabMenuFlexRow;
@Field(optional=true)
private String title = null;
@Field(optional=true)
private String iconPath = null;
public Tab() {
this(null);
}
public Tab(@ConstructorArg(clazz=String.class, name = "id") String id) {
this(id, "");
}
public Tab(String id, String title) {
super(id);
this.title = title;
}
@Override
protected ParentRenderNode, ?> createRenderNode(ParentRenderNode, ?> parent) {
return new TabRenderNode(parent, this);
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
if(this.title == null && title == null) {
return;
}
if(this.title != null && this.title.equals(title)) {
return;
}
this.title = title;
titleOrIconChanged = true;
}
public String getIconPath() {
return iconPath;
}
public void setIconPath(String iconPath) {
if(this.iconPath == null && iconPath == null) {
return;
}
if(this.iconPath != null && this.iconPath.equals(iconPath)) {
return;
}
this.iconPath = iconPath;
titleOrIconChanged = true;
}
@Override
public void setZIndex(int zIndex) {
throw new MdxException(Tab.class.getSimpleName() + " instances cannot change Z index");
}
@Override
public void setVisibility(Visibility visibility) {
throw new MdxException(Tab.class.getSimpleName() + " visibility is managed by " + TabView.class.getSimpleName());
}
boolean titleOrIconChanged() {
return titleOrIconChanged;
}
void clearTitleOrIconChanged() {
titleOrIconChanged = false;
}
void activateTab() {
super.setVisibility(Visibility.VISIBLE);
}
void deactivateTab() {
super.setVisibility(Visibility.HIDDEN);
}
@Override
public void syncWithUpdate(UiContainerRenderTree rootNode) {
super.syncWithUpdate(rootNode);
((NavigatableRenderNode) renderNode).syncHotkeys(controllerHotKeyOperations, keyboardHotKeyOperations);
if(tabMenuFlexRow == null) {
return;
}
final ParentRenderNode extends ParentUiElement, ?> parentRenderNode = renderNode.getParent();
final ParentUiElement parentUiElement = parentRenderNode.getElement();
if(parentUiElement.getFlexLayout() == null) {
boolean alignRequired = !MathUtils.isEqual(getY(), tabMenuFlexRow.getHeight());
alignRequired |= setWidth(parentRenderNode.getContentRenderWidth());
alignRequired |= setHeight(parentRenderNode.getContentRenderHeight() - tabMenuFlexRow.getRenderHeight());
if(alignRequired && tabMenuFlexRow != null) {
alignBelow(tabMenuFlexRow, HorizontalAlignment.LEFT);
}
} else {
setFlexLayout(FLEX_LAYOUT);
}
}
@Override
public ActionableRenderNode navigate(int keycode) {
if(renderNode == null) {
return null;
}
return ((NavigatableRenderNode) renderNode).navigate(keycode);
}
@Override
public ActionableRenderNode hotkey(int keycode) {
if(renderNode == null) {
return null;
}
return ((NavigatableRenderNode) renderNode).hotkey(keycode);
}
@Override
public ActionableRenderNode hotkey(ControllerButton button) {
if(renderNode == null) {
return null;
}
return ((NavigatableRenderNode) renderNode).hotkey(button);
}
@Override
public void setHotkey(ControllerButton button, Actionable actionable) {
controllerHotKeyOperations.addLast(new ControllerHotKeyOperation(button, actionable, true));
}
@Override
public void setHotkey(int keycode, Actionable actionable) {
keyboardHotKeyOperations.addLast(new KeyboardHotKeyOperation(keycode, actionable, true));
}
@Override
public void unsetHotkey(ControllerButton button) {
controllerHotKeyOperations.addLast(new ControllerHotKeyOperation(button, null, false));
}
@Override
public void unsetHotkey(int keycode) {
keyboardHotKeyOperations.addLast(new KeyboardHotKeyOperation(keycode, null, false));
}
@Override
public void clearControllerHotkeys() {
controllerHotKeyOperations.addLast(new ControllerHotKeyOperation(null, null, false));
}
@Override
public void clearKeyboardHotkeys() {
keyboardHotKeyOperations.addLast(new KeyboardHotKeyOperation(Integer.MAX_VALUE, null, false));
}
@Override
public void clearHotkeys() {
clearControllerHotkeys();
clearKeyboardHotkeys();
}
@Override
public UiNavigation getNavigation() {
return navigation;
}
public void setNavigation(UiNavigation navigation) {
if(navigation == null) {
return;
}
this.navigation = navigation;
}
void setTabMenuFlexRow(FlexRow tabMenuFlexRow) {
this.tabMenuFlexRow = tabMenuFlexRow;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy