MCPcopy Create free account
hub / github.com/audacity/audacity / ExtraMixerMenu

Function ExtraMixerMenu

src/toolbars/MeterToolBar.cpp:606–624  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

604
605using namespace MenuRegistry;
606auto 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
626AttachedItem sAttachment4{ Indirect(ExtraMixerMenu()),
627 wxT("Optional/Extra/Part1")

Callers 1

MeterToolBar.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected