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

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

Best Java code snippets using org.eclipse.swt.widgets.Composite.computeTabGroup (Showing top 9 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.platform/org.eclipse.swt.gtk.linux.ppc

Widget computeTabGroup () {
  if (isTabGroup()) return this;
  return parent.computeTabGroup ();
}

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

Widget computeTabGroup () {
  if (isTabGroup ()) return this;
  return parent.computeTabGroup ();
}

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

Widget computeTabGroup () {
  if (isTabGroup()) return this;
  return parent.computeTabGroup ();
}

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

Widget computeTabGroup () {
  if (isTabGroup()) return this;
  return parent.computeTabGroup ();
}

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

Widget computeTabGroup () {
  if (isTabGroup()) return this;
  return parent.computeTabGroup ();
}

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

@Override
Widget computeTabGroup () {
  ToolItem [] items = _getItems ();
  if (tabItemList == null) {
    int i = 0;
    while (i < items.length && items [i].control == null) i++;
    if (i == items.length) return super.computeTabGroup ();
  }
  int index = indexOf(currentFocusItem);
  if (index == -1) index = items.length - 1;
  while (index >= 0) {
    ToolItem item = items [index];
    if (item.isTabGroup ()) return item;
    index--;
  }
  return super.computeTabGroup ();
}

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

@Override
Widget computeTabGroup () {
  ToolItem [] items = _getItems ();
  if (tabItemList == null) {
    int i = 0;
    while (i < items.length && items [i].control == null) i++;
    if (i == items.length) return super.computeTabGroup ();
  }
  int index = indexOf(currentFocusItem);
  if (index == -1) index = items.length - 1;
  while (index >= 0) {
    ToolItem item = items [index];
    if (item.isTabGroup ()) return item;
    index--;
  }
  return super.computeTabGroup ();
}

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

@Override
Widget computeTabGroup () {
  ToolItem [] items = _getItems ();
  if (tabItemList == null) {
    int i = 0;
    while (i < items.length && items [i].control == null) i++;
    if (i == items.length) return super.computeTabGroup ();
  }
  int index = (int)/*64*/OS.SendMessage (handle, OS.TB_GETHOTITEM, 0, 0);
  if (index == -1) index = lastHotId;
  while (index >= 0) {
    ToolItem item = items [index];
    if (item.isTabGroup ()) return item;
    index--;
  }
  return super.computeTabGroup ();
}

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

@Override
Widget computeTabGroup () {
  ToolItem [] items = _getItems ();
  if (tabItemList == null) {
    int i = 0;
    while (i < items.length && items [i].control == null) i++;
    if (i == items.length) return super.computeTabGroup ();
  }
  int index = indexOf(currentFocusItem);
  if (index == -1) index = items.length - 1;
  while (index >= 0) {
    ToolItem item = items [index];
    if (item.isTabGroup ()) return item;
    index--;
  }
  return super.computeTabGroup ();
}

org.eclipse.swt.widgetsCompositecomputeTabGroup

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

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • getExternalFilesDir (Context)
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
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