| com.xoetrope.swing.date.AppointmentPainter
AppointmentPainter | public interface AppointmentPainter (Code) | | Interface which can be added to the CalendarPanel in order to receive paint
events whenever the calendar view changes.
Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
the GNU Public License (GPL), please see license.txt for more details. If
you make commercial use of this software you must purchase a commercial
license from Xoetrope.
$Revision: 1.0 $
|
Method Summary | |
public void | paintDayView(Graphics2D g, XAppointment appointment, double x, double y, double w, double h) The day view of the calendar has been painted. | public void | paintMonthView(Graphics2D g, XAppointment appointment, double x, double y, double w, double h) The month view of the calendar has been painted. |
paintDayView | public void paintDayView(Graphics2D g, XAppointment appointment, double x, double y, double w, double h)(Code) | | The day view of the calendar has been painted.
Parameters: g - the Graphics object Parameters: appointment - the appointment being painted Parameters: x - the x co-ordinate of the appointment object Parameters: y - the y co-ordinate of the appointment object Parameters: w - the width of the appointment object Parameters: h - the height of the appointment object |
paintMonthView | public void paintMonthView(Graphics2D g, XAppointment appointment, double x, double y, double w, double h)(Code) | | The month view of the calendar has been painted.
Parameters: g - the Graphics object Parameters: appointment - the appointment being painted Parameters: x - the x co-ordinate of the appointment object Parameters: y - the y co-ordinate of the appointment object Parameters: w - the width of the appointment object Parameters: h - the height of the appointment object |
|
|