All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.monitorenter.gui.chart.events.Chart2DActionEnableAntialiasing Maven / Gradle / Ivy

Go to download

JChart2D is an easy to use component for displaying two- dimensional traces in a coordinate system written in Java.

The newest version!
/*
 *  Chart2DActionEnableAntialiasing.java of project jchart2d. An action 
 *  to turn on or off antialiasing for a chart.
 *  Copyright (c) 2011 Achim Westermann.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 * 
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 * 
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *  If you modify or optimize the code in a useful way please let me know.
 *  [email protected]
 *
 */
package info.monitorenter.gui.chart.events;

import info.monitorenter.gui.chart.Chart2D;
import info.monitorenter.gui.chart.controls.LayoutFactory;
import info.monitorenter.gui.chart.controls.LayoutFactory.PropertyChangeCheckBoxMenuItem;

import java.awt.ItemSelectable;
import java.awt.event.ActionEvent;
import java.beans.PropertyChangeEvent;

import javax.swing.AbstractButton;
import javax.swing.JRadioButtonMenuItem;

/**
 * Action that invokes {@link Chart2D#setUseAntialiasing(boolean)}
 * upon selection by the triggering {@link AbstractButton}.

* * Also this Action

will track the state {@link Chart2D#isUseAntialiasing()} * as a listener of the chart and inform all listeners of this action for the event {@link LayoutFactory.PropertyChangeCheckBoxMenuItem#PROPERTY_SELECTED} * with the new state. * To listen to this action just have a look at the usage of {@link LayoutFactory.SelectionPropertyAdaptSupport}.

* *

Caution

This implementation only works if assigned to a trigger that * descends from {@link AbstractButton} (e.g. * {@link javax.swing.JCheckBoxMenuItem} or {@link JRadioButtonMenuItem}): It * assumes that the source instance given to * {@link #actionPerformed(ActionEvent)} within the action event is of that type * as the state information (selected) is needed. *

* * @author Achim Westermann * * * @version $Revision: 1.3 $ */ public class Chart2DActionEnableAntialiasing extends AChart2DAction { /** * Generated serial version UID. *

*/ private static final long serialVersionUID = -5816028313134616682L; /** * Creates an Action that will invoke * {@link Chart2D#enablePointHighlighting(boolean)} with the * state of the triggering {@link ItemSelectable} *

* * @param chart * the owner of the axis to trigger actions upon. * * * @param description * the descriptive String that will be displayed by * {@link javax.swing.AbstractButton} subclasses that get this * Action assigned ( * {@link javax.swing.AbstractButton#setAction(javax.swing.Action)}). */ public Chart2DActionEnableAntialiasing(Chart2D chart, String description) { super(chart, description); chart.addPropertyChangeListener(Chart2D.PROPERTY_ANTIALIASING_ENABLED, this); } /** * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ public void actionPerformed(final ActionEvent e) { AbstractButton item = (AbstractButton) e.getSource(); boolean state = item.isSelected(); this.m_chart.setUseAntialiasing(state); } /** * @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent) */ public void propertyChange(final PropertyChangeEvent evt) { String property = evt.getPropertyName(); if (property.equals(Chart2D.PROPERTY_ANTIALIASING_ENABLED)) { this.firePropertyChange(PropertyChangeCheckBoxMenuItem.PROPERTY_SELECTED, evt.getOldValue(), evt.getNewValue()); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy