/* * jlscp - a java LinuxSampler control protocol API * * Copyright (C) 2005-2008 Grigor Iliev * * This file is part of jlscp. * * jlscp is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * jlscp 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with jlscp; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ package org.linuxsampler.lscp.event; /** * A semantic event which indicates changes to the global settings of the sampler. * @author Grigor Iliev */ public class GlobalInfoEvent extends java.util.EventObject { private float volume = 0; private int voiceLimit; private int streamLimit; /** * Constructs a GlobalInfoEvent object. * @param source The object that originated the event. */ public GlobalInfoEvent(Object source) { super(source); } /** * Constructs a GlobalInfoEvent object. * @param source The object that originated the event. * @param volume Specifies the new global volume of the sampler. */ public GlobalInfoEvent(Object source, float volume) { super(source); this.volume = volume; } /** * Constructs a GlobalInfoEvent object. * @param source The object that originated the event. */ public GlobalInfoEvent(Object source, int maxVoices, int maxStreams) { super(source); voiceLimit = maxVoices; streamLimit = maxStreams; } /** * Gets the new global volume value of the sampler. * The returned value is only valid when {@link GlobalInfoListener#volumeChanged} * event is fired. * @return The new global volume value of the sampler. */ public float getVolume() { return volume; } /** * Gets the new global sampler-wide limit of maximum voices. * The returned value is only valid when {@link GlobalInfoListener#voiceLimitChanged} * event is fired. * @return The new global sampler-wide limit of maximum voices. */ public int getVoiceLimit() { return voiceLimit; } /** * Gets the new global sampler-wide limit of maximum disk streams. * The returned value is only valid when {@link GlobalInfoListener#streamLimitChanged} * event is fired. * @return The new global sampler-wide limit of maximum disk streams. */ public int getStreamLimit() { return streamLimit; } }