X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fdcp_panel.h;h=2e7555487d5a273a5ff0b88f8d8b2849adc53fdd;hb=865316f0129c85cdd0248b87502fe97dec94b3f0;hp=258471ffd5a6c38e0fce071dba348b521ef116ea;hpb=f330799459f44d031dc711b947dd2c0cc5a015a3;p=dcpomatic.git diff --git a/src/wx/dcp_panel.h b/src/wx/dcp_panel.h index 258471ffd..2e7555487 100644 --- a/src/wx/dcp_panel.h +++ b/src/wx/dcp_panel.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2019 Carl Hetherington + Copyright (C) 2012-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -18,10 +18,12 @@ */ + #include "lib/config.h" -#include -#include +#include "lib/film.h" + +class Button; class wxNotebook; class wxPanel; class wxBoxSizer; @@ -36,20 +38,25 @@ class wxGridBagSizer; class AudioDialog; class MarkersDialog; -class MetadataDialog; +class InteropMetadataDialog; +class SMPTEMetadataDialog; class Film; class FilmViewer; class Ratio; -class DCPPanel : public boost::noncopyable + +class DCPPanel { public: - DCPPanel (wxNotebook *, boost::shared_ptr, boost::weak_ptr viewer); + DCPPanel (wxNotebook *, std::shared_ptr, std::weak_ptr viewer); + + DCPPanel (DCPPanel const&) = delete; + DCPPanel& operator= (DCPPanel const&) = delete; - void set_film (boost::shared_ptr); + void set_film (std::shared_ptr); void set_general_sensitivity (bool); - void film_changed (int); + void film_changed (Film::Property); void film_content_changed (int); wxPanel* panel () const { @@ -59,7 +66,6 @@ public: private: void name_changed (); void use_isdcf_name_toggled (); - void edit_isdcf_button_clicked (); void copy_isdcf_name_button_clicked (); void container_changed (); void dcp_content_type_changed (); @@ -77,10 +83,12 @@ private: void show_audio_clicked (); void reel_type_changed (); void reel_length_changed (); - void upload_after_make_dcp_changed (); void markers_clicked (); void metadata_clicked (); void reencode_j2k_changed (); + void enable_audio_language_toggled (); + void edit_audio_language_clicked (); + void audio_sample_rate_changed (); void setup_frame_rate_widget (); void setup_container (); @@ -111,10 +119,12 @@ private: wxTextCtrl* _name; wxStaticText* _dcp_name; wxCheckBox* _use_isdcf_name; + wxCheckBox* _enable_audio_language = nullptr; + wxStaticText* _audio_language = nullptr; + Button* _edit_audio_language = nullptr; wxStaticText* _container_label; wxChoice* _container; wxStaticText* _container_size; - wxButton* _edit_isdcf_button; wxButton* _copy_isdcf_name_button; wxStaticText* _j2k_bandwidth_label; wxStaticText* _mbits_label; @@ -127,6 +137,8 @@ private: wxSizer* _frame_rate_sizer; wxStaticText* _channels_label; wxChoice* _audio_channels; + wxStaticText* _audio_sample_rate_label; + wxChoice* _audio_sample_rate; wxStaticText* _processor_label; wxChoice* _audio_processor; wxButton* _show_audio; @@ -143,16 +155,16 @@ private: wxStaticText* _reel_length_label; wxStaticText* _reel_length_gb_label; wxSpinCtrl* _reel_length; - wxCheckBox* _upload_after_make_dcp; wxButton* _markers; wxButton* _metadata; wxSizer* _audio_panel_sizer; - AudioDialog* _audio_dialog; - MarkersDialog* _markers_dialog; - MetadataDialog* _metadata_dialog; + AudioDialog* _audio_dialog = nullptr; + MarkersDialog* _markers_dialog = nullptr; + InteropMetadataDialog* _interop_metadata_dialog = nullptr; + SMPTEMetadataDialog* _smpte_metadata_dialog = nullptr; - boost::shared_ptr _film; - boost::weak_ptr _viewer; + std::shared_ptr _film; + std::weak_ptr _viewer; bool _generally_sensitive; };