Mercurial > hg > svcore
comparison base/PlayParameterRepository.h @ 57:7439f1696314
* Add editing for auralisation plugin parameters and programs
* Rename and reorganise the sample plugin sample set
author | Chris Cannam |
---|---|
date | Thu, 23 Mar 2006 15:49:41 +0000 |
parents | d397ea0a79f5 |
children | 82f529a08cf3 |
comparison
equal
deleted
inserted
replaced
56:2157fa46c1e7 | 57:7439f1696314 |
---|---|
39 | 39 |
40 void clear(); | 40 void clear(); |
41 | 41 |
42 signals: | 42 signals: |
43 void playParametersChanged(PlayParameters *); | 43 void playParametersChanged(PlayParameters *); |
44 void playPluginIdChanged(const Model *, QString); | |
45 void playPluginConfigurationChanged(const Model *, QString); | |
44 | 46 |
45 protected slots: | 47 protected slots: |
46 void playParametersChanged(); | 48 void playParametersChanged(); |
49 void playPluginIdChanged(QString); | |
50 void playPluginConfigurationChanged(QString); | |
47 | 51 |
48 protected: | 52 protected: |
49 std::map<const Model *, PlayParameters *> m_playParameters; | 53 typedef std::map<const Model *, PlayParameters *> ModelParameterMap; |
54 ModelParameterMap m_playParameters; | |
50 | 55 |
51 static PlayParameterRepository *m_instance; | 56 static PlayParameterRepository *m_instance; |
52 }; | 57 }; |
53 | 58 |
54 #endif | 59 #endif |