diff --git a/src/core/src/main/java/com/bbn/openmap/layer/classification/ClassificationLayer.java b/src/core/src/main/java/com/bbn/openmap/layer/classification/ClassificationLayer.java new file mode 100644 index 00000000..e0257f3c --- /dev/null +++ b/src/core/src/main/java/com/bbn/openmap/layer/classification/ClassificationLayer.java @@ -0,0 +1,240 @@ +package com.bbn.openmap.layer.classification; + +import com.bbn.openmap.layer.OMGraphicHandlerLayer; +import com.bbn.openmap.omGraphics.OMGraphicList; +import com.bbn.openmap.omGraphics.OMText; +import com.bbn.openmap.util.PropUtils; +import java.awt.Color; +import java.awt.Component; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.GridBagConstraints; +import java.awt.GridBagLayout; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.util.Properties; +import javax.swing.JComboBox; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTextArea; +import javax.swing.JTextField; +import javax.swing.event.DocumentEvent; +import javax.swing.event.DocumentListener; + +/** +* An OpenMap Layer to display typical header/footer/declass blocks +* +*
+############################
+# Example Properties for a classification layer
+classification.class=com.bbn.openmap.layer.classification.ClassificationLayer
+classification.prettyName=Classification
+# Classification, header and footer
+classification.classification=UNCLASSIFIED
+# Declass block, bottom left
+classification.declassBlock=Classified by: Someone\nDerived from: Multiple Sources\nDeclassify on: 2020-02-15\nYour Organisation\nStreet, City, Zip
+# If provided, this will override the automatic color for the header/footer
+classification.classColorOverride=008C54
+############################
+
+*
+* @author Gary Briggs
+*/
+public class ClassificationLayer extends OMGraphicHandlerLayer {
+
+ public final static String[] CLASSIFICATIONS = new String[] {
+ "UNCLASSIFIED",
+ "UNCLASSIFIED//FOR OFFICIAL USE ONLY",
+ "CONFIDENTIAL",
+ "SECRET",
+ "SECRET//NOFORN",
+ "TOP SECRET",
+ "UNMARKED"
+ };
+
+ String classification = "UNCLASSIFIED";
+ String declassBlockText = "Classified by: Someone\n"
+ + "Derived from: Multiple Sources\n"
+ + "Declassify on: 2020-02-15\n"
+ + "Your Organisation\n"
+ + "Street, City, Zip";
+ Color classColorOverride = null;
+ String classColorOverrideString = null;
+
+ public final static String classificationProperty = "classification";
+ public final static String declassBlockProperty = "declassBlock";
+ public final static String classColorOverrideProperty = "classColorOverride";
+
+ @Override
+ public void setProperties(String prefix, Properties props) {
+ super.setProperties(prefix, props);
+ String realPrefix = PropUtils.getScopedPropertyPrefix(this);
+
+ System.out.println();
+ classification = props.getProperty(realPrefix + classificationProperty, classification);
+ declassBlockText = props.getProperty(realPrefix + declassBlockProperty, declassBlockText);
+ classColorOverrideString = props.getProperty(realPrefix + classColorOverrideProperty, null);
+ if(null != classColorOverrideString) {
+ classColorOverride = PropUtils.parseColor(classColorOverrideString);
+ }
+
+ }
+
+ @Override
+ public Properties getProperties(Properties props) {
+ props = super.getProperties(props);
+
+ String prefix = PropUtils.getScopedPropertyPrefix(this);
+
+ props.put(prefix + "class", this.getClass().getName());
+ props.put(prefix + classificationProperty, classification);
+ props.put(prefix + declassBlockProperty, declassBlockText);
+ if(null != classColorOverride) {
+ props.put(prefix + classColorOverrideProperty, classColorOverrideString);
+ }
+ return props;
+ }
+
+ @Override
+ public Properties getPropertyInfo(Properties list) {
+ list = super.getPropertyInfo(list);
+ list.put(classificationProperty, "Classification to mark top and bottom");
+ list.put(declassBlockProperty, "Declassify Block");
+ list.put(classColorOverrideProperty, "Force classification to be this color");
+ return list;
+ }
+
+ @Override
+ public Component getGUI() {
+ JPanel pan = new JPanel(new GridBagLayout());
+ GridBagConstraints gbc = new GridBagConstraints();
+ gbc.gridwidth = GridBagConstraints.REMAINDER;
+ gbc.fill = GridBagConstraints.HORIZONTAL;
+
+ JLabel classlabel = new JLabel("You may edit this combo box");
+
+ final JComboBox