本文整理汇总了Java中org.jdesktop.swingx.JXMonthView.getUI方法的典型用法代码示例。如果您正苦于以下问题:Java JXMonthView.getUI方法的具体用法?Java JXMonthView.getUI怎么用?Java JXMonthView.getUI使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jdesktop.swingx.JXMonthView
的用法示例。
在下文中一共展示了JXMonthView.getUI方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: testMonthHeaderBoundsAtLocation
import org.jdesktop.swingx.JXMonthView; //导入方法依赖的package包/类
/**
* coordinate mapping: monthBounds in pixel.
*
*/
@Test
public void testMonthHeaderBoundsAtLocation() {
// This test will not work in a headless configuration.
if (GraphicsEnvironment.isHeadless()) {
LOG.fine("cannot run test - headless environment");
return;
}
JXMonthView monthView = new JXMonthView();
monthView.setTraversable(true);
JXFrame frame = new JXFrame();
frame.add(monthView);
frame.pack();
BasicMonthViewUI ui = (BasicMonthViewUI) monthView.getUI();
Rectangle monthBoundsLToR = ui.getMonthHeaderBoundsAtLocation(20, 20);
assertEquals("", ui.getMonthHeaderHeight(), monthBoundsLToR.height);
}
示例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: 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;
}
示例5: 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());
}