|
|
@@ -12,7 +12,7 @@ ifdef::env-github,env-browser[:outfilesuffix: .adoc]
|
|
|
|
|
|
The Panel class extends Element and, like the Label class, it’s only purpose is to provide:
|
|
|
|
|
|
-. The 3 standard constructors as shown in the link:http://jmonkeyengine.org/wiki/doku.php/jme3:contributions:tonegodgui:quickstart[Quick Start Guide]
|
|
|
+. The 3 standard constructors as shown in the <<jme3/contributions/tonegodgui/quickstart#,Quick Start Guide>>
|
|
|
. Default style information
|
|
|
|
|
|
*Constructor 1:*+
|
|
|
@@ -61,7 +61,7 @@ Panel panel = new Panel(screen, “panel”, new Vector2f(15, 15), new Vector2f(
|
|
|
|
|
|
----
|
|
|
|
|
|
-The Panel class creates a resizable, movable panel (link:http://jmonkeyengine.org/wiki/doku.php/jme3:contributions:tonegodgui:window[Window] without a dragbar). The entire panel is clickable for moving unless otherwise covered by added child Elements that have not called:
|
|
|
+The Panel class creates a resizable, movable panel (<<jme3/contributions/tonegodgui/window#,Window>> without a dragbar). The entire panel is clickable for moving unless otherwise covered by added child Elements that have not called:
|
|
|
|
|
|
[source,java]
|
|
|
----
|
|
|
@@ -70,4 +70,4 @@ setIgnoreMouse(true);
|
|
|
|
|
|
----
|
|
|
|
|
|
-You can disable any of the default behaviors of the Panel class by using the methods described in the link:http://jmonkeyengine.org/wiki/doku.php/jme3:contributions:tonegodgui:element[Element] class.
|
|
|
+You can disable any of the default behaviors of the Panel class by using the methods described in the <<jme3/contributions/tonegodgui/element#,Element>> class.
|