| 42 | | Action::Action( QString s ) : Object( "Action" ) { |
| 43 | | type = s; |
| | 42 | Action::Action( QString typeString ) : Object( "Action" ) { |
| | 43 | |
| | 44 | /* |
| | 45 | An "Action" is something which can be interpreted and executed by hydrogen. |
| | 46 | Example: If hydrogen executes the Action with type "MUTE", it will mute the outputs. |
| | 47 | |
| | 48 | The two parameters are optional and can be used to carry additional informations, which mean |
| | 49 | only something to this very Action. They can have totally different meanings for other Actions. |
| | 50 | Example: parameter1 is the Mixer strip and parameter 2 the volume change on this strip |
| | 51 | */ |
| | 52 | |
| | 53 | type = typeString; |