| 73 | { return VisitSettings<true>(S); } |
| 74 | |
| 75 | void SetClipCommand::PopulateOrExchange(ShuttleGui & S) |
| 76 | { |
| 77 | S.AddSpace(0, 5); |
| 78 | |
| 79 | S.StartMultiColumn(3, wxALIGN_CENTER); |
| 80 | { |
| 81 | S.Optional( bHasContainsTime).TieNumericTextBox( XXO("At:"), mContainsTime ); |
| 82 | S.Optional( bHasColour ).TieChoice( XXO("Color:"), mColour, |
| 83 | Msgids( kColourStrings, nColours ) ); |
| 84 | S.Optional( bHasT0 ).TieNumericTextBox( XXO("Start:"), mT0 ); |
| 85 | S.Optional( bHasName ).TieTextBox( XXO("Name:"), mName ); |
| 86 | } |
| 87 | S.EndMultiColumn(); |
| 88 | } |
| 89 | |
| 90 | bool SetClipCommand::Apply(const CommandContext& context) |
| 91 | { |
nothing calls this directly
no test coverage detected