├── .idea ├── .gitignore ├── libraries │ └── jfoenix_8_0_8.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── chat application.iml ├── out └── production │ ├── chat application │ ├── Appinitilizer.class │ ├── assests │ │ ├── angree.png │ │ ├── camera.png │ │ ├── care.png │ │ ├── emoji-love.png │ │ ├── haha.png │ │ ├── happy.png │ │ ├── heart.png │ │ ├── kiss1.png │ │ ├── love.png │ │ ├── mask.png │ │ ├── pain.jpg │ │ ├── profile.png │ │ ├── smile.png │ │ ├── wow.jpg │ │ └── wow1.jpg │ ├── controller │ │ ├── ClientHandler.class │ │ ├── ClientOneForm.class │ │ ├── LoginForm.class │ │ └── Server.class │ ├── lib │ │ └── jfoenix-8.0.8.jar │ ├── style │ │ └── style.css │ └── view │ │ ├── ClientOneForm.fxml │ │ └── LoginForm.fxml │ └── server │ └── view │ └── ServerForm.fxml └── src ├── Appinitilizer.java ├── assests ├── angree.png ├── camera.png ├── care.png ├── emoji-love.png ├── haha.png ├── happy.png ├── heart.png ├── kiss1.png ├── love.png ├── mask.png ├── pain.jpg ├── profile.png ├── smile.png ├── wow.jpg └── wow1.jpg ├── controller ├── ClientHandler.java ├── ClientOneForm.java ├── LoginForm.java └── Server.java ├── lib └── jfoenix-8.0.8.jar ├── style └── style.css └── view ├── ClientOneForm.fxml └── LoginForm.fxml /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/libraries/jfoenix_8_0_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /chat application.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /out/production/chat application/Appinitilizer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/Appinitilizer.class -------------------------------------------------------------------------------- /out/production/chat application/assests/angree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/angree.png -------------------------------------------------------------------------------- /out/production/chat application/assests/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/camera.png -------------------------------------------------------------------------------- /out/production/chat application/assests/care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/care.png -------------------------------------------------------------------------------- /out/production/chat application/assests/emoji-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/emoji-love.png -------------------------------------------------------------------------------- /out/production/chat application/assests/haha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/haha.png -------------------------------------------------------------------------------- /out/production/chat application/assests/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/happy.png -------------------------------------------------------------------------------- /out/production/chat application/assests/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/heart.png -------------------------------------------------------------------------------- /out/production/chat application/assests/kiss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/kiss1.png -------------------------------------------------------------------------------- /out/production/chat application/assests/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/love.png -------------------------------------------------------------------------------- /out/production/chat application/assests/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/mask.png -------------------------------------------------------------------------------- /out/production/chat application/assests/pain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/pain.jpg -------------------------------------------------------------------------------- /out/production/chat application/assests/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/profile.png -------------------------------------------------------------------------------- /out/production/chat application/assests/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/smile.png -------------------------------------------------------------------------------- /out/production/chat application/assests/wow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/wow.jpg -------------------------------------------------------------------------------- /out/production/chat application/assests/wow1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/assests/wow1.jpg -------------------------------------------------------------------------------- /out/production/chat application/controller/ClientHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/controller/ClientHandler.class -------------------------------------------------------------------------------- /out/production/chat application/controller/ClientOneForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/controller/ClientOneForm.class -------------------------------------------------------------------------------- /out/production/chat application/controller/LoginForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/controller/LoginForm.class -------------------------------------------------------------------------------- /out/production/chat application/controller/Server.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/controller/Server.class -------------------------------------------------------------------------------- /out/production/chat application/lib/jfoenix-8.0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/group-chat-app-java/e8a589acfd6b801b994653b9d21256237d9e7d27/out/production/chat application/lib/jfoenix-8.0.8.jar -------------------------------------------------------------------------------- /out/production/chat application/style/style.css: -------------------------------------------------------------------------------- 1 | .text-input{ 2 | -fx-text-inner-color: white; 3 | } -------------------------------------------------------------------------------- /out/production/chat application/view/ClientOneForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /out/production/chat application/view/LoginForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /out/production/server/view/ServerForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | 26 | 27 |