/* * Copyright 2008-2017 the original author or authors. * * 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 editor; import griffon.core.artifact.GriffonView; import griffon.inject.MVCMember; import griffon.metadata.ArtifactProviderFor; import javafx.fxml.FXML; import javafx.scene.control.Tab; import javafx.scene.control.TextArea; import org.codehaus.griffon.runtime.javafx.artifact.AbstractJavaFXGriffonView; import javax.annotation.Nonnull; import java.util.Objects; @ArtifactProviderFor(GriffonView.class) public class EditorView extends AbstractJavaFXGriffonView { @MVCMember @Nonnull private EditorModel model; @MVCMember @Nonnull private ContainerView parentView; @MVCMember @Nonnull private String tabName; @FXML private TextArea editor; private Tab tab; @Override public void initUI() { tab = new Tab(tabName); tab.setId(getMvcGroup().getMvcId()); tab.setContent(loadFromFXML()); parentView.getTabGroup().getTabs().add(tab); model.getDocument().addPropertyChangeListener("contents", (e) -> editor.setText((String) e.getNewValue())); editor.textProperty().addListener((observable, oldValue, newValue) -> model.getDocument().setDirty(!Objects.equals(editor.getText(), model.getDocument().getContents()))); } public TextArea getEditor() { return editor; } @Override public void mvcGroupDestroy() { runInsideUISync(() -> parentView.getTabGroup().getTabs().remove(tab)); } }