/* * ****************************************************************************** * * 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.box; import com.badlogic.gdx.Gdx; import com.kotcrab.vis.ui.widget.VisScrollPane; import com.kotcrab.vis.ui.widget.VisTable; import com.uwsoft.editor.view.ui.properties.UIAbstractProperties; /** * Created by azakhary on 4/15/2015. */ public class UIMultiPropertyBox extends UICollapsibleBox { private final VisTable propertiesTable; private VisScrollPane scrollPane; private VisTable scrollPaneInner; public UIMultiPropertyBox() { super("Properties", 222); setMovable(false); propertiesTable = new VisTable(); scrollPaneInner = new VisTable(); scrollPane = new VisScrollPane(scrollPaneInner); scrollPane.setSmoothScrolling(true); //scrollPane.setScrollbarsOnTop(true); scrollPane.setFadeScrollBars(false); propertiesTable.add(scrollPane).maxHeight(Gdx.graphics.getHeight() * 0.43f); createCollapsibleWidget(propertiesTable); } public void clearAll() { scrollPaneInner.clear(); scrollPaneInner.reset(); } public void addPropertyBox(UIAbstractProperties viewComponent) { scrollPaneInner.add(viewComponent).width(219).expandX(); scrollPaneInner.row(); } }