blob: 59a4ee2ea14671c61706d6eeef59ee1813ae1a1e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2011 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.commons.workbench.forms;
import java.util.Calendar;
import java.util.Date;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.mylyn.commons.ui.dialogs.AbstractInPlaceDialog;
import org.eclipse.mylyn.commons.workbench.forms.DatePickerPanel.DateSelection;
import org.eclipse.mylyn.internal.commons.workbench.Messages;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
/**
* @author Ken Sueda
* @author Mik Kersten
* @author Rob Elves
* @author Shawn Minto
* @since 3.7
*/
public class InPlaceDateSelectionDialog extends AbstractInPlaceDialog {
private Date selectedDate = null;
private String title = Messages.DateSelectionDialog_Date_Selection;
private final Calendar initialCalendar = Calendar.getInstance();
private boolean includeTime = true;
private int hourOfDay = 0;
public InPlaceDateSelectionDialog(Shell parentShell, Control openControl, Calendar initialDate, String title,
boolean includeTime, int hourOfDay) {
super(parentShell, SWT.RIGHT, openControl);
this.includeTime = includeTime;
this.hourOfDay = hourOfDay;
if (title != null) {
this.title = title;
}
if (initialDate != null) {
this.initialCalendar.setTime(initialDate.getTime());
}
selectedDate = initialCalendar.getTime();
}
@Override
protected Control createControl(Composite parent) {
getShell().setText(title);
final DatePickerPanel datePanel = new DatePickerPanel(parent, SWT.NULL, initialCalendar, includeTime,
hourOfDay, MARGIN_SIZE);
datePanel.addSelectionChangedListener(new ISelectionChangedListener() {
public void selectionChanged(SelectionChangedEvent event) {
if (!event.getSelection().isEmpty()) {
DateSelection dateSelection = (DateSelection) event.getSelection();
selectedDate = dateSelection.getDate().getTime();
if (dateSelection.isDefaultSelection()) {
close();
}
}
}
});
datePanel.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, false, false));
return datePanel;
}
@Override
public boolean close() {
return super.close();
}
@Override
protected void createButtons(Composite composite) {
}
public Date getDate() {
return selectedDate;
}
}