blob: 8cdad709a84f15c8addc89baf2039da10522cd83 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.examples.controlexample;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.layout.*;
class DateTimeTab extends Tab {
/* Example widgets and groups that contain them */
DateTime dateTime1;
Group dateTimeGroup;
/* Style widgets added to the "Style" group */
Button dateButton, timeButton, calendarButton;
/**
* Creates the Tab within a given instance of ControlExample.
*/
DateTimeTab(ControlExample instance) {
super(instance);
}
/**
* Creates the "Example" group.
*/
void createExampleGroup () {
super.createExampleGroup ();
/* Create a group for the list */
dateTimeGroup = new Group (exampleGroup, SWT.NONE);
dateTimeGroup.setLayout (new GridLayout ());
dateTimeGroup.setLayoutData (new GridData (SWT.FILL, SWT.FILL, true, true));
dateTimeGroup.setText ("DateTime");
}
/**
* Creates the "Example" widgets.
*/
void createExampleWidgets () {
/* Compute the widget style */
int style = getDefaultStyle();
if (dateButton.getSelection ()) style |= SWT.DATE;
if (timeButton.getSelection ()) style |= SWT.TIME;
if (calendarButton.getSelection ()) style |= SWT.CALENDAR;
if (borderButton.getSelection ()) style |= SWT.BORDER;
/* Create the example widgets */
dateTime1 = new DateTime (dateTimeGroup, style);
}
/**
* Creates the "Style" group.
*/
void createStyleGroup() {
super.createStyleGroup ();
/* Create the extra widgets */
dateButton = new Button(styleGroup, SWT.RADIO);
dateButton.setText("SWT.DATE");
timeButton = new Button(styleGroup, SWT.RADIO);
timeButton.setText("SWT.TIME");
calendarButton = new Button(styleGroup, SWT.RADIO);
calendarButton.setText("SWT.CALENDAR");
borderButton = new Button(styleGroup, SWT.CHECK);
borderButton.setText("SWT.BORDER");
}
/**
* Gets the "Example" widget children.
*/
Control [] getExampleWidgets () {
return new Control [] {dateTime1};
}
/**
* Returns a list of set/get API method names (without the set/get prefix)
* that can be used to set/get values in the example control(s).
*/
String[] getMethodNames() {
return new String[] {"Day", "Hours", "Minutes", "Month", "Seconds", "Year"};
}
/**
* Gets the text for the tab folder item.
*/
String getTabText () {
return "DateTime";
}
/**
* Sets the state of the "Example" widgets.
*/
void setExampleWidgetState () {
super.setExampleWidgetState ();
dateButton.setSelection ((dateTime1.getStyle () & SWT.DATE) != 0);
timeButton.setSelection ((dateTime1.getStyle () & SWT.TIME) != 0);
calendarButton.setSelection ((dateTime1.getStyle () & SWT.CALENDAR) != 0);
borderButton.setSelection ((dateTime1.getStyle () & SWT.BORDER) != 0);
}
}