summaryrefslogtreecommitdiff
path: root/src/wx/video_panel.cc
AgeCommit message (Collapse)Author
2025-05-11Use case for property checks now that it's possible.Carl Hetherington
This would have prevented the bug fixed in 6bbf7dee.
2025-05-11Fix failure to update scale fit/custom radio buttons.Carl Hetherington
2025-05-08Fix missing update of controls when changing VF settings.Carl Hetherington
2025-05-08White space: video_panel.{cc,h}Carl Hetherington
2024-09-03Remove use of wxT in favour of char_to_wx().Carl Hetherington
The wxWidgets docs advise against its use these days.
2024-05-16Merge branch 'main' into v2.17.xCarl Hetherington
2024-05-11Fix link icon width again.Carl Hetherington
Seems to be different on wxWidgets 3.1.x vs 3.2.x.
2024-03-20Merge tag 'v2.16.79' into v2.17.xCarl Hetherington
2024-03-16Add dark-mode link icon.Carl Hetherington
2024-03-16Fix link icon width on macOS.Carl Hetherington
2024-02-22Merge tag 'v2.16.78' into v2.17.xv2.17.12Carl Hetherington
2024-02-21Make DCPExaminer::size() optional and deal with the consequences.v2.16.78Carl Hetherington
This means we can fix the case of a VF having no known size in a nice way, in turn fixing problems caused by the fix to #2775.
2024-01-28Remove reference checkboxes from video/audio/text tabs.Carl Hetherington
2023-10-28Add some const& to uses of auto.Carl Hetherington
2023-08-09Extract Film::Property to its own header to (maybe) increase compilation speed.Carl Hetherington
2023-01-27More stack-allocated Dialog objects.Carl Hetherington
2022-11-02Cleanup: use new CheckBox::bind().Carl Hetherington
2022-07-20Change bitmap_path to take a full name with extension.Carl Hetherington
2022-04-22Use libdcp's warnings.hCarl Hetherington
2022-04-21Disable warnings around all wx includes.Carl Hetherington
2022-03-13Fix sensitivity of custom scaled edit button.Carl Hetherington
2021-10-03Differentiate requested and actual crop.Carl Hetherington
This is so we limit cropping to what is possible considering chroma subsampling.
2021-09-19Fix failure to reset state to "to fit DCP" properly (#2081).Carl Hetherington
2021-09-19Remove unused VideoContentProperty::SCALE and listen to CUSTOM_{RATIO,SIZE} ↵Carl Hetherington
instead. ::SCALE was sort-of being used, as it was emitted during examination of video content, but it wasn't being emitted anywhere else (and CUSTOM_{RATIO,SIZE} replace its functionality as far as I can see).
2021-08-12Fix flickering black square when selecting content on Windows (#1866).Carl Hetherington
2021-07-09C++11 tidying.Carl Hetherington
2021-07-09Fix strange layout problems with the content sub panels (#2059).Carl Hetherington
It seems that if Layout() is called on a sizer inside a wxScrolledWindow when that window is scrolled, things go wrong. Work around this by wrapping calls to Layout().
2021-06-07Use "Colour" not "Colour conversion" as a label name.osx-alignmentCarl Hetherington
In English, at least, the excessive length of this label really screws up the layout.
2021-06-07Fix link icons on macOS.Carl Hetherington
2021-05-31Tweak behaviour of crop link buttons (#2034).Carl Hetherington
Now if you change left and click "link" the right will follow it, and vice versa.
2021-05-21Tweak crop icon for GTK2 builds (#1997).Carl Hetherington
2021-03-20Fix setting of fade in/out on multiple pieces of content at the same time ↵Carl Hetherington
(#1934).
2021-01-31Use enum class for Film::Property.Carl Hetherington
2021-01-27Use enum class for VideoRange.Carl Hetherington
2021-01-15Tweak link icon width on macOS; looks right on Big Sur now.Carl Hetherington
2021-01-07BOOST_FOREACH.Carl Hetherington
2021-01-07std::shared_ptrCarl Hetherington
2020-12-08Shrink some big buttons.Carl Hetherington
2020-12-08Fix crop control alignment on macOS (#1864).Carl Hetherington
2020-11-21Remove the "simple" UI (#1868).Carl Hetherington
It just seemed to cause more problems than it solved; mainly people enabling it by mistake and then being told to click buttons that they could not see.
2020-11-20Disable video range control for DCP content (#1821).Carl Hetherington
2020-09-01Build fixes for Boost >= 1.73Carl Hetherington
Forward-ported-from: d1e9749ca290673639a49d693a8fe5c6557cc2de
2020-08-02Tweak link button width on GTK3.Carl Hetherington
2020-06-27Move video filters controls into advanced content dialogue (#1748).Carl Hetherington
2020-05-24Layout tweaks for GTK3.Carl Hetherington
2020-05-18Add a new "Advanced settings" dialog for content, accessibleCarl Hetherington
from the right-click menu. Move the "use video" checkbox into here, as it feels like excessive clutter to have it in the main video panel. Maybe other things should be hidden in here. I'm looking at you, video filters...
2020-05-12Add crop left/right top/bottom link control.Carl Hetherington
2020-05-11Change video content scaling so that it either:Carl Hetherington
1. scales the content up to fit the DCP container, preserving aspect ratio, or 2. stretches the content to a custom aspect ratio, or 3. scales the content to some custom size.
2020-05-11Reformat crop controls.Carl Hetherington
2020-02-29Allow changing colour conversion settings for multiple pieces of content at ↵Carl Hetherington
the same time (github #7).