/*
* This file is part of FTB Launcher.
*
* Copyright © 2012-2016, FTB Launcher Contributors <https://github.com/Slowpoke101/FTBLaunch/>
* FTB Launcher is 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 net.ftb.gui;
public class GuiConstants
{
public static final String WRAP = "wrap";
public static final String CENTER = "center";
public static final String CENTER_SINGLE_LINE = "center, wrap, span";
public static final String CENTER_TWO = "split 2, span 2, center";
public static final String FILL_TWO = "split 2, span 2, grow";
public static final String SPLIT_3 = "split 3, span 3";
public static final String FILL_THREE = SPLIT_3 + ", grow";
public static final String SPLIT_4 = "split 4, span 4";
public static final String FILL_FOUR = SPLIT_4 + ", grow";
public static final String FILL_SINGLE_LINE = "wrap, span, grow";
public static final String SEP = ", ";
public static final String GROW = "grow";
}