Tabnine Logo
Composite.fixChildren
Code IndexAdd Tabnine to your IDE (free)

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

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

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TableColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TreeColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TreeColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TreeColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TableColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  for (int i=0; i<columnCount; i++) {
    TableColumn column = columns [i];
    if (column.toolTipText != null) {
      column.setToolTipText(oldShell, null);
      column.setToolTipText(newShell, column.toolTipText);
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  ToolItem [] items = getItems ();
  if (toolTipText == null) {
    for (int i = 0; i < items.length; i++) {
      ToolItem item = items [i];
      if (item.toolTipText != null) {
        item.setToolTipText(oldShell, null);
        item.setToolTipText(newShell, item.toolTipText);
      }
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  ToolItem [] items = getItems ();
  if (toolTipText == null) {
    for (int i = 0; i < items.length; i++) {
      ToolItem item = items [i];
      if (item.toolTipText != null) {
        item.setToolTipText(oldShell, null);
        item.setToolTipText(newShell, item.toolTipText);
      }
    }
  }
}

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

@Override
void fixChildren (Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu [] menus) {
  super.fixChildren (newShell, oldShell, newDecorations, oldDecorations, menus);
  ToolItem [] items = getItems ();
  if (toolTipText == null) {
    for (int i = 0; i < items.length; i++) {
      ToolItem item = items [i];
      if (item.toolTipText != null) {
        item.setToolTipText(oldShell, null);
        item.setToolTipText(newShell, item.toolTipText);
      }
    }
  }
}

org.eclipse.swt.widgetsCompositefixChildren

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

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • putExtra (Intent)
  • notifyDataSetChanged (ArrayAdapter)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now