| 13 | #include "CtrlrComponents/CtrlrComponent.h" |
| 14 | |
| 15 | CtrlrPanel::CtrlrPanel(CtrlrManager &_owner) |
| 16 | : owner(_owner), |
| 17 | panelTree(Ids::panel), |
| 18 | panelWindowManager(*this), |
| 19 | ctrlrSysexProcessor(*this), |
| 20 | processor(*this), |
| 21 | snapshot(*this), |
| 22 | panelEvaluationScope(*this), |
| 23 | globalEvaluationScope(*this), |
| 24 | resourceManager(*this), |
| 25 | midiInputThread(*this, inputDevice), |
| 26 | midiControllerInputThread(*this, controllerDevice), |
| 27 | ctrlrLuaManager(nullptr), |
| 28 | currentActionIndex(0), |
| 29 | indexOfSavedState(-1) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | CtrlrPanel::CtrlrPanel(CtrlrManager &_owner, const String &panelName, const int idx) |
| 34 | : owner(_owner), |
nothing calls this directly
no test coverage detected