本文整理汇总了Java中org.jdesktop.swingx.JXMonthView.getCalendar方法的典型用法代码示例。如果您正苦于以下问题:Java JXMonthView.getCalendar方法的具体用法?Java JXMonthView.getCalendar怎么用?Java JXMonthView.getCalendar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jdesktop.swingx.JXMonthView
的用法示例。
在下文中一共展示了JXMonthView.getCalendar方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testLocaleByProviderMonthRendering
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
@Test
public void testLocaleByProviderMonthRendering() {
Locale serbianLatin = getLocal("sh");
if (serbianLatin == null) {
LOG.fine("can't run, no service provider for serbian latin" );
return;
}
JXMonthView monthView = new JXMonthView();
monthView.setLocale(serbianLatin);
Calendar calendar = monthView.getCalendar();
int month = calendar.get(Calendar.MONTH);
BasicMonthViewUI ui = (BasicMonthViewUI) monthView.getUI();
CalendarRenderingHandler handler = ui.getRenderingHandler();
JComponent component = handler.prepareRenderingComponent(monthView,
calendar, CalendarState.TITLE);
String[] monthNames = DateFormatSymbols.getInstance(monthView.getLocale()).getMonths();
String title = ((JLabel) component).getText();
assertTrue("name must be taken from Locale, expected: " + monthNames[month] + " was: " + title,
title.startsWith(monthNames[month]));
}
示例2: getRealizedMonthViewUI
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
* Returns the ui of a realized JXMonthView with
* given componentOrientation and showingWeekNumbers flag.
* It's prefColumns/Rows are set to 2. The first displayedDate is
* 20. Feb. 2008 (to have fixed leading/trailing dates)
*
* The frame is packed and it's size extended by 40, 40 to
* give a slight off-position (!= 0) of the months shown.
*
* NOTE: this must not be used in a headless environment.
*
* @param co the componentOrientation to use
* @return
*/
private BasicMonthViewUI getRealizedMonthViewUI(ComponentOrientation co,
boolean isShowingWeekNumbers) {
JXMonthView monthView = new JXMonthView();
monthView.setPreferredColumnCount(2);
monthView.setPreferredRowCount(2);
monthView.setComponentOrientation(co);
monthView.setShowingWeekNumber(isShowingWeekNumbers);
Calendar calendar = monthView.getCalendar();
calendar.set(2008, Calendar.FEBRUARY, 20);
monthView.setFirstDisplayedDay(calendar.getTime());
JXFrame frame = new JXFrame();
frame.add(monthView);
frame.pack();
frame.setSize(frame.getWidth() + 40, frame.getHeight() + 40);
frame.setVisible(true);
BasicMonthViewUI ui = (BasicMonthViewUI) monthView.getUI();
return ui;
}
示例3: getRealizedMonthViewUI
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
* Returns the ui of a realized JXMonthView with
* given componentOrientation and showingWeekNumbers flag.
* It's prefColumns/Rows are set to 2. The first displayedDate is
* 20. Feb. 2008 (to have fixed leading/trailing dates)
*
* The frame is packed and it's size extended by 40, 40 to
* give a slight off-position (!= 0) of the months shown.
*
*
*
* NOTE: this must not be used in a headless environment.
*
* @param co the componentOrientation to use
* @return
*/
private BasicMonthViewUI getRealizedMonthViewUI(ComponentOrientation co,
boolean isShowingWeekNumbers) {
JXMonthView monthView = new JXMonthView();
monthView.setPreferredColumnCount(2);
monthView.setPreferredRowCount(2);
monthView.setComponentOrientation(co);
monthView.setShowingWeekNumber(isShowingWeekNumbers);
Calendar calendar = monthView.getCalendar();
calendar.set(2008, Calendar.FEBRUARY, 20);
monthView.setFirstDisplayedDay(calendar.getTime());
JXFrame frame = new JXFrame();
frame.add(monthView);
frame.pack();
frame.setSize(frame.getWidth() + 40, frame.getHeight() + 40);
frame.setVisible(true);
BasicMonthViewUI ui = (BasicMonthViewUI) monthView.getUI();
return ui;
}
示例4: testFirstDisplayedInternal
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
* Sanity during internal alias cleanup.
*/
@Test
public void testFirstDisplayedInternal() {
JXMonthView monthView = new JXMonthView();
BasicMonthViewUI ui = (BasicMonthViewUI) monthView.getUI();
assertEquals(monthView.getFirstDisplayedDay(), ui.getFirstDisplayedDay());
Calendar calendar = monthView.getCalendar();
assertEquals(calendar.get(Calendar.MONTH), ui.getFirstDisplayedMonth());
assertEquals(calendar.get(Calendar.YEAR), ui.getFirstDisplayedYear());
}
示例5: showCalendarFrame
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
*
*/
public void showCalendarFrame() {
calendarFrame = new JXFrame("Calendar 2010");
calendarFrame.setName("calendar2010");
calendarFrame.setDefaultCloseOperation(JXFrame.DO_NOTHING_ON_CLOSE);
WindowListener l = new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
calendarFrame.removeWindowListener(this);
hideCalendarFrame();
}
};
calendarFrame.addWindowListener(l);
JXPanel calendar = new JXPanel();
calendar.setBackground(Color.WHITE);
Painter<?> painter = createBackgroundPainter();
calendar.setBackgroundPainter(painter);
JXMonthView monthView = new JXMonthView();
Calendar cal = monthView.getCalendar();
cal.set(Calendar.YEAR, 2010);
cal.set(Calendar.MONTH, Calendar.JANUARY);
monthView.setFirstDisplayedDay(cal.getTime());
monthView.setOpaque(false);
monthView.setPreferredColumnCount(3);
monthView.setPreferredRowCount(4);
// old style: set visual property with JXMonthView api
monthView.setDayForeground(Calendar.SUNDAY, Color.MAGENTA);
// <snip> Custom CalendarRenderingHandler
// new style: install a custom renderingHandler
// (as client property, because no public api support yet)
// which allows to add Highlighters
monthView.putClientProperty(DemoMonthViewUI.RENDERING_HANDLER_KEY,
createRenderingHandler());
// </snip>
DemoUtils.setSnippet("Custom CalendarRenderingHandler", monthView);
calendar.add(monthView);
calendarFrame.add(calendar);
Application application = Application.getInstance(Application.class);
if (application instanceof SingleFrameApplication) {
((SingleFrameApplication) application).show(calendarFrame);
} else {
calendarFrame.pack();
calendarFrame.setLocationRelativeTo(this);
calendarFrame.setVisible(true);
}
}
示例6: assertWeekNumbers
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
* Creates a monthView with the given locale, sets the firstDisplayedDate to the
* first of the given year and month (sanity asserts dayOfWeek and weekofYear) and
* asserts the number of weeks in that month.
*
* @param locale
* @param year
* @param month
* @param expectedDay day of week (sanity)
* @param expectedWeek week of year of the day (sanity)
* @param expectedWeekNumber number of weeks in the month
*/
private void assertWeekNumbers(Locale locale, int year, int month, int expectedDay, int expectedWeek, int expectedWeekNumber) {
JXMonthView monthView = new JXMonthView(locale);
Calendar calendar = monthView.getCalendar();
calendar.set(year, month, 1);
assertEquals("sanity - day", expectedDay, calendar.get(Calendar.DAY_OF_WEEK));
assertEquals("sanity - weekOfYear", expectedWeek, calendar.get(Calendar.WEEK_OF_YEAR));
monthView.setFirstDisplayedDay(calendar.getTime());
assertEquals("number of weeks in month", expectedWeekNumber,
((BasicMonthViewUI) monthView.getUI()).getWeeks(monthView.getCalendar()));
}