当前位置: 首页>>代码示例>>Java>>正文


Java ColorDialog类代码示例

本文整理汇总了Java中org.eclipse.swt.widgets.ColorDialog的典型用法代码示例。如果您正苦于以下问题:Java ColorDialog类的具体用法?Java ColorDialog怎么用?Java ColorDialog使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ColorDialog类属于org.eclipse.swt.widgets包,在下文中一共展示了ColorDialog类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addSelectionListeneronButton

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
private void addSelectionListeneronButton(Button button, TableEditor editor) {
	button.addSelectionListener(new SelectionAdapter() {

		@Override
		public void widgetSelected(SelectionEvent e) {
			ColorDialog dlg = new ColorDialog(Display.getCurrent().getActiveShell());
			dlg.setRGB(new RGB(0, 0, 0));
			RGB rgb = dlg.open();
			if (rgb != null) {
				Color color = new Color(shell.getDisplay(), rgb);
				String colorValue = convertRGBToHEX(rgb);
				editor.getItem().setText(1, colorValue);
				color.dispose();
			}
		}
	});
}
 
开发者ID:capitalone,项目名称:Hydrograph,代码行数:18,代码来源:HeaderAndDataFormattingDialog.java

示例2: addListeners

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
private void addListeners(){
	this.button.addSelectionListener(new SelectionAdapter() {
		public void widgetSelected(SelectionEvent event) {
			ColorDialog dlg = new ColorDialog(ButtonColor.this.button.getShell());
			dlg.setRGB(ButtonColor.this.value);
			dlg.setText(TuxGuitar.getProperty("choose-color"));
			RGB result = dlg.open();
			if (result != null) {
				ButtonColor.this.loadColor(result);
			}
		}
	});
	this.button.addDisposeListener(new DisposeListener() {
		public void widgetDisposed(DisposeEvent e) {
			ButtonColor.this.disposeColor();
		}
	});
}
 
开发者ID:theokyr,项目名称:TuxGuitar-1.3.1-fork,代码行数:19,代码来源:TGMatrixConfig.java

示例3: addListeners

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
private void addListeners(){
	this.button.addSelectionListener(new SelectionAdapter() {
		public void widgetSelected(SelectionEvent event) {
			if(StylesOption.this.initialized){
				ColorDialog dlg = new ColorDialog(getShell());
				dlg.setRGB(ButtonColor.this.value);
				dlg.setText(TuxGuitar.getProperty("choose-color"));
				RGB result = dlg.open();
				if (result != null) {
					ButtonColor.this.loadColor(result);
				}
			}
		}
	});
	this.button.addDisposeListener(new DisposeListener() {
		public void widgetDisposed(DisposeEvent e) {
			ButtonColor.this.disposeColor();
		}
	});
}
 
开发者ID:theokyr,项目名称:TuxGuitar-1.3.1-fork,代码行数:21,代码来源:StylesOption.java

示例4: editColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
/**
 * Opens a dialog to change the color.
 *
 * @param color
 *          the color to change
 * @return the changed color
 */
public static String editColor(Diagram diagram, String colorStr) {
  Color color = null;
  if (colorStr == null) {
    color = Graphiti.getGaService().manageColor(diagram, IColorConstant.BLACK);
  } else {
    color = EditorUtils.buildColorFromString(diagram, colorStr);
  }
  ColorDialog colorDialog = new ColorDialog(Display.getDefault().getActiveShell());
  colorDialog.setText("Choose color");
  colorDialog.setRGB(new RGB(color.getRed(), color.getGreen(), color.getBlue()));

  RGB retRgb = colorDialog.open();
  if (retRgb == null) {
    return colorStr;
  } else {
    return EditorUtils.toString(retRgb);
  }
}
 
开发者ID:eclipse,项目名称:triquetrum,代码行数:26,代码来源:EditorUtils.java

示例5: editColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
/**
 * Opens a dialog to change the color.
 * 
 * @param color
 *            the color to change
 * @return the changed color
 */
public static Color editColor(Color color) {
	if (color != null && color.eContainer() instanceof Diagram) {
		Shell shell = getShell();
		ColorDialog colorDialog = new ColorDialog(shell);
		colorDialog.setText("Choose Color");
		colorDialog.setRGB(new RGB(color.getRed(), color.getGreen(), color.getBlue()));

		RGB retRgb = colorDialog.open();
		if (retRgb == null) {
			return null;
		}

		Diagram diagram = (Diagram) color.eContainer();
		Color newColor = Graphiti.getGaService().manageColor(diagram, retRgb.red, retRgb.green, retRgb.blue);
		return newColor;

	}

	return null;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:28,代码来源:SampleUtil.java

示例6: mouseDoubleClick

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
@Override
public void mouseDoubleClick(final MouseEvent e) {
	final int x = e.x + boxText.getHorizontalPixel();
	final int y = e.y + boxText.getTopPixel();

	int level = -1;
	for (final Box b : visibleBoxes()) {
		if (contains(b.rec, x, y)) {
			if (level < b.level) {
				level = b.level;
			}
		}
	}
	level++;

	final ColorDialog colorDialog = new ColorDialog(boxText.getShell());
	final Color oldColor1 = settings.getColor(level);
	if (oldColor1 != null) {
		colorDialog.setRGB(oldColor1.getRGB());
	}

	settings.setColor(level, colorDialog.open());
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:24,代码来源:BoxDecoratorImpl.java

示例7: ColorPicker

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
public ColorPicker(Composite parent, final Color originalColor) {
    super(parent, SWT.SHADOW_OUT);
    if (originalColor == null) throw new IllegalArgumentException("null");
    this.selectedColor = originalColor;
    setImage(getColorImage(originalColor));
    addMouseListener(
            new MouseAdapter() {
                @Override
                public void mouseDown(MouseEvent e) {
                    ColorDialog dialog = new ColorDialog(new Shell(Display.getDefault(), SWT.SHELL_TRIM));
                    dialog.setRGB(selectedColor.getRGB());
                    RGB selected = dialog.open();
                    if (selected != null) {
                        update(selected);
                    }
                }
            });
}
 
开发者ID:heartsome,项目名称:translationstudio8,代码行数:19,代码来源:ColorPicker.java

示例8: open

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
/**
 * Activate the editor for this selector. This causes the color selection
 * dialog to appear and wait for user input.
 * 
 * @since 3.2
 */
public void open() {
	ColorDialog colorDialog = new ColorDialog(fButton.getShell());
	colorDialog.setRGB(fColorValue);
	RGB newColor = colorDialog.open();
	if (newColor != null) {
	    RGB oldValue = fColorValue;
	    fColorValue = newColor;
	    final Object[] finalListeners = getListeners();
	    if (finalListeners.length > 0) {
	        PropertyChangeEvent pEvent = new PropertyChangeEvent(
	                this, PROP_COLORCHANGE, oldValue, newColor);
	        for (int i = 0; i < finalListeners.length; ++i) {
	            IPropertyChangeListener listener = (IPropertyChangeListener) finalListeners[i];
	            listener.propertyChange(pEvent);
	        }
	    }
	    updateColorImage();
	}
}
 
开发者ID:ghillairet,项目名称:gef-gwt,代码行数:26,代码来源:ColorSelector.java

示例9: selectColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
/**
 * Open up a widget color wheel with the specified title.
 * Should be platform specific.
 * the specified integer should be in the following format.
 * lowest order 8 bits red
 * middle order 8 bits green
 * highest order 8 bits blue
 * ie: xxxxxxxx xxxxxxxx  xxxxxxxx
 *     BLUE     GREEN     RED
 */
public Integer selectColor(int oldColor, String dialogTitle)
{
    RGB old = GraphicsUtil.getRGBFromColor(oldColor);

    // Open the platform specific color chooser
    ColorDialog dialog = new ColorDialog(window);
    dialog.setRGB(old);
    if (dialogTitle != null)
    {
        dialog.setText(dialogTitle);
    }
    RGB newColor = dialog.open();

    if (newColor != null) {
        return new Integer(GraphicsUtil.getColorFromRGB(newColor));
    }

    return null;
}
 
开发者ID:cogtool,项目名称:cogtool,代码行数:30,代码来源:DefaultInteraction.java

示例10: changeBackgroundColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
public void changeBackgroundColor() {
	ColorDialog cd = new ColorDialog(getShell());
	cd.setRGB(text.getBackground().getRGB());
	cd.setText("Choose a color");

	RGB newColor = cd.open();
	if (newColor != null)
		Config.getInstance().setValue(Config.BACKGROUND_COLOR,
				new Color(Display.getCurrent(), newColor));
	updateFont();
}
 
开发者ID:juanerasmoe,项目名称:pmTrans,代码行数:12,代码来源:EditingPane.java

示例11: changeFontColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
public void changeFontColor() {
	ColorDialog cd = new ColorDialog(getShell());
	cd.setRGB(text.getBackground().getRGB());
	cd.setText("Choose a color");

	RGB newColor = cd.open();
	if (newColor != null)
		Config.getInstance().setValue(Config.FONT_COLOR,
				new Color(Display.getCurrent(), newColor));
	updateFont();
}
 
开发者ID:juanerasmoe,项目名称:pmTrans,代码行数:12,代码来源:EditingPane.java

示例12: pickColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
/**
 * Opens a dialog to let the user pick a color.
 *
 * @param shell
 *        the shell on which to open the dialog (must not be
 *        <code>null</code>)
 * @param initialColor
 *        the initial color to set in the dialog, or <code>null</code> to
 *        use the dialog default
 * @return the color the user picked, or <code>null</code> if the dialog was
 *         cancelled
 */
public String pickColor(final Shell shell, final RGB initialColor) {
    Check.notNull(shell, "shell"); //$NON-NLS-1$

    /*
     * Mac OS X is Extremely Weird Here!
     *
     * On Mac OS X, we open the ColorDialog and it's automatically hooked
     * into the selection in Safari! Changing colors in the dialog while
     * it's open immediately changes the color in the document, before the
     * dialog even closes (we're blocking in this method). We always get
     * null back from dialog.open() when the dialog is closed, so we don't
     * set anything in the document, but that's OK because Safari is
     * magically updating its document for us. Very weird!
     */

    final ColorDialog dialog = new ColorDialog(shell);

    if (initialColor != null) {
        dialog.setRGB(initialColor);
    }

    final RGB rgb = dialog.open();
    if (rgb != null) {
        return String.format("#%1$02x%2$02x%3$02x", rgb.red, rgb.green, rgb.blue); //$NON-NLS-1$
    }
    return null;
}
 
开发者ID:Microsoft,项目名称:team-explorer-everywhere,代码行数:40,代码来源:HTMLEditor.java

示例13: updatePropertyFromWidget

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
private void updatePropertyFromWidget() {
	ColorDialog cd = new ColorDialog(Display.getCurrent().getActiveShell());
	cd.setText("Choose color");
	cd.setRGB(getValueOfProperty().getRGB());
	RGB newColor = cd.open();
	if (newColor == null)
		return;
			
	try {
		BeanUtils.setProperty(bean, property, Colors.createColor(newColor));
	} catch (IllegalAccessException | InvocationTargetException e) {
		throw new RuntimeException(e);
	}	
}
 
开发者ID:Transkribus,项目名称:TranskribusSwtGui,代码行数:15,代码来源:BindColorToButtonListener.java

示例14: openDialogBox

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
protected Object openDialogBox(Control cellEditorWindow) {
	ColorDialog dialog = new ColorDialog(cellEditorWindow.getShell());
       Object value = getValue();
       if (value != null) {
		dialog.setRGB((RGB) value);
	}
       value = dialog.open();
       RGB rgb = dialog.getRGB();//return the same if cancelled
       if (rgb != null){
       	return rgb;//rgbToString(rgb);
       }
       return null;
}
 
开发者ID:ShoukriKattan,项目名称:ForgedUI-Eclipse,代码行数:14,代码来源:ColorCellEditor2.java

示例15: doChangeColor

import org.eclipse.swt.widgets.ColorDialog; //导入依赖的package包/类
protected static void doChangeColor(Shell s) {
	// TODO Auto-generated method stub
	ColorDialog d = new ColorDialog(s, SWT.PRIMARY_MODAL);
	RGB rgb = d.open();
	System.out.println(rgb.toString());
	if (null != rgb) {
		Color c = SWTResourceManager.getColor(rgb);
		backColortarget = c;
		PropertiesUtil.setProperty("rgbRed", backColortarget.getRed() + "");
		PropertiesUtil.setProperty("rgbGree", backColortarget.getGreen() + "");
		PropertiesUtil.setProperty("rgbBlue", backColortarget.getBlue() + "");
		if (null != compList && compList.size() > 0) {
			for (Composite cd : compList) {
				cd.setBackground(c);
				Control[] cts = cd.getChildren();
				if (cts.length > 0) {
					for (Control cs : cts) {
						if (cs instanceof CLabel) {
							cs.setBackground(c);
						}
					}
				}
			}
		}
	}

}
 
开发者ID:YelaSeamless,项目名称:swtUI4,代码行数:28,代码来源:LayoutUtils.java


注:本文中的org.eclipse.swt.widgets.ColorDialog类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。