MaxRecordsDialog.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
it.businesslogic.ireport.gui |
![]() |
![]() |
iReport |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/*
* Copyright (C) 2005 - 2008 JasperSoft Corporation. All rights reserved.
* http://www.jaspersoft.com.
*
* Unless you have purchased a commercial license agreement from JasperSoft,
* the following license terms apply:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* This program is distributed WITHOUT ANY WARRANTY; and without 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 General Public License
* along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
* or write to:
*
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330,
* Boston, MA USA 02111-1307
*
*
*
*
* MaxRecordsDialog.java
*
* Created on 17 novembre 2004, 1.07
*
*/
package it.businesslogic.ireport.gui;
import it.businesslogic.ireport.util.I18n;
/**
*
* @author Administrator
*/
public class MaxRecordsDialog extends javax.swing.JDialog {
private int dialogResult = javax.swing.JOptionPane.CANCEL_OPTION;
private int maxRecords = 0;
/** Creates new form NewLocaleFileDialog */
public MaxRecordsDialog(java.awt.Dialog parent, boolean modal) {
super(parent, modal);
initAll();
}
public MaxRecordsDialog(java.awt.Frame parent, boolean modal) {
super(parent, modal);
initAll();
}
public void initAll()
{
initComponents();
applyI18n();
this.setSize(400,150);
it.businesslogic.ireport.util.Misc.centerFrame(this);
javax.swing.KeyStroke escape = javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ESCAPE, 0, false);
javax.swing.Action escapeAction = new javax.swing.AbstractAction() {
public void actionPerformed(java.awt.event.ActionEvent e) {
jButton2ActionPerformed(e);
}
};
getRootPane().getInputMap(javax.swing.JComponent.WHEN_IN_FOCUSED_WINDOW).put(escape, "ESCAPE");
getRootPane().getActionMap().put("ESCAPE", escapeAction);
//to make the default button ...
this.getRootPane().setDefaultButton(this.jButton1);
}
public int getDialogResult() {
return dialogResult;
}
public void setDialogResult(int dialogResult) {
this.dialogResult = dialogResult;
}
/** 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.
*/
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents() {
java.awt.GridBagConstraints gridBagConstraints;
jPanel2 = new javax.swing.JPanel();
jCheckBox1 = new javax.swing.JCheckBox();
jLabel1 = new javax.swing.JLabel();
jNumberFieldTop = new it.businesslogic.ireport.gui.JNumberField();
jPanel1 = new javax.swing.JPanel();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
getContentPane().setLayout(new java.awt.GridBagLayout());
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
setResizable(false);
jPanel2.setLayout(new java.awt.GridBagLayout());
jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createEtchedBorder(), "REPORT MAX COUNT", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Dialog", 0, 11)));
jPanel2.setMinimumSize(new java.awt.Dimension(350, 80));
jPanel2.setPreferredSize(new java.awt.Dimension(350, 80));
jCheckBox1.setText("Limit number of records from the report data source");
jCheckBox1.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
jCheckBox1.setMargin(new java.awt.Insets(0, 0, 0, 0));
jCheckBox1.addItemListener(new java.awt.event.ItemListener() {
public void itemStateChanged(java.awt.event.ItemEvent evt) {
jCheckBox1ItemStateChanged(evt);
}
});
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridwidth = 2;
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);
jPanel2.add(jCheckBox1, gridBagConstraints);
jLabel1.setText("Max number of records");
jLabel1.setEnabled(false);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridy = 1;
gridBagConstraints.insets = new java.awt.Insets(0, 20, 0, 0);
jPanel2.add(jLabel1, gridBagConstraints);
jNumberFieldTop.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
jNumberFieldTop.setText("0");
try {
jNumberFieldTop.setDecimals(0);
} catch (java.beans.PropertyVetoException e1) {
e1.printStackTrace();
}
jNumberFieldTop.setEnabled(false);
try {
jNumberFieldTop.setInteger(true);
} catch (java.beans.PropertyVetoException e1) {
e1.printStackTrace();
}
jNumberFieldTop.setMinimumSize(new java.awt.Dimension(60, 21));
jNumberFieldTop.setPreferredSize(new java.awt.Dimension(60, 21));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 1;
gridBagConstraints.gridy = 1;
gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
gridBagConstraints.insets = new java.awt.Insets(2, 5, 2, 0);
jPanel2.add(jNumberFieldTop, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.ipadx = 4;
gridBagConstraints.ipady = 4;
gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);
getContentPane().add(jPanel2, gridBagConstraints);
jPanel1.setLayout(new java.awt.GridBagLayout());
jButton1.setText("OK");
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.EAST;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.insets = new java.awt.Insets(4, 0, 4, 4);
jPanel1.add(jButton1, gridBagConstraints);
jButton2.setText("Cancel");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
gridBagConstraints.insets = new java.awt.Insets(4, 0, 4, 4);
jPanel1.add(jButton2, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.weighty = 1.0;
getContentPane().add(jPanel1, gridBagConstraints);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jCheckBox1ItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_jCheckBox1ItemStateChanged
if (jCheckBox1.isSelected())
{
jLabel1.setEnabled(true);
jNumberFieldTop.setEnabled(true);
}
else
{
jLabel1.setEnabled(false);
jNumberFieldTop.setEnabled(false);
}
}//GEN-LAST:event_jCheckBox1ItemStateChanged
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
this.setDialogResult( javax.swing.JOptionPane.CANCEL_OPTION);
this.setVisible(false);
this.dispose();
}//GEN-LAST:event_jButton2ActionPerformed
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
this.maxRecords = 0;
if (jCheckBox1.isSelected())
{
int max_count = (int)jNumberFieldTop.getValue();
if (max_count <= 0)
{
javax.swing.JOptionPane.showMessageDialog(this,
I18n.getString("messages.maxRecordsDialog.invalidNumber",
"The number of records must be greater than 0.") );
return;
}
this.maxRecords = max_count;
}
this.setDialogResult( javax.swing.JOptionPane.OK_OPTION);
this.setVisible(false);
this.dispose();
}//GEN-LAST:event_jButton1ActionPerformed
public int getMaxRecords() {
return maxRecords;
}
public void setMaxRecords(int maxRecords) {
this.maxRecords = maxRecords;
if (maxRecords > 0)
{
jCheckBox1.setSelected(true);
try {
jNumberFieldTop.setValue( maxRecords );
} catch (Exception ex){}
}
else
{
jCheckBox1.setSelected(false);
jNumberFieldTop.setEnabled(false);
try {
jNumberFieldTop.setValue( 0 );
} catch (Exception ex){}
}
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JCheckBox jCheckBox1;
private javax.swing.JLabel jLabel1;
private it.businesslogic.ireport.gui.JNumberField jNumberFieldTop;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
// End of variables declaration//GEN-END:variables
public void applyI18n(){
// Start autogenerated code ----------------------
jCheckBox1.setText(I18n.getString("maxRecordsDialog.checkBox1","Limit number of records from the report data source"));
// End autogenerated code ----------------------
// Start autogenerated code ----------------------
jButton1.setText(I18n.getString("maxRecordsDialog.button1","OK"));
jButton2.setText(I18n.getString("maxRecordsDialog.button2","Cancel"));
jLabel1.setText(I18n.getString("maxRecordsDialog.label1","Max number of records"));
// End autogenerated code ----------------------
((javax.swing.border.TitledBorder)jPanel2.getBorder()).setTitle( it.businesslogic.ireport.util.I18n.getString("maxRecordsDialog.panelBorder.ReportMaxCount","REPORT MAX COUNT") );
jButton1.setMnemonic(I18n.getString("maxRecordsDialog.button1Mnemonic","o").charAt(0));
jButton2.setMnemonic(I18n.getString("maxRecordsDialog.button2Mnemonic","c").charAt(0));
}
}
The table below shows all metrics for MaxRecordsDialog.java.




