⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ngcolordialog.java

📁 Novocode的 SWT 控件框架 丰富了MDI功能
💻 JAVA
字号:
/*******************************************************************************
 * Copyright (c) 2004 Stefan Zeiger and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.novocode.com/legal/epl-v10.html
 * 
 * Contributors:
 *     Stefan Zeiger (szeiger@novocode.com) - initial API and implementation
 *******************************************************************************/

package com.novocode.naf.gui;

import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.*;

import com.novocode.naf.app.*;
import com.novocode.naf.data.ModelBinding;
import com.novocode.naf.model.*;
import com.novocode.naf.model.DefaultColorModel;


/**
 * A color dialog.
 * 
 * @author Stefan Zeiger (szeiger@novocode.com)
 * @since Dec 9, 2003
 */

public final class NGColorDialog extends NGDialog
{
  public NGColorDialog()
  {
    actionListeners = new String[] { "ok", "cancel" };
  }


  public DialogWindowInstance createWindowInstance(NAFApplication app, ModelMap models, WindowInstance parent) throws NAFException
  {
    ColorDialog dialog = new ColorDialog(parent.getShell(false), modality.style);
    String currentTitle = getCurrentTitle(models);
    if(currentTitle != null) dialog.setText(currentTitle);
    return new DialogWindowInstance(this, models, app, dialog);
  }


  public void openDialog(DialogWindowInstance dialog) throws NAFException
  {
    ColorDialog cd = (ColorDialog)dialog.dialog;
    IObjectModel<RGB> model = getModel("color", dialog.models);
    if(model != null) cd.setRGB(model.getValue());
    RGB selected = cd.open();
    if(selected != null)
    {
      if(model != null) model.setValue(selected);
      notifyActionListeners(actionListeners[0], dialog);
    }
    else notifyActionListeners(actionListeners[1], dialog);
  }


  protected Object createDefaultModel(ModelBinding mb)
  {
    if("color".equals(mb.type)) return new DefaultColorModel();
    else return super.createDefaultModel(mb);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -