/*
Copyright 2008-2010 Gephi
Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
Website : http://www.gephi.org
This file is part of Gephi.
Gephi is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
Gephi 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Gephi. If not, see <http://www.gnu.org/licenses/>.
*/
package org.gephi.visualization.screenshot;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFileChooser;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import org.gephi.lib.validation.Multiple4NumberValidator;
import org.netbeans.validation.api.builtin.Validators;
import org.netbeans.validation.api.ui.ValidationGroup;
import org.netbeans.validation.api.ui.ValidationPanel;
import org.openide.windows.WindowManager;
/**
*
* @author Mathieu Bastian
*/
public class ScreenshotSettingsPanel extends javax.swing.JPanel {
/** Creates new form ScreenshotSettingsPanel */
public ScreenshotSettingsPanel() {
initComponents();
autoSaveCheckBox.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent e) {
selectDirectoryButton.setEnabled(autoSaveCheckBox.isSelected());
}
});
}
public void setup(final ScreenshotMaker screenshotMaker) {
autoSaveCheckBox.setSelected(screenshotMaker.isAutoSave());
selectDirectoryButton.setEnabled(autoSaveCheckBox.isSelected());
widthTextField.setText(String.valueOf(screenshotMaker.getWidth()));
heightTextField.setText(String.valueOf(screenshotMaker.getHeight()));
switch (screenshotMaker.getAntiAliasing()) {
case 0:
antiAliasingCombo.setSelectedIndex(0);
break;
case 2:
antiAliasingCombo.setSelectedIndex(1);
break;
case 4:
antiAliasingCombo.setSelectedIndex(2);
break;
case 8:
antiAliasingCombo.setSelectedIndex(3);
break;
case 16:
antiAliasingCombo.setSelectedIndex(4);
break;
default:
antiAliasingCombo.setSelectedIndex(4);
break;
}
//transparentBackgroundCheckBox.setSelected(screenshotMaker.isTransparentBackground());
selectDirectoryButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JFileChooser fileChooser = new JFileChooser(screenshotMaker.getDefaultDirectory());
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int result = fileChooser.showOpenDialog(WindowManager.getDefault().getMainWindow());
if (result == JFileChooser.APPROVE_OPTION) {
screenshotMaker.setDefaultDirectory(fileChooser.getSelectedFile());
}
}
});
}
public void unsetup(ScreenshotMaker screenshotMaker) {
screenshotMaker.setAutoSave(autoSaveCheckBox.isSelected());
screenshotMaker.setWidth(Integer.parseInt(widthTextField.getText()));
screenshotMaker.setHeight(Integer.parseInt(heightTextField.getText()));
switch (antiAliasingCombo.getSelectedIndex()) {
case 0:
screenshotMaker.setAntiAliasing(0);
break;
case 1:
screenshotMaker.setAntiAliasing(2);
break;
case 2:
screenshotMaker.setAntiAliasing(4);
break;
case 3:
screenshotMaker.setAntiAliasing(8);
break;
case 4:
screenshotMaker.setAntiAliasing(16);
break;
default:
screenshotMaker.setAntiAliasing(0);
break;
}
//screenshotMaker.setTransparentBackground(transparentBackgroundCheckBox.isSelected());
}
public static ValidationPanel createValidationPanel(ScreenshotSettingsPanel innerPanel) {
ValidationPanel validationPanel = new ValidationPanel();
if (innerPanel == null) {
innerPanel = new ScreenshotSettingsPanel();
}
validationPanel.setInnerComponent(innerPanel);
ValidationGroup group = validationPanel.getValidationGroup();
//Node field
group.add(innerPanel.widthTextField, Validators.REQUIRE_NON_EMPTY_STRING,
new Multiple4NumberValidator());
//Edge field
group.add(innerPanel.heightTextField, Validators.REQUIRE_NON_EMPTY_STRING,
new Multiple4NumberValidator());
return validationPanel;
}
/** 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")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
imagePanel = new javax.swing.JPanel();
labelHeight = new javax.swing.JLabel();
labelWidth = new javax.swing.JLabel();
widthTextField = new javax.swing.JTextField();
labelAntiAliasing = new javax.swing.JLabel();
antiAliasingCombo = new javax.swing.JComboBox();
heightTextField = new javax.swing.JTextField();
autoSaveCheckBox = new javax.swing.JCheckBox();
selectDirectoryButton = new javax.swing.JButton();
imagePanel.setBorder(javax.swing.BorderFactory.createEtchedBorder());
labelHeight.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.labelHeight.text")); // NOI18N
labelWidth.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.labelWidth.text")); // NOI18N
widthTextField.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.widthTextField.text")); // NOI18N
labelAntiAliasing.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.labelAntiAliasing.text")); // NOI18N
antiAliasingCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "0x", "2x", "4x", "8x", "16x" }));
heightTextField.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.heightTextField.text")); // NOI18N
javax.swing.GroupLayout imagePanelLayout = new javax.swing.GroupLayout(imagePanel);
imagePanel.setLayout(imagePanelLayout);
imagePanelLayout.setHorizontalGroup(
imagePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(imagePanelLayout.createSequentialGroup()
.addContainerGap()
.addGroup(imagePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(imagePanelLayout.createSequentialGroup()
.addComponent(labelWidth)
.addGap(3, 3, 3)
.addComponent(widthTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 58, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addComponent(labelHeight)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(heightTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 58, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(imagePanelLayout.createSequentialGroup()
.addComponent(labelAntiAliasing)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(antiAliasingCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
imagePanelLayout.setVerticalGroup(
imagePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(imagePanelLayout.createSequentialGroup()
.addContainerGap()
.addGroup(imagePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(labelWidth)
.addComponent(widthTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(labelHeight)
.addComponent(heightTextField, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(imagePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(labelAntiAliasing)
.addComponent(antiAliasingCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
autoSaveCheckBox.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.autoSaveCheckBox.text")); // NOI18N
selectDirectoryButton.setText(org.openide.util.NbBundle.getMessage(ScreenshotSettingsPanel.class, "ScreenshotSettingsPanel.selectDirectoryButton.text")); // NOI18N
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()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(imagePanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addComponent(autoSaveCheckBox)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(selectDirectoryButton)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(imagePanel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(autoSaveCheckBox)
.addComponent(selectDirectoryButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(21, Short.MAX_VALUE))
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JComboBox antiAliasingCombo;
private javax.swing.JCheckBox autoSaveCheckBox;
private javax.swing.JTextField heightTextField;
private javax.swing.JPanel imagePanel;
private javax.swing.JLabel labelAntiAliasing;
private javax.swing.JLabel labelHeight;
private javax.swing.JLabel labelWidth;
private javax.swing.JButton selectDirectoryButton;
private javax.swing.JTextField widthTextField;
// End of variables declaration//GEN-END:variables
}