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


Java Spinner.setValues方法代码示例

本文整理汇总了Java中org.eclipse.swt.widgets.Spinner.setValues方法的典型用法代码示例。如果您正苦于以下问题:Java Spinner.setValues方法的具体用法?Java Spinner.setValues怎么用?Java Spinner.setValues使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.swt.widgets.Spinner的用法示例。


在下文中一共展示了Spinner.setValues方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: LinesPerPageDialog

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
private LinesPerPageDialog(Shell parentShell)
{
	shell = new Shell(parentShell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
	shell.setText("Lines per Page");
	shell.setLayout(new GridLayout(3, true));

	spinner = new Spinner(shell, 0);
	spinner.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	spinner.setValues(bzStyledText.getLinesPerPage(), 0, 225, 0, 1, 10);
	spinner.addKeyListener(this);

	okButton = new Button(shell, SWT.PUSH);
	okButton.setText("OK");
	okButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	okButton.addSelectionListener(this);

	cancelButton = new Button(shell, SWT.PUSH);
	cancelButton.setText("Cancel");
	cancelButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	cancelButton.addSelectionListener(this);

	shell.pack();
	shell.open();
}
 
开发者ID:MikeGray-APH,项目名称:BrailleZephyr,代码行数:25,代码来源:BZMenu.java

示例2: CharsPerLineDialog

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
private CharsPerLineDialog(Shell parentShell)
{
	shell = new Shell(parentShell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
	shell.setText("Characters Per Line");
	shell.setLayout(new GridLayout(3, true));

	spinner = new Spinner(shell, 0);
	spinner.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	spinner.setValues(bzStyledText.getCharsPerLine(), 0, 27720, 0, 1, 10);
	spinner.addKeyListener(this);

	okButton = new Button(shell, SWT.PUSH);
	okButton.setText("OK");
	okButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	okButton.addSelectionListener(this);

	cancelButton = new Button(shell, SWT.PUSH);
	cancelButton.setText("Cancel");
	cancelButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	cancelButton.addSelectionListener(this);

	shell.pack();
	shell.open();
}
 
开发者ID:MikeGray-APH,项目名称:BrailleZephyr,代码行数:25,代码来源:BZMenu.java

示例3: LineMarginBellDialog

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
private LineMarginBellDialog(Shell parentShell)
{
	shell = new Shell(parentShell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
	shell.setText("Bell Margin");
	shell.setLayout(new GridLayout(3, true));

	spinner = new Spinner(shell, 0);
	spinner.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	spinner.setValues(bzStyledText.getLineMarginBell(), 0, 27720, 0, 1, 10);
	spinner.addKeyListener(this);

	okButton = new Button(shell, SWT.PUSH);
	okButton.setText("OK");
	okButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	okButton.addSelectionListener(this);

	cancelButton = new Button(shell, SWT.PUSH);
	cancelButton.setText("Cancel");
	cancelButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	cancelButton.addSelectionListener(this);

	shell.pack();
	shell.open();
}
 
开发者ID:MikeGray-APH,项目名称:BrailleZephyr,代码行数:25,代码来源:BZMenu.java

示例4: PageMarginBellDialog

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
private PageMarginBellDialog(Shell parentShell)
{
	shell = new Shell(parentShell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
	shell.setText("Bell Page");
	shell.setLayout(new GridLayout(3, true));

	spinner = new Spinner(shell, 0);
	spinner.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	spinner.setValues(bzStyledText.getPageMarginBell(), 0, 27720, 0, 1, 10);
	spinner.addKeyListener(this);

	okButton = new Button(shell, SWT.PUSH);
	okButton.setText("OK");
	okButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	okButton.addSelectionListener(this);

	cancelButton = new Button(shell, SWT.PUSH);
	cancelButton.setText("Cancel");
	cancelButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL));
	cancelButton.addSelectionListener(this);

	shell.pack();
	shell.open();
}
 
开发者ID:MikeGray-APH,项目名称:BrailleZephyr,代码行数:25,代码来源:BZMenu.java

示例5: createFormContent

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
@Override
protected void createFormContent(IManagedForm mform) {
	mform.getForm().setText("Guide Position");

	FormToolkit toolkit = mform.getToolkit();

	mform.getForm().getBody().setLayout(new GridLayout(4, false));

	toolkit.createLabel(mform.getForm().getBody(), "Guide Position"); //$NON-NLS-1$
	final Spinner width = new Spinner(mform.getForm().getBody(), SWT.BORDER);
	width.setValues(w, 0, Integer.MAX_VALUE, 0, 1, 10);
	width.setToolTipText("Guide Position");
	width.addSelectionListener(new SelectionAdapter() {
		@Override
		public void widgetSelected(SelectionEvent e) {
			w = width.getSelection();
		}
	});
}
 
开发者ID:OpenSoftwareSolutions,项目名称:PDFReporter-Studio,代码行数:20,代码来源:CreateGuideAction.java

示例6: EmptyDataAdapterComposite

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
/**
 * Create the composite.
 * 
 * @param parent
 * @param style
 */
public EmptyDataAdapterComposite(Composite parent, int style, JasperReportsContext jrContext) {
	super(parent, style, jrContext);
	setLayout(new GridLayout(2, false));

	Label lblNewLabel = new Label(this, SWT.NONE);
	lblNewLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 1, 1));
	lblNewLabel.setText(Messages.EmptyDataAdapterComposite_0);

	spinnerRecords = new Spinner(this, SWT.BORDER);
	spinnerRecords.setValues(0, 0, Integer.MAX_VALUE, 0, 1, 10);
	spinnerRecords.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
}
 
开发者ID:OpenSoftwareSolutions,项目名称:PDFReporter-Studio,代码行数:19,代码来源:EmptyDataAdapterComposite.java

示例7: createDialogArea

import org.eclipse.swt.widgets.Spinner; //导入方法依赖的package包/类
/**
 * Create the widgets for the main composite for the Dialog
 */
@Override
protected Control createDialogArea(Composite parent) {

	Composite container = (Composite) super.createDialogArea(parent);
	container.setLayout(new GridLayout(4, false));

	Label totalLabel = new Label(container, SWT.NONE);
	totalLabel.setText("Quantity");

	quantitySpinner = new Spinner(container, SWT.BORDER);
	quantitySpinner.setLayoutData(
			new GridData(SWT.FILL, SWT.CENTER, true, false, 3, 1));
	quantitySpinner.setValues(1, 1, 10000, 0, 1, 10);
	new Label(container, SWT.NONE);

	// Create the X, Y, Z coordinate labels

	Label labelX = new Label(container, SWT.NONE);
	labelX.setLayoutData(
			new GridData(SWT.CENTER, SWT.CENTER, false, false, 1, 1));
	labelX.setText("X");

	Label labelY = new Label(container, SWT.NONE);
	labelY.setLayoutData(
			new GridData(SWT.CENTER, SWT.CENTER, false, false, 1, 1));
	labelY.setText("Y");

	Label labelZ = new Label(container, SWT.NONE);
	labelZ.setLayoutData(
			new GridData(SWT.CENTER, SWT.CENTER, false, false, 1, 1));
	labelZ.setText("Z");

	// Create the shift label

	Label shiftLabel = new Label(container, SWT.NONE);
	shiftLabel.setText("Shift");

	// Create the X, Y, Z shift spinners

	for (int i = 0; i < 3; i++) {
		shiftSpinners[i] = new RealSpinner(container);
		shiftSpinners[i].setBounds(-1.0e6, 1.0e6);
		shiftSpinners[i].getControl().setLayoutData(
				new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
	}

	return container;
}
 
开发者ID:eclipse,项目名称:eavp,代码行数:52,代码来源:ReplicateDialog.java


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