// Openbravo POS is a point of sales application designed for touch screens. // Copyright (C) 2009 Openbravo, S.L. // http://www.openbravo.com/product/pos // // This file is part of Openbravo POS. // // Openbravo POS 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 3 of the License, or // (at your option) any later version. // // Openbravo POS 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 Openbravo POS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.config; import com.openbravo.data.user.DirtyManager; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.util.StringParser; import java.awt.Component; /** * * @author adrian */ public class ParametersPrinter extends javax.swing.JPanel implements ParametersConfig { private String othersizename = "standard"; /** Creates new form ParametersPrinter */ public ParametersPrinter(String [] printernames) { initComponents(); jPrinters.addItem("(Default)"); jPrinters.addItem("(Show dialog)"); for (String name : printernames) { jPrinters.addItem(name); } } public Component getComponent() { return this; } public void addDirtyManager(DirtyManager dirty) { jPrinters.addActionListener(dirty); jReceiptPrinter.addActionListener(dirty); } public void setParameters(StringParser p) { jPrinters.setSelectedItem(p.nextToken(',')); String sizename = p.nextToken(','); jReceiptPrinter.setSelected("receipt".equals(sizename)); othersizename = "receipt".equals(sizename) ? "standard" : sizename; } public String getParameters() { return comboValue(jPrinters.getSelectedItem()) + "," + boolValue(jReceiptPrinter.isSelected()); } private static String comboValue(Object value) { return value == null ? "" : value.toString(); } private String boolValue(boolean value) { return value ? "receipt" : othersizename; } /** 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() { jPrinters = new javax.swing.JComboBox(); jReceiptPrinter = new javax.swing.JCheckBox(); jReceiptPrinter.setSelected(true); jReceiptPrinter.setText(AppLocal.getIntString("label.receiptprinter")); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGap(0, 430, Short.MAX_VALUE) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jPrinters, javax.swing.GroupLayout.PREFERRED_SIZE, 165, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(jReceiptPrinter) .addContainerGap(129, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGap(0, 61, Short.MAX_VALUE) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jPrinters, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jReceiptPrinter)) .addContainerGap(37, Short.MAX_VALUE)) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JComboBox jPrinters; private javax.swing.JCheckBox jReceiptPrinter; // End of variables declaration//GEN-END:variables }