本文整理汇总了Java中org.eclipse.swt.widgets.Scale.setLayoutData方法的典型用法代码示例。如果您正苦于以下问题:Java Scale.setLayoutData方法的具体用法?Java Scale.setLayoutData怎么用?Java Scale.setLayoutData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.widgets.Scale
的用法示例。
在下文中一共展示了Scale.setLayoutData方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: renderTransparency
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
private void renderTransparency(final Shell shell) {
Group group = new Group(shell, SWT.NONE);
group.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 6, 1));
group.setLayout(new GridLayout(1, false));
group.setText("Transparency");
final Scale transparencySlider = new Scale(group, SWT.HORIZONTAL);
transparencySlider.setMinimum(20);
transparencySlider.setMaximum(100);
transparencySlider.setPageIncrement(90);
transparencySlider.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
transparencySlider.setSelection(100);
transparencySlider.addListener(SWT.Selection, new Listener() {
@Override
public void handleEvent(Event event) {
shell.setAlpha(255 * transparencySlider.getSelection() / 100);
}
});
}
示例2: createComponent
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
protected void createComponent(Composite parent) {
composite = section.getWidgetFactory().createComposite(parent);
RowLayout layout = new RowLayout(SWT.HORIZONTAL);
layout.wrap = true;
layout.marginHeight = 0;
layout.marginWidth = 0;
layout.center = true;
composite.setLayout(layout);
scale = new Scale(composite, SWT.HORIZONTAL);
scale.setMinimum(0);
scale.setMaximum(100);
scale.setIncrement(1);
scale.setPageIncrement(5);
RowData rd = new RowData();
rd.width = 100;
scale.setLayoutData(rd);
scale.setToolTipText(pDescriptor.getDescription());
scale.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
if (!isRefresh)
ftext.setText("" + (scale.getSelection() / 100f));
}
});
super.createComponent(composite);
}
示例3: createControls
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
/**
* Creates the controls.
*
* @param parent
* the parent
* @param initialPixelsPerSecond
* the initial pixels per second
*/
protected void createControls(Composite parent, double initialPixelsPerSecond) {
this.setLayout(new GridLayout(1, false));
GridData gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
gd.horizontalSpan = 2;
this.setLayoutData(gd);
pixPerSecondsScale = new Scale(this, SWT.HORIZONTAL);
gd = new GridData();
gd.horizontalAlignment = SWT.FILL;
gd.grabExcessHorizontalSpace = true;
pixPerSecondsScale.setLayoutData(gd);
this.setPixelsPerSecond(initialPixelsPerSecond);
pixPerSecondsScale.addSelectionListener(new SelectionListener() {
public void widgetDefaultSelected(SelectionEvent arg0) {
}
public void widgetSelected(SelectionEvent ev) {
int val = pixPerSecondsScale.getSelection();
double pps = (((double) val) * pixelsPerSecond) / 100;
for (TimeScaleListener l : listeners) {
l.timeScaleChanged(pps);
}
}
});
}
示例4: createRankGroup
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
private void createRankGroup(Composite parent) {
Composite prioGroup = new Composite(parent, SWT.NONE);
prioGroup.setLayout(new GridLayout(2, false));
Label minRankLabel = new Label(prioGroup, SWT.NONE);
minRankLabel.setText(getMessage("property.minRank") + System.getProperty("line.separator")
+ getMessage("property.minRank.line2"));
minRankLabel.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, false));
minRankSlider = new Scale(prioGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
minRankSlider.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, true, false));
minRankSlider.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent event) {
int rank = minRankSlider.getSelection();
getCurrentProps().getFilterSettings().setMinRank(rank);
updateRankValueLabel();
}
});
minRankSlider.setMinimum(BugRanker.VISIBLE_RANK_MIN);
minRankSlider.setMaximum(BugRanker.VISIBLE_RANK_MAX);
minRankSlider.setSelection(getCurrentProps().getFilterSettings().getMinRank());
minRankSlider.setIncrement(1);
minRankSlider.setPageIncrement(5);
Label dummyLabel = new Label(prioGroup, SWT.NONE);
dummyLabel.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, false, false));
rankValueLabel = new Label(prioGroup, SWT.NONE);
rankValueLabel.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, true, false));
updateRankValueLabel();
}
示例5: createScale
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
private void createScale(Composite composite) {
Scale scale = new Scale(composite, SWT.NONE);
scale.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
double[] values = new double[] { 0.25, 0.5, 0.75, 1.0, 1.5,
2.0, 2.5, 3.0, 4.0, 5.0, 10.0, 20.0 };
scale.setIncrement(9);
scale.setMinimum(0);
scale.setMaximum(99);
Controls.onSelect(scale, (e) -> {
ZoomManager zoom = part.getZoomManager();
zoom.setZoom(values[scale.getSelection() / 9]);
});
scale.setSelection(33);
}
示例6: createControl
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
@Override
public void createControl(Composite parent)
{
Composite composite = new Composite(parent, SWT.NULL);
composite.setLayout(new GridLayout(2, false));
new Label(composite, SWT.NULL).setText(Localizer.getMessage("ALGORITHM") + ": ");
option = new ComboViewer(composite, SWT.BORDER | SWT.READ_ONLY);
option.getControl().setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
option.setContentProvider(new OptionContentProvider());
option.setLabelProvider(new LabelProvider());
option.setInput(bean);
new Label(composite, SWT.NULL).setText(Localizer.getMessage("OVERLAP_PERCENT") + ": ");
overlapPercent = new Scale(composite, SWT.HORIZONTAL);
overlapPercent.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
overlapPercent.setMinimum(0);
overlapPercent.setMaximum(100);
overlapPercent.setIncrement(1);
overlapPercent.setPageIncrement(10);
currentPercent = new Label(composite, SWT.LEFT | SWT.FILL);
currentPercent.setText(this.bean.getOverlapPercent() + "% ");
overlapPercent.addListener(SWT.Selection, new OverlapListener());
this.setControl(composite);
this.bind(option, "option");
this.bind(overlapPercent, "overlapPercent");
}
示例7: createControl
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
/**
* Create contents of the wizard.
*
* @param parent
*/
public void createControl(Composite parent) {
Composite container = new Composite(parent, SWT.NULL);
setControl(container);
container.setLayout(new GridLayout(2, false));
Label lbl = new Label(container, SWT.NONE);
lbl.setText(Messages.ReportTemplatesWizardPage_zoom);
GridData gd = new GridData(GridData.HORIZONTAL_ALIGN_END | GridData.FILL_HORIZONTAL);
lbl.setLayoutData(gd);
scale = new Scale(container, SWT.NONE);
scale.setMinimum(1);
scale.setMaximum(50);
scale.setIncrement(1);
scale.setPageIncrement(5);
SashForm sashForm = new SashForm(container, SWT.NONE);
sashForm.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1));
// list = new org.eclipse.swt.widgets.List(sashForm, SWT.BORDER | SWT.SINGLE | SWT.V_SCROLL);
Table table = new Table(sashForm, SWT.V_SCROLL | SWT.SINGLE | SWT.BORDER);
table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, true));
gd = new GridData(GridData.HORIZONTAL_ALIGN_END);
gd.widthHint = 150;
scale.setLayoutData(gd);
galleryComposite = new Composite(sashForm, SWT.NONE);
layout = new StackLayout();
galleryComposite.setLayout(layout);
categoryList = BuiltInCategories.getCategoriesList();
for (String cat : categoryList) {
cachedGalleries.put(cat, null);
}
bundles = StudioTemplateManager.getInstance().getTemplateBundles();
findTemplates();
// initializeBackgroundData();
sashForm.setWeights(new int[] { 20, 80 });
scale.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
zoomModified();
}
});
container.addMouseWheelListener(scaleListener);
//galleryComposite.addMouseWheelListener(scaleListener);
scale.setSelection(6);
// Manually fire the event because the invocation
// of #Scale.selection() does not fire it.
zoomModified();
createTableColumn(table);
showGallery(categoryList.get(0));
}
示例8: createParameterArea
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
protected void createParameterArea(Composite parent) {
GridLayout gl = new GridLayout();
gl.numColumns = 2;
parent.setLayout(gl);
_repeatHeader = new Button(parent, SWT.CHECK);
_repeatHeader.setSelection(_configuration.getRepeatHeader());
_repeatHeader.setText("Repeat header");
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalSpan = 2;
_repeatHeader.setLayoutData(gd);
final Label scaleText = new Label(parent, SWT.RIGHT);
scaleText.setText(getScaleText());
gd = new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalSpan = 2;
scaleText.setLayoutData(gd);
final Scale scale = new Scale(parent, SWT.HORIZONTAL);
gd = new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalSpan = 2;
scale.setLayoutData(gd);
scale.setMaximum(1000);
scale.setMinimum(10);
scale.setSelection((int) (_configuration.getScale() * 100));
scale.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent ev) {
int val = scale.getSelection();
double s = (double) val / 100.0;
_configuration.setScale(s);
scaleText.setText(getScaleText());
updateConf();
}
public void widgetDefaultSelected(SelectionEvent arg0) {
}
});
_pagesLabel = new Label(parent, SWT.RIGHT);
gd = new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalSpan = 2;
_pagesLabel.setLayoutData(gd);
_printerData = _pdatas[_printerCombo.getSelectionIndex()];
Printer printer = new Printer(_printerData);
_tablePrinter.setPrinter(printer);
Point pages = _tablePrinter.calculatePageCount(_configuration);
printer.dispose();
_pagesLabel.setText(getPagesText(pages));
}
示例9: createSlider
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
private void createSlider (final String metricKey, Composite parent)
{
MetricsDetails md = SomoxConfigurationUtil.getMetricDescription(metricKey);
Label lblName = new Label(parent, SWT.NONE);
GridData gd_lblNewLabel = new GridData(SWT.LEFT, SWT.CENTER, false, false, 1, 1);
lblName.setLayoutData(gd_lblNewLabel);
lblName.setText(" "+md.metricLabel);
Label lblValue = new Label(parent, SWT.BORDER);
lblValue.setAlignment(SWT.CENTER);
GridData gd_lblNewLabel_1 = new GridData(SWT.LEFT, SWT.CENTER, false, false, 1, 1);
gd_lblNewLabel_1.widthHint = 30;
gd_lblNewLabel_1.minimumWidth = 50;
lblValue.setLayoutData(gd_lblNewLabel_1);
final Scale scale = new Scale(parent, SWT.NONE);
GridData gd_scale = new GridData(SWT.LEFT, SWT.CENTER, false, false, 1, 1);
gd_scale.widthHint = 120;
scale.setLayoutData(gd_scale);
scale.setMinimum(1);
bindingContext.bindValue(
WidgetProperties.text().observe(lblValue),
WidgetProperties.selection().observe(scale),
null, null);
scale.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
// TODO: Use batch executor
SomoxConfigurationUtil.setMetricValueByKey(metricKey, scale.getSelection()/100d, alternative.getSomoxConfiguration());
SomoxConfigurationUtil.persistMetricValue(metricKey, scale.getSelection()/100d, alternative);
}
});
lblName.setToolTipText(md.metricExplanantion);
lblValue.setToolTipText(md.metricExplanantion);
scale.setToolTipText(md.metricExplanantion);
mapScales.put(metricKey, scale);
}
示例10: construct
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
public Control construct(Composite parent) {
Composite composite = new Composite(parent, SWT.NONE);
GridDataFactory.swtDefaults().align(SWT.FILL, SWT.FILL)
.grab(true, true).applyTo(composite);
GridLayoutFactory.swtDefaults().numColumns(2).applyTo(composite);
Scale scale = new Scale (composite, SWT.BORDER);
Rectangle clientArea = composite.getClientArea ();
scale.setBounds (clientArea.x, clientArea.y, 500, 64);
scale.setMaximum (40);
scale.setPageIncrement (5);
final Text t = new Text(composite, SWT.BORDER | SWT.MULTI);
t.setText ("Test at the moving");
Rectangle clientArea2 = composite.getClientArea ();
t.setBounds (clientArea2.x, clientArea2.y, 400, 300);
scale.addListener (SWT.Selection, new Listener () {
public void handleEvent (Event e) {
t.setText("Moving is executed");
}
});
Label label = new Label(composite, SWT.NULL);
label.setText("Volume:");
final Scale scale2 = new Scale(composite, SWT.VERTICAL);
scale2.setBounds(0, 0, 40, 200);
scale2.setMaximum(20);
scale2.setMinimum(0);
scale2.setIncrement(1);
scale2.setPageIncrement(5);
final Text value = new Text(composite, SWT.BORDER | SWT.SINGLE);
scale2.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
int perspectiveValue = scale2.getMaximum() - scale2.getSelection() + scale2.getMinimum();
value.setText("Vol: " + perspectiveValue);
}
});
value.setEditable(false);
scale2.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER));
value.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER));
return null;
}
示例11: createPartControl
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
public void createPartControl(Composite parent) {
SashForm form = new SashForm(parent, SWT.NONE);
Composite dataComp = new Composite(form, SWT.NONE);
dataComp.setLayout(new GridLayout(1, false));
Label lblDebugTargets = new Label(dataComp, SWT.NONE);
lblDebugTargets.setText("Array Expressions:");
treeWatchedVariables = new TreeViewer(dataComp, SWT.BORDER);
treeWatchedVariables.getTree().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
Composite viewsComp = new Composite(form, SWT.NONE);
viewsComp.setLayout(new GridLayout(1, false));
Composite viewsHeader = new Composite(viewsComp, SWT.NONE);
viewsHeader.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 1, 1));
GridLayout headerLayout = new GridLayout(8, false);
headerLayout.marginTop = headerLayout.marginBottom = headerLayout.marginHeight = 0;
viewsHeader.setLayout(headerLayout);
Label lblShowAs = new Label(viewsHeader, SWT.NONE);
lblShowAs.setText("View as:");
buttonSeries = new Button(viewsHeader, SWT.RADIO | SWT.SELECTED);
buttonSeries.setText("Series");
buttonSeries.setSelection(true);
buttonHistogram = new Button(viewsHeader, SWT.RADIO);
buttonHistogram.setText("Histogram");
buttonTable = new Button(viewsHeader, SWT.RADIO);
buttonTable.setText("Table");
Label lblFullTextSearch = new Label(viewsHeader, SWT.NONE);
lblFullTextSearch.setText("Instant Text Search:");
lblFullTextSearch.setAlignment(SWT.FILL);
txtFullTextSearch = new Text(viewsHeader, SWT.SINGLE);
Label lblZoom = new Label(viewsHeader, SWT.NONE);
lblZoom.setText("Zoom:");
sliderZoom = new Scale(viewsHeader, SWT.NONE);
sliderZoom.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
sliderZoom.setMinimum(0);
sliderZoom.setSelection(10);
sliderZoom.setMaximum(20);
compViews = new ScrolledComposite(viewsComp, SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER);
compViews.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
viewsArea = new SashForm(compViews, SWT.NONE);
viewsArea.setOrientation(SWT.VERTICAL);
compViews.setContent(viewsArea);
form.setWeights(new int[]{1, 3});
compViews.setExpandHorizontal(true);
compViews.setExpandVertical(true);
compViews.addControlListener( new ControlAdapter() {
@Override
public void controlResized( ControlEvent e ) {
ScrollBar sbX = compViews.getHorizontalBar();
if ( sbX != null ) {
sbX.setPageIncrement( sbX.getThumb() );
sbX.setIncrement( Math.max( 1, sbX.getThumb() / 5 ) );
}
}
});
}
示例12: createContents
import org.eclipse.swt.widgets.Scale; //导入方法依赖的package包/类
@Override
protected Control createContents(final Composite parent) {
FormToolkit toolkit = new FormToolkit(Display.getCurrent());
ScrolledForm scrolledForm = toolkit.createScrolledForm(parent);
Composite body = scrolledForm.getBody();
body.setLayout(new FillLayout());
toolkit.paintBordersFor(body);
SashForm sashForm = new SashForm(body, SWT.VERTICAL);
toolkit.adapt(sashForm, true, true);
Section categorySection = toolkit
.createSection(sashForm, ExpandableComposite.NO_TITLE
| ExpandableComposite.EXPANDED);
categorySection.setText("");
Composite composite = toolkit.createComposite(categorySection,
SWT.NONE);
composite.setLayout(new GridLayout());
categorySection.setClient(composite);
toolkit.paintBordersFor(composite);
final Scale scale = new Scale(composite, SWT.NONE);
scale.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final double[] values = GraphConfig.ZOOM_LEVELS;
final int increment = 100 / (values.length - 1);
scale.setIncrement(increment);
scale.setMinimum(0);
scale.setMaximum(100);
Controls.onSelect(scale, (e) -> {
zoomManager.setZoom(values[scale.getSelection() / increment]);
});
scale.setSelection(increment * (values.length - 1) / 2);
Canvas canvas = new Canvas(composite, SWT.BORDER);
canvas.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
lws = new LightweightSystem(canvas);
thumbnail = new ScrollableThumbnail(port);
thumbnail.setSource(figure);
lws.setContents(thumbnail);
disposeListener = new DisposeListener() {
@Override
public void widgetDisposed(final DisposeEvent e) {
if (thumbnail != null) {
thumbnail.deactivate();
thumbnail = null;
}
if (control != null && !control.isDisposed())
control.removeDisposeListener(disposeListener);
close();
}
};
control.addDisposeListener(disposeListener);
return super.createContents(parent);
}