diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-06 01:09:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-08 01:29:35 +0200 |
| commit | bd0ea5c90b5fa03224b7f89785c98976d8513d07 (patch) | |
| tree | 9f1f9bd1ece557474d381780635cbe3986542e9d /src/wx/dcp_timeline.h | |
| parent | df0e7490c3375e9b695ccd462b66f183fe954362 (diff) | |
Limit allowable reel types (#3032).
Diffstat (limited to 'src/wx/dcp_timeline.h')
| -rw-r--r-- | src/wx/dcp_timeline.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/dcp_timeline.h b/src/wx/dcp_timeline.h index e3ab386a8..e74adae8a 100644 --- a/src/wx/dcp_timeline.h +++ b/src/wx/dcp_timeline.h @@ -62,8 +62,10 @@ private: void reel_mode_changed(); void maximum_reel_size_changed(); void film_changed(ChangeType type, FilmProperty property); + void film_content_changed(ChangeType type, int property); std::shared_ptr<Film> film() const; void setup_sensitivity(); + void setup_reel_types(); void add_reel_boundary(); void remove_reel_boundary(); @@ -119,6 +121,7 @@ private: wxMenuItem* _remove_reel_boundary; boost::signals2::scoped_connection _film_connection; + boost::signals2::scoped_connection _film_content_connection; std::vector<std::shared_ptr<ReelBoundary>> _reel_boundaries; }; |
