diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml new file mode 100644 index 000000000..378766f67 --- /dev/null +++ b/.idea/codeStyleSettings.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 000000000..853b5f825 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/fileTemplates/JavaFXApplication.java b/.idea/fileTemplates/JavaFXApplication.java new file mode 100644 index 000000000..f9b5a47c2 --- /dev/null +++ b/.idea/fileTemplates/JavaFXApplication.java @@ -0,0 +1,17 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "") package ${PACKAGE_NAME};#end + +import javafx.application.Application; +import javafx.stage.Stage; + +public class ${NAME} extends Application { + + public static void main(String[] args) { + launch(args); + } + + @Override + public void start(Stage primaryStage) { + + } +} diff --git a/.idea/fileTemplates/Singleton.java b/.idea/fileTemplates/Singleton.java new file mode 100644 index 000000000..9f8dcba1d --- /dev/null +++ b/.idea/fileTemplates/Singleton.java @@ -0,0 +1,12 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end +public class ${NAME}{ + private static ${NAME} ourInstance = new ${NAME}(); + + public static ${NAME} getInstance() { + return ourInstance; + } + + private ${NAME}() { + } +} diff --git a/.idea/fileTemplates/includes/HMCL.java b/.idea/fileTemplates/includes/HMCL.java new file mode 100644 index 000000000..8ba77f53c --- /dev/null +++ b/.idea/fileTemplates/includes/HMCL.java @@ -0,0 +1,18 @@ +/* + * Hello Minecraft! Launcher. + * Copyright (C) 2017 huangyuhui + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see {http://www.gnu.org/licenses/}. + */ + \ No newline at end of file diff --git a/.idea/fileTemplates/internal/AnnotationType.java b/.idea/fileTemplates/internal/AnnotationType.java new file mode 100644 index 000000000..4c8f31d13 --- /dev/null +++ b/.idea/fileTemplates/internal/AnnotationType.java @@ -0,0 +1,4 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end +public @interface ${NAME} { +} diff --git a/.idea/fileTemplates/internal/Class.java b/.idea/fileTemplates/internal/Class.java new file mode 100644 index 000000000..307d238f1 --- /dev/null +++ b/.idea/fileTemplates/internal/Class.java @@ -0,0 +1,4 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end +public class ${NAME} { +} diff --git a/.idea/fileTemplates/internal/Enum.java b/.idea/fileTemplates/internal/Enum.java new file mode 100644 index 000000000..f9ed71e48 --- /dev/null +++ b/.idea/fileTemplates/internal/Enum.java @@ -0,0 +1,4 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end +public enum ${NAME} { +} diff --git a/.idea/fileTemplates/internal/Interface.java b/.idea/fileTemplates/internal/Interface.java new file mode 100644 index 000000000..013564ecb --- /dev/null +++ b/.idea/fileTemplates/internal/Interface.java @@ -0,0 +1,4 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end +public interface ${NAME} { +} diff --git a/.idea/fileTemplates/internal/Kotlin Class.kt b/.idea/fileTemplates/internal/Kotlin Class.kt new file mode 100644 index 000000000..3ea22c045 --- /dev/null +++ b/.idea/fileTemplates/internal/Kotlin Class.kt @@ -0,0 +1,5 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME} +#end +class ${NAME} { +} \ No newline at end of file diff --git a/.idea/fileTemplates/internal/Kotlin Enum.kt b/.idea/fileTemplates/internal/Kotlin Enum.kt new file mode 100644 index 000000000..8c3294b5a --- /dev/null +++ b/.idea/fileTemplates/internal/Kotlin Enum.kt @@ -0,0 +1,5 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME} +#end +enum class ${NAME} { +} \ No newline at end of file diff --git a/.idea/fileTemplates/internal/Kotlin File.kt b/.idea/fileTemplates/internal/Kotlin File.kt new file mode 100644 index 000000000..5d389eb39 --- /dev/null +++ b/.idea/fileTemplates/internal/Kotlin File.kt @@ -0,0 +1,3 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME} +#end diff --git a/.idea/fileTemplates/internal/Kotlin Interface.kt b/.idea/fileTemplates/internal/Kotlin Interface.kt new file mode 100644 index 000000000..0c119e2ee --- /dev/null +++ b/.idea/fileTemplates/internal/Kotlin Interface.kt @@ -0,0 +1,5 @@ +#parse("HMCL.java") +#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME} +#end +interface ${NAME} { +} \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 000000000..273897151 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,53 @@ + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 000000000..0dd4b3546 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml b/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml new file mode 100644 index 000000000..623ed41a8 --- /dev/null +++ b/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__junit_junit_4_12.xml b/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 000000000..04c10dd5a --- /dev/null +++ b/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 000000000..8262f729c --- /dev/null +++ b/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 000000000..4f32fdef2 --- /dev/null +++ b/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml new file mode 100644 index 000000000..c3c06992f --- /dev/null +++ b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml new file mode 100644 index 000000000..1747c57f6 --- /dev/null +++ b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml new file mode 100644 index 000000000..dcafaf334 --- /dev/null +++ b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..d5d79e0ca --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..03dc4bb5b --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCL/HMCL.iml b/.idea/modules/HMCL/HMCL.iml new file mode 100644 index 000000000..09637b25a --- /dev/null +++ b/.idea/modules/HMCL/HMCL.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCL/HMCL_main.iml b/.idea/modules/HMCL/HMCL_main.iml new file mode 100644 index 000000000..5aa7bbdc8 --- /dev/null +++ b/.idea/modules/HMCL/HMCL_main.iml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCL/HMCL_test.iml b/.idea/modules/HMCL/HMCL_test.iml new file mode 100644 index 000000000..df96bc3ce --- /dev/null +++ b/.idea/modules/HMCL/HMCL_test.iml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLCore/HMCLCore.iml b/.idea/modules/HMCLCore/HMCLCore.iml new file mode 100644 index 000000000..b66228a14 --- /dev/null +++ b/.idea/modules/HMCLCore/HMCLCore.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLCore/HMCLCore_main.iml b/.idea/modules/HMCLCore/HMCLCore_main.iml new file mode 100644 index 000000000..63c541d43 --- /dev/null +++ b/.idea/modules/HMCLCore/HMCLCore_main.iml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLCore/HMCLCore_test.iml b/.idea/modules/HMCLCore/HMCLCore_test.iml new file mode 100644 index 000000000..d25a4ddf2 --- /dev/null +++ b/.idea/modules/HMCLCore/HMCLCore_test.iml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLKotlin.iml b/.idea/modules/HMCLKotlin.iml new file mode 100644 index 000000000..5b1923fb2 --- /dev/null +++ b/.idea/modules/HMCLKotlin.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLKotlin_main.iml b/.idea/modules/HMCLKotlin_main.iml new file mode 100644 index 000000000..29ae031a6 --- /dev/null +++ b/.idea/modules/HMCLKotlin_main.iml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/HMCLKotlin_test.iml b/.idea/modules/HMCLKotlin_test.iml new file mode 100644 index 000000000..56ff6708f --- /dev/null +++ b/.idea/modules/HMCLKotlin_test.iml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/jfoenix.iml b/.idea/modules/jfoenix.iml new file mode 100644 index 000000000..fb9e6d307 --- /dev/null +++ b/.idea/modules/jfoenix.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/tornadofx.iml b/.idea/modules/tornadofx.iml new file mode 100644 index 000000000..b15457137 --- /dev/null +++ b/.idea/modules/tornadofx.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/tornadofx_main.iml b/.idea/modules/tornadofx_main.iml new file mode 100644 index 000000000..eb25c54a8 --- /dev/null +++ b/.idea/modules/tornadofx_main.iml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/tornadofx_test.iml b/.idea/modules/tornadofx_test.iml new file mode 100644 index 000000000..dba773c9b --- /dev/null +++ b/.idea/modules/tornadofx_test.iml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 000000000..e96534fb2 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 000000000..b6766f5f9 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,2536 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + EventHelper + getSource() + cancel + cached + isCancelled + running + ceiling + close() + listener` + updateMessage + fixed + Parallel + createNewFile + copyTo + terminate + ParallelTask + finest + hidden + toggle-icon + toggle-icon3 + get( + title + fullscreen + jfx-decorator-buttons-container + padding + isRes + doDependentsSucceeded: Boolean + white + jfx-list-view + isNull + + + E:\sources\java\JFoenix\jfoenix\build\libs\jfoenix-0.0.0-SNAPSHOT.jar!\com\jfoenix + D:\Develop\Java\jdk1.8.0_131\jre\lib\ext\jfxrt.jar!\com\sun\javafx\scene\control\skin + E:\sources\java\HMCLKotlin\HMCL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +