X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d-demos.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fexamples%2Flauncher%2FMenuPanel.java;h=0a6079823cd778a85954260371fea74a4638ed1e;hp=9a5dc5854a6302b99e4e367feaea17afbf6ab42e;hb=fd099c489d7f4df2624c07d1d3ba24f658b147a7;hpb=63b799f7add2ebb5cd30b50c2581bc246f6e7b82 diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java index 9a5dc58..0a60798 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/examples/launcher/MenuPanel.java @@ -1,10 +1,8 @@ /* - * Sixth 3D engine demos. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Sixth 3D engine demos. Author: Svjatoslav Agejenko. + * This project is released under Creative Commons Zero (CC0) license. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU Lesser General Public License - * or later as published by the Free Software Foundation. - */ +*/ package eu.svjatoslav.sixth.e3d.examples.launcher; @@ -12,7 +10,6 @@ import eu.svjatoslav.sixth.e3d.examples.*; import javax.swing.*; import java.awt.event.ActionEvent; -import java.io.IOException; class MenuPanel extends JPanel { private static final long serialVersionUID = 2012721856427052560L; @@ -25,13 +22,12 @@ class MenuPanel extends JPanel { sequentialGroup.addComponent(new JButton(new ShowMathGraphs())); sequentialGroup.addComponent(new JButton(new ShowPointCloud())); sequentialGroup.addComponent(new JButton(new ShowRain())); - sequentialGroup.addComponent(new JButton(new ShowSinusMap())); sequentialGroup.addComponent(new JButton(new ShowTextEditors())); sequentialGroup.addComponent(new JButton(new ShowGameOfLife())); sequentialGroup.addComponent(new JButton(new ShowRandomPolygons())); } - private class ShowTextEditors extends AbstractAction { + private static class ShowTextEditors extends AbstractAction { ShowTextEditors() { putValue(NAME, "Text editors"); } @@ -42,18 +38,8 @@ class MenuPanel extends JPanel { } } - private class ShowSinusMap extends AbstractAction { - ShowSinusMap() { - putValue(NAME, "Wireframe sphere and ploygon landscape"); - } - - @Override - public void actionPerformed(final ActionEvent e) { - SphereDemo.main(null); - } - } - private class ShowRain extends AbstractAction { + private static class ShowRain extends AbstractAction { ShowRain() { putValue(NAME, "Raining numbers"); } @@ -64,7 +50,7 @@ class MenuPanel extends JPanel { } } - private class ShowPointCloud extends AbstractAction { + private static class ShowPointCloud extends AbstractAction { ShowPointCloud() { putValue(NAME, "Pointcloud galaxy"); } @@ -75,22 +61,18 @@ class MenuPanel extends JPanel { } } - private class ShowMathGraphs extends AbstractAction { + private static class ShowMathGraphs extends AbstractAction { ShowMathGraphs() { putValue(NAME, "Mathematical graphs"); } @Override public void actionPerformed(final ActionEvent e) { - try { - GraphDemo.main(null); - } catch (final IOException e1) { - e1.printStackTrace(); - } + GraphDemo.main(null); } } - private class ShowRandomPolygons extends AbstractAction { + private static class ShowRandomPolygons extends AbstractAction { ShowRandomPolygons() { putValue(NAME, "Random polygons"); } @@ -101,7 +83,7 @@ class MenuPanel extends JPanel { } } - private class ShowOctree extends AbstractAction { + private static class ShowOctree extends AbstractAction { ShowOctree() { putValue(NAME, "Volumetric Octree"); } @@ -112,7 +94,7 @@ class MenuPanel extends JPanel { } } - private class ShowGameOfLife extends AbstractAction { + private static class ShowGameOfLife extends AbstractAction { ShowGameOfLife() { putValue(NAME, "Game of Life"); }