Java tutorial
/* * Copyright (C) 2016 Alexander Savelev * * 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 ru.codemine.pos.ui.salespanel.modules; import com.alee.extended.image.WebImage; import com.alee.extended.layout.TableLayout; import com.alee.global.StyleConstants; import com.alee.laf.label.WebLabel; import com.alee.laf.optionpane.WebOptionPane; import com.alee.laf.panel.WebPanel; import com.alee.laf.scroll.WebScrollPane; import com.alee.laf.table.WebTable; import com.alee.laf.text.WebTextField; import javax.swing.table.TableColumnModel; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import ru.codemine.pos.application.Application; import ru.codemine.pos.entity.Product; import ru.codemine.pos.entity.document.Cheque; import ru.codemine.pos.tablemodel.ChequeSetupTableModel; /** * * @author Alexander Savelev */ @Component public class ChequeSetupPanel extends WebPanel { @Autowired Application application; private final WebTable table; private final WebTextField inputField; private ChequeSetupTableModel tableModel; public ChequeSetupPanel() { setMargin(10); setUndecorated(false); setRound(StyleConstants.largeRound); TableLayout layout = new TableLayout(new double[][] { { 10, TableLayout.PREFERRED, // ?? "?" 10, TableLayout.FILL, // 10, TableLayout.PREFERRED, // "-" 5, TableLayout.PREFERRED, 10 }, { 10, TableLayout.FILL, 5, TableLayout.PREFERRED, 10 } }); setLayout(layout); table = new WebTable(); table.setEditable(false); table.setFontSize(22); table.setRowHeight(40); WebScrollPane scrollPane = new WebScrollPane(table); add(scrollPane, "1, 1, 3, 1"); inputField = new WebTextField(); inputField.setFontSize(18); inputField.setMargin(0, 2, 0, 0); inputField.setLeadingComponent(new WebImage("images/icons/16x16/Lens-01.png")); add(inputField, "3, 3"); add(new WebLabel("? -: "), "1, 3"); } public void init() { newCheque(); TableColumnModel columnModel = table.getColumnModel(); columnModel.getColumn(0).setPreferredWidth(50); columnModel.getColumn(1).setMinWidth(300); columnModel.getColumn(2).setPreferredWidth(100); columnModel.getColumn(3).setPreferredWidth(100); columnModel.getColumn(4).setPreferredWidth(100); } public WebTextField getInputField() { return inputField; } public ChequeSetupTableModel getTableModel() { return tableModel; } public Cheque getCheque() { return tableModel.getCheque(); } public void refresh() { tableModel.fireTableDataChanged(); } public void newCheque() { Cheque cheque = new Cheque(); cheque.setShop(application.getCurrentShop()); tableModel = new ChequeSetupTableModel(cheque); table.setModel(tableModel); tableModel.fireTableDataChanged(); } public WebTable getTable() { return table; } public Product getSelectedProduct() { int row = table.getSelectedRow(); if (row == -1) { WebOptionPane.showMessageDialog(this, "? ?!", "", WebOptionPane.WARNING_MESSAGE); return null; } return tableModel.getProductAt(table.getSelectedRow()); } public Integer getSelectedQuantity() { int row = table.getSelectedRow(); if (row == -1) { WebOptionPane.showMessageDialog(this, "? ?!", "", WebOptionPane.WARNING_MESSAGE); return null; } return tableModel.getQuantityAt(table.getSelectedRow()); } }