package org.fnppl.opensdx.gui.helper;
/*
* Copyright (C) 2010-2015
* fine people e.V. <opensdx@fnppl.org>
* Henning Thieß <ht@fnppl.org>
*
* http://fnppl.org
*/
/*
* Software license
*
* As far as this file or parts of this file is/are software, rather than documentation, this software-license applies / shall be applied.
*
* This file is part of openSDX
* openSDX is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* openSDX 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 Lesser General Public License
* and GNU General Public License along with openSDX.
* If not, see <http://www.gnu.org/licenses/>.
*
*/
/*
* Documentation license
*
* As far as this file or parts of this file is/are documentation, rather than software, this documentation-license applies / shall be applied.
*
* This file is part of openSDX.
* Permission is granted to copy, distribute and/or modify this document
* under the terms of the GNU Free Documentation License, Version 1.3
* or any later version published by the Free Software Foundation;
* with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
* A copy of the license is included in the section entitled "GNU
* Free Documentation License" resp. in the file called "FDL.txt".
*
*/
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Color;
import java.awt.KeyboardFocusManager;
import javax.swing.*;
import javax.swing.text.JTextComponent;
import javax.swing.border.TitledBorder;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import org.fnppl.opensdx.common.BusinessObject;
import org.fnppl.opensdx.common.LicenseBasis;
import org.fnppl.opensdx.common.Territorial;
import org.fnppl.opensdx.dmi.FeedGui;
import org.fnppl.opensdx.gui.Dialogs;
import org.fnppl.opensdx.gui.EditTerritoiresTree;
import org.fnppl.opensdx.security.SecurityHelper;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import java.util.Vector;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.event.FocusAdapter;
import java.awt.event.FocusEvent;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
public class PanelLicense extends JPanel implements MyObservable, MyObserver, TextChangeListener {
//init fields
private LicenseBasis lb = null;
//private DocumentChangeListener documentListener;
//private KeyAdapter keyAdapter;
private HashMap<String,JComponent> map = new HashMap<String, JComponent>();
private JCheckBox check_as_on_bundle;
private JLabel label_timeframe_from;
private JTextField text_timeframe_from_datetime;
private JLabel label_timeframe_to;
private JTextField text_timeframe_to_datetime;
private JLabel label_pricing;
private JComboBox select_pricing;
private DefaultComboBoxModel select_pricing_model;
private JTextField text_pricing;
private JLabel label_h_filler;
private JCheckBox check_streaming_allowed;
private JLabel label_channels;
private JComboBox select_channels;
private DefaultComboBoxModel select_channels_model;
private JPanel panel_territories;
private JLabel label_filler;
private EditTerritoiresTree tree_territories;
private JList listAllow;
private JList listDisallow;
private boolean doUpdate = true;
public PanelLicense(LicenseBasis lb) {
this.lb = lb;
initFocusTraversal();
initComponents();
initLayout();
tree_territories = new EditTerritoiresTree();
tree_territories.addObserver(this);
panel_territories.setLayout(new BorderLayout());
JPanel pNorth = new JPanel();
pNorth.setLayout(new FlowLayout(FlowLayout.LEFT));
Dimension d = new Dimension(250,200);
listAllow = new JList();
listAllow.setModel(new DefaultListModel());
// listAllow.setBorder(new TitledBorder("Allowed"));
listDisallow = new JList();
listDisallow.setModel(new DefaultListModel());
JScrollPane sAllow = new JScrollPane(listAllow);
sAllow.setBorder(new TitledBorder("Allow"));
sAllow.setPreferredSize(d);
sAllow.setMinimumSize(d);
sAllow.setMaximumSize(d);
JScrollPane sDisallow = new JScrollPane(listDisallow);
sDisallow.setBorder(new TitledBorder("Disallow"));
sDisallow.setPreferredSize(d);
sDisallow.setMinimumSize(d);
sDisallow.setMaximumSize(d);
pNorth.add(sAllow);
pNorth.add(sDisallow);
panel_territories.add(pNorth,BorderLayout.NORTH);
panel_territories.add(new JScrollPane(tree_territories),BorderLayout.CENTER);
}
@SuppressWarnings("unchecked")
private void initFocusTraversal() {
Set forwardKeys = new HashSet(getFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS));
forwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0));
setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,forwardKeys);
}
public void notifyChange(MyObservable changedIn) {
if (lb!=null) {
lb.setTerritorial(tree_territories.getTerritorial());
update(lb,false);
}
}
public void showAsOnBundle(boolean b) {
check_as_on_bundle.setVisible(b);
if(!b) {
check_as_on_bundle.setSelected(false);
}
}
public void update(LicenseBasis lb) {
update(lb, true);
}
private void update(LicenseBasis lb, boolean withTree) {
this.lb = lb;
doUpdate = false;
if (lb == null) {;
check_as_on_bundle.setSelected(false);
text_timeframe_from_datetime.setText("");
text_timeframe_to_datetime.setText("");
select_pricing.setSelectedIndex(0);
text_pricing.setText("");
text_pricing.setEnabled(true);
check_streaming_allowed.setSelected(false);
select_channels.setSelectedIndex(0);
select_channels.setEnabled(false);
DefaultListModel lmAllow = (DefaultListModel)listAllow.getModel();
DefaultListModel lmDisallow = (DefaultListModel)listDisallow.getModel();
lmAllow.removeAllElements();
lmDisallow.removeAllElements();
if (withTree) {
tree_territories.setTerritories(Territorial.make());
}
} else {
check_as_on_bundle.setSelected(lb.isAsOnBundle());
text_timeframe_from_datetime.setText(lb.getTimeframeFromText());
text_timeframe_to_datetime.setText(lb.getTimeframeToText());
if (lb.getPricingPricecode()!=null) {
select_pricing.setSelectedItem(lb.getPricingPricecode());
text_pricing.setText("");
text_pricing.setEnabled(false);
} else {
select_pricing.setSelectedIndex(0);
text_pricing.setText(lb.getPricingWholesale());
text_pricing.setEnabled(true);
}
// boolean sa = BusinessObject.getNotNullBoolean(lb.isStreaming_allowed(), false);
boolean sa = lb.isStreaming_allowed();
check_streaming_allowed.setSelected(sa);
if (sa) {
setSelectChannels(lb);
select_channels.setEnabled(true);
} else {
select_channels.setEnabled(false);
}
//panel territories
DefaultListModel lmAllow = (DefaultListModel)listAllow.getModel();
DefaultListModel lmDisallow = (DefaultListModel)listDisallow.getModel();
lmAllow.removeAllElements();
lmDisallow.removeAllElements();
Territorial t = lb.getTerritorial();
if (t!=null) {
if (withTree) {
tree_territories.setTerritories(t);
}
int count = t.getTerritorialCount();
for (int i=0;i<count;i++) {
if (t.isTerritoryAllowed(i)) {
lmAllow.addElement(t.getTerritory(i));
} else {
lmDisallow.addElement(t.getTerritory(i));
}
}
}
}
setVisibility(!check_as_on_bundle.isSelected());
doUpdate = true;
//documentListener.saveStates();
}
private void setSelectChannels(LicenseBasis lb) {
if (lb==null || lb.getChannelsCount()==0) {
select_channels.setSelectedIndex(0);
} else {
String name = lb.getChannelName(0);
System.out.println("channelname :: "+name);
if (lb.getChannelsCount()>1 || lb.getChannelAllowed(0)==false || !(name.equals("[not set]") || name.equals("all") || name.equals("ad supported") || name.equals("premium") || name.equals("ringtones"))) {
select_channels.setSelectedIndex(0);
Dialogs.showMessage("Caution: Channels not visualizable by this GUI.");
} else {
select_channels.setSelectedItem(name);
}
}
}
private void initComponents() {
Vector<JTextComponent> texts = new Vector<JTextComponent>();
setBorder(new TitledBorder("License"));
check_as_on_bundle = new JCheckBox("as on bundle");
map.put("check_as_on_bundle", check_as_on_bundle);
check_as_on_bundle.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
check_as_on_bundle_changed(check_as_on_bundle.isSelected());
}
});
label_timeframe_from = new JLabel("timeframe from");
text_timeframe_from_datetime = new JTextField("");
text_timeframe_from_datetime.setName("text_timeframe_from_datetime");
map.put("text_timeframe_from_datetime", text_timeframe_from_datetime);
texts.add(text_timeframe_from_datetime);
text_timeframe_from_datetime.addFocusListener(new FocusAdapter() {
public void focusLost(FocusEvent evt) {
if (evt.isTemporary()) {
return;
}
try {
text_timeframe_from_datetime.setText(lb.getTimeframeFromText());
} catch (Exception ex) {}
}
});
label_timeframe_to = new JLabel("timeframe until");
text_timeframe_to_datetime = new JTextField("");
text_timeframe_to_datetime.setName("text_timeframe_to_datetime");
map.put("text_timeframe_to_datetime", text_timeframe_to_datetime);
texts.add(text_timeframe_to_datetime);
text_timeframe_to_datetime.addFocusListener(new FocusAdapter() {
public void focusLost(FocusEvent evt) {
if (evt.isTemporary()) {
return;
}
try {
text_timeframe_to_datetime.setText(lb.getTimeframeToText());
} catch (Exception ex) {}
}
});
label_pricing = new JLabel("pricing");
select_pricing = new JComboBox();
select_pricing_model = new DefaultComboBoxModel();
select_pricing.setModel(select_pricing_model);
init_select_pricing_model();
map.put("select_pricing", select_pricing);
select_pricing.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
select_pricing_changed(select_pricing.getSelectedIndex());
}
});
text_pricing = new JTextField("");
text_pricing.setName("text_pricing");
map.put("text_pricing", text_pricing);
texts.add(text_pricing);
label_h_filler = new JLabel("");
check_streaming_allowed = new JCheckBox("streaming allowed");
map.put("check_streaming_allowed", check_streaming_allowed);
check_streaming_allowed.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
check_streaming_allowed_changed(check_streaming_allowed.isSelected());
}
});
label_channels = new JLabel("channels");
select_channels = new JComboBox();
select_channels_model = new DefaultComboBoxModel();
select_channels.setModel(select_channels_model);
init_select_channels_model();
map.put("select_channels", select_channels);
select_channels.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
select_channels_changed(select_channels.getSelectedIndex());
}
});
panel_territories = new JPanel();
panel_territories.setBorder(new TitledBorder("Territorial"));
label_filler = new JLabel("");
DocumentInstantChangeListener chl = new DocumentInstantChangeListener(this);
for (JTextComponent text : texts) {
if (text instanceof JTextField) {
chl.addTextComponent(text);
}
}
}
public JComponent getComponent(String name) {
return map.get(name);
}
public void setText(String name, String value) {
JComponent c = map.get(name);
if (c!=null && c instanceof JTextComponent) {
((JTextComponent)c).setText(value);
}
}
public String getText(String name) {
JComponent c = map.get(name);
if (c!=null && c instanceof JTextComponent) {
return ((JTextComponent)c).getText();
}
return null;
}
public void setCheck(String name, boolean value) {
JComponent c = map.get(name);
if (c!=null && c instanceof JCheckBox) {
((JCheckBox)c).setSelected(value);
}
}
public boolean getCheck(String name) {
JComponent c = map.get(name);
if (c!=null && c instanceof JCheckBox) {
return ((JCheckBox)c).isSelected();
}
throw new RuntimeException("name "+name+" not a JCheckBox");
}
public void initLayout() {
GridBagLayout gbl = new GridBagLayout();
setLayout(gbl);
GridBagConstraints gbc = new GridBagConstraints();
// Component: check_as_on_bundle
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 2;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(check_as_on_bundle,gbc);
add(check_as_on_bundle);
// Component: label_timeframe_from
gbc.gridx = 0;
gbc.gridy = 1;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_timeframe_from,gbc);
add(label_timeframe_from);
// Component: text_timeframe_from_datetime
gbc.gridx = 1;
gbc.gridy = 1;
gbc.gridwidth = 2;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(text_timeframe_from_datetime,gbc);
add(text_timeframe_from_datetime);
// Component: label_timeframe_to
gbc.gridx = 0;
gbc.gridy = 2;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_timeframe_to,gbc);
add(label_timeframe_to);
// Component: text_timeframe_to_datetime
gbc.gridx = 1;
gbc.gridy = 2;
gbc.gridwidth = 2;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(text_timeframe_to_datetime,gbc);
add(text_timeframe_to_datetime);
// Component: label_pricing
gbc.gridx = 0;
gbc.gridy = 3;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_pricing,gbc);
add(label_pricing);
// Component: select_pricing
gbc.gridx = 1;
gbc.gridy = 3;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 40.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(select_pricing,gbc);
add(select_pricing);
// Component: text_pricing
gbc.gridx = 2;
gbc.gridy = 3;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 40.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(text_pricing,gbc);
add(text_pricing);
// Component: label_h_filler
gbc.gridx = 3;
gbc.gridy = 3;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 20.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_h_filler,gbc);
add(label_h_filler);
// Component: check_streaming_allowed
gbc.gridx = 0;
gbc.gridy = 4;
gbc.gridwidth = 2;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(check_streaming_allowed,gbc);
add(check_streaming_allowed);
// Component: label_channels
gbc.gridx = 0;
gbc.gridy = 5;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_channels,gbc);
add(label_channels);
// Component: select_channels
gbc.gridx = 1;
gbc.gridy = 5;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(select_channels,gbc);
add(select_channels);
// Component: panel_territories
gbc.gridx = 0;
gbc.gridy = 6;
gbc.gridwidth = 3;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 0.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(panel_territories,gbc);
add(panel_territories);
// Component: label_filler
gbc.gridx = 0;
gbc.gridy = 7;
gbc.gridwidth = 1;
gbc.gridheight = 1;
gbc.weightx = 0.0;
gbc.weighty = 50.0;
gbc.anchor = GridBagConstraints.CENTER;
gbc.fill = GridBagConstraints.BOTH;
gbc.ipadx = 0;
gbc.ipady = 0;
gbc.insets = new Insets(2,2,2,2);
gbl.setConstraints(label_filler,gbc);
add(label_filler);
JLabel filler = new JLabel();
}
private void setVisibility(boolean visible) {
label_timeframe_from.setVisible(visible);
label_timeframe_to.setVisible(visible);
label_pricing.setVisible(visible);
label_channels.setVisible(visible);
text_timeframe_from_datetime.setVisible(visible);
text_timeframe_to_datetime.setVisible(visible);
select_pricing.setVisible(visible);
text_pricing.setVisible(visible);
text_pricing.setVisible(visible);
check_streaming_allowed.setVisible(visible);
select_channels.setVisible(visible);
select_channels.setVisible(visible);
panel_territories.setVisible(visible);
}
// ----- action methods --------------------------------
public void check_as_on_bundle_changed(boolean selected) {
if (!doUpdate) return;
if (lb==null) return;
lb.as_on_bundle(selected);
update(lb);
//setVisibility(!selected);
notifyChanges();
}
public void init_select_pricing_model() {
select_pricing_model.removeAllElements();
select_pricing_model.addElement("[other]");
select_pricing_model.addElement("LOW");
select_pricing_model.addElement("MEDIUM");
select_pricing_model.addElement("HIGH");
}
public void select_pricing_changed(int selected) {
if (!doUpdate) return;
int sel = select_pricing.getSelectedIndex();
if (sel == 0) { //other
if (lb!=null) {
lb.pricing_pricecode(null);
lb.pricing_wholesale(text_pricing.getText());
notifyChanges();
}
text_pricing.setEnabled(true);
} else {
if (lb!=null) {
lb.pricing_pricecode((String)select_pricing.getSelectedItem());
lb.pricing_wholesale(null);
notifyChanges();
}
text_pricing.setText("");
text_pricing.setEnabled(false);
}
}
public void check_streaming_allowed_changed(boolean selected) {
if (!doUpdate) return;
boolean sa = check_streaming_allowed.isSelected();
if (sa) {
select_channels.setEnabled(true);
} else {
select_channels.setEnabled(false);
}
if (lb==null) return;
lb.streaming_allowed(sa);
if (sa) {
setSelectChannels(lb);
}
notifyChanges();
}
public void init_select_channels_model() {
select_channels_model.removeAllElements();
select_channels_model.addElement("[not set]");
select_channels_model.addElement("all");
select_channels_model.addElement("ad supported");
select_channels_model.addElement("premium");
}
public void select_channels_changed(int selected) {
if (!doUpdate) return;
if (lb==null) return;
if (selected==0) {
lb.removeChannels();
} else {
lb.removeAllChannels();
lb.addChannel((String)select_channels.getSelectedItem(), true);
}
notifyChanges();
}
public void text_changed(JTextComponent text) {
if (!doUpdate) return;
if (lb==null) return;
String t = text.getText();
if (text == text_timeframe_from_datetime) {
try {
lb.timeframe_from_datetime(SecurityHelper.parseDate(t));
} catch (Exception ex) {
ex.printStackTrace();
}
}
else if (text == text_timeframe_to_datetime) {
try {
lb.timeframe_to_datetime(SecurityHelper.parseDate(t));
} catch (Exception ex) {
ex.printStackTrace();
}
}
else if (text == text_pricing) {
lb.pricing_wholesale(t);
}
notifyChanges();
//text.requestFocusInWindow();
//text.transferFocus();
}
//observable
private Vector<MyObserver> observers = new Vector<MyObserver>();
public void addObserver(MyObserver observer) {
observers.add(observer);
}
public void notifyChanges() {
for (MyObserver ob : observers) {
ob.notifyChange(this);
}
}
}