Package org.freeplane.core.ui.components.calendar

Examples of org.freeplane.core.ui.components.calendar.JCalendar


  final private JButton showEditorBtn;

  public TimeComboBoxEditor(boolean timeVisible) {
    showEditorBtn = new JButton();
    showEditorBtn.addActionListener(new ShowCalendarAction());
    calenderComponent = new JCalendar(new Date(), Locale.getDefault(), true, true, timeVisible);
    calenderComponent.addMouseListener(new MouseAdapter() {
      @Override
      public void mouseClicked(final MouseEvent e) {
        calendarPopupMenu.setVisible(false);
      }
View Full Code Here


        final JTripleCalendar trippleCalendar = new JTripleCalendar();
        calendarComponent = trippleCalendar.getCalendar();
        calendarContainer = trippleCalendar;
      }
      else {
        calendarComponent = new JCalendar();
        calendarContainer = calendarComponent;
      }
      calendarComponent.setCalendar(TimeManagement.this.calendar);
      if (dialog != null) {
        dialog.addWindowFocusListener(new WindowAdapter() {
View Full Code Here

TOP

Related Classes of org.freeplane.core.ui.components.calendar.JCalendar

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.