当前位置: 首页>>代码示例>>Java>>正文


Java JXMonthView.getUI方法代码示例

本文整理汇总了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]));
    
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:23,代码来源:BasicMonthViewUITest.java

示例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);
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:21,代码来源:BasicMonthViewUITest.java

示例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;
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:33,代码来源:BasicMonthViewUITest.java

示例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;
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:35,代码来源:BasicMonthViewUIIssues.java

示例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());
}
 
开发者ID:RockManJoe64,项目名称:swingx,代码行数:13,代码来源:BasicMonthViewUITest.java


注:本文中的org.jdesktop.swingx.JXMonthView.getUI方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。