
com.github.andy2003.logging.options.LoggingPanel Maven / Gradle / Ivy
The newest version!
/**
* This file is part of Kayak.
*
* Kayak is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Kayak 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Kayak. If not, see .
*
*/
package com.github.andy2003.logging.options;
import java.io.File;
import javax.swing.JFileChooser;
import org.openide.util.NbPreferences;
final class LoggingPanel extends javax.swing.JPanel {
private final LoggingOptionsPanelController controller;
LoggingPanel(LoggingOptionsPanelController controller) {
this.controller = controller;
initComponents();
}
/** 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.
*/
// //GEN-BEGIN:initComponents
private void initComponents() {
java.awt.GridBagConstraints gridBagConstraints;
jPanel1 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jPanel2 = new javax.swing.JPanel();
jLabel2 = new javax.swing.JLabel();
jTextField2 = new javax.swing.JTextField();
jLabel3 = new javax.swing.JLabel();
jTextField3 = new javax.swing.JTextField();
jCheckBox1 = new javax.swing.JCheckBox();
setLayout(new java.awt.GridBagLayout());
jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jPanel1.border.title"))); // NOI18N
jPanel1.setLayout(new java.awt.GridBagLayout());
org.openide.awt.Mnemonics.setLocalizedText(jLabel1, org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jLabel1.text")); // NOI18N
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
jPanel1.add(jLabel1, gridBagConstraints);
jTextField1.setText(org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jTextField1.text")); // NOI18N
jTextField1.setPreferredSize(new java.awt.Dimension(200, 30));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END;
jPanel1.add(jTextField1, gridBagConstraints);
org.openide.awt.Mnemonics.setLocalizedText(jButton1, org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jButton1.text")); // NOI18N
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END;
jPanel1.add(jButton1, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
add(jPanel1, gridBagConstraints);
jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jPanel2.border.title"))); // NOI18N
jPanel2.setLayout(new java.awt.GridBagLayout());
org.openide.awt.Mnemonics.setLocalizedText(jLabel2, org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jLabel2.text")); // NOI18N
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
jPanel2.add(jLabel2, gridBagConstraints);
jTextField2.setText(org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jTextField2.text")); // NOI18N
jTextField2.setPreferredSize(new java.awt.Dimension(100, 30));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END;
jPanel2.add(jTextField2, gridBagConstraints);
org.openide.awt.Mnemonics.setLocalizedText(jLabel3, org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jLabel3.text")); // NOI18N
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
jPanel2.add(jLabel3, gridBagConstraints);
jTextField3.setText(org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jTextField2.text")); // NOI18N
jTextField3.setPreferredSize(new java.awt.Dimension(100, 30));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 1;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END;
jPanel2.add(jTextField3, gridBagConstraints);
jCheckBox1.setSelected(true);
org.openide.awt.Mnemonics.setLocalizedText(jCheckBox1, org.openide.util.NbBundle.getMessage(LoggingPanel.class, "LoggingPanel.jCheckBox1.text")); // NOI18N
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 2;
gridBagConstraints.gridwidth = 2;
jPanel2.add(jCheckBox1, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
add(jPanel2, gridBagConstraints);
}// //GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
JFileChooser chooser = new JFileChooser(jTextField1.getText());
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
if(chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
jTextField1.setText(chooser.getSelectedFile().getAbsolutePath());
}
}//GEN-LAST:event_jButton1ActionPerformed
void load() {
jTextField1.setText(Options.getLogFilesFolder());
jTextField2.setText(String.valueOf(Options.getSnapshotBufferDepth()));
jTextField3.setText(String.valueOf(Options.getSnapshotBufferFinish()));
jCheckBox1.setSelected(Options.getSnapshotsEnabled());
}
void store() {
NbPreferences.forModule(LoggingPanel.class).put("Log file directory", jTextField1.getText());
NbPreferences.forModule(LoggingPanel.class).put("Snapshot buffer depth", jTextField2.getText());
NbPreferences.forModule(LoggingPanel.class).put("Snapshot buffer finish", jTextField3.getText());
NbPreferences.forModule(LoggingPanel.class).putBoolean("Snapshots enabled", jCheckBox1.isSelected());
}
boolean valid() {
File logDir = new File(jTextField1.getText());
if(!logDir.isDirectory() ||
!logDir.canRead() ||
!logDir.canWrite())
return false;
try {
int a = Integer.parseInt(jTextField2.getText());
int b = Integer.parseInt(jTextField3.getText());
if(a < 0 || b < 0)
return false;
} catch (Exception ex) {
return false;
}
return true;
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JCheckBox jCheckBox1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
private javax.swing.JTextField jTextField3;
// End of variables declaration//GEN-END:variables
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy