comparison base/PlayParameterRepository.h @ 866:3a3541b357fe tonioni

sampleId -> clipId
author Chris Cannam
date Tue, 07 Jan 2014 15:52:34 +0000
parents 1f98e28f70c6
children c01cbe41aeb5
comparison
equal deleted inserted replaced
865:9196cff56abe 866:3a3541b357fe
49 EditCommand(PlayParameters *params); 49 EditCommand(PlayParameters *params);
50 void setPlayMuted(bool); 50 void setPlayMuted(bool);
51 void setPlayAudible(bool); 51 void setPlayAudible(bool);
52 void setPlayPan(float); 52 void setPlayPan(float);
53 void setPlayGain(float); 53 void setPlayGain(float);
54 void setPlaySampleId(QString); 54 void setPlayClipId(QString);
55 void execute(); 55 void execute();
56 void unexecute(); 56 void unexecute();
57 QString getName() const; 57 QString getName() const;
58 58
59 protected: 59 protected:
62 PlayParameters m_to; 62 PlayParameters m_to;
63 }; 63 };
64 64
65 signals: 65 signals:
66 void playParametersChanged(PlayParameters *); 66 void playParametersChanged(PlayParameters *);
67 void playSampleIdChanged(const Playable *, QString); 67 void playClipIdChanged(const Playable *, QString);
68 68
69 protected slots: 69 protected slots:
70 void playParametersChanged(); 70 void playParametersChanged();
71 void playSampleIdChanged(QString); 71 void playClipIdChanged(QString);
72 72
73 protected: 73 protected:
74 typedef std::map<const Playable *, PlayParameters *> PlayableParameterMap; 74 typedef std::map<const Playable *, PlayParameters *> PlayableParameterMap;
75 PlayableParameterMap m_playParameters; 75 PlayableParameterMap m_playParameters;
76 76