-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fucking bugs everywhere!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! But i fix them with happiness :)
- Loading branch information
Showing
44 changed files
with
1,363 additions
and
826 deletions.
There are no files selected for viewing
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.layout.BorderPane?> | ||
|
||
<fx:root xmlns:fx="http://javafx.com/fxml/1" type="BorderPane"> | ||
<!-- TODO Add Nodes --> | ||
</fx:root> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import com.jfoenix.controls.JFXButton?> | ||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.Cursor?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.MenuButton?> | ||
<?import javafx.scene.control.MenuItem?> | ||
<?import javafx.scene.control.ScrollPane?> | ||
<?import javafx.scene.layout.BorderPane?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.TilePane?> | ||
|
||
<fx:root prefHeight="325.0" prefWidth="389.0" style="-fx-background-color: transparent;" stylesheets="@../style/application.css" type="BorderPane" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1"> | ||
<center> | ||
<TilePane fx:id="tilePane" alignment="CENTER" hgap="5.0" prefColumns="8" prefRows="0" style="-fx-background-color: white;" vgap="5.0" BorderPane.alignment="CENTER" /> | ||
</center> | ||
<padding> | ||
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> | ||
</padding> | ||
<fx:root minHeight="1.0" minWidth="1.0" prefHeight="375.0" prefWidth="460.0" style="-fx-background-color: rgb(255,255,255,0.9);" stylesheets="@../style/application.css" type="BorderPane" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1"> | ||
<top> | ||
<HBox fx:id="bottomHBox" alignment="CENTER" spacing="10.0" BorderPane.alignment="CENTER"> | ||
<HBox fx:id="bottomHBox" alignment="CENTER_LEFT" minHeight="1.0" minWidth="1.0" spacing="10.0"> | ||
<children> | ||
<JFXButton fx:id="resetFilters" focusTraversable="false" styleClass="arrowButton2" text="Reset Filters" /> | ||
<MenuButton fx:id="effects" mnemonicParsing="false" popupSide="RIGHT" text="Effects"> | ||
<Button fx:id="resetFilters" mnemonicParsing="false" text="Reset All"> | ||
<cursor> | ||
<Cursor fx:constant="HAND" /> | ||
</cursor> | ||
</Button> | ||
<MenuButton fx:id="presets" mnemonicParsing="false" popupSide="RIGHT" text="Presets"> | ||
<items> | ||
<MenuItem mnemonicParsing="false" text="Action 1" /> | ||
<MenuItem mnemonicParsing="false" text="Action 2" /> | ||
</items> | ||
</MenuButton> | ||
</children> | ||
<BorderPane.margin> | ||
<Insets bottom="10.0" top="5.0" /> | ||
<Insets /> | ||
</BorderPane.margin> | ||
<padding> | ||
<Insets bottom="5.0" top="5.0" /> | ||
<Insets bottom="5.0" left="5.0" top="2.0" /> | ||
</padding> | ||
</HBox> | ||
</top> | ||
<center> | ||
<ScrollPane fitToHeight="true" fitToWidth="true" BorderPane.alignment="CENTER"> | ||
<content> | ||
<TilePane fx:id="tilePane" alignment="TOP_CENTER" hgap="5.0" prefColumns="0" prefHeight="100.0" prefRows="0" prefWidth="100.0" style="-fx-background-color: #202020;" vgap="5.0" /> | ||
</content> | ||
</ScrollPane> | ||
</center> | ||
</fx:root> |
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
2 changes: 1 addition & 1 deletion
2
src/aaTester/DJDiscResizer.java → src/aaTesterOnlyCode/DJDiscResizer.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
2 changes: 1 addition & 1 deletion
2
src/aaTester/FXMLPrototype.java → src/aaTesterOnlyCode/FXMLPrototype.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import java.io.IOException; | ||
import java.util.logging.Level; | ||
|
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
2 changes: 1 addition & 1 deletion
2
src/aaTester/InternetConnectionTester.java → ...terOnlyCode/InternetConnectionTester.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* | ||
*/ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import application.tools.InfoTool; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/aaTester/JavaSoundRecorder.java → src/aaTesterOnlyCode/JavaSoundRecorder.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import javax.sound.sampled.*; | ||
import java.io.*; | ||
|
2 changes: 1 addition & 1 deletion
2
src/aaTester/MemTester.java → src/aaTesterOnlyCode/MemTester.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* | ||
*/ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import com.jezhumble.javasysmon.JavaSysMon; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/aaTester/PopupDemoTester.java → src/aaTesterOnlyCode/PopupDemoTester.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
2 changes: 1 addition & 1 deletion
2
src/aaTester/PropertiesTesting.java → src/aaTesterOnlyCode/PropertiesTesting.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import java.io.FileInputStream; | ||
import java.io.FileOutputStream; | ||
|
2 changes: 1 addition & 1 deletion
2
src/aaTester/ServicePrototype.java → src/aaTesterOnlyCode/ServicePrototype.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
2 changes: 1 addition & 1 deletion
2
src/aaTester/StackPaneResizer.java → src/aaTesterOnlyCode/StackPaneResizer.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package aaTester; | ||
package aaTesterOnlyCode; | ||
|
||
import javafx.application.Application; | ||
import javafx.scene.Scene; | ||
|
Oops, something went wrong.