Mercurial > hg > svcore
annotate base/PlayParameters.cpp @ 52:d397ea0a79f5
* Update licensing rubric for GPL
author | Chris Cannam |
---|---|
date | Mon, 20 Mar 2006 15:10:07 +0000 |
parents | 39ae3dee27b9 |
children | 7439f1696314 |
rev | line source |
---|---|
Chris@49 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@0 | 2 |
Chris@0 | 3 /* |
Chris@52 | 4 Sonic Visualiser |
Chris@52 | 5 An audio file viewer and annotation editor. |
Chris@52 | 6 Centre for Digital Music, Queen Mary, University of London. |
Chris@52 | 7 This file copyright 2006 Chris Cannam. |
Chris@0 | 8 |
Chris@52 | 9 This program is free software; you can redistribute it and/or |
Chris@52 | 10 modify it under the terms of the GNU General Public License as |
Chris@52 | 11 published by the Free Software Foundation; either version 2 of the |
Chris@52 | 12 License, or (at your option) any later version. See the file |
Chris@52 | 13 COPYING included with this distribution for more information. |
Chris@0 | 14 */ |
Chris@0 | 15 |
Chris@0 | 16 #include "PlayParameters.h" |
Chris@0 | 17 |
Chris@29 | 18 #include <iostream> |
Chris@29 | 19 |
Chris@0 | 20 void |
Chris@0 | 21 PlayParameters::setPlayMuted(bool muted) |
Chris@0 | 22 { |
Chris@29 | 23 std::cerr << "PlayParameters: setPlayMuted(" << muted << ")" << std::endl; |
Chris@0 | 24 m_playMuted = muted; |
Chris@29 | 25 emit playMutedChanged(muted); |
Chris@30 | 26 emit playAudibleChanged(!muted); |
Chris@0 | 27 emit playParametersChanged(); |
Chris@0 | 28 } |
Chris@0 | 29 |
Chris@29 | 30 void |
Chris@29 | 31 PlayParameters::setPlayAudible(bool audible) |
Chris@29 | 32 { |
Chris@30 | 33 std::cerr << "PlayParameters(" << this << "): setPlayAudible(" << audible << ")" << std::endl; |
Chris@29 | 34 setPlayMuted(!audible); |
Chris@29 | 35 } |
Chris@0 | 36 |
Chris@0 | 37 void |
Chris@0 | 38 PlayParameters::setPlayPan(float pan) |
Chris@0 | 39 { |
Chris@0 | 40 m_playPan = pan; |
Chris@29 | 41 emit playPanChanged(pan); |
Chris@0 | 42 emit playParametersChanged(); |
Chris@0 | 43 } |
Chris@0 | 44 |
Chris@0 | 45 void |
Chris@0 | 46 PlayParameters::setPlayGain(float gain) |
Chris@0 | 47 { |
Chris@0 | 48 m_playGain = gain; |
Chris@29 | 49 emit playGainChanged(gain); |
Chris@0 | 50 emit playParametersChanged(); |
Chris@0 | 51 } |
Chris@0 | 52 |
Chris@0 | 53 |