congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Composite.isFocusControl
Code IndexAdd Tabnine to your IDE (free)

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

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

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

@Override
public boolean isFocusControl () {
  checkWidget();
  if (webBrowser.isFocusControl ()) return true;
  return super.isFocusControl ();
}

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

@Override
public boolean isFocusControl () {
  checkWidget();
  if (webBrowser.isFocusControl ()) return true;
  return super.isFocusControl ();
}

origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public boolean isFocusControl () {
  checkWidget();
  if (webBrowser.isFocusControl ()) return true;
  return super.isFocusControl ();
}

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

public boolean isFocusControl () {
  checkWidget();
  if (webBrowser.isFocusControl ()) return true;
  return super.isFocusControl ();
}

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

@Override
public boolean isFocusControl () {
  checkWidget();
  if (webBrowser.isFocusControl ()) return true;
  return super.isFocusControl ();
}

origin: org.eclipse/org.eclipse.jdt.ui

public boolean isFocusControl() {
  if (fComposite.isFocusControl())
    return true;
  Control[] children= fComposite.getChildren();
  for (int i= 0; i < children.length; i++) {
    if (children[i].isFocusControl())
      return true;
  }
  return false;
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

  @Override
  public void propertyChange(PropertyChangeEvent event) {
    if (ACTIVE_TAB_BG_END.equals(event.getProperty())) {
      if (fComposite.isFocusControl()) {
        fComposite.setBackground(JFaceResources.getColorRegistry().get(ACTIVE_TAB_BG_END));
      }
    }
  }
};
origin: org.eclipse.jdt/org.eclipse.jdt.ui

  @Override
  public void propertyChange(PropertyChangeEvent event) {
    if (ACTIVE_TAB_BG_END.equals(event.getProperty())) {
      if (fComposite.isFocusControl()) {
        fComposite.setBackground(JFaceResources.getColorRegistry().get(ACTIVE_TAB_BG_END));
      }
    }
  }
};
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
public boolean isFocusControl () {
  checkWidget();
  if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
    return true;
  }
  return super.isFocusControl ();
}
boolean isParentScrolling(Control scrollableParent) {
origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
public boolean isFocusControl () {
  checkWidget();
  if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
    return true;
  }
  return super.isFocusControl ();
}
boolean isParentScrolling(Control scrollableParent) {
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public boolean isFocusControl () {
  checkWidget();
  if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
    return true;
  }
  return super.isFocusControl ();
}
boolean isParentScrolling(Control scrollableParent) {
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
public boolean isFocusControl () {
  checkWidget();
  if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
    return true;
  }
  return super.isFocusControl ();
}
boolean isParentScrolling(Control scrollableParent) {
origin: org.eclipse/org.eclipse.wst.xsd.ui

public boolean isFocusControl () {
 checkWidget();
 if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
  return true;
 } 
 return super.isFocusControl ();
}
void internalLayout (boolean changed) {
origin: org.eclipse.swt.cocoa.macosx/x86_64

public boolean isFocusControl () {
  checkWidget();
  if (text.isFocusControl () || arrow.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
    return true;
  } 
  return super.isFocusControl ();
}
boolean isParentScrolling(Control scrollableParent) {
origin: org.eclipse.swt.cocoa.macosx/x86_64

  break;
case SWT.Activate:
  if (!parent.isFocusControl()) return;
case SWT.FocusIn:
  EventQueue.invokeLater(new Runnable () {
origin: BiglySoftware/BiglyBT

isFocused = cTable.isFocusControl();
org.eclipse.swt.widgetsCompositeisFocusControl

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

  • Parsing JSON documents to java classes using gson
  • onCreateOptionsMenu (Activity)
  • getApplicationContext (Context)
  • addToBackStack (FragmentTransaction)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Socket (java.net)
    Provides a client-side TCP socket.
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • JList (javax.swing)
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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