diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-16 01:42:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-15 01:15:00 +0200 |
| commit | 039d9d0c98ed62e7d08667af3427869dc6207d45 (patch) | |
| tree | 54a4292f798b673f98d040cc02dd0e67cf44ce77 /src/wx/dcp_panel.h | |
| parent | 39dcdd18487d5d1e20f0343fe617ed5bf44c1387 (diff) | |
Add UI for DCP head/tail.1608
Diffstat (limited to 'src/wx/dcp_panel.h')
| -rw-r--r-- | src/wx/dcp_panel.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wx/dcp_panel.h b/src/wx/dcp_panel.h index 887ae7c77..a50a473e9 100644 --- a/src/wx/dcp_panel.h +++ b/src/wx/dcp_panel.h @@ -19,6 +19,7 @@ */ #include "lib/config.h" +#include "timecode.h" #include <boost/shared_ptr.hpp> #include <boost/noncopyable.hpp> @@ -83,6 +84,8 @@ private: void markers_clicked (); void metadata_clicked (); void reencode_j2k_changed (); + void head_changed (); + void tail_changed (); void setup_frame_rate_widget (); void setup_container (); @@ -139,6 +142,11 @@ private: wxChoice* _resolution; wxStaticText* _standard_label; wxChoice* _standard; + wxSizer* _hmsf; + wxStaticText* _head_label; + Timecode<dcpomatic::DCPTime>* _head; + wxStaticText* _tail_label; + Timecode<dcpomatic::DCPTime>* _tail; wxCheckBox* _signed; wxCheckBox* _encrypted; wxStaticText* _key_label; |
