📄 jpanelconfigpayment.java
字号:
// Tina POS is a point of sales application designed for touch screens.
// Copyright (C) 2005 Adrian Romero Corchado.
// http://sourceforge.net/projects/tinapos
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package net.adrianromero.tpv.config;
import java.awt.Component;
import net.adrianromero.tpv.forms.AppConfig;
import net.adrianromero.tpv.forms.AppLocal;
public class JPanelConfigPayment extends javax.swing.JPanel implements PanelConfig {
/** Creates new form JPanelConfigPayment */
public JPanelConfigPayment() {
initComponents();
// Lector de tarjetas.
jcboCardReader.addItem("Not defined");
jcboCardReader.addItem("Generic");
jcboCardReader.addItem("Intelligent");
jcboPaymentGateway.addItem("Not defined");
jcboPaymentGateway.addItem("external");
jcboPaymentGateway.addItem("SECPay");
jcboPaymentGateway.addItem("AuthorizeNet");
}
public Component getConfigComponent() {
return this;
}
public void loadProperties(AppConfig config) {
jcboCardReader.setSelectedItem(config.getProperty("payment.magcardreader"));
jcboPaymentGateway.setSelectedItem(config.getProperty("payment.gateway"));
jchkPaymentTest.setSelected(Boolean.valueOf(config.getProperty("payment.testmode")).booleanValue());
jtxtCommerceID.setText(config.getProperty("payment.commerceid"));
jtxtCommercePwd.setText(config.getProperty("payment.commercepassword"));
}
public void saveProperties(AppConfig config) {
config.setProperty("payment.magcardreader", comboValue(jcboCardReader.getSelectedItem()));
config.setProperty("payment.gateway", comboValue(jcboPaymentGateway.getSelectedItem()));
config.setProperty("payment.testmode", Boolean.toString(jchkPaymentTest.isSelected()));
config.setProperty("payment.commerceid", jtxtCommerceID.getText());
config.setProperty("payment.commercepassword", new String(jtxtCommercePwd.getPassword()));
}
private String comboValue(Object value) {
return value == null ? "" : value.toString();
}
/** 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() {
jcboCardReader = new javax.swing.JComboBox();
jLabel11 = new javax.swing.JLabel();
jLabel13 = new javax.swing.JLabel();
jcboPaymentGateway = new javax.swing.JComboBox();
jchkPaymentTest = new javax.swing.JCheckBox();
jtxtCommercePwd = new javax.swing.JPasswordField();
jLabel14 = new javax.swing.JLabel();
jLabel12 = new javax.swing.JLabel();
jtxtCommerceID = new javax.swing.JTextField();
jLabel10 = new javax.swing.JLabel();
setLayout(null);
setPreferredSize(new java.awt.Dimension(680, 165));
add(jcboCardReader);
jcboCardReader.setBounds(150, 130, 240, 20);
jLabel11.setText(AppLocal.getIntString("label.magcardreader"));
add(jLabel11);
jLabel11.setBounds(20, 130, 130, 14);
jLabel13.setText(AppLocal.getIntString("label.paymentgateway"));
add(jLabel13);
jLabel13.setBounds(20, 100, 130, 14);
add(jcboPaymentGateway);
jcboPaymentGateway.setBounds(150, 100, 240, 20);
jchkPaymentTest.setText(AppLocal.getIntString("label.paymenttestmode"));
add(jchkPaymentTest);
jchkPaymentTest.setBounds(400, 100, 130, 20);
add(jtxtCommercePwd);
jtxtCommercePwd.setBounds(150, 70, 180, 20);
jLabel14.setText(AppLocal.getIntString("label.commercepwd"));
add(jLabel14);
jLabel14.setBounds(20, 70, 130, 14);
jLabel12.setText(AppLocal.getIntString("label.commerceid"));
add(jLabel12);
jLabel12.setBounds(20, 40, 130, 14);
add(jtxtCommerceID);
jtxtCommerceID.setBounds(150, 40, 180, 20);
jLabel10.setFont(new java.awt.Font("Dialog", 1, 12));
jLabel10.setText(AppLocal.getIntString("Label.Payment"));
jLabel10.setBorder(javax.swing.BorderFactory.createMatteBorder(0, 0, 1, 0, new java.awt.Color(0, 0, 0)));
add(jLabel10);
jLabel10.setBounds(20, 10, 660, 17);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel10;
private javax.swing.JLabel jLabel11;
private javax.swing.JLabel jLabel12;
private javax.swing.JLabel jLabel13;
private javax.swing.JLabel jLabel14;
private javax.swing.JComboBox jcboCardReader;
private javax.swing.JComboBox jcboPaymentGateway;
private javax.swing.JCheckBox jchkPaymentTest;
private javax.swing.JTextField jtxtCommerceID;
private javax.swing.JPasswordField jtxtCommercePwd;
// End of variables declaration//GEN-END:variables
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -