Package org.dyno.visual.swing.borders

Source Code of org.dyno.visual.swing.borders.SoftBevelBorderSwitchAction

/************************************************************************************
* Copyright (c) 2008 William Chen.                                                 *
*                                                                                  *
* 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.eclipse.org/legal/epl-v10.html *
*                                                                                  *
* Use is subject to the terms of Eclipse Public License v1.0.                      *
*                                                                                  *
* Contributors:                                                                    *
*     William Chen - initial API and implementation.                               *
************************************************************************************/

package org.dyno.visual.swing.borders;

import javax.swing.JComponent;
import javax.swing.border.BevelBorder;
import javax.swing.border.Border;
import javax.swing.border.SoftBevelBorder;

import org.eclipse.jface.action.Action;

class SoftBevelBorderSwitchAction extends Action {
  private JComponent target;

  public SoftBevelBorderSwitchAction(JComponent w) {
    super("Soft Bevel Border", AS_RADIO_BUTTON);
    target = w;
    setId("soft_bevel_border_switch_action");
    Border border = w.getBorder();
    setChecked(border != null && border.getClass() == SoftBevelBorder.class);
  }

  @Override
  public void run() {
    Border border = target.getBorder();
    if (border == null || border.getClass() != SoftBevelBorder.class) {
      target.setBorder(new SoftBevelBorder(BevelBorder.LOWERED));
      target.repaint();
    }
    setChecked(true);
  }
}

TOP

Related Classes of org.dyno.visual.swing.borders.SoftBevelBorderSwitchAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.