Add a simple properties dialog to give an idea of disk space required for an encode.
[dcpomatic.git] / src / wx / properties_dialog.cc
1 /*
2     Copyright (C) 2012 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 "lib/film.h"
23 #include "lib/config.h"
24 #include "properties_dialog.h"
25 #include "wx_util.h"
26
27 using namespace std;
28 using namespace boost;
29
30 PropertiesDialog::PropertiesDialog (wxWindow* parent, Film* film)
31         : wxDialog (parent, wxID_ANY, _("Film Properties"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE)
32 {
33         wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6);
34
35         add_label_to_sizer (table, this, "Frames");
36         _frames = new wxStaticText (this, wxID_ANY, std_to_wx (""));
37         table->Add (_frames, 1, wxALIGN_CENTER_VERTICAL);
38
39         add_label_to_sizer (table, this, "Disk space for frames");
40         _disk_for_frames = new wxStaticText (this, wxID_ANY, std_to_wx (""));
41         table->Add (_disk_for_frames, 1, wxALIGN_CENTER_VERTICAL);
42         
43         add_label_to_sizer (table, this, "Total disk space");
44         _total_disk = new wxStaticText (this, wxID_ANY, std_to_wx (""));
45         table->Add (_total_disk, 1, wxALIGN_CENTER_VERTICAL);
46
47         _frames->SetLabel (std_to_wx (lexical_cast<string> (film->length ())));
48         double const disk = ((double) Config::instance()->j2k_bandwidth() / 8) * film->length() / (film->frames_per_second () * 1073741824);
49         stringstream s;
50         s << fixed << setprecision (1) << disk << "Gb";
51         _disk_for_frames->SetLabel (std_to_wx (s.str ()));
52
53         stringstream t;
54         t << fixed << setprecision (1) << (disk * 2) << "Gb";
55         _total_disk->SetLabel (std_to_wx (t.str ()));
56
57         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
58         overall_sizer->Add (table);
59         
60         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
61         if (buttons) {
62                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
63         }
64
65         SetSizer (overall_sizer);
66         overall_sizer->SetSizeHints (this);
67 }