From 8cc400f9108bdef256c05c3f7c1265b3e544fa22 Mon Sep 17 00:00:00 2001
From: Richard Pajersky <xpajersk@fi.muni.cz>
Date: Wed, 9 Dec 2020 19:04:24 +0100
Subject: [PATCH] Added New Project drop down menu under File, setup for other
 options

---
 .../analyst/gui/SymmetryEstimator.java        | 30 +++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java

diff --git a/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java b/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java
new file mode 100644
index 00000000..97ce1b82
--- /dev/null
+++ b/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java
@@ -0,0 +1,30 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package cz.fidentis.analyst.gui;
+
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import org.openide.awt.ActionID;
+import org.openide.awt.ActionReference;
+import org.openide.awt.ActionRegistration;
+import org.openide.util.NbBundle.Messages;
+
+@ActionID(
+        category = "File",
+        id = "cz.fidentis.analyst.gui.SymmetryEstimator"
+)
+@ActionRegistration(
+        displayName = "#CTL_SymmetryEstimator"
+)
+@ActionReference(path = "Menu/File/NewProject", position = 1300, separatorAfter = 1350)
+@Messages("CTL_SymmetryEstimator=Symmetry Estimator")
+public final class SymmetryEstimator implements ActionListener {
+
+    @Override
+    public void actionPerformed(ActionEvent e) {
+        // TODO implement action body
+    }
+}
-- 
GitLab