com.toedter.calendar

Class JDayChooser

Implemented Interfaces:
ActionListener, FocusListener, KeyListener

public class JDayChooser
extends JPanel
implements ActionListener, KeyListener, FocusListener

JCalendar is a bean for choosing a day.
Version:
1.2.1
Author:
Kai Toedter

Field Summary

protected Calendar
calendar
protected int
day
protected String[]
dayNames
protected JPanel
dayPanel
protected JButton[]
days
protected Color
decorationBackgroundColor
protected boolean
decorationBackgroundVisible
protected boolean
decorationBordersVisible
protected boolean
initialized
protected Locale
locale
protected Color
oldDayBackgroundColor
protected Color
selectedColor
protected JButton
selectedDay
protected Color
sundayForeground
protected Calendar
today
protected boolean
weekOfYearVisible
protected JPanel
weekPanel
protected Color
weekdayForeground
protected JButton[]
weeks

Constructor Summary

JDayChooser()
Default JDayChooser constructor.
JDayChooser(boolean weekOfYearVisible)
JDayChooser constructor.

Method Summary

void
actionPerformed(ActionEvent e)
JDayChooser is the ActionListener for all day buttons.
protected void
drawDays()
Hides and shows the day buttons.
protected void
drawWeeks()
Hides and shows the week buttons.
void
focusGained(FocusEvent e)
JDayChooser is the FocusListener for all day buttons.
void
focusLost(FocusEvent e)
Does nothing.
int
getDay()
Returns the selected day.
JPanel
getDayPanel()
Returns the day panel.
Color
getDecorationBackgroundColor()
Returns the color of the decoration (day names and weeks).
Locale
getLocale()
Returns the locale.
String
getName()
Returns "JDayChooser".
Color
getSundayForeground()
Returns the Sunday foreground.
Color
getWeekdayForeground()
Returns the weekday foreground.
protected void
init()
Initilizes the locale specific names for the days of the week.
protected void
initDecorations()
Initializes both day names and weeks of the year.
boolean
isDecorationBackgroundVisible()
The decoration background is the background color of the day titles and the weeks of the year.
boolean
isDecorationBordersVisible()
The decoration border is the button border of the day titles and the weeks of the year.
boolean
isWeekOfYearVisible()
In some Countries it is often usefull to know in which week of the year a date is.
void
keyPressed(KeyEvent e)
JDayChooser is the KeyListener for all day buttons.
void
keyReleased(KeyEvent e)
Does nothing.
void
keyTyped(KeyEvent e)
Does nothing.
static void
main(String[] s)
Creates a JFrame with a JDayChooser inside and can be used for testing.
void
setAlwaysFireDayProperty(boolean alwaysFire)
this is needed for JDateChooser.
void
setCalendar(Calendar calendar)
Sets a specific calendar.
void
setDay(int d)
Sets the day.
void
setDecorationBackgroundColor(Color decorationBackgroundColor)
Sets the background of days and weeks of year buttons.
void
setDecorationBackgroundVisible(boolean decorationBackgroundVisible)
The decoration background is the background color of the day titles and the weeks of the year.
void
setDecorationBordersVisible(boolean decorationBordersVisible)
The decoration border is the button border of the day titles and the weeks of the year.
void
setEnabled(boolean enabled)
Enable or disable the JDayChooser.
void
setFocus()
Requests that the selected day also have the focus.
void
setFont(Font font)
Sets the font property.
void
setForeground(Color foreground)
Sets the foregroundColor color.
void
setLocale(Locale locale)
Sets the locale.
void
setMonth(int month)
Sets a specific month.
void
setSundayForeground(Color sundayForeground)
Sets the Sunday foreground.
void
setWeekOfYearVisible(boolean weekOfYearVisible)
In some Countries it is often usefull to know in which week of the year a date is.
void
setWeekdayForeground(Color weekdayForeground)
Sets the weekday foreground.
void
setYear(int year)
Sets a specific year.

Field Details

calendar

protected Calendar calendar

day

protected int day

dayNames

protected String[] dayNames

dayPanel

protected JPanel dayPanel

days

protected JButton[] days

decorationBackgroundColor

protected Color decorationBackgroundColor

decorationBackgroundVisible

protected boolean decorationBackgroundVisible

decorationBordersVisible

protected boolean decorationBordersVisible

initialized

protected boolean initialized

locale

protected Locale locale

oldDayBackgroundColor

protected Color oldDayBackgroundColor

selectedColor

protected Color selectedColor

selectedDay

protected JButton selectedDay

sundayForeground

protected Color sundayForeground

today

protected Calendar today

weekOfYearVisible

protected boolean weekOfYearVisible

weekPanel

protected JPanel weekPanel

weekdayForeground

protected Color weekdayForeground

weeks

protected JButton[] weeks

Constructor Details

JDayChooser

public JDayChooser()
Default JDayChooser constructor.

JDayChooser

public JDayChooser(boolean weekOfYearVisible)
JDayChooser constructor.
Parameters:
weekOfYearVisible - true, if the weeks of a year shall be shown

Method Details

actionPerformed

public void actionPerformed(ActionEvent e)
JDayChooser is the ActionListener for all day buttons.
Parameters:
e - the ActionEvent

drawDays

protected void drawDays()
Hides and shows the day buttons.

drawWeeks

protected void drawWeeks()
Hides and shows the week buttons.

focusGained

public void focusGained(FocusEvent e)
JDayChooser is the FocusListener for all day buttons. (Added by Thomas Schaefer)
Parameters:
e - the FocusEvent

focusLost

public void focusLost(FocusEvent e)
Does nothing.
Parameters:
e - the FocusEvent

getDay

public int getDay()
Returns the selected day.
Returns:
the day value

getDayPanel

public JPanel getDayPanel()
Returns the day panel.
Returns:
the day panel

getDecorationBackgroundColor

public Color getDecorationBackgroundColor()
Returns the color of the decoration (day names and weeks).
Returns:
the color of the decoration (day names and weeks).

getLocale

public Locale getLocale()
Returns the locale.
Returns:
the locale value

getName

public String getName()
Returns "JDayChooser".
Returns:
the name value

getSundayForeground

public Color getSundayForeground()
Returns the Sunday foreground.
Returns:
Color the Sunday foreground.

getWeekdayForeground

public Color getWeekdayForeground()
Returns the weekday foreground.
Returns:
Color the weekday foreground.

init

protected void init()
Initilizes the locale specific names for the days of the week.

initDecorations

protected void initDecorations()
Initializes both day names and weeks of the year.

isDecorationBackgroundVisible

public boolean isDecorationBackgroundVisible()
The decoration background is the background color of the day titles and the weeks of the year.
Returns:
Returns true, if the decoration background is painted.

isDecorationBordersVisible

public boolean isDecorationBordersVisible()
The decoration border is the button border of the day titles and the weeks of the year.
Returns:
Returns true, if the decoration border is painted.

isWeekOfYearVisible

public boolean isWeekOfYearVisible()
In some Countries it is often usefull to know in which week of the year a date is.
Returns:
boolean true, if the weeks of the year is shown

keyPressed

public void keyPressed(KeyEvent e)
JDayChooser is the KeyListener for all day buttons. (Added by Thomas Schaefer and modified by Austin Moore)
Parameters:
e - the KeyEvent

keyReleased

public void keyReleased(KeyEvent e)
Does nothing.
Parameters:
e - the KeyEvent

keyTyped

public void keyTyped(KeyEvent e)
Does nothing.
Parameters:
e - the KeyEvent

main

public static void main(String[] s)
Creates a JFrame with a JDayChooser inside and can be used for testing.
Parameters:
s - The command line arguments

setAlwaysFireDayProperty

public void setAlwaysFireDayProperty(boolean alwaysFire)
this is needed for JDateChooser.
Parameters:
alwaysFire - true, if day property shall be fired every time a day is chosen.

setCalendar

public void setCalendar(Calendar calendar)
Sets a specific calendar. This is needed for correct graphical representation of the days.
Parameters:
calendar - the new calendar

setDay

public void setDay(int d)
Sets the day. This is a bound property.
Parameters:
d - the day

setDecorationBackgroundColor

public void setDecorationBackgroundColor(Color decorationBackgroundColor)
Sets the background of days and weeks of year buttons.
Parameters:
decorationBackgroundColor - The background to set

setDecorationBackgroundVisible

public void setDecorationBackgroundVisible(boolean decorationBackgroundVisible)
The decoration background is the background color of the day titles and the weeks of the year.
Parameters:
decorationBackgroundVisible - true, if the decoration background shall be painted.

setDecorationBordersVisible

public void setDecorationBordersVisible(boolean decorationBordersVisible)
The decoration border is the button border of the day titles and the weeks of the year.
Parameters:
decorationBordersVisible - true, if the decoration border shall be painted.

setEnabled

public void setEnabled(boolean enabled)
Enable or disable the JDayChooser.
Parameters:
enabled - The new enabled value

setFocus

public void setFocus()
Requests that the selected day also have the focus.

setFont

public void setFont(Font font)
Sets the font property.
Parameters:
font - the new font

setForeground

public void setForeground(Color foreground)
Sets the foregroundColor color.
Parameters:
foreground - the new foregroundColor

setLocale

public void setLocale(Locale locale)
Sets the locale.
Parameters:
locale - the new locale value

setMonth

public void setMonth(int month)
Sets a specific month. This is needed for correct graphical representation of the days.
Parameters:
month - the new month

setSundayForeground

public void setSundayForeground(Color sundayForeground)
Sets the Sunday foreground.
Parameters:
sundayForeground - The sundayForeground to set

setWeekOfYearVisible

public void setWeekOfYearVisible(boolean weekOfYearVisible)
In some Countries it is often usefull to know in which week of the year a date is.
Parameters:
weekOfYearVisible - true, if the weeks of the year shall be shown

setWeekdayForeground

public void setWeekdayForeground(Color weekdayForeground)
Sets the weekday foreground.
Parameters:
weekdayForeground - The weekdayForeground to set

setYear

public void setYear(int year)
Sets a specific year. This is needed for correct graphical representation of the days.
Parameters:
year - the new year

Copyright B) 1999 - 2004 Kai Toedter.