| 158 | } |
| 159 | |
| 160 | int Width(const agi::Context *c, WidthHelper &helper) const override { |
| 161 | if (!by_frame) |
| 162 | return helper(wxS("0:00:00.00")); |
| 163 | int frame = c->videoController->FrameAtTime(max_value(&AssDialogue::Start, c->ass->Events), agi::vfr::START); |
| 164 | return helper(std::to_wstring(frame)); |
| 165 | } |
| 166 | }; |
| 167 | |
| 168 | struct GridColumnEndTime final : GridColumnTime { |
nothing calls this directly
no test coverage detected