Skip to content

Commit c40517f

Browse files
committed
Initial look for about page
1 parent 6789ff6 commit c40517f

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

lib/jruby_visualizer/ui/about.fxml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?import java.lang.*?>
4+
<?import java.util.*?>
5+
<?import javafx.scene.control.*?>
6+
<?import javafx.scene.image.*?>
7+
<?import javafx.scene.layout.*?>
8+
<?import javafx.scene.paint.*?>
9+
<?import javafx.scene.text.*?>
10+
11+
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="300.0" prefWidth="500.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2">
12+
<children>
13+
<VBox alignment="CENTER" prefHeight="300.0" prefWidth="500.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
14+
<children>
15+
<HBox alignment="CENTER" prefHeight="-1.0" prefWidth="-1.0">
16+
<children>
17+
<Label text="JRuby:" />
18+
<Hyperlink text="www.jruby.org">
19+
<font>
20+
<Font name="Monospaced Regular" size="13.0" />
21+
</font>
22+
</Hyperlink>
23+
</children>
24+
</HBox>
25+
<ImageView fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true">
26+
<image>
27+
<Image url="@img/jruby-logo.png" />
28+
</image>
29+
</ImageView>
30+
<Hyperlink text="The JRuby Visualizer">
31+
<font>
32+
<Font name="System Bold" size="20.0" />
33+
</font>
34+
</Hyperlink>
35+
<TextArea editable="false" prefWidth="200.0" text="visualizes JRuby's Compiler and Interpreter artifacts:&#10;- the Abstract Syntax Tree (AST)&#10;- the Intermediate Representation (IR)&#10;- the execution of compiler passes on IR&#10;- a visualization for the Control Flow Graphs (CFGs) on JRuby Scopes" wrapText="true" />
36+
</children>
37+
</VBox>
38+
</children>
39+
</AnchorPane>

0 commit comments

Comments
 (0)