| 85 | { return VisitSettings<true>(S); } |
| 86 | |
| 87 | void SelectTimeCommand::PopulateOrExchange(ShuttleGui & S) |
| 88 | { |
| 89 | S.AddSpace(0, 5); |
| 90 | |
| 91 | S.StartMultiColumn(3, wxEXPAND); |
| 92 | { |
| 93 | S.SetStretchyCol( 2 ); |
| 94 | S.Optional( bHasT0 ).TieTextBox(XXO("Start Time:"), mT0); |
| 95 | S.Optional( bHasT1 ).TieTextBox(XXO("End Time:"), mT1); |
| 96 | // Chooses what time is relative to. |
| 97 | S.Optional( bHasRelativeSpec ).TieChoice( |
| 98 | XXO("Relative To:"), |
| 99 | mRelativeTo, Msgids( kRelativeTo, nRelativeTos )); |
| 100 | } |
| 101 | S.EndMultiColumn(); |
| 102 | } |
| 103 | |
| 104 | bool SelectTimeCommand::Apply(const CommandContext & context){ |
| 105 | // Many commands need focus on track panel. |
nothing calls this directly
no test coverage detected