Search in sources :

Example 1 with BatchConvertDialog

use of com.talosvfx.talos.editor.dialogs.BatchConvertDialog in project talos by rockbite.

the class UIStage method init.

public void init() {
    fullScreenTable = new Table();
    fullScreenTable.setFillParent(true);
    stage.addActor(fullScreenTable);
    defaults();
    constructMenu();
    constructTabPane();
    constructSplitPanes();
    initFileChoosers();
    batchConvertDialog = new BatchConvertDialog();
    settingsDialog = new SettingsDialog();
    newProjectDialog = new NewProjectDialog();
    FileHandle list = Gdx.files.internal("modules.xml");
    XmlReader xmlReader = new XmlReader();
    XmlReader.Element root = xmlReader.parse(list);
    WrapperRegistry.map.clear();
    moduleListPopup = new ModuleListPopup(root);
    colorPicker = new ColorPicker();
    colorPicker.padTop(32);
    colorPicker.padLeft(16);
    colorPicker.setHeight(330);
    colorPicker.setWidth(430);
    colorPicker.padRight(26);
}
Also used : NewProjectDialog(com.talosvfx.talos.editor.dialogs.NewProjectDialog) Table(com.badlogic.gdx.scenes.scene2d.ui.Table) ColorPicker(com.kotcrab.vis.ui.widget.color.ColorPicker) FileHandle(com.badlogic.gdx.files.FileHandle) XmlReader(com.badlogic.gdx.utils.XmlReader) BatchConvertDialog(com.talosvfx.talos.editor.dialogs.BatchConvertDialog) SettingsDialog(com.talosvfx.talos.editor.dialogs.SettingsDialog)

Aggregations

FileHandle (com.badlogic.gdx.files.FileHandle)1 Table (com.badlogic.gdx.scenes.scene2d.ui.Table)1 XmlReader (com.badlogic.gdx.utils.XmlReader)1 ColorPicker (com.kotcrab.vis.ui.widget.color.ColorPicker)1 BatchConvertDialog (com.talosvfx.talos.editor.dialogs.BatchConvertDialog)1 NewProjectDialog (com.talosvfx.talos.editor.dialogs.NewProjectDialog)1 SettingsDialog (com.talosvfx.talos.editor.dialogs.SettingsDialog)1