Audacity 3.2.0
Functions | Variables
anonymous_namespace{LabelTrack.cpp} Namespace Reference

Functions

void AddControls (ShuttleGui &S)
 

Variables

static EnumSetting< bool > LabelStyleSetting
 
ImportExportPrefs::RegisteredControls reg { wxT("LabelStyle"), AddControls }
 

Function Documentation

◆ AddControls()

void anonymous_namespace{LabelTrack.cpp}::AddControls ( ShuttleGui S)

Definition at line 399 of file LabelTrack.cpp.

400{
401 S.StartStatic(XO("Exported Label Style:"));
402 {
403#if defined(__WXMAC__)
404 // Bug 2692: Place button group in panel so tabbing will work and,
405 // on the Mac, VoiceOver will announce as radio buttons.
406 S.StartPanel();
407#endif
408 {
409 S.StartRadioButtonGroup(LabelStyleSetting);
410 {
411 S.TieRadioButton();
412 S.TieRadioButton();
413 }
414 S.EndRadioButtonGroup();
415 }
416#if defined(__WXMAC__)
417 S.EndPanel();
418#endif
419 }
420 S.EndStatic();
421}
XO("Cut/Copy/Paste")
#define S(N)
Definition: ToChars.cpp:64
static EnumSetting< bool > LabelStyleSetting
Definition: LabelTrack.cpp:386

References LabelStyleSetting, S, and XO().

Here is the call graph for this function:

Variable Documentation

◆ LabelStyleSetting

EnumSetting<bool> anonymous_namespace{LabelTrack.cpp}::LabelStyleSetting
static
Initial value:
{
wxT("/FileFormats/LabelStyleChoice"),
{
EnumValueSymbol{ wxT("Standard"), XXO("S&tandard") },
EnumValueSymbol{ wxT("Extended"), XXO("E&xtended (with frequency ranges)") },
},
0,
{
true, false,
},
}
wxT("CloseDown"))
XXO("&Cut/Copy/Paste Toolbar")
ComponentInterfaceSymbol pairs a persistent string identifier used internally with an optional,...

Definition at line 386 of file LabelTrack.cpp.

Referenced by AddControls(), and LabelStruct::Export().

◆ reg

ImportExportPrefs::RegisteredControls anonymous_namespace{LabelTrack.cpp}::reg { wxT("LabelStyle"), AddControls }

Definition at line 423 of file LabelTrack.cpp.