summaryrefslogtreecommitdiff
path: root/libs/FLib/JCalendar/doc
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-03-04 17:31:40 +0000
committerPaul Buetow <paul@buetow.org>2009-03-04 17:31:40 +0000
commit9129838d208c0df7293e5b757661125545cd6df8 (patch)
treecde0b095a7ad120b68450f705d8fc16d278bfff8 /libs/FLib/JCalendar/doc
parente2c501ba5aaffd9d5ace6bc1706353d9f83329b7 (diff)
flib added
Diffstat (limited to 'libs/FLib/JCalendar/doc')
-rw-r--r--libs/FLib/JCalendar/doc/example/Example1.java181
-rw-r--r--libs/FLib/JCalendar/doc/example/Example2.java173
-rw-r--r--libs/FLib/JCalendar/doc/examples.html66
-rw-r--r--libs/FLib/JCalendar/doc/features.html58
-rw-r--r--libs/FLib/JCalendar/doc/images/Logo.pngbin0 -> 38186 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-combo-meta-noedit.gifbin0 -> 5036 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-combo-metal-all.gifbin0 -> 6029 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-combo-skin1.gifbin0 -> 12423 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-combo-skin2.gifbin0 -> 12928 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-combo-skin3.gifbin0 -> 7246 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-panel-metal-all.gifbin0 -> 5131 bytes
-rw-r--r--libs/FLib/JCalendar/doc/images/screenshot-panel-metal-french.gifbin0 -> 4746 bytes
-rw-r--r--libs/FLib/JCalendar/doc/index.html64
-rw-r--r--libs/FLib/JCalendar/doc/resources.html81
-rw-r--r--libs/FLib/JCalendar/doc/screenshots.html65
-rw-r--r--libs/FLib/JCalendar/doc/stylesheet.css48
-rw-r--r--libs/FLib/JCalendar/doc/tutorial.html149
17 files changed, 885 insertions, 0 deletions
diff --git a/libs/FLib/JCalendar/doc/example/Example1.java b/libs/FLib/JCalendar/doc/example/Example1.java
new file mode 100644
index 0000000..57e3b87
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/example/Example1.java
@@ -0,0 +1,181 @@
+//**********************************************************************
+// Package
+//**********************************************************************
+
+package doc.example;
+
+//**********************************************************************
+// Import list
+//**********************************************************************
+
+import java.awt.*;
+import java.awt.event.*;
+import javax.swing.*;
+import javax.swing.border.*;
+import java.util.Calendar;
+import java.util.Locale;
+import org.freixas.jcalendar.*;
+
+/**
+ * This example shows various instances of the JCalendar class.
+ * <hr>
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the Artistic License. You should have
+ * received a copy of the Artistic License along with this program. If
+ * not, a copy is available at
+ * <a href="http://opensource.org/licenses/artistic-license.php">
+ * opensource.org</a>.
+ *
+ * @author Antonio Freixas
+ */
+
+// Copyright © 2004 Antonio Freixas
+// All Rights Reserved.
+
+public class Example1
+ extends JFrame
+{
+
+//**********************************************************************
+// main
+//**********************************************************************
+
+public static void
+main(
+ String[] args)
+{
+ new Example1();
+}
+
+//**********************************************************************
+// Constructors
+//**********************************************************************
+
+/**
+ * Create various instances of a JCalendar.
+ */
+
+public
+Example1()
+{
+ // Set up the frame
+
+ setTitle("Example1");
+ setDefaultCloseOperation(EXIT_ON_CLOSE);
+
+ Container contentPane = getContentPane();
+ contentPane.setLayout(new GridLayout(2, 2, 5, 5));
+
+ // Create a border for all calendars
+
+ Border etchedBorder =
+ BorderFactory.createEtchedBorder();
+ Border emptyBorder =
+ BorderFactory.createEmptyBorder(10, 10, 10, 10);
+ Border compoundBorder =
+ BorderFactory.createCompoundBorder(etchedBorder, emptyBorder);
+
+ // Create a date listener to be used for all calendars
+
+ MyDateListener listener = new MyDateListener();
+
+ // Display date and time using the default calendar and locale.
+ // Display today's date at the bottom.
+
+ JCalendar calendar1 =
+ new JCalendar(
+ JCalendar.DISPLAY_DATE | JCalendar.DISPLAY_TIME,
+ true);
+ calendar1.addDateListener(listener);
+ calendar1.setBorder(compoundBorder);
+
+ // Set fonts rather than using defaults
+
+ calendar1.setTitleFont(new Font("Serif", Font.BOLD|Font.ITALIC, 24));
+ calendar1.setDayOfWeekFont(new Font("SansSerif", Font.ITALIC, 12));
+ calendar1.setDayFont(new Font("SansSerif", Font.BOLD, 16));
+ calendar1.setTimeFont(new Font("DialogInput", Font.PLAIN, 10));
+ calendar1.setTodayFont(new Font("Dialog", Font.PLAIN, 14));
+
+ // Display date only
+
+ JCalendar calendar2 = new JCalendar(JCalendar.DISPLAY_DATE, false);
+ calendar2.addDateListener(listener);
+ calendar2.setBorder(compoundBorder);
+
+ // Display time only and set the time pattern to use as a duration
+ // from 00:00 to 23:59
+
+ JCalendar calendar3 =
+ new JCalendar(
+ Calendar.getInstance(),
+ Locale.getDefault(),
+ JCalendar.DISPLAY_TIME,
+ false,
+ "HH:mm");
+ calendar3.addDateListener(listener);
+ calendar3.setBorder(compoundBorder);
+
+ // Display a French calendar
+
+ JCalendar calendar4 =
+ new JCalendar(
+ Calendar.getInstance(Locale.FRENCH),
+ Locale.FRENCH,
+ JCalendar.DISPLAY_DATE | JCalendar.DISPLAY_TIME,
+ false);
+ calendar4.addDateListener(listener);
+ calendar4.setBorder(compoundBorder);
+
+ // Add all the calendars to the content pane
+
+ JPanel panel1 = new JPanel(new FlowLayout());
+ panel1.add(calendar1);
+ contentPane.add(panel1);
+
+ JPanel panel2 = new JPanel(new FlowLayout());
+ panel2.add(calendar2);
+ contentPane.add(panel2);
+
+ JPanel panel3 = new JPanel(new FlowLayout());
+ panel3.add(calendar3);
+ contentPane.add(panel3);
+
+ JPanel panel4 = new JPanel(new FlowLayout());
+ panel4.add(calendar4);
+ contentPane.add(panel4);
+
+ // Make the window visible
+
+ pack();
+ setVisible(true);
+}
+
+//**********************************************************************
+// Inner Classes
+//**********************************************************************
+
+private class MyDateListener
+ implements DateListener
+{
+
+public void
+dateChanged(
+ DateEvent e)
+{
+ Calendar c = e.getSelectedDate();
+ if (c != null) {
+ System.out.println(c.getTime());
+ }
+ else {
+ System.out.println("No time selected.");
+ }
+}
+
+}
+
+//**********************************************************************
+// End Inner Classes
+//**********************************************************************
+
+}
diff --git a/libs/FLib/JCalendar/doc/example/Example2.java b/libs/FLib/JCalendar/doc/example/Example2.java
new file mode 100644
index 0000000..0866447
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/example/Example2.java
@@ -0,0 +1,173 @@
+//**********************************************************************
+// Package
+//**********************************************************************
+
+package doc.example;
+
+//**********************************************************************
+// Import list
+//**********************************************************************
+
+import java.awt.*;
+import java.awt.event.*;
+import javax.swing.*;
+import java.util.Calendar;
+import java.util.Locale;
+import java.text.SimpleDateFormat;
+import org.freixas.jcalendar.*;
+
+/**
+ * This example shows various instances of the JCalendarCombo class.
+ * <hr>
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the Artistic License. You should have
+ * received a copy of the Artistic License along with this program. If
+ * not, a copy is available at
+ * <a href="http://opensource.org/licenses/artistic-license.php">
+ * opensource.org</a>.
+ *
+ * @author Antonio Freixas
+ */
+
+// Copyright © 2004 Antonio Freixas
+// All Rights Reserved.
+
+class Example2
+ extends JFrame
+{
+
+//**********************************************************************
+// main
+//**********************************************************************
+
+public static void
+main(
+ String[] args)
+{
+ new Example2();
+}
+
+//**********************************************************************
+// Constructors
+//**********************************************************************
+
+/**
+ * Create various instances of a JCalendarCombo.
+ */
+
+public
+Example2()
+{
+ // Set up the frame
+
+ setTitle("Example2");
+ setDefaultCloseOperation(EXIT_ON_CLOSE);
+
+ Container contentPane = getContentPane();
+ contentPane.setLayout(new GridLayout(2, 2, 5, 5));
+
+ // Create a date listener to be used for all calendars
+
+ MyDateListener listener = new MyDateListener();
+
+ // Display date and time using the default calendar and locale.
+ // Display today's date at the bottom. Allow editing
+
+ JCalendarCombo calendar1 =
+ new JCalendarCombo(
+ JCalendarCombo.DISPLAY_DATE | JCalendarCombo.DISPLAY_TIME,
+ true);
+ calendar1.setEditable(true);
+ calendar1.addDateListener(listener);
+
+ // Set fonts rather than using defaults
+
+ calendar1.setFont(new Font("DialogInput", Font.PLAIN, 16));
+
+ calendar1.setTitleFont(new Font("Serif", Font.BOLD|Font.ITALIC, 24));
+ calendar1.setDayOfWeekFont(new Font("SansSerif", Font.ITALIC, 12));
+ calendar1.setDayFont(new Font("SansSerif", Font.BOLD, 16));
+ calendar1.setTimeFont(new Font("DialogInput", Font.PLAIN, 10));
+ calendar1.setTodayFont(new Font("Dialog", Font.PLAIN, 14));
+
+ // Display date only
+
+ JCalendarCombo calendar2 =
+ new JCalendarCombo(JCalendarCombo.DISPLAY_DATE, false);
+ calendar2.addDateListener(listener);
+
+ // Display time only and set the time pattern to use as a duration
+ // from 00:00 to 23:59
+
+ JCalendarCombo calendar3 =
+ new JCalendarCombo(
+ Calendar.getInstance(),
+ Locale.getDefault(),
+ JCalendarCombo.DISPLAY_TIME,
+ false,
+ "HH:mm:ss");
+ calendar3.setDateFormat(new SimpleDateFormat("HH:mm:ss"));
+ calendar3.addDateListener(listener);
+
+ // Display a French calendar
+
+ JCalendarCombo calendar4 =
+ new JCalendarCombo(
+ Calendar.getInstance(Locale.FRENCH),
+ Locale.FRENCH,
+ JCalendarCombo.DISPLAY_DATE | JCalendarCombo.DISPLAY_TIME,
+ false);
+ calendar4.addDateListener(listener);
+
+ // Add all the calendars to the content pane
+
+ JPanel panel1 = new JPanel(new BorderLayout());
+ panel1.add(calendar1, BorderLayout.NORTH);
+ contentPane.add(panel1);
+
+ JPanel panel2 = new JPanel(new BorderLayout());
+ panel2.add(calendar2, BorderLayout.NORTH);
+ contentPane.add(panel2);
+
+ JPanel panel3 = new JPanel(new BorderLayout());
+ panel3.add(calendar3, BorderLayout.NORTH);
+ contentPane.add(panel3);
+
+ JPanel panel4 = new JPanel(new BorderLayout());
+ panel4.add(calendar4, BorderLayout.NORTH);
+ contentPane.add(panel4);
+
+ // Make the window visible
+
+ pack();
+ setVisible(true);
+}
+
+//**********************************************************************
+// Inner Classes
+//**********************************************************************
+
+private class MyDateListener
+ implements DateListener
+{
+
+public void
+dateChanged(
+ DateEvent e)
+{
+ Calendar c = e.getSelectedDate();
+ if (c != null) {
+ System.out.println(c.getTime());
+ }
+ else {
+ System.out.println("No time selected.");
+ }
+}
+
+}
+
+//**********************************************************************
+// End Inner Classes
+//**********************************************************************
+
+}
diff --git a/libs/FLib/JCalendar/doc/examples.html b/libs/FLib/JCalendar/doc/examples.html
new file mode 100644
index 0000000..b741ca1
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/examples.html
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/JCalendar.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>JCalendar - Examples</title>
+<!-- InstanceEndEditable -->
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<link href="stylesheet.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body>
+<p><img src="images/Logo.png" width="800" height="150" /></p>
+<table width="800" border="0" cellspacing="0" cellpadding="10">
+ <tr>
+ <td width="150" align="left" valign="top" id="sidebar">
+ <p><a href="index.html">Introduction</a></p>
+ <p><a href="features.html">Features</a></p>
+ <p><a href="screenshots.html">Screen<br />
+ shots</a></p>
+ <p><a href="tutorial.html">Tutorial</a></p>
+ <p><a href="examples.html">Examples</a></p>
+ <p><a href="api/index.html">API<br />
+ documentation</a></p>
+ <p><a href="https://sourceforge.net/project/showfiles.php?group_id=113939">Download</a></p>
+ <p><a href="resources.html">Other<br />
+ resources</a></p>
+ <p><a href="../../index.html">Return to<br />
+ FLib </a></p>
+ <p><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=113939&amp;type=1" alt="SourceForge.net Logo" width="88" height="31" border="0" align="top" title="" /></a></p>
+ <p><a href="http://www.jars.com/"><img src="http://www.jars.com/images/r750.gif" alt="Rated JARS Top 25%" width="104" height="56" border="0" align="top" title="" /></a></p> </td>
+ <td id="content" width="614" align="left" valign="top"><!-- InstanceBeginEditable name="content" -->
+ <h1>Examples</h1>
+ <p>There are two example programs provided for JCalendar. The two programs
+ are similar except one uses the JCalendar component and the other uses
+ the JCalendarCombo component.</p>
+ <p>View the <a href="example/Example1.java">Example1</a> program. View the
+ <a href="example/Example2.java">Example2</a> program. </p>
+ <p>If you download the FLib source, you can use Ant to build and run
+ the example programs:</p>
+ <pre>cd JCalendar
+ant runExample1
+ant runExample2</pre>
+ <p>Four calendars appear in each example. The upper-left calendar is used
+ to select a date and time. Today's date is displayed at the bottom of
+ the calendar. In Example2, it is the only one of the four combo box calendars
+ which is editable.</p>
+ <p>The upper-right calendar selects just a date. The lower-left calendar
+ selects just a time.</p>
+ <p>The lower-right calendar uses the French locale (all the others use the
+ default locale). Because the JCalendar component takes advantage of the
+ localization in the Calendar class, we get a French-version of the Gregorian
+ calendar. The month and weekday names are in French. The week starts on
+ a Monday. The time uses a 24-hour clock.</p>
+ <p>The JCalendar package is not completely localized for French. For instance,
+ the tool tips on the calendar buttons appear in English. See the <a href="tutorial.html">tutorial</a>
+ for instructions on fully localizing the package.</p>
+ <p>When you run either example, each date selection will be echoed to the
+ window from which you ran the <code>ant</code> command.</p>
+ <!-- InstanceEndEditable --></td>
+ </tr>
+</table>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/libs/FLib/JCalendar/doc/features.html b/libs/FLib/JCalendar/doc/features.html
new file mode 100644
index 0000000..2e3c824
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/features.html
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/JCalendar.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>JCalendar - Features</title>
+<!-- InstanceEndEditable -->
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<link href="stylesheet.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body>
+<p><img src="images/Logo.png" width="800" height="150" /></p>
+<table width="800" border="0" cellspacing="0" cellpadding="10">
+ <tr>
+ <td width="150" align="left" valign="top" id="sidebar">
+ <p><a href="index.html">Introduction</a></p>
+ <p><a href="features.html">Features</a></p>
+ <p><a href="screenshots.html">Screen<br />
+ shots</a></p>
+ <p><a href="tutorial.html">Tutorial</a></p>
+ <p><a href="examples.html">Examples</a></p>
+ <p><a href="api/index.html">API<br />
+ documentation</a></p>
+ <p><a href="https://sourceforge.net/project/showfiles.php?group_id=113939">Download</a></p>
+ <p><a href="resources.html">Other<br />
+ resources</a></p>
+ <p><a href="../../index.html">Return to<br />
+ FLib </a></p>
+ <p><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=113939&amp;type=1" alt="SourceForge.net Logo" width="88" height="31" border="0" align="top" title="" /></a></p>
+ <p><a href="http://www.jars.com/"><img src="http://www.jars.com/images/r750.gif" alt="Rated JARS Top 25%" width="104" height="56" border="0" align="top" title="" /></a></p> </td>
+ <td id="content" width="614" align="left" valign="top"><!-- InstanceBeginEditable name="content" -->
+ <h1>Features</h1>
+ <p>The main features of JCalendar are:</p>
+ <ul>
+ <li>Easy to use.</li>
+ <li>Can input the date, time or both.</li>
+ <li>Can set entry format for time selection.</li>
+ <li>Can optionally display today's date.</li>
+ <li>Can use as a panel (JCalendar) or combo-box (JCalendarCombo).</li>
+ <li>The combo-box can be editable.</li>
+ <li>Can select date format for selected date in combo-box.</li>
+ <li>Can select the font to use for all display elements.</li>
+ <li>Can optionally allow null date (no date) to be selected.</li>
+ <li>Keyboard access to all functionality.</li>
+ <li>Combo-box can adopt current L&amp;F (requires modifications for new
+ L&amp;F's). </li>
+ <li>Fully internationalized and ready for localization. Most localization
+ is already done by taking advantage of the localization in the Java
+ Calendar class.</li>
+ </ul>
+ <!-- InstanceEndEditable --></td>
+ </tr>
+</table>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/libs/FLib/JCalendar/doc/images/Logo.png b/libs/FLib/JCalendar/doc/images/Logo.png
new file mode 100644
index 0000000..774900e
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/Logo.png
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-combo-meta-noedit.gif b/libs/FLib/JCalendar/doc/images/screenshot-combo-meta-noedit.gif
new file mode 100644
index 0000000..46a9ed5
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-combo-meta-noedit.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-combo-metal-all.gif b/libs/FLib/JCalendar/doc/images/screenshot-combo-metal-all.gif
new file mode 100644
index 0000000..7e9889c
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-combo-metal-all.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-combo-skin1.gif b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin1.gif
new file mode 100644
index 0000000..1a22a98
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin1.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-combo-skin2.gif b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin2.gif
new file mode 100644
index 0000000..848f520
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin2.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-combo-skin3.gif b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin3.gif
new file mode 100644
index 0000000..91d2e98
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-combo-skin3.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-all.gif b/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-all.gif
new file mode 100644
index 0000000..a10a5f3
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-all.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-french.gif b/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-french.gif
new file mode 100644
index 0000000..15a5f9f
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/images/screenshot-panel-metal-french.gif
Binary files differ
diff --git a/libs/FLib/JCalendar/doc/index.html b/libs/FLib/JCalendar/doc/index.html
new file mode 100644
index 0000000..8059eeb
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/index.html
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/JCalendar.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>JCalendar - Introduction</title>
+<!-- InstanceEndEditable -->
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<link href="stylesheet.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body>
+<p><img src="images/Logo.png" width="800" height="150" /></p>
+<table width="800" border="0" cellspacing="0" cellpadding="10">
+ <tr>
+ <td width="150" align="left" valign="top" id="sidebar">
+ <p><a href="index.html">Introduction</a></p>
+ <p><a href="features.html">Features</a></p>
+ <p><a href="screenshots.html">Screen<br />
+ shots</a></p>
+ <p><a href="tutorial.html">Tutorial</a></p>
+ <p><a href="examples.html">Examples</a></p>
+ <p><a href="api/index.html">API<br />
+ documentation</a></p>
+ <p><a href="https://sourceforge.net/project/showfiles.php?group_id=113939">Download</a></p>
+ <p><a href="resources.html">Other<br />
+ resources</a></p>
+ <p><a href="../../index.html">Return to<br />
+ FLib </a></p>
+ <p><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=113939&amp;type=1" alt="SourceForge.net Logo" width="88" height="31" border="0" align="top" title="" /></a></p>
+ <p><a href="http://www.jars.com/"><img src="http://www.jars.com/images/r750.gif" alt="Rated JARS Top 25%" width="104" height="56" border="0" align="top" title="" /></a></p> </td>
+ <td id="content" width="614" align="left" valign="top"><!-- InstanceBeginEditable name="content" -->
+ <h1>Introduction</h1>
+ <p>Hi! My name is Tony Freixas and I am currently working on an application
+ that I intend to release as Open Source. In the process of building the
+ application, I am using as many Open Source classes and components as
+ I can find.</p>
+ <p>In some cases, I have been disappointed with what I have found on the
+ web:</p>
+ <ul>
+ <li>Classes that are not free.</li>
+ <li>Classes with restrictive licensing.</li>
+ <li>Classes which ignore internationalization.</li>
+ <li>Classes which are not easy to use.</li>
+ <li>Components which are limited with respect to the Look &amp; Feel that
+ can be used.</li>
+ </ul>
+ <p>When I have not found a suitable Java class, I have implemented my own.
+ I have decided to release these for use by others as part of a library
+ I call FLib.</p>
+ <p>Currently, there are three components available in FLib and I have chosen
+ to make them completely independent of each other. In the future, you
+
+ may have to load some common code in order to use the FLib classes.</p>
+ <p>These web pages are for the Swing-based JCalendar component. Use the
+ links on the left to learn more.</p>
+ <p><a href="http://sourceforge.net/donate/index.php?group_id=113939"><img src="http://images.sourceforge.net/images/project-support.jpg" width="88" height="32" border="0" alt="Support This Project" title=""/></a></p>
+ <!-- InstanceEndEditable --></td>
+ </tr>
+</table>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/libs/FLib/JCalendar/doc/resources.html b/libs/FLib/JCalendar/doc/resources.html
new file mode 100644
index 0000000..a384e20
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/resources.html
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/JCalendar.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>JCalendar - Other Resources</title>
+<!-- InstanceEndEditable -->
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<link href="stylesheet.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body>
+<p><img src="images/Logo.png" width="800" height="150" /></p>
+<table width="800" border="0" cellspacing="0" cellpadding="10">
+ <tr>
+ <td width="150" align="left" valign="top" id="sidebar">
+ <p><a href="index.html">Introduction</a></p>
+ <p><a href="features.html">Features</a></p>
+ <p><a href="screenshots.html">Screen<br />
+ shots</a></p>
+ <p><a href="tutorial.html">Tutorial</a></p>
+ <p><a href="examples.html">Examples</a></p>
+ <p><a href="api/index.html">API<br />
+ documentation</a></p>
+ <p><a href="https://sourceforge.net/project/showfiles.php?group_id=113939">Download</a></p>
+ <p><a href="resources.html">Other<br />
+ resources</a></p>
+ <p><a href="../../index.html">Return to<br />
+ FLib </a></p>
+ <p><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=113939&amp;type=1" alt="SourceForge.net Logo" width="88" height="31" border="0" align="top" title="" /></a></p>
+ <p><a href="http://www.jars.com/"><img src="http://www.jars.com/images/r750.gif" alt="Rated JARS Top 25%" width="104" height="56" border="0" align="top" title="" /></a></p> </td>
+ <td id="content" width="614" align="left" valign="top"><!-- InstanceBeginEditable name="content" -->
+ <h1>Other Resources</h1>
+ <p>I think it's only fair to note some of the other Java calendar component
+ implementations. Some of these have appeared since I wrote my version.
+ You may do a Google search to find yet other versions.</p>
+ <p>I tried the JCalendarCombo from <a href="http://in.geocities.com/onlyjava2003/">OnlyJava</a>.
+ It looked nice at first, but I had several problems with it:</p>
+ <ul>
+ <li>You had to set start/end years since the year was chosen from a combo
+ box.</li>
+ <li>The combo box (textfield and down-arrow) always had the Metal L&amp;F.</li>
+ <li>The component was not internationalized.</li>
+ <li>The license does not allow for derivative works.</li>
+ </ul>
+ <p>The JCalendar from <a href="http://www.toedter.com/en/jcalendar/index.html">toedter.com</a>
+ looks promising. There doesn't seem to be an option for a combo-box version,
+ though. It uses the LGPL license.</p>
+ <p>A <a href="http://pachome1.pacific.net.sg/%7Ewongkw/CalendarPanel.html">CalendarPanel</a>
+ was written by Wong Kok Wai. It also lacks combo-box entry. I'm not sure
+ about the license.</p>
+ <p>There are a number of commercial products you could try if you're willing
+ to pay:</p>
+ <ul>
+ <li><a href="http://www.javadatepicker.com/">JavaDatePicker</a> starts
+ at $119 for a single-developer license.</li>
+ <li><a href="http://www.zfqjava.com/docs-calendar.html">ExtremeComponent</a>
+ offers a JCalendar component binary license for $19. I didn't see a
+ combo-box option.</li>
+ <li><a href="http://www.lavantech.com/datetimepicker/">LavanTech</a> has
+ a pretty fancy date/time selector starting at $75 for a single-user
+ license. It does provide a combo-box selection, but I'm not sure how
+ well it adapts to the various L&amp;F's.</li>
+ <li><a href="http://www.jproductivity.com/products/components/component-calendar.htm">jProductivity</a>
+ offers a calendar with a lot of options, including a combo-box version.
+ Again, I'm not sure how it adapts to various L&amp;F's since the only
+ way I've found to do it is to modify the code for each L&amp;F.</li>
+ </ul>
+ <p>There are some less-fancy calendar selectors which might be useful for
+ applets. <a href="http://www.javaside.com/asp/mus.asp?page=/us/tcaldate.shtml">tCalDate</a>
+ is free for personal use and appears to only require registration for
+ professional use. <a href="http://scand.com/products/awtx/calendar/">Scand
+ LLC</a> offers two versions of a calendar: one for free and an advanced
+ version for $29.</p>
+ <!-- InstanceEndEditable --></td>
+ </tr>
+</table>
+</body>
+<!-- InstanceEnd --></html>
diff --git a/libs/FLib/JCalendar/doc/screenshots.html b/libs/FLib/JCalendar/doc/screenshots.html
new file mode 100644
index 0000000..9b3f70e
--- /dev/null
+++ b/libs/FLib/JCalendar/doc/screenshots.html
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/JCalendar.dwt" codeOutsideHTMLIsLocked="false" -->
+<head>
+<!-- InstanceBeginEditable name="doctitle" -->
+<title>JCalendar - Screen Shots</title>
+<!-- InstanceEndEditable -->
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<!-- InstanceBeginEditable name="head" -->
+<!-- InstanceEndEditable -->
+<link href="stylesheet.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body>
+<p><img src="images/Logo.png" width="800" height="150" /></p>
+<table width="800" border="0" cellspacing="0" cellpadding="10">
+ <tr>
+ <td width="150" align="left" valign="top" id="sidebar">
+ <p><a href="index.html">Introduction</a></p>
+ <p><a href="features.html">Features</a></p>
+ <p><a href="screenshots.html">Screen<br />
+ shots</a></p>
+ <p><a href="tutorial.html">Tutorial</a></p>
+ <p><a href="examples.html">Examples</a></p>
+ <p><a href="api/index.html">API<br />
+ documentation</a></p>
+ <p><a href="https://sourceforge.net/project/showfiles.php?group_id=113939">Download</a></p>
+ <p><a href="resources.html">Other<br />
+ resources</a></p>
+ <p><a href="../../index.html">Return to<br />
+ FLib </a></p>
+ <p><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=113939&amp;type=1" alt="SourceForge.net Logo" width="88" height="31" border="0" align="top" title="" /></a></p>
+ <p><a href="http://www.jars.com/"><img src="http://www.jars.com/images/r750.gif" alt="Rated JARS Top 25%" width="104" height="56" border="0" align="top" title="" /></a></p> </td>
+ <td id="content" width="614" align="left" valign="top"><!-- InstanceBeginEditable name="content" -->
+ <h1>Screen Shots</h1>
+ <p>The following are screen shots of JCalendar components using various
+ look-and-feels:</p>
+ <p align="center"><img src="images/screenshot-panel-metal-all.gif" width="329" height="239" /></p>
+ <p align="center">A JCalendar from the Example1 program using the Metal
+ L&amp;F. Both date and time are input and today's date is displayed on
+ the bottom.</p>
+ <p align="center"><img src="images/screenshot-panel-metal-french.gif" width="330" height="223" /></p>
+ <p align="center">A JCalendar from the Example1 program using the French
+ locale. Note that the week starts on a Monday and that the time entry
+ uses a 24-hour clock.</p>
+ <p align="center"><img src="images/screenshot-combo-metal-all.gif" width="324" height="263" /></p>
+ <p align="center">An editable JCalendarCombo from the Example2 program with
+ the calendar pop-up displayed.</p>
+ <p align="center"><img src="images/screenshot-combo-meta-noedit.g