Codota Logo
Composite.updateLayout
Code IndexAdd Codota to your IDE (free)

How to use
updateLayout
method
in
org.eclipse.swt.widgets.Composite

Best Java code snippets using org.eclipse.swt.widgets.Composite.updateLayout (Showing top 20 results out of 315)

  • Common ways to obtain Composite
private void myMethod () {
Composite c =
  • Codota IconControl control;control.getParent()
  • Codota IconStatusDialog zuper;(Composite) zuper.createDialogArea(parent)
  • Codota IconTitleAreaDialog zuper;(Composite) zuper.createDialogArea(parent)
  • Smart code suggestions by Codota
}
origin: org.eclipse.rap/org.eclipse.rap.rwt

void updateLayout( boolean all ) {
 updateLayout( true, all );
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

void updateLayout (boolean all) {
  updateLayout (true, all);
}

origin: org.eclipse.rap/org.eclipse.rap.rwt

 @Override
 public void run() {
  if( !isDisposed() && layout != null ) {
   markLayout( false, false );
   updateLayout( false, false );
  }
 }
} );
origin: org.eclipse.swt.cocoa.macosx/x86_64

void resized () {
  super.resized ();
  if (layout != null) {
    markLayout (false, false);
    updateLayout (false);
  }
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
boolean setScrollBarVisible (ScrollBar bar, boolean visible) {
  boolean changed = super.setScrollBarVisible (bar, visible);
  if (changed && layout != null) {
    markLayout (false, false);
    updateLayout (false);
  }
  return changed;
}

origin: org.eclipse.swt.cocoa.macosx/x86_64

if (--layoutCount == 0) {
  if ((state & LAYOUT_CHILD) != 0 || (state & LAYOUT_NEEDED) != 0) {
    updateLayout (true);
origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
boolean setScrollBarVisible (ScrollBar bar, boolean visible) {
  boolean changed = super.setScrollBarVisible (bar, visible);
  if (changed && layout != null) {
    markLayout (false, false);
    updateLayout (false);
  }
  return changed;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

if (--layoutCount == 0) {
  if ((state & LAYOUT_CHILD) != 0 || (state & LAYOUT_NEEDED) != 0) {
    updateLayout (true);
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

if (--layoutCount == 0) {
  if ((state & LAYOUT_CHILD) != 0 || (state & LAYOUT_NEEDED) != 0) {
    updateLayout (true);
origin: org.eclipse.swt.cocoa.macosx/x86_64

boolean setScrollBarVisible (ScrollBar bar, boolean visible) {
  boolean changed = super.setScrollBarVisible (bar, visible);
  if (changed && layout != null) {
    markLayout (false, false);
    updateLayout (false);
  }
  return changed;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
boolean setScrollBarVisible (ScrollBar bar, boolean visible) {
  boolean changed = super.setScrollBarVisible (bar, visible);
  if (changed && layout != null) {
    markLayout (false, false);
    updateLayout (false);
  }
  return changed;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

if (--layoutCount == 0) {
  if ((state & LAYOUT_CHILD) != 0 || (state & LAYOUT_NEEDED) != 0) {
    updateLayout (true);
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

if (--layoutCount == 0) {
  if ((state & LAYOUT_CHILD) != 0 || (state & LAYOUT_NEEDED) != 0) {
    updateLayout (true);
origin: org.eclipse.swt.cocoa.macosx/x86_64

if (layout == null && !all) return;
markLayout (changed, all);
updateLayout (all);
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
void sendResize () {
  setResizeChildren (false);
  super.sendResize ();
  if (isDisposed ()) return;
  if (layout != null) {
    markLayout (false, false);
    updateLayout (false, false);
  }
  setResizeChildren (true);
}

origin: org.eclipse.rap/org.eclipse.rap.rwt

if( --layoutCount == 0 ) {
 if( hasState( LAYOUT_CHILD ) || hasState( LAYOUT_NEEDED ) ) {
  updateLayout( true, true );
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

if ((result & RESIZED) != 0 && layout != null) {
  markLayout (false, false);
  updateLayout (false);
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

if ((result & RESIZED) != 0 && layout != null) {
  markLayout (false, false);
  updateLayout (false);
origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

if ((result & RESIZED) != 0 && layout != null) {
  markLayout (false, false);
  updateLayout (false);
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

if (layout != null) {
  markLayout (false, false);
  updateLayout (false, false);
org.eclipse.swt.widgetsCompositeupdateLayout

Popular methods of Composite

  • setLayout
    Sets the layout which is associated with the receiver to be the argument which may be null.
  • <init>
    Constructs a new instance of this class given its parent and a style value describing its behavior a
  • setLayoutData
  • layout
    Forces a lay out (that is, sets the size and location) of all widgets that are in the parent hierarc
  • getDisplay
  • getChildren
    Returns a (possibly empty) array containing the receiver's children. Children are returned in the or
  • getShell
  • getFont
  • getLayout
    Returns layout which is associated with the receiver, or null if one has not been set.
  • setFont
  • getParent
  • computeSize
  • getParent,
  • computeSize,
  • dispose,
  • setBackground,
  • getClientArea,
  • isDisposed,
  • getBackground,
  • setVisible,
  • setSize,
  • setData

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now