summaryrefslogtreecommitdiff
path: root/src/wx/timeline.cc
AgeCommit message (Collapse)Author
2023-10-28Make sure a dynamic_pointer_cast worked.Carl Hetherington
2023-10-05Fix flickering timeline drags on Windows (#2625).Carl Hetherington
2023-08-09Extract Film::Property to its own header to (maybe) increase compilation speed.Carl Hetherington
2023-06-16Defend against divide by 0.Carl Hetherington
2023-04-05Fix scrollbars when using zoom in the timeline.Carl Hetherington
2023-04-05Remove incorrect GC translation.Carl Hetherington
This appears not to be necessary, and if present it messes up the scrollbars so that scrolling fully right shows a big empty space at the end of the timeline items.
2023-03-30Add + and - as zoom shortcuts in the timeline.Carl Hetherington
2023-02-10Cleanup: add Content::period().Carl Hetherington
2023-02-05Make the timeline look better when there is no content in the film.Carl Hetherington
2023-02-05Delete in timeline removes content (#2370).Carl Hetherington
2023-02-05Cleanup: use ScopeGuard.Carl Hetherington
2022-11-21Click on the timeline time axis view moves the playhead (#2369).Carl Hetherington
2022-11-21Remove unused line.Carl Hetherington
2022-10-18Improve timeline view colouring in dark mode.Carl Hetherington
2022-10-14Cleanup: use simpler ownership for FilmViewer.Carl Hetherington
2022-05-02C++11 tidying.Carl Hetherington
2022-04-29Primitive auto-crop (#1477).Carl Hetherington
2022-04-22Use libdcp's warnings.hCarl Hetherington
2022-04-21Disable warnings around all wx includes.Carl Hetherington
2022-04-21Tidying.Carl Hetherington
2021-02-15Allow multiple video tracks to be visible in the timeline.Carl Hetherington
2021-02-15Fix timeline zoom oddities after dragging a very small zoom rectangle.Carl Hetherington
2021-02-15Typo fix.Carl Hetherington
2021-01-31Use enum class for Film::Property.Carl Hetherington
2021-01-31More enum class additions.Carl Hetherington
2021-01-11More c++ tidying.Carl Hetherington
2021-01-07BOOST_FOREACH.Carl Hetherington
2021-01-07std::shared_ptrCarl Hetherington
2020-09-01Build fixes for Boost >= 1.73Carl Hetherington
Forward-ported-from: d1e9749ca290673639a49d693a8fe5c6557cc2de
2020-06-19Fix timeline for DCPs containing Atmos.Carl Hetherington
2020-06-18Fix display of Atmos tracks in the timeline.Carl Hetherington
2020-01-08Remove PositionChanged in favour of consumers having their own GUI-thread ↵Carl Hetherington
timers.
2019-09-08Fix timeline selection under scroll.Carl Hetherington
2019-05-31Add playhead line to timeline (#1563).Carl Hetherington
2019-05-10Put Time types in dcpomatic namespace.Carl Hetherington
2019-04-26Make sure at least one position change event is emitted afterCarl Hetherington
a timeline drag (with frequent=false), even if lots have been sent with frequent=true. Otherwise the code in the CHNAGE_TYPE_DONE branch of Butler::player_change never gets to seek (since frequent is true, it ignores the signal). Without the seek things go wrong. Believed to fix #1534.
2019-02-12Update timeline when video frame type changes (#1464).Carl Hetherington
2018-11-24Fix missed overload change.Carl Hetherington
2018-11-21Take Film pointer out of Content.Carl Hetherington
2018-10-13Fix OS X warning.Carl Hetherington
2018-08-19Similar pending/done for Film::Change.Carl Hetherington
2018-08-19Replace May/Done/NotDone signal sets with one signal and extendCarl Hetherington
this treatment to anything that caused Player::setup_pieces. This should fix out-of-sequence Player emissions caused by setup_pieces being called by one thread while the butler is calling pass().
2018-08-12Update reels markers properly.Carl Hetherington
2018-08-12Fix bad redraw when dragging content views.Carl Hetherington
2018-07-23Tidy up after mass rename.Carl Hetherington
2018-07-23More automated renaming.Carl Hetherington
ActiveCaptions -> ActiveText BitmapCaption -> BitmapText ContentCaption -> ContentText ContentTextCaption -> ContentStringText TextCaptionFileContent -> StringTextFileContent TextCaptionFileDecoder -> StringTextFileDecoder TextCaptionFile -> StringTextFile TextCaption -> StringText PlayerCaption -> PlayerText CaptionContent -> TextContent CaptionDecoder -> TextDecoder CaptionPanel -> TextPanel CaptionView -> TextView CaptionAppearanceDialog -> SubtitleAppearanceDialog CaptionType -> TextType
2018-07-21Basics of multiple captions per content so that DCPContent canCarl Hetherington
hold subs and closed captions.
2018-07-19Clean up after previous commit.Carl Hetherington
2018-07-19Rename Subtitle -> TextCarl Hetherington
sed -i "s/SubtitleContent/TextContent/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc test/*.cc sed -i "s/SubtitleDecoder/TextDecoder/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc test/*.cc sed -i "s/subtitle_content/text_content/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc test/*.cc src/lib/wscript src/wx/wscript sed -i "s/subtitle_decoder/text_decoder/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/wx/*.h src/tools/*.cc test/*.cc src/lib/wscript mv src/lib/subtitle_decoder.cc src/lib/text_decoder.cc mv src/lib/subtitle_decoder.h src/lib/text_decoder.h mv src/lib/subtitle_content.cc src/lib/text_content.cc mv src/lib/subtitle_content.h src/lib/text_content.h mv src/lib/dcp_subtitle_decoder.cc src/lib/dcp_text_decoder.cc mv src/lib/dcp_subtitle_decoder.h src/lib/dcp_text_decoder.h mv src/lib/dcp_subtitle_content.cc src/lib/dcp_text_content.cc mv src/lib/dcp_subtitle_content.h src/lib/dcp_text_content.h mv src/lib/text_subtitle_content.cc src/lib/text_text_content.cc mv src/lib/text_subtitle_content.h src/lib/text_text_content.h mv src/lib/text_subtitle_decoder.cc src/lib/text_text_decoder.cc mv src/lib/text_subtitle_decoder.h src/lib/text_text_decoder.h mv src/wx/timeline_subtitle_content_view.cc src/wx/timeline_text_content_view.cc mv src/wx/timeline_subtitle_content_view.h src/wx/timeline_text_content_view.h
2018-07-05Another OS X build tweak.v2.13.33Carl Hetherington