org.praxislive.ide.project.ui.HubCustomizer Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2020 Neil C Smith.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 3 for more details.
*
* You should have received a copy of the GNU General Public License version 3
* along with this work; if not, see http://www.gnu.org/licenses/
*
*
* Please visit https://www.praxislive.org if you need additional information or
* have any questions.
*/
package org.praxislive.ide.project.ui;
import java.util.Objects;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import org.openide.util.Exceptions;
import org.praxislive.ide.project.DefaultPraxisProject;
import org.praxislive.ide.project.ProjectPropertiesImpl;
/**
*
*/
final class HubCustomizer extends javax.swing.JPanel {
private final DefaultPraxisProject project;
private final ProjectPropertiesImpl props;
private boolean changed;
/**
* Creates new form JavaCustomizer
*/
HubCustomizer(DefaultPraxisProject project) {
this.project = Objects.requireNonNull(project);
props = project.getLookup().lookup(ProjectPropertiesImpl.class);
initComponents();
refresh();
hubTextArea.getDocument().addDocumentListener(new DocumentListener() {
@Override
public void insertUpdate(DocumentEvent e) {
changed = true;
}
@Override
public void removeUpdate(DocumentEvent e) {
changed = true;
}
@Override
public void changedUpdate(DocumentEvent e) {
changed = true;
}
});
}
void refresh() {
hubTextArea.setText(props.getHubConfiguration());
hubTextArea.setEnabled(!project.isActive());
changed = false;
}
void updateProject() {
if (changed && !project.isActive()) {
try {
props.setHubConfiguration(hubTextArea.getText());
} catch (Exception ex) {
Exceptions.printStackTrace(ex);
}
}
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// //GEN-BEGIN:initComponents
private void initComponents() {
scrollPane = new javax.swing.JScrollPane();
hubTextArea = new javax.swing.JTextArea();
hubTextArea.setColumns(20);
hubTextArea.setRows(5);
scrollPane.setViewportView(hubTextArea);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(scrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 377, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(scrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 285, Short.MAX_VALUE)
.addContainerGap())
);
}// //GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JTextArea hubTextArea;
private javax.swing.JScrollPane scrollPane;
// End of variables declaration//GEN-END:variables
}