Awesome
CalendarFX
A Java framework for creating sophisticated calendar views based on JavaFX. A detailed developer manual can be found online: http://dlsc.com/wp-content/html/calendarfx/manual.html
Repository Coordinates
CalendarFX can be found on jcenter / bintray and also on maven central. For maven central you simply have to add the dependency to the CalendarFX "view" artifact. For jcenter you also need to add the jcenter repository to your pom file.
<repositories>
<repository>
<id>jcenter</id>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.calendarfx</groupId>
<artifactId>view</artifactId>
<version>8.5.0</version>
</dependency>
</dependencies>
Modules
- CalendarFXApp - contains a standalone application (day, week, month, year views).
- CalendarFXAssembly - a module used for creating distributions / assemblies
- CalendarFXExperimental - a playground for new controls
- CalendarFXGoogle - code for working with Google calendars
- CalendarFXiCal - code for dealing with iCal data
- CalendarFXRecurrence - an extension for the Google recurrence API (RFC 2445). Needed for the new date and time API of Java 8
- CalendarFXSampler - a demo app based on FXSampler to test controls individually
- CalendarFXView - the main module containing the various calendar views
- CalendarFXWeather - a standalone demo for the month sheet view
Building It
Simply run the 'install' target inside the top level project. Once completed you will find the installation inside the target folder of the assembly module.
Assemblies
There are currently two assemblies being created inside the target folder of the assembly module. The "bin" assembly contains almost everything except for the source files.
Binary Assembly
The following are the directories found inside the binary assembly.
css
Contains the calendar.css file.
demos
Contains several standalone / runnable JAR files. Demos can be started by either double clicking on them or by calling java -jar demo.jar. Make sure to use at least Java 8u60+.
docs
Contains the generated JavaDocs / API HTML files.
ext
Contains third party libraries that are needed for running CalendarFX (controlsfx, license4j, fontawesomefx).
i18n
The resource bundles used by CalendarFX.
lib
The actual CalendarFX libraries.
misc
Property files used for logging.
tutorial
Getting started files.