Merge master.
[dcpomatic.git] / src / wx / properties_dialog.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iomanip>
21 #include <boost/lexical_cast.hpp>
22 #include <boost/bind.hpp>
23 #include "lib/film.h"
24 #include "lib/config.h"
25 #include "properties_dialog.h"
26 #include "wx_util.h"
27
28 using std::string;
29 using std::stringstream;
30 using std::fixed;
31 using std::setprecision;
32 using boost::shared_ptr;
33 using boost::lexical_cast;
34
35 PropertiesDialog::PropertiesDialog (wxWindow* parent, shared_ptr<Film> film)
36         : TableDialog (parent, _("Film Properties"), 2, false)
37         , _film (film)
38 {
39         add (_("Frames"), true);
40         _frames = add (new wxStaticText (this, wxID_ANY, wxT ("")));
41
42         add (_("Disk space required"), true);
43         _disk = add (new wxStaticText (this, wxID_ANY, wxT ("")));
44
45         add (_("Frames already encoded"), true);
46         _encoded = add (new ThreadedStaticText (this, _("counting..."), boost::bind (&PropertiesDialog::frames_already_encoded, this)));
47         _encoded->Finished.connect (boost::bind (&PropertiesDialog::layout, this));
48         _frames->SetLabel (std_to_wx (lexical_cast<string> (_film->length().frames (_film->video_frame_rate ()))));
49         double const disk = double (_film->required_disk_space()) / 1073741824.0f;
50         stringstream s;
51         s << fixed << setprecision (1) << disk << wx_to_std (_("Gb"));
52         _disk->SetLabel (std_to_wx (s.str ()));
53
54         layout ();
55 }
56
57 string
58 PropertiesDialog::frames_already_encoded () const
59 {
60         stringstream u;
61         try {
62                 u << _film->encoded_frames ();
63         } catch (boost::thread_interrupted &) {
64                 return "";
65         }
66
67         uint64_t const frames = _film->length().frames (_film->video_frame_rate ());
68         if (frames) {
69                 /* XXX: encoded_frames() should check which frames have been encoded */
70                 u << " (" << (_film->encoded_frames() * 100 / frames) << "%)";
71         }
72         return u.str ();
73 }