// Chromis POS - The New Face of Open Source POS // Copyright (c) (c) 2015-2016 // http://www.chromis.co.uk // // This file is part of Chromis POS // // Chromis 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. // // Chromis 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 Chromis POS. If not, see <http://www.gnu.org/licenses/>. package uk.chromis.pos.panels; import java.awt.BorderLayout; import java.awt.Component; import javax.swing.JComponent; import javax.swing.JPanel; import javax.swing.ListCellRenderer; import uk.chromis.basic.BasicException; import uk.chromis.data.gui.JCounter; import uk.chromis.data.gui.JLabelDirty; import uk.chromis.data.gui.JListNavigator; import uk.chromis.data.gui.JNavigator; import uk.chromis.data.gui.JSaver; import uk.chromis.data.gui.MessageInf; import uk.chromis.data.loader.ComparatorCreator; import uk.chromis.data.loader.Vectorer; import uk.chromis.data.user.BrowsableEditableData; import uk.chromis.data.user.DirtyManager; import uk.chromis.data.user.EditorRecord; import uk.chromis.data.user.ListProvider; import uk.chromis.data.user.SaveProvider; import uk.chromis.pos.customers.CustomerInfoGlobal; import uk.chromis.pos.forms.AppLocal; import uk.chromis.pos.forms.AppView; import uk.chromis.pos.forms.BeanFactoryApp; import uk.chromis.pos.forms.BeanFactoryException; import uk.chromis.pos.forms.JPanelView; public abstract class JPanelTable extends JPanel implements JPanelView, BeanFactoryApp { protected BrowsableEditableData bd; protected DirtyManager dirty; protected boolean LoadOnActivation = true; protected AppView app; protected int m_ListWidth = 0; /** Creates new form JPanelTableEditor */ public JPanelTable() { initComponents(); } public void setListWidth( int width ) { m_ListWidth = width; } // Sets whether the data is loaded on first activation or loaded later // after some filtering is set public void setLoadOnActivation( boolean bLoad ) { LoadOnActivation = bLoad; } /** * * @param app * @throws BeanFactoryException */ @Override public void init(AppView app) throws BeanFactoryException { this.app = app; dirty = new DirtyManager(); bd = null; init(); } @Override public Object getBean() { return this; } protected void startNavigation() { if (bd == null) { // init browsable editable data bd = new BrowsableEditableData(getListProvider(), getSaveProvider(), getEditor(), dirty); // Add the filter panel Component c = getFilter(); if (c != null) { c.applyComponentOrientation(getComponentOrientation()); add(c, BorderLayout.NORTH); } // Add the editor c = getEditor().getComponent(); if (c != null) { c.applyComponentOrientation(getComponentOrientation()); container.add(c, BorderLayout.CENTER); } ListCellRenderer cr = getListCellRenderer(); if (cr != null) { JListNavigator nl = new JListNavigator(bd); nl.applyComponentOrientation(getComponentOrientation()); if( m_ListWidth > 0 ) { nl.setPreferredSize(new java.awt.Dimension( m_ListWidth, 2)); } if (cr != null) { nl.setCellRenderer(cr); } container.add(nl, java.awt.BorderLayout.LINE_START); } // add toolbar extras c = getToolbarExtras(); if (c != null) { c.applyComponentOrientation(getComponentOrientation()); toolbar.add(c); } c = new JLabelDirty(dirty); c.applyComponentOrientation(getComponentOrientation()); toolbar.add(c); c = new JCounter(bd); c.applyComponentOrientation(getComponentOrientation()); toolbar.add(c); c = new JNavigator(bd, getVectorer(), getComparatorCreator()); c.applyComponentOrientation(getComponentOrientation()); toolbar.add(c); c = new JSaver(bd); c.applyComponentOrientation(getComponentOrientation()); toolbar.add(c); } } public Component getToolbarExtras() { return null; } public Component getFilter() { return null; } protected abstract void init(); public abstract EditorRecord getEditor(); public abstract ListProvider getListProvider(); public abstract SaveProvider getSaveProvider(); public Vectorer getVectorer() { return null; } public ComparatorCreator getComparatorCreator() { return null; } public ListCellRenderer getListCellRenderer() { return null; } @Override public JComponent getComponent() { return this; } @Override public void activate() throws BasicException { startNavigation(); if( LoadOnActivation ) { bd.actionLoad(); } if (CustomerInfoGlobal.getInstance()!=null){ bd.actionInsert(); } } /** * * @return */ @Override public boolean deactivate() { try { return bd.actionClosingForm(this); } catch (BasicException eD) { MessageInf msg = new MessageInf(MessageInf.SGN_NOTICE, AppLocal.getIntString("message.CannotMove"), eD); msg.show(this); return false; } } /** 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() { container = new javax.swing.JPanel(); toolbar = new javax.swing.JPanel(); setBorder(javax.swing.BorderFactory.createEmptyBorder(5, 5, 5, 5)); setLayout(new java.awt.BorderLayout()); container.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N container.setLayout(new java.awt.BorderLayout()); container.add(toolbar, java.awt.BorderLayout.NORTH); add(container, java.awt.BorderLayout.CENTER); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JPanel container; private javax.swing.JPanel toolbar; // End of variables declaration//GEN-END:variables }