Class MonthViewUI

java.lang.Object
javax.swing.plaf.ComponentUI
org.jdesktop.swingx.plaf.MonthViewUI
Direct Known Subclasses:
BasicMonthViewUI

public abstract class MonthViewUI extends ComponentUI
  • Constructor Details

    • MonthViewUI

      public MonthViewUI()
  • Method Details

    • getDaysOfTheWeek

      public abstract String[] 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

      public abstract Date getDayAtLocation(int x, int y)
      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 pixel
      y - 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

      public abstract Date 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.