/* * Copyright (c) 2016, Alex Blewitt, Bandlem Ltd * Copyright (c) 2016, Packt Publishing Ltd * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package com.packtpub.e4.clock.ui.internal; import java.time.ZoneId; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Shell; import com.packtpub.e4.clock.ui.ClockWidget; public class TimeZoneDialog extends MessageDialog { private ZoneId timeZone; public TimeZoneDialog(Shell parentShell, ZoneId timeZone) { super(parentShell, timeZone.getId(), null, "Time Zone " + timeZone.getId(), INFORMATION, new String[] { IDialogConstants.OK_LABEL }, 0); this.timeZone = timeZone; } protected Control createCustomArea(Composite parent) { ClockWidget clock = new ClockWidget(parent, SWT.NONE, new RGB(128, 255, 0)); clock.setZone(timeZone); return parent; } }