var options = { file: DirBridge.dir.resolve("options.bin"), /* options and overlay functions */ load: function(profiles) { LogHelper.debug("Loading options file"); try { tryWithResources(new HInput(IOHelper.newInput(options.file)), options.read); } catch(e) { LogHelper.error(e); } }, save: function() { LogHelper.debug("Saving options file"); try { tryWithResources(new HOutput(IOHelper.newOutput(options.file)), options.write); } catch(e) { LogHelper.error(e); } }, read: function(input) { var magic = input.readInt(); if (magic != config.settingsMagic) { throw new java.io.IOException("options magic mismatch: " + java.lang.Integer.toString(magic, 16)); } var profilesCount = input.readInt(); LogHelper.debug("Load options. ProfilesCount %d",profilesCount); for(var i = 0;i 1)//Это суб-модификация? subLevel = modFile.subTreeLevel; var testMod = new com.jfoenix.controls.JFXCheckBox(modName); if(subLevel > 1) for(var i = 1; i < subLevel; i++)//Выделение субмодификаций сдвигом. testMod.setTranslateX(25*i); testMod.setSelected(modFile.mark); testMod.setOnAction(function(event) { var isSelected = event.getSource().isSelected(); if(isSelected) { profile.markOptional(modFile); LogHelper.debug("Selected mod %s", modFile.name); } else { profile.unmarkOptional(modFile); LogHelper.debug("Unselected mod %s", modFile.name); } options.update(); }); checkBoxList.add(testMod); if(modDescription != "") { //Добавляем описание? textDescr = new javafx.scene.text.Text(modDescription); if(subLevel > 1) { for(var i = 1; i < subLevel; i++){ textDescr.setWrappingWidth(370-(25*i)); textDescr.setTranslateX(25+(25*i)); } } else { textDescr.setWrappingWidth(370); textDescr.setTranslateX(25); } textDescr.setTextAlignment(javafx.scene.text.TextAlignment.JUSTIFY); textDescr.getStyleClass().add("description-text"); checkBoxList.add(textDescr); } sep = new javafx.scene.control.Separator(); sep.getStyleClass().add("separator"); checkBoxList.add(sep); }); holder.getChildren().clear(); holder.getChildren().addAll(checkBoxList); } };