Scale.setLayoutData
Code IndexAdd Codota to your IDE (free)

Best code snippets using org.eclipse.swt.widgets.Scale.setLayoutData(Showing top 3 results out of 315)

origin: org.eclipse/jface

protected void doFillIntoGrid(Composite parent, int numColumns) {
  Control control = getLabelControl(parent);
  GridData gd = new GridData();
  control.setLayoutData(gd);
  scale = getScaleControl(parent);
  gd = new GridData(GridData.FILL_HORIZONTAL);
  gd.verticalAlignment = GridData.FILL;
  gd.horizontalSpan = numColumns - 1;
  gd.grabExcessHorizontalSpace = true;
  scale.setLayoutData(gd);
  updateScale();
}
origin: stackoverflow.com

scale.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
scale.setMaximum (4);
scale.setPageIncrement (1);
origin: pmd/pmd-eclipse-plugin

logLevelScale.setMaximum(6);
logLevelScale.setPageIncrement(1);
logLevelScale.setLayoutData(gridData3);
logLevelScale.addSelectionListener(new SelectionListener() {
  public void widgetSelected(SelectionEvent event) {
org.eclipse.swt.widgetsScalesetLayoutData

Popular methods of Scale

  • setMaximum
  • setSelection
  • <init>
  • getSelection
  • setMinimum
  • addSelectionListener
  • getMinimum
  • setPageIncrement
  • addDisposeListener
  • addListener
  • addMouseListener
  • getLayoutData
  • addMouseListener,
  • getLayoutData,
  • getMaximum,
  • isDisposed,
  • setEnabled,
  • setFocus,
  • setFont,
  • setIncrement

Popular classes and methods

  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • onCreateOptionsMenu (Activity)
  • getContentResolver (Context)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on *
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Reference (javax.naming)

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)