org.eclipse.swt.widgets.List.setForeground()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(8.9k)|赞(0)|评价(0)|浏览(124)

本文整理了Java中org.eclipse.swt.widgets.List.setForeground()方法的一些代码示例,展示了List.setForeground()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。List.setForeground()方法的具体详情如下:
包路径:org.eclipse.swt.widgets.List
类名称:List
方法名:setForeground

List.setForeground介绍

暂无

代码示例

代码示例来源:origin: net.officefloor.eclipse/net.officefloor.ui

@Override
public void createControl(Composite parent) {
  Composite page = new Composite(parent, SWT.NONE);
  page.setLayout(new GridLayout(1, true));
  // Add listing of issues loading office section
  List list = new List(page, SWT.SINGLE | SWT.BORDER);
  list.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false));
  list.setForeground(ColorConstants.red);
  list.setItems(this.issues);
  // Specify the control
  this.setControl(page);
  // Page always complete as only display
  this.setPageComplete(true);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
public void setForeground (Color color) {
  super.setForeground(color);
  foreground = color;
  if (text != null) text.setForeground(color);
  if (list != null) list.setForeground(color);
  if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

public void setForeground (Color color) {
  super.setForeground(color);
  foreground = color;
  if (text != null) text.setForeground(color);
  if (list != null) list.setForeground(color);
  if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
public void setForeground (Color color) {
  super.setForeground(color);
  foreground = color;
  if (text != null) text.setForeground(color);
  if (list != null) list.setForeground(color);
  if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse/org.eclipse.wst.xsd.ui

public void setForeground (Color color) {
 super.setForeground(color);
 foreground = color;
 if (text != null) text.setForeground(color);
 if (list != null) list.setForeground(color);
 if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
public void setForeground (Color color) {
  super.setForeground(color);
  foreground = color;
  if (text != null) text.setForeground(color);
  if (list != null) list.setForeground(color);
  if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public void setForeground (Color color) {
  super.setForeground(color);
  foreground = color;
  if (text != null) text.setForeground(color);
  if (list != null) list.setForeground(color);
  if (arrow != null) arrow.setForeground(color);
}
/**

代码示例来源:origin: org.eclipse.emf.cdo.transfer/ui

list.setForeground(SWTResourceManager.getColor(SWT.COLOR_RED));
list.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

void createPopup(String[] items, int selectionIndex) {
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);

  int [] popupEvents = {SWT.Close, SWT.Paint};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.FocusOut, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: org.eclipse/org.eclipse.wst.xsd.ui

void createPopup(String[] items, int selectionIndex) {    
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);
  
  int [] popupEvents = {SWT.Close, SWT.Paint, SWT.Deactivate};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);
  
  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

void createPopup(String[] items, int selectionIndex) {
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);

  int [] popupEvents = {SWT.Close, SWT.Paint};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.FocusOut, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

void createPopup(String[] items, int selectionIndex) {
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);

  int [] popupEvents = {SWT.Close, SWT.Paint};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.FocusOut, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

void createPopup(String[] items, int selectionIndex) {		
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);

  int [] popupEvents = {SWT.Close, SWT.Paint};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.FocusOut, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

void createPopup(String[] items, int selectionIndex) {
  // create shell and list
  popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
  int style = getStyle ();
  int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.H_SCROLL;
  if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
  if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
  if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
  list = new List (popup, listStyle);
  if (font != null) list.setFont (font);
  if (foreground != null) list.setForeground (foreground);
  if (background != null) list.setBackground (background);

  int [] popupEvents = {SWT.Close, SWT.Paint};
  for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
  int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.FocusOut, SWT.Dispose};
  for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

  if (items != null) list.setItems (items);
  if (selectionIndex != -1) list.setSelection (selectionIndex);
}
/**

代码示例来源:origin: BiglySoftware/BiglyBT

listPlugins.setLayoutData(Utils.getFilledFormData());
listPlugins.setBackground(cList.getBackground());
listPlugins.setForeground(cList.getForeground());
listPlugins.addSelectionListener(new SelectionListener() {
  @Override

相关文章

微信公众号

最新文章

更多

List类方法