Merge master; fix crash on new film.
[dcpomatic.git] / src / wx / audio_mapping_view.cc
1 /*
2     Copyright (C) 2013 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 <wx/wx.h>
21 #include <wx/renderer.h>
22 #include <wx/grid.h>
23 #include <libdcp/types.h>
24 #include "lib/audio_mapping.h"
25 #include "audio_mapping_view.h"
26 #include "wx_util.h"
27
28 using std::cout;
29 using std::list;
30 using boost::shared_ptr;
31
32 /* This could go away with wxWidgets 2.9, which has an API call
33    to find these values.
34 */
35
36 #ifdef __WXMSW__
37 #define CHECKBOX_WIDTH 16
38 #define CHECKBOX_HEIGHT 16
39 #endif
40
41 #ifdef __WXGTK__
42 #define CHECKBOX_WIDTH 20
43 #define CHECKBOX_HEIGHT 20
44 #endif
45
46
47 class NoSelectionStringRenderer : public wxGridCellStringRenderer
48 {
49 public:
50         void Draw (wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, const wxRect& rect, int row, int col, bool)
51         {
52                 wxGridCellStringRenderer::Draw (grid, attr, dc, rect, row, col, false);
53         }
54 };
55
56 class CheckBoxRenderer : public wxGridCellRenderer
57 {
58 public:
59
60         void Draw (wxGrid& grid, wxGridCellAttr &, wxDC& dc, const wxRect& rect, int row, int col, bool)
61         {
62                 wxRendererNative::Get().DrawCheckBox (
63                         &grid,
64                         dc, rect,
65                         grid.GetCellValue (row, col) == wxT("1") ? static_cast<int>(wxCONTROL_CHECKED) : 0
66                         );
67         }
68
69         wxSize GetBestSize (wxGrid &, wxGridCellAttr &, wxDC &, int, int)
70         {
71                 return wxSize (CHECKBOX_WIDTH + 4, CHECKBOX_HEIGHT + 4);
72         }
73         
74         wxGridCellRenderer* Clone () const
75         {
76                 return new CheckBoxRenderer;
77         }
78 };
79
80
81 AudioMappingView::AudioMappingView (wxWindow* parent)
82         : wxPanel (parent, wxID_ANY)
83 {
84         _grid = new wxGrid (this, wxID_ANY);
85
86         _grid->CreateGrid (0, 7);
87 #if wxMINOR_VERSION == 9
88         _grid->HideRowLabels ();
89 #else
90         _grid->SetRowLabelSize (0);
91 #endif  
92         _grid->DisableDragRowSize ();
93         _grid->DisableDragColSize ();
94         _grid->EnableEditing (false);
95         _grid->SetCellHighlightPenWidth (0);
96         _grid->SetDefaultRenderer (new NoSelectionStringRenderer);
97
98         _grid->SetColLabelValue (0, _("Content channel"));
99         _grid->SetColLabelValue (1, _("L"));
100         _grid->SetColLabelValue (2, _("R"));
101         _grid->SetColLabelValue (3, _("C"));
102         _grid->SetColLabelValue (4, _("Lfe"));
103         _grid->SetColLabelValue (5, _("Ls"));
104         _grid->SetColLabelValue (6, _("Rs"));
105
106         _grid->AutoSize ();
107
108         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
109         s->Add (_grid, 1, wxEXPAND);
110         SetSizerAndFit (s);
111
112         Connect (wxID_ANY, wxEVT_GRID_CELL_LEFT_CLICK, wxGridEventHandler (AudioMappingView::left_click), 0, this);
113 }
114
115 void
116 AudioMappingView::left_click (wxGridEvent& ev)
117 {
118         if (ev.GetCol() == 0) {
119                 return;
120         }
121         
122         if (_grid->GetCellValue (ev.GetRow(), ev.GetCol()) == wxT("1")) {
123                 _grid->SetCellValue (ev.GetRow(), ev.GetCol(), wxT("0"));
124         } else {
125                 _grid->SetCellValue (ev.GetRow(), ev.GetCol(), wxT("1"));
126         }
127 }
128
129 void
130 AudioMappingView::set_mapping (AudioMapping map)
131 {
132         if (_grid->GetNumberRows ()) {
133                 _grid->DeleteRows (0, _grid->GetNumberRows ());
134         }
135
136         list<AudioMapping::Channel> content_channels = map.content_channels ();
137         _grid->InsertRows (0, content_channels.size ());
138
139         for (size_t r = 0; r < content_channels.size(); ++r) {
140                 for (int c = 1; c < 7; ++c) {
141                         _grid->SetCellRenderer (r, c, new CheckBoxRenderer);
142                 }
143         }
144         
145         int n = 0;
146         for (list<AudioMapping::Channel>::iterator i = content_channels.begin(); i != content_channels.end(); ++i) {
147                 shared_ptr<const AudioContent> ac = i->content.lock ();
148                 assert (ac);
149                 _grid->SetCellValue (n, 0, wxString::Format (wxT("%s %d"), std_to_wx (ac->file().filename().string()).data(), i->index + 1));
150
151                 list<libdcp::Channel> const d = map.content_to_dcp (*i);
152                 for (list<libdcp::Channel>::const_iterator j = d.begin(); j != d.end(); ++j) {
153                         _grid->SetCellValue (n, static_cast<int> (*j) + 1, wxT("1"));
154                 }
155                 ++n;
156         }
157
158         _grid->AutoSize ();
159 }
160