Skip to content

Commit

Permalink
new jar
Browse files Browse the repository at this point in the history
  • Loading branch information
supaFool committed Sep 3, 2013
1 parent d4c233d commit 3fb4e83
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 11 deletions.
Binary file modified out/artifacts/TarotBuddy_DEV/Tarot Buddy-DEV.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion out/artifacts/TarotBuddy_DEV/Tarot Buddy-DEV.jnlp
Expand Up @@ -11,7 +11,7 @@
</resources>
<resources>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="Tarot Buddy-DEV.jar" size="1088756" download="eager" />
<jar href="Tarot Buddy-DEV.jar" size="1089642" download="eager" />
</resources>
<applet-desc width="600" height="400" main-class="com.javafx.main.NoJavaFXFallback" name="Tarot Buddy-DEV" >
<param name="requiredFXVersion" value="2.2+"/>
Expand Down
Binary file modified out/production/TarotBuddy/controller/ReadingController.class
Binary file not shown.
Binary file modified out/production/TarotBuddy/controller/TCSController.class
Binary file not shown.
Binary file modified out/production/TarotBuddy/runner/Main.class
Binary file not shown.
66 changes: 56 additions & 10 deletions out/production/TarotBuddy/runner/TCS.fxml
Expand Up @@ -2,23 +2,24 @@

<?scenebuilder-background-color 0x000000ff?>

<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.effect.*?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.paint.Color?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<?import javafx.scene.text.*?>
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity"
prefHeight="572.0" prefWidth="778.0" xmlns:fx="http://javafx.com/fxml/1"
prefHeight="727.0" prefWidth="778.0" xmlns:fx="http://javafx.com/fxml/1"
xmlns="http://javafx.com/javafx/2.2" fx:controller="controller.TCSController">
<children>
<HBox id="HBox" alignment="CENTER" layoutX="74.0" layoutY="32.0" spacing="15.0">
<children>
<VBox id="VBox" alignment="CENTER" spacing="5.0">
<children>
<ImageView fx:id="past" fitHeight="330.0" fitWidth="200.0" pickOnBounds="true"
preserveRatio="true">
<ImageView fx:id="past" fitHeight="330.0" fitWidth="200.0" onMouseClicked="#showPastMeaning"
pickOnBounds="true" preserveRatio="true">
<effect>
<DropShadow color="#66ffed" height="32.0" radius="15.5" spread="0.05555555555555555"
width="32.0">
Expand All @@ -44,8 +45,8 @@
</VBox>
<VBox id="VBox" alignment="CENTER" spacing="5.0">
<children>
<ImageView fx:id="present" fitHeight="330.0" fitWidth="200.0" pickOnBounds="true"
preserveRatio="true">
<ImageView fx:id="present" fitHeight="330.0" fitWidth="200.0"
onMouseClicked="#showPresentMeaning" pickOnBounds="true" preserveRatio="true">
<effect>
<DropShadow height="32.0" radius="15.5" spread="0.05555555555555555" width="32.0">
<color>
Expand All @@ -70,8 +71,8 @@
</VBox>
<VBox id="VBox" alignment="CENTER" spacing="5.0">
<children>
<ImageView fx:id="future" fitHeight="330.0" fitWidth="200.0" pickOnBounds="true"
preserveRatio="true">
<ImageView fx:id="future" fitHeight="330.0" fitWidth="200.0" onMouseClicked="#showFutureMeaning"
pickOnBounds="true" preserveRatio="true">
<effect>
<DropShadow color="$x3" height="32.0" radius="15.5" spread="0.05555555555555555"
width="32.0">
Expand All @@ -91,7 +92,7 @@
</VBox>
</children>
</HBox>
<HBox id="HBox" alignment="CENTER" layoutX="596.0" layoutY="525.0" opacity="0.43" spacing="5.0">
<HBox id="HBox" alignment="CENTER" layoutX="604.0" layoutY="692.0" opacity="0.43" spacing="5.0">
<children>
<Button mnemonicParsing="false" onAction="#showNext" text="Show Next Card"/>
<Button mnemonicParsing="false" onAction="#done" text="Done"/>
Expand All @@ -104,5 +105,50 @@
</Reflection>
</effect>
</HBox>
<StackPane layoutX="14.0" layoutY="515.0" prefHeight="198.0" prefWidth="556.0">
<children>
<ScrollPane hbarPolicy="NEVER" pannable="true" prefHeight="200.0" prefWidth="200.0" vbarPolicy="NEVER">
<content>
<StackPane id="StackPane" prefHeight="183.0" prefWidth="541.0">
<children>
<VBox id="VBox" alignment="CENTER" spacing="25.0">
<children>
<Text fx:id="meaningTitle" fill="BLACK" fontSmoothingType="GRAY"
strokeType="OUTSIDE" strokeWidth="0.0" text="" textAlignment="LEFT"
wrappingWidth="450.0">
<effect>
<Reflection bottomOpacity="0.38095238095238093" fraction="1.0"
topOpacity="0.7380952380952381"/>
</effect>
<font>
<Font name="Times New Roman Bold" size="16.0"/>
</font>
</Text>
<Text fx:id="meaningText" fill="BLACK" fontSmoothingType="GRAY"
strokeType="OUTSIDE" strokeWidth="0.0" text="" textAlignment="CENTER"
wrappingWidth="450.0">
<font>
<Font name="Rod" size="16.0"/>
</font>
</Text>
</children>
<padding>
<Insets bottom="50.0" top="25.0"/>
</padding>
</VBox>
</children>
</StackPane>
</content>
</ScrollPane>
</children>
<effect>
<InnerShadow choke="0.5714285714285715" height="170.25396825396825" radius="105.81349206349206"
width="255.0">
<input>
<SepiaTone/>
</input>
</InnerShadow>
</effect>
</StackPane>
</children>
</AnchorPane>

0 comments on commit 3fb4e83

Please sign in to comment.