Package org.jdesktop.swingx.plaf
Class MonthViewUI
java.lang.Object
javax.swing.plaf.ComponentUI
org.jdesktop.swingx.plaf.MonthViewUI
- Direct Known Subclasses:
BasicMonthViewUI
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract Date
getDayAtLocation
(int x, int y) Returns the Date at the given location.abstract String[]
Returns an array of String to use as names for the days of the week.abstract Date
Returns the last possible date that can be displayed.Methods inherited from class javax.swing.plaf.ComponentUI
contains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
-
Constructor Details
-
MonthViewUI
public MonthViewUI()
-
-
Method Details
-
getDaysOfTheWeek
Returns an array of String to use as names for the days of the week.- Returns:
- array of names for the days of the week.
-
getDayAtLocation
Returns the Date at the given location. May be null if the coordinates don't map to a day in the month which contains the coordinates. Specifically: hitting leading/trailing dates returns null. Mapping pixel to calendar day.- Parameters:
x
- the x position of the location in pixely
- the y position of the location in pixel- Returns:
- the day at the given location or null if the location doesn't map to a day in the month which contains the coordinates.
-
getLastDisplayedDay
Returns the last possible date that can be displayed. This is implemented by the UI since it is in control of layout and may possibly yeild different results based on implementation.It's up to the UI to keep this property, based on internal state and the firstDisplayed as controlled by the JXMonthView.
- Returns:
- Date The date.
-