/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * 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.uwsoft.editor.view.ui.properties.panels; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.widget.VisCheckBox; import com.uwsoft.editor.event.CheckBoxChangeListener; import com.uwsoft.editor.view.ui.properties.UIItemCollapsibleProperties; /** * Created by azakhary on 4/16/2015. */ public class UICompositeItemProperties extends UIItemCollapsibleProperties { private VisCheckBox scissorsEnabledCheckBox; private VisCheckBox automaticResizeCheckBox; public UICompositeItemProperties() { super("Composite"); scissorsEnabledCheckBox = new VisCheckBox(null); automaticResizeCheckBox = new VisCheckBox(null); mainTable.add(createLabel("Scissors Enabled", Align.right)).padRight(5).width(120).right(); mainTable.add(scissorsEnabledCheckBox).left().row(); mainTable.add(createLabel("Automatic Resize", Align.right)).padRight(5).width(120).right(); mainTable.add(automaticResizeCheckBox).left(); setListeners(); } public boolean isScissorsEnabled() { return scissorsEnabledCheckBox.isChecked(); } public void setScissorsEnabled(boolean scissorsEnabled) { scissorsEnabledCheckBox.setChecked(scissorsEnabled); } public boolean isAutomaticResizeIsEnabled(){ return automaticResizeCheckBox.isChecked(); } public void setAutomaticResize(boolean automaResize){ automaticResizeCheckBox.setChecked(automaResize); } @Override public String getPrefix() { return this.getClass().getCanonicalName(); } private void setListeners() { scissorsEnabledCheckBox.addListener(new CheckBoxChangeListener(getUpdateEventName())); automaticResizeCheckBox.addListener(new CheckBoxChangeListener(getUpdateEventName())); } }