summaryrefslogtreecommitdiff
path: root/src/wx/timeline.cc
AgeCommit message (Collapse)Author
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
2018-07-05Try again to fix OS X build.Carl Hetherington
2018-07-05Try to fix OS X build.Carl Hetherington
2018-07-05Sort audio timeline views in order of DCP audio channel mappings (#1279).Carl Hetherington
2018-07-04More zoom / timeline tidying.Carl Hetherington
2018-07-04Fix tool crash; try to fix linked scrolling.Carl Hetherington
2018-07-04Toolbar and scrolling tweaks.Carl Hetherington
2018-07-04Replace checkboxes with tools.Carl Hetherington
2018-07-04Fix icons on Windows; zoom to all on initial open.Carl Hetherington
2018-07-04Add zoom-all button.Carl Hetherington
2018-07-04Fix scrolling of labels; prevent zooming out too far.Carl Hetherington
2018-07-03Fix time axis view length.Carl Hetherington
2018-07-03Fix hidden reels view and time axis not moving under zoom.Carl Hetherington
2018-07-03Update track labels when zooming out.Carl Hetherington
2018-07-02Scroll labels view with zoom.Carl Hetherington
2018-07-02y zoom.Carl Hetherington
2018-07-02Fix drawing.Carl Hetherington
2018-07-02Hacks to stop scrolling track names.Carl Hetherington
2018-07-02Basic zoom.Carl Hetherington
2017-05-08Show overlapping subs in multiple tracks on the timeline (#941).Carl Hetherington
2017-05-08Add comment.Carl Hetherington
2016-09-26Fix multi-select in the timeline (#954).Carl Hetherington
2016-07-31Allow configuration of MXF/XML filenames (part of #710).Carl Hetherington
2016-06-21Revert "Use make_shared<>."Carl Hetherington
Support for this seems to vary wildly across DoM's build targets. Stuff that builds on 16.04 won't build on 14.04, for example. Seems to not be worth the hassle now. This reverts commit 5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f.
2016-06-21Revert "Odd const fix."Carl Hetherington
This reverts commit b4f9d2e2c287848623c6dc59d8768c1d5fae15f0.
2016-06-21Odd const fix.Carl Hetherington
2016-06-21Use make_shared<>.Carl Hetherington
2016-05-25No-op; fix GPL address and use the explicit-program-name version.Carl Hetherington
2016-05-25Basics of Atmos content support; can be added to project and appears in ↵Carl Hetherington
timeline.
2016-05-18Fix rebase onto master.Carl Hetherington
2016-05-18Rename video/audio/subtitle part methods.Carl Hetherington
2016-05-18Split audio; builds.Carl Hetherington
2016-05-18Subtitle rearrangements.Carl Hetherington
2016-05-18Reasonably straightforward stuff; main things are addingCarl Hetherington
a _parent to VideoContent (mainly, but not only, for signalling) and moving the video shared_ptr into Content, which makes much more sense to replace dynamic_cast tests for whether something has video or whatever. Nearly builds.
2016-04-25Move reel markers to the top of the timeline (#846).Carl Hetherington
2016-04-22Split left-only and right-only video content in the timeline (#845).Carl Hetherington
2016-02-25Don't draw any overlap for audio views.Carl Hetherington
2016-02-25Anti-alias the timeline.Carl Hetherington
2016-02-25Basics of timeline track labels.Carl Hetherington
2016-02-25Plot video and subtitle on one track and audio on the rest in the timeline.Carl Hetherington
2016-02-24Put video on 0, subtitles on 1, audio on 2 and up.Carl Hetherington
2016-02-24An unfortunately large set of timeline-related changes:Carl Hetherington
- Rename sequence_video to sequence, and sequence subtitle content like we do video content (i.e. adding multiple subtitle contents will result in them sequenced in time rather than overlaid). - Stop doing selection-changed related stuff in ContentPanel if no selection change has actually happened. - Attempt to tidy up event handling in the timeline a bit.
2016-02-17Optimise timeline view; speed up snapping and only set content panel ↵Carl Hetherington
selection on mouse button up.
2016-02-16Snap content to reel_split_points.Carl Hetherington
2016-02-01Synchronise content list / timeline selection when the content list ↵Carl Hetherington
selection changes.
2016-01-30Add a PlaylistOrderChanged signal and emit it when the playlistCarl Hetherington
is sorted. Do playlist sorting when content position / length etc. changes. Handle sorts better when comparing content at the same position.