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

Functions

void AddControls (ShuttleGui &S)
 

Variables

ImportExportPrefs::RegisteredControls reg { wxT("LabelStyle"), AddControls }
 

Function Documentation

◆ AddControls()

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

Definition at line 8 of file ExportLabelTrack.cpp.

9{
10 S.StartStatic(XO("Exported Label Style:"));
11 {
12#if defined(__WXMAC__)
13 // Bug 2692: Place button group in panel so tabbing will work and,
14 // on the Mac, VoiceOver will announce as radio buttons.
15 S.StartPanel();
16#endif
17 {
18 S.StartRadioButtonGroup(LabelStyleSetting);
19 {
20 S.TieRadioButton();
21 S.TieRadioButton();
22 }
23 S.EndRadioButtonGroup();
24 }
25#if defined(__WXMAC__)
26 S.EndPanel();
27#endif
28 }
29 S.EndStatic();
30}
XO("Cut/Copy/Paste")
EnumSetting< bool > LabelStyleSetting
Definition: LabelTrack.cpp:51
#define S(N)
Definition: ToChars.cpp:64

References LabelStyleSetting, S, and XO().

Here is the call graph for this function:

Variable Documentation

◆ reg

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

Definition at line 32 of file ExportLabelTrack.cpp.