| 167 | } |
| 168 | |
| 169 | void GlobalPanel::createComboBoxes() |
| 170 | { |
| 171 | addAndMakeVisible(lowcutSlopeMode); |
| 172 | lowcutSlopeMode.addItem("12 db", 1); |
| 173 | lowcutSlopeMode.addItem("24 db", 2); |
| 174 | lowcutSlopeMode.addItem("36 db", 3); |
| 175 | lowcutSlopeMode.addItem("48 db", 4); |
| 176 | |
| 177 | addAndMakeVisible(highcutSlopeMode); |
| 178 | highcutSlopeMode.addItem("12 db", 1); |
| 179 | highcutSlopeMode.addItem("24 db", 2); |
| 180 | highcutSlopeMode.addItem("36 db", 3); |
| 181 | highcutSlopeMode.addItem("48 db", 4); |
| 182 | } |
| 183 | |
| 184 | void GlobalPanel::setupComponentGroups() |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected