-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* renamed `prepareFixedPanels()` to `initializePanels()` for paneled pages * test improvements: * some refactoring * import optimization * docs improvements
- Loading branch information
1 parent
dec140e
commit 75ab6c4
Showing
51 changed files
with
482 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 0 additions & 95 deletions
95
src/test/java/graphicsEngineDemo/d2_overlayDemo/ButtonListener.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
src/test/java/graphicsEngineDemo/d2_overlayDemo/Overlay.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/test/java/graphicsEngineDemo/d2_overlayDemo/buttons/Button1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package graphicsEngineDemo.d2_overlayDemo.buttons; | ||
|
||
import java.awt.event.ActionListener; | ||
|
||
import org.jetbrains.annotations.Nullable; | ||
|
||
import graphicsEngine.parts.SimpleJButton; | ||
|
||
/** | ||
* A simple button for showing the overlay. | ||
*/ | ||
public class Button1 extends SimpleJButton { | ||
public static final String ACTION_COMMAND = "show"; | ||
|
||
public Button1(@Nullable ActionListener actionListener) { | ||
super("Show", ACTION_COMMAND, actionListener); | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/test/java/graphicsEngineDemo/d2_overlayDemo/buttons/Button2.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package graphicsEngineDemo.d2_overlayDemo.buttons; | ||
|
||
import java.awt.event.ActionListener; | ||
|
||
import org.jetbrains.annotations.Nullable; | ||
|
||
import graphicsEngine.parts.SimpleJButton; | ||
|
||
/** | ||
* A simple button for hiding the overlay. | ||
*/ | ||
public class Button2 extends SimpleJButton { | ||
public static final String ACTION_COMMAND = "hide"; | ||
|
||
public Button2(@Nullable ActionListener actionListener) { | ||
super("Hide", ACTION_COMMAND, actionListener); | ||
} | ||
} |
Oops, something went wrong.