Java tutorial
// Description: Java 7 Swing Picker of Obj JPanel implementation for SipConf. /* * CF Asterisk 11 Configuration Model * * Copyright (c) 2013-2014 Mark Sobkow * * This program is available as free software under the GNU GPL v3, or * under a commercial license from Mark Sobkow. For commercial licensing * details, please contact msobkow@sasktel.net. * * Under the terms of the GPL: * * 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 3 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, see <http://www.gnu.org/licenses/>. * * This source code incorporates modified modules originally licensed * under the Apache 2.0 license by MSS Code Factory including CFSecurity * (net-sourceforge-msscodefactory-2.0-cfsecurity.xml), * CFInternet (net-sourceforge-msscodefactory-2.0-cfinternet.xml), and * CFCrm 2.0 (net-sourceforge-msscodefactory-2.0-cfcrm.xml), with all of the * required models being available as part of the MSS Code Factory 1.11 * distribution source and install zips. * * You can download installations of MSS Code Factory 1.11 from * http://msscodefactory.sourceforge.net/ * * *********************************************************************** * * Code manufactured by MSS Code Factory */ package net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstSwing; import java.math.*; import java.sql.*; import java.text.*; import java.util.*; import java.util.List; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.table.*; import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*; import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.Swing.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAst.*; import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstObj.*; /** * CFAstSwingSipConfPickerJPanel Swing Pick Obj JPanel implementation * for SipConf. */ public class CFAstSwingSipConfPickerJPanel extends CFJPanel implements ICFAstSwingSipConfJPanelList { protected ICFAstSwingSchema swingSchema = null; protected Collection<ICFAstSipConfObj> swingDataCollection = null; protected ICFAstSipConfObj arrayOfSipConf[] = null; public final static int COLID_ROW_HEADER = -1; public final static int COLID_OBJQUALIFIEDNAME = 0; public final static int COLID_ID = 1; public final static int COLID_FILEFULLNAME = 2; public final static int COLID_FILECONTENTS = 3; public final static int NUM_COLS = 4; protected JTable swingJTable = null; public class PickerTableModel extends AbstractTableModel { public PickerTableModel() { super(); } public int getRowCount() { int retval; if (arrayOfSipConf != null) { retval = arrayOfSipConf.length; } else { retval = 0; } return (retval); } public int getColumnCount() { return (NUM_COLS); } public String getColumnName(int column) { String retval; switch (column) { case COLID_ROW_HEADER: retval = "Asterisk sip.conf"; break; case COLID_OBJQUALIFIEDNAME: retval = "Qualified Name"; break; case COLID_ID: retval = "Id"; break; case COLID_FILEFULLNAME: retval = "FileFullName"; break; case COLID_FILECONTENTS: retval = "FileContents"; break; default: retval = null; break; } return (retval); } public Object getValueAt(int row, int column) { if ((row < 0) || (column < -1)) { return (null); } if (arrayOfSipConf == null) { return (null); } int len = arrayOfSipConf.length; if (row >= len) { return (null); } ICFAstSipConfObj obj = arrayOfSipConf[row]; if (obj == null) { return (null); } Object retval; switch (column) { case COLID_ROW_HEADER: retval = obj; break; case COLID_OBJQUALIFIEDNAME: retval = obj.getObjQualifiedName(); break; case COLID_ID: retval = new Long(obj.getRequiredId()); break; case COLID_FILEFULLNAME: retval = obj.getRequiredFileFullName(); if (retval == null) { retval = ""; } break; case COLID_FILECONTENTS: retval = obj.getRequiredFileContents(); if (retval == null) { retval = ""; } break; default: retval = null; break; } return (retval); } public boolean isCellEditable(int row, int column) { return (false); } } public class PickerTableColumnModel extends DefaultTableColumnModel { protected class QualifiedNameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Qualified Name"); } public QualifiedNameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_OBJQUALIFIEDNAME); setMinWidth(125); setResizable(true); } } public class IdColumn extends TableColumn { protected class ColumnCellRenderer extends CFInt64ColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("Id"); } public IdColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_ID); setMinWidth(125); setResizable(true); } } public class FileFullNameColumn extends TableColumn { protected class ColumnCellRenderer extends CFStringColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("FileFullName"); } public FileFullNameColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_FILEFULLNAME); setMinWidth(125); setResizable(true); } } public class FileContentsColumn extends TableColumn { protected class ColumnCellRenderer extends CFTextColumnCellRenderer { public ColumnCellRenderer() { super(); } } protected class ColumnHeaderRenderer extends CFHeaderColumnCellRenderer { public ColumnHeaderRenderer() { super(); } } public Object getHeaderValue() { return ("FileContents"); } public FileContentsColumn() { super(); setCellRenderer(new ColumnCellRenderer()); setHeaderRenderer(new ColumnHeaderRenderer()); setModelIndex(COLID_FILECONTENTS); setMinWidth(125); setResizable(true); } } public PickerTableColumnModel() { super(); addColumn(new QualifiedNameColumn()); addColumn(new IdColumn()); addColumn(new FileFullNameColumn()); addColumn(new FileContentsColumn()); } } public class PickerListSelectionModel extends DefaultListSelectionModel { public PickerListSelectionModel() { super(); setSelectionMode(ListSelectionModel.SINGLE_SELECTION); } } public class PickerListSelectionListener implements ListSelectionListener { public PickerListSelectionListener() { } public void valueChanged(ListSelectionEvent lse) { final String S_ProcName = "valueChanged"; ICFAstSipConfObj selectedObj; if (lse.getValueIsAdjusting()) { return; } if (dataTable == null) { return; } int dataRow = dataTable.getSelectedRow(); int modelIndex = dataTable.convertRowIndexToModel(dataRow); PickerTableModel tblDataModel = getDataModel(); Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER); if (selectedRowData != null) { if (selectedRowData instanceof ICFAstSipConfObj) { int selectedCount = dataTable.getSelectedRowCount(); if (selectedCount <= 0) { selectedObj = null; } else if (selectedCount == 1) { selectedObj = (ICFAstSipConfObj) selectedRowData; } else { selectedObj = null; } } else { selectedObj = null; throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "selectedRowData", selectedRowData, "ICFAstSipConfObj"); } } else { selectedObj = null; } setSwingFocus(selectedObj); adjustFeedback(); } } public class PickerListMouseAdapter extends MouseAdapter { public PickerListMouseAdapter() { super(); } public void mousePressed(MouseEvent e) { if (e.getButton() != MouseEvent.BUTTON1) { return; } if (e.getClickCount() != 2) { return; } JTable table = (JTable) e.getSource(); Point p = e.getPoint(); int row = table.rowAtPoint(p); if (row < 0) { return; } PickerTableModel model = getDataModel(); ICFAstSipConfObj o = (ICFAstSipConfObj) model.getValueAt(row, COLID_ROW_HEADER); invokeWhenChosen.choseSipConf(o); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected PickerTableModel dataModel = null; protected PickerTableColumnModel dataColumnModel = null; protected PickerListSelectionModel dataListSelectionModel = null; protected PickerListMouseAdapter dataListMouseAdapter = null; protected PickerListSelectionListener dataListSelectionListener = null; protected JTable dataTable = null; protected JTableHeader dataTableHeader = null; protected JScrollPane dataScrollPane = null; public final String S_ColumnNames[] = { "Name" }; protected ICFAstSwingSipConfChosen invokeWhenChosen = null; protected ICFAstHostNodeObj swingContainer = null; protected Action actionCancel = null; protected Action actionChooseNone = null; protected Action actionChooseSelected = null; protected JButton buttonCancel = null; protected JButton buttonChooseNone = null; protected JButton buttonChooseSelected = null; protected class ActionCancel extends AbstractAction { public ActionCancel() { super(); putValue(Action.NAME, "Cancel"); setEnabled(true); } public void actionPerformed(ActionEvent e) { try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected class ActionChooseNone extends AbstractAction { public ActionChooseNone() { super(); putValue(Action.NAME, "Choose None"); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } invokeWhenChosen.choseSipConf(null); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } protected class ActionChooseSelectedSipConf extends AbstractAction { public ActionChooseSelectedSipConf() { super(); putValue(Action.NAME, "Choose Selected Asterisk sip.conf"); setEnabled(true); } public void actionPerformed(ActionEvent e) { final String S_ProcName = "actionPerformed"; ICFAstSchemaObj schemaObj = swingSchema.getSchema(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "schemaObj"); } ICFAstSipConfObj selectedInstance = getSwingFocusAsSipConf(); invokeWhenChosen.choseSipConf(selectedInstance); try { Container cont = getParent(); while ((cont != null) && (!(cont instanceof JInternalFrame))) { cont = cont.getParent(); } if (cont != null) { ((JInternalFrame) cont).setClosed(true); } } catch (Exception x) { } } } public CFAstSwingSipConfPickerJPanel(ICFAstSwingSchema argSchema, ICFAstSipConfObj argFocus, ICFAstHostNodeObj argContainer, Collection<ICFAstSipConfObj> argDataCollection, ICFAstSwingSipConfChosen whenChosen) { super(); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); } if (whenChosen == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 5, "whenChosen"); } invokeWhenChosen = whenChosen; // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; swingFocus = argFocus; swingContainer = argContainer; setSwingDataCollection(argDataCollection); dataTable = new JTable(getDataModel(), getDataColumnModel(), getDataListSelectionModel()); dataTable.addMouseListener(getDataListMouseAdapter()); dataTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); dataTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); dataTable.setUpdateSelectionOnSort(true); dataTable.setRowHeight(25); getDataListSelectionModel().addListSelectionListener(getDataListSelectionListener()); dataScrollPane = new JScrollPane(dataTable, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED); dataScrollPane.setColumnHeader(new JViewport() { @Override public Dimension getPreferredSize() { Dimension sz = super.getPreferredSize(); sz.height = 25; return (sz); } }); dataTable.setFillsViewportHeight(true); actionCancel = new ActionCancel(); buttonCancel = new JButton(actionCancel); actionChooseNone = new ActionChooseNone(); buttonChooseNone = new JButton(actionChooseNone); actionChooseSelected = new ActionChooseSelectedSipConf(); buttonChooseSelected = new JButton(actionChooseSelected); // Do initial layout setSize(1024, 480); add(buttonChooseNone); add(buttonChooseSelected); add(buttonCancel); add(dataScrollPane); dataScrollPane.setBounds(0, 35, 1024, 455); doLayout(); setSwingFocusAsSipConf(argFocus); } public ICFAstSwingSchema getSwingSchema() { return (swingSchema); } public void setSwingFocus(ICFLibAnyObj2 value) { final String S_ProcName = "setSwingFocus"; if ((value == null) || (value instanceof ICFAstSipConfObj)) { super.setSwingFocus(value); } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "value", value, "ICFAstSipConfObj"); } if (dataTable == null) { return; } if (value == null) { dataTable.clearSelection(); } else { ICFAstSipConfObj curSelected; PickerTableModel tblDataModel = getDataModel(); int selectedRow = dataTable.getSelectedRow(); int modelIndex = dataTable.convertRowIndexToModel(selectedRow); if (selectedRow >= 0) { Object selectedRowData = tblDataModel.getValueAt(modelIndex, COLID_ROW_HEADER); curSelected = (ICFAstSipConfObj) selectedRowData; } else { curSelected = null; } if (curSelected != value) { int len = tblDataModel.getRowCount(); int idx = 0; while ((idx < len) && (tblDataModel.getValueAt(idx, COLID_ROW_HEADER) != value)) { idx++; } if (idx < len) { int viewRow = dataTable.convertRowIndexToView(idx); dataTable.clearSelection(); dataTable.addRowSelectionInterval(viewRow, viewRow); } } } } public ICFAstSipConfObj getSwingFocusAsSipConf() { return ((ICFAstSipConfObj) getSwingFocus()); } public void setSwingFocusAsSipConf(ICFAstSipConfObj value) { setSwingFocus(value); } public class SipConfByQualNameComparator implements Comparator<ICFAstSipConfObj> { public SipConfByQualNameComparator() { } public int compare(ICFAstSipConfObj lhs, ICFAstSipConfObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { String lhsValue = lhs.getObjQualifiedName(); String rhsValue = rhs.getObjQualifiedName(); if (lhsValue == null) { if (rhsValue == null) { return (0); } else { return (-1); } } else if (rhsValue == null) { return (1); } else { return (lhsValue.compareTo(rhsValue)); } } } } protected SipConfByQualNameComparator compareSipConfByQualName = new SipConfByQualNameComparator(); public Collection<ICFAstSipConfObj> getSwingDataCollection() { return (swingDataCollection); } public void setSwingDataCollection(Collection<ICFAstSipConfObj> value) { final String S_ProcName = "setSwingDataCollection"; swingDataCollection = value; if (swingDataCollection == null) { arrayOfSipConf = new ICFAstSipConfObj[0]; } else { int len = value.size(); arrayOfSipConf = new ICFAstSipConfObj[len]; Iterator<ICFAstSipConfObj> iter = swingDataCollection.iterator(); int idx = 0; while (iter.hasNext() && (idx < len)) { arrayOfSipConf[idx++] = iter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Collection iterator did not fully populate the array copy"); } if (iter.hasNext()) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Collection iterator had left over items when done populating array copy"); } Arrays.sort(arrayOfSipConf, compareSipConfByQualName); } PickerTableModel tblDataModel = getDataModel(); if (tblDataModel != null) { tblDataModel.fireTableDataChanged(); } } public void doLayout() { Dimension sz = getSize(); final int buttonWidth = 100; final int buttonHeight = 25; final int buttonSpacing = 10; final int spTop = buttonSpacing + buttonHeight + buttonSpacing; int buttonStart = (sz.width - ((3 * buttonWidth) + (2 * buttonSpacing))) / 2; if (buttonStart < 0) { buttonStart = 0; } int spHeight = sz.height - spTop; if (spHeight < 0) { spHeight = 0; } buttonChooseNone.setBounds(buttonStart, buttonSpacing, buttonWidth, buttonHeight); buttonChooseSelected.setBounds(buttonStart + buttonWidth + buttonSpacing, buttonSpacing, buttonWidth, buttonHeight); buttonCancel.setBounds(buttonStart + buttonWidth + buttonSpacing + buttonWidth + buttonSpacing, buttonSpacing, buttonWidth, buttonHeight); dataScrollPane.setBounds(0, spTop, sz.width, spHeight); } public void setPanelMode(CFJPanel.PanelMode value) { super.setPanelMode(value); } public PickerTableModel getDataModel() { if (dataModel == null) { dataModel = new PickerTableModel(); } return (dataModel); } public PickerTableColumnModel getDataColumnModel() { if (dataColumnModel == null) { dataColumnModel = new PickerTableColumnModel(); } return (dataColumnModel); } public PickerListSelectionModel getDataListSelectionModel() { if (dataListSelectionModel == null) { dataListSelectionModel = new PickerListSelectionModel(); } return (dataListSelectionModel); } public PickerListSelectionListener getDataListSelectionListener() { if (dataListSelectionListener == null) { dataListSelectionListener = new PickerListSelectionListener(); } return (dataListSelectionListener); } public PickerListMouseAdapter getDataListMouseAdapter() { if (dataListMouseAdapter == null) { dataListMouseAdapter = new PickerListMouseAdapter(); } return (dataListMouseAdapter); } protected JTableHeader createDefaultTableHeader() { if (dataTableHeader == null) { dataTableHeader = new JTableHeader(getDataColumnModel()); dataTableHeader.setResizingAllowed(true); dataTableHeader.setTable(dataTable); } return (dataTableHeader); } public ICFAstHostNodeObj getSwingContainer() { return (swingContainer); } public void setSwingContainer(ICFAstHostNodeObj value) { swingContainer = value; } public void adjustFeedback() { actionCancel.setEnabled(true); actionChooseNone.setEnabled(true); if (getSwingFocus() == null) { actionChooseSelected.setEnabled(false); } else { actionChooseSelected.setEnabled(true); } } }