├── .gitignore ├── README.md ├── banner.png ├── nb-configuration.xml ├── nbactions.xml ├── pom.xml └── src └── main ├── java ├── jfxgoogledrive │ ├── MainApp.java │ ├── controllers │ │ ├── FileItemController.java │ │ └── HomeController.java │ └── drive │ │ └── DriveController.java └── utilities │ └── Constants.java └── resources ├── fxml ├── FXMLHome.fxml └── FileItem.fxml ├── icons ├── icons8_Microsoft_Excel_2019_96px.png ├── icons8_Microsoft_PowerPoint_2019_96px.png ├── icons8_Microsoft_Word_2019_96px_1.png ├── icons8_google_drive_96px_1.png ├── icons8_java_coffee_cup_logo_96px.png └── icons8_pdf_96px.png └── styles └── fullpackstyling.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/banner.png -------------------------------------------------------------------------------- /nb-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/nb-configuration.xml -------------------------------------------------------------------------------- /nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/nbactions.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/jfxgoogledrive/MainApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/java/jfxgoogledrive/MainApp.java -------------------------------------------------------------------------------- /src/main/java/jfxgoogledrive/controllers/FileItemController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/java/jfxgoogledrive/controllers/FileItemController.java -------------------------------------------------------------------------------- /src/main/java/jfxgoogledrive/controllers/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/java/jfxgoogledrive/controllers/HomeController.java -------------------------------------------------------------------------------- /src/main/java/jfxgoogledrive/drive/DriveController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/java/jfxgoogledrive/drive/DriveController.java -------------------------------------------------------------------------------- /src/main/java/utilities/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/java/utilities/Constants.java -------------------------------------------------------------------------------- /src/main/resources/fxml/FXMLHome.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/fxml/FXMLHome.fxml -------------------------------------------------------------------------------- /src/main/resources/fxml/FileItem.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/fxml/FileItem.fxml -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_Microsoft_Excel_2019_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_Microsoft_Excel_2019_96px.png -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_Microsoft_PowerPoint_2019_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_Microsoft_PowerPoint_2019_96px.png -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_Microsoft_Word_2019_96px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_Microsoft_Word_2019_96px_1.png -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_google_drive_96px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_google_drive_96px_1.png -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_java_coffee_cup_logo_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_java_coffee_cup_logo_96px.png -------------------------------------------------------------------------------- /src/main/resources/icons/icons8_pdf_96px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/icons/icons8_pdf_96px.png -------------------------------------------------------------------------------- /src/main/resources/styles/fullpackstyling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevTony101/JFXGoogleDrive/HEAD/src/main/resources/styles/fullpackstyling.css --------------------------------------------------------------------------------