00001 /* 00002 * @(#)listen/DisplayParams.h 3.00 24 June 2000 00003 * 00004 * Copyright (c) 2000 Pete Goodliffe (pete@cthree.org) 00005 * 00006 * This file is part of TSE3 - the Trax Sequencer Engine version 3.00. 00007 * 00008 * This library is modifiable/redistributable under the terms of the GNU 00009 * General Public License. 00010 * 00011 * You should have received a copy of the GNU General Public License along 00012 * with this program; see the file COPYING. If not, write to the Free Software 00013 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00014 * 00015 */ 00016 00017 #ifndef TSE3_LISTEN_DISPLAYPARAMS_H 00018 #define TSE3_LISTEN_DISPLAYPARAMS_H 00019 00020 namespace TSE3 00021 { 00022 class DisplayParams; 00023 class PresetColours; 00024 00032 class DisplayParamsListener 00033 { 00034 public: 00035 typedef DisplayParams notifier_type; 00036 00037 virtual void DisplayParams_Altered(DisplayParams *) {} 00038 }; 00039 00047 class PresetColoursListener 00048 { 00049 public: 00050 typedef PresetColours notifier_type; 00051 00052 virtual void PresetColours_Altered(PresetColours *, int /*colour*/) 00053 {} 00054 }; 00055 } 00056 00057 #endif