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

📄 ngfontdialog.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.*;
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 font dialog.
 * 
 * @author Stefan Zeiger (szeiger@novocode.com)
 * @since Dec 12, 2003
 */

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


  public DialogWindowInstance createWindowInstance(NAFApplication app, ModelMap models, WindowInstance parent) throws NAFException
  {
    FontDialog dialog = new FontDialog(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
  {
    FontDialog fd = (FontDialog)dialog.dialog;
    IObjectModel<RGB> colorModel = getModel("color", dialog.models);
    IObjectModel<FontData[]> fontModel = getModel("font", dialog.models);
    if(colorModel != null) fd.setRGB(colorModel.getValue());
    if(fontModel != null) fd.setFontList(fontModel.getValue());
    fd.open();
    RGB selectedColor = fd.getRGB();
    FontData[] selectedFont = fd.getFontList();
    if(selectedFont != null)
    {
      if(colorModel != null && selectedColor != null) colorModel.setValue(selectedColor);
      if(fontModel != null) fontModel.setValue(selectedFont);
      notifyActionListeners(actionListeners[0], dialog);
    }
    else notifyActionListeners(actionListeners[1], dialog);
  }


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

⌨️ 快捷键说明

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