Update zh_CN translation from Rov.
[dcpomatic.git] / src / wx / audio_dialog.h
index b6cc4125426529f9c5ec729871d4a7147e7bc9ef..0f791dc160b0df41571c69378cc774195e3af919 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 
 */
 
-#include <boost/shared_ptr.hpp>
-#include <boost/signals2.hpp>
-#include <wx/wx.h>
 #include "lib/film.h"
 #include "lib/audio_analysis.h"
+#include "lib/playlist.h"
+#include <wx/wx.h>
+#include <boost/shared_ptr.hpp>
+#include <boost/signals2.hpp>
 
 class AudioPlot;
 class Film;
@@ -29,9 +30,9 @@ class Film;
 class AudioDialog : public wxDialog
 {
 public:
-       AudioDialog (wxWindow *, boost::shared_ptr<Film> film);
+       AudioDialog (wxWindow *, boost::shared_ptr<Film> film, boost::shared_ptr<AudioContent> content = boost::shared_ptr<AudioContent> ());
 
-       void set_playlist (boost::shared_ptr<const Playlist>);
+       bool Show (bool show = true);
 
 private:
        void content_changed (int);
@@ -40,16 +41,20 @@ private:
        void smoothing_changed ();
        void try_to_load_analysis ();
        void analysis_finished ();
-       void setup_peak_time ();
+       void setup_statistics ();
 
-       boost::shared_ptr<const Playlist> _playlist;
        boost::shared_ptr<AudioAnalysis> _analysis;
        boost::weak_ptr<Film> _film;
+       int _channels;
+       boost::shared_ptr<const Playlist> _playlist;
        AudioPlot* _plot;
-       wxStaticText* _peak_time;
+       wxStaticText* _sample_peak;
+       wxStaticText* _true_peak;
+       wxStaticText* _integrated_loudness;
+       wxStaticText* _loudness_range;
        wxCheckBox* _channel_checkbox[MAX_DCP_AUDIO_CHANNELS];
        wxCheckBox* _type_checkbox[AudioPoint::COUNT];
        wxSlider* _smoothing;
-       boost::signals2::scoped_connection _playlist_connection;
+       boost::signals2::scoped_connection _film_connection;
        boost::signals2::scoped_connection _analysis_finished_connection;
 };