| 604 | |
| 605 | using namespace MenuRegistry; |
| 606 | auto ExtraMixerMenu() |
| 607 | { |
| 608 | static auto menu = std::shared_ptr{ |
| 609 | Menu( wxT("Mixer"), XXO("Mi&xer"), |
| 610 | Command( wxT("OutputGain"), XXO("Ad&just Playback Volume..."), |
| 611 | OnOutputGain, AlwaysEnabledFlag ), |
| 612 | Command( wxT("OutputGainInc"), XXO("&Increase Playback Volume"), |
| 613 | OnOutputGainInc, AlwaysEnabledFlag ), |
| 614 | Command( wxT("OutputGainDec"), XXO("&Decrease Playback Volume"), |
| 615 | OnOutputGainDec, AlwaysEnabledFlag ), |
| 616 | Command( wxT("InputGain"), XXO("Adj&ust Recording Volume..."), |
| 617 | OnInputGain, AlwaysEnabledFlag ), |
| 618 | Command( wxT("InputGainInc"), XXO("I&ncrease Recording Volume"), |
| 619 | OnInputGainInc, AlwaysEnabledFlag ), |
| 620 | Command( wxT("InputGainDec"), XXO("D&ecrease Recording Volume"), |
| 621 | OnInputGainDec, AlwaysEnabledFlag ) |
| 622 | ) }; |
| 623 | return menu; |
| 624 | } |
| 625 | |
| 626 | AttachedItem sAttachment4{ Indirect(ExtraMixerMenu()), |
| 627 | wxT("Optional/Extra/Part1") |