X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Faudio_mapping_view.cc;h=8e92400bdb956ffd7b58205dccf5626bf9015be7;hb=fe851f2e6e57d3a8781ecc173089c19632c521e3;hp=d62609d22e514392631a1db83fa3705ea5c7eaa1;hpb=c921cfe23b593d7c367ad76094308c5f08037374;p=dcpomatic.git diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc index d62609d22..9c14f61e7 100644 --- a/src/wx/audio_mapping_view.cc +++ b/src/wx/audio_mapping_view.cc @@ -1,156 +1,658 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ -#include -#include -#include -#include -#include "lib/audio_mapping.h" + +/** @file src/wx/audio_mapping_view.cc + * @brief AudioMappingView class and helpers. + */ + + +#include "audio_gain_dialog.h" #include "audio_mapping_view.h" +#include "wx_ptr.h" #include "wx_util.h" +#include "lib/audio_mapping.h" +#include "lib/maths_util.h" +#include +#include +#include +LIBDCP_DISABLE_WARNINGS +#include +#include +#include +#include +LIBDCP_ENABLE_WARNINGS + -using std::cout; using std::list; -using boost::shared_ptr; +using std::make_pair; +using std::max; +using std::min; +using std::pair; +using std::shared_ptr; +using std::string; +using std::vector; +using boost::optional; +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif +using dcp::locale_convert; -/* This could go away with wxWidgets 2.9, which has an API call - to find these values. -*/ -#ifdef __WXMSW__ -#define CHECKBOX_WIDTH 16 -#define CHECKBOX_HEIGHT 16 -#endif +static constexpr auto INDICATOR_SIZE = 20; +static constexpr auto ROW_HEIGHT = 32; +static constexpr auto MINIMUM_COLUMN_WIDTH = 32; +static constexpr auto LEFT_WIDTH = MINIMUM_COLUMN_WIDTH * 3; +static constexpr auto TOP_HEIGHT = ROW_HEIGHT * 2; +static constexpr auto COLUMN_PADDING = 16; +static constexpr auto HORIZONTAL_PAGE_SIZE = 32; + + +enum { + ID_off = 1, + ID_minus6dB = 2, + ID_0dB = 3, + ID_plus3dB = 4, + ID_edit = 5 +}; + + +AudioMappingView::AudioMappingView (wxWindow* parent, wxString left_label, wxString from, wxString top_label, wxString to) + : wxPanel (parent, wxID_ANY) + , _menu_input (0) + , _menu_output (1) + , _left_label (left_label) + , _from (from) + , _top_label (top_label) + , _to (to) +{ + _menu = new wxMenu; + _menu->Append (ID_off, _("Off")); + _menu->Append (ID_minus6dB, _("-6dB")); + _menu->Append (ID_0dB, _("0dB (unchanged)")); + _menu->Append (ID_plus3dB, _("+3dB")); + _menu->Append (ID_edit, _("Edit...")); -#ifdef __WXGTK__ -#define CHECKBOX_WIDTH 20 -#define CHECKBOX_HEIGHT 20 + _body = new wxPanel (this, wxID_ANY); + _vertical_scroll = new wxScrollBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSB_VERTICAL); + _horizontal_scroll = new wxScrollBar (this, wxID_ANY); + +#ifndef __WXOSX__ + SetDoubleBuffered (true); #endif + Bind (wxEVT_SIZE, boost::bind(&AudioMappingView::size, this, _1)); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::set_gain_from_menu, this, 0), ID_off); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::set_gain_from_menu, this, db_to_linear(-6)), ID_minus6dB); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::set_gain_from_menu, this, 1), ID_0dB); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::set_gain_from_menu, this, db_to_linear(3)), ID_plus3dB); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::edit, this), ID_edit); + Bind (wxEVT_MOUSEWHEEL, boost::bind(&AudioMappingView::mouse_wheel, this, _1)); + _body->Bind (wxEVT_PAINT, boost::bind(&AudioMappingView::paint, this)); + _body->Bind (wxEVT_LEFT_DOWN, boost::bind(&AudioMappingView::left_down, this, _1)); + _body->Bind (wxEVT_RIGHT_DOWN, boost::bind(&AudioMappingView::right_down, this, _1)); + _body->Bind (wxEVT_MOTION, boost::bind(&AudioMappingView::motion, this, _1)); + _vertical_scroll->Bind (wxEVT_SCROLL_TOP, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_BOTTOM, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_LINEUP, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_LINEDOWN, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_PAGEUP, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_PAGEDOWN, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_THUMBTRACK, boost::bind(&AudioMappingView::scroll, this)); + _vertical_scroll->Bind (wxEVT_SCROLL_THUMBRELEASE, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_TOP, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_BOTTOM, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_LINEUP, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_LINEDOWN, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_PAGEUP, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_PAGEDOWN, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_THUMBTRACK, boost::bind(&AudioMappingView::scroll, this)); + _horizontal_scroll->Bind (wxEVT_SCROLL_THUMBRELEASE, boost::bind(&AudioMappingView::scroll, this)); +} + + +void +AudioMappingView::size (wxSizeEvent& ev) +{ + setup (); + ev.Skip (); +} + -class NoSelectionStringRenderer : public wxGridCellStringRenderer +void +AudioMappingView::setup () { -public: - void Draw (wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, const wxRect& rect, int row, int col, bool) - { - wxGridCellStringRenderer::Draw (grid, attr, dc, rect, row, col, false); + auto const s = GetSize(); + int const w = _vertical_scroll->GetSize().GetWidth(); + int const h = _horizontal_scroll->GetSize().GetHeight(); + + _vertical_scroll->SetPosition (wxPoint(s.GetWidth() - w, 0)); + _vertical_scroll->SetSize (wxSize(w, max(0, s.GetHeight() - h))); + + _body->SetSize (wxSize(max(0, s.GetWidth() - w), max(0, s.GetHeight() - h))); + + _horizontal_scroll->SetPosition (wxPoint(0, s.GetHeight() - h)); + _horizontal_scroll->SetSize (wxSize(max(0, s.GetWidth() - w), h)); + + _vertical_scroll->SetScrollbar ( + _vertical_scroll->GetThumbPosition(), + s.GetHeight() - h - 8, + ROW_HEIGHT * (2 + _input_channels.size()), + ROW_HEIGHT, + true + ); + + wxClientDC dc (GetParent()); + dc.SetFont (wxSWISS_FONT->Bold()); + + _column_widths.clear (); + _column_widths.reserve (_output_channels.size()); + _column_widths_total = 0; + + for (auto const& i: _output_channels) { + wxCoord width; + wxCoord height; + dc.GetTextExtent (std_to_wx(i.name), &width, &height); + auto const this_width = max(width + COLUMN_PADDING, MINIMUM_COLUMN_WIDTH); + _column_widths.push_back (this_width); + _column_widths_total += this_width; } -}; -class CheckBoxRenderer : public wxGridCellRenderer + _horizontal_scroll->SetScrollbar ( + _horizontal_scroll->GetThumbPosition(), + s.GetWidth() - w - 8, + LEFT_WIDTH + _column_widths_total, + HORIZONTAL_PAGE_SIZE, + true); +} + + +void +AudioMappingView::scroll () +{ + Refresh (); +} + + +void +AudioMappingView::paint_static (wxDC& dc) +{ + dc.SetFont (wxSWISS_FONT->Bold()); + wxCoord label_width; + wxCoord label_height; + + dc.GetTextExtent (_top_label, &label_width, &label_height); + dc.DrawText (_top_label, LEFT_WIDTH + (_column_widths_total - label_width) / 2, (ROW_HEIGHT - label_height) / 2); + + dc.GetTextExtent (_left_label, &label_width, &label_height); + dc.DrawRotatedText ( + _left_label, + (ROW_HEIGHT - label_height) / 2, + TOP_HEIGHT + (_input_channels.size() * ROW_HEIGHT + label_width) / 2, + 90 + ); + + dc.SetFont (*wxSWISS_FONT); +} + + +void +AudioMappingView::paint_column_labels (wxDC& dc) +{ + wxCoord label_width; + wxCoord label_height; + int x = LEFT_WIDTH; + for (auto i = 0U; i < _output_channels.size(); ++i) { + auto const name = std_to_wx(_output_channels[i].name); + dc.GetTextExtent (name, &label_width, &label_height); + dc.DrawText (name, x + (_column_widths[i] - label_width) / 2, ROW_HEIGHT + (ROW_HEIGHT - label_height) / 2); + x += _column_widths[i]; + } + + dc.DrawLine(wxPoint(LEFT_WIDTH, ROW_HEIGHT), wxPoint(LEFT_WIDTH + _column_widths_total, ROW_HEIGHT)); + dc.DrawLine(wxPoint(LEFT_WIDTH, ROW_HEIGHT * 2), wxPoint(LEFT_WIDTH + _column_widths_total, ROW_HEIGHT * 2)); +} + + +void +AudioMappingView::paint_column_lines (wxDC& dc) +{ + int x = LEFT_WIDTH; + for (size_t i = 0; i < _output_channels.size(); ++i) { + dc.DrawLine ( + wxPoint(x, ROW_HEIGHT), + wxPoint(x, TOP_HEIGHT + _input_channels.size() * ROW_HEIGHT) + ); + x += _column_widths[i]; + } + + dc.DrawLine ( + wxPoint(LEFT_WIDTH + _column_widths_total, ROW_HEIGHT), + wxPoint(LEFT_WIDTH + _column_widths_total, TOP_HEIGHT + _input_channels.size() * ROW_HEIGHT) + ); +} + + +void +AudioMappingView::paint_row_labels (wxDC& dc) { -public: + wxCoord label_width; + wxCoord label_height; + + /* Row channel labels */ + + for (auto i = 0U; i < _input_channels.size(); ++i) { + auto const name = std_to_wx(_input_channels[i].name); + dc.GetTextExtent (name, &label_width, &label_height); + dc.DrawText (name, LEFT_WIDTH - MINIMUM_COLUMN_WIDTH + (MINIMUM_COLUMN_WIDTH - label_width) / 2, TOP_HEIGHT + ROW_HEIGHT * i + (ROW_HEIGHT - label_height) / 2); + } - void Draw (wxGrid& grid, wxGridCellAttr &, wxDC& dc, const wxRect& rect, int row, int col, bool) - { - wxRendererNative::Get().DrawCheckBox ( - &grid, - dc, rect, - grid.GetCellValue (row, col) == "1" ? static_cast(wxCONTROL_CHECKED) : 0 + /* Vertical lines on the left */ + + for (int i = 1; i < 3; ++i) { + dc.DrawLine ( + wxPoint(MINIMUM_COLUMN_WIDTH * i, TOP_HEIGHT), + wxPoint(MINIMUM_COLUMN_WIDTH * i, TOP_HEIGHT + _input_channels.size() * ROW_HEIGHT) ); } - wxSize GetBestSize (wxGrid &, wxGridCellAttr &, wxDC &, int, int) - { - return wxSize (CHECKBOX_WIDTH + 4, CHECKBOX_HEIGHT + 4); + int y = TOP_HEIGHT; + for (auto const& i: _input_groups) { + dc.DrawLine (wxPoint(MINIMUM_COLUMN_WIDTH, y), wxPoint(MINIMUM_COLUMN_WIDTH * 2, y)); + y += (i.to - i.from + 1) * ROW_HEIGHT; } - - wxGridCellRenderer* Clone () const - { - return new CheckBoxRenderer; + dc.DrawLine (wxPoint(MINIMUM_COLUMN_WIDTH, y), wxPoint(MINIMUM_COLUMN_WIDTH * 2, y)); + + /* Group labels and lines; be careful here as wxDCClipper does not restore the old + * clipping rectangle after it is destroyed + */ + y = TOP_HEIGHT; + for (auto const& i: _input_groups) { + int const height = (i.to - i.from + 1) * ROW_HEIGHT; + dc.GetTextExtent (std_to_wx(i.name), &label_width, &label_height); + if (label_width > height) { + label_width = height - 8; + } + + { + wxDCClipper clip (dc, wxRect(MINIMUM_COLUMN_WIDTH, y, ROW_HEIGHT, height)); + int yp = y; + if ((yp - 2 * ROW_HEIGHT) < dc.GetLogicalOrigin().y) { + yp += dc.GetLogicalOrigin().y; + } + + dc.DrawRotatedText ( + std_to_wx(i.name), + ROW_HEIGHT + (ROW_HEIGHT - label_height) / 2, + y + (height + label_width) / 2, + 90 + ); + } + + y += height; } -}; +} -AudioMappingView::AudioMappingView (wxWindow* parent) - : wxPanel (parent, wxID_ANY) +void +AudioMappingView::paint_row_lines (wxDC& dc) +{ + for (size_t i = 0; i < _input_channels.size(); ++i) { + dc.DrawLine ( + wxPoint(MINIMUM_COLUMN_WIDTH * 2, TOP_HEIGHT + ROW_HEIGHT * i), + wxPoint(LEFT_WIDTH + _column_widths_total, TOP_HEIGHT + ROW_HEIGHT * i) + ); + } + dc.DrawLine ( + wxPoint(MINIMUM_COLUMN_WIDTH * 2, TOP_HEIGHT + ROW_HEIGHT * _input_channels.size()), + wxPoint(LEFT_WIDTH + _column_widths_total, TOP_HEIGHT + ROW_HEIGHT * _input_channels.size()) + ); +} + + +void +AudioMappingView::paint_indicators (wxDC& dc) +{ + /* _{input,output}_channels and _map may not always be in sync, be careful here */ + size_t const output = min(_output_channels.size(), size_t(_map.output_channels())); + size_t const input = min(_input_channels.size(), size_t(_map.input_channels())); + + int xp = LEFT_WIDTH; + for (size_t x = 0; x < output; ++x) { + for (size_t y = 0; y < input; ++y) { + dc.SetBrush (*wxWHITE_BRUSH); + dc.DrawRectangle ( + wxRect( + xp + (_column_widths[x] - INDICATOR_SIZE) / 2, + TOP_HEIGHT + y * ROW_HEIGHT + (ROW_HEIGHT - INDICATOR_SIZE) / 2, + INDICATOR_SIZE, INDICATOR_SIZE + ) + ); + + float const value_dB = linear_to_db(_map.get(_input_channels[y].index, _output_channels[x].index)); + auto const colour = value_dB <= 0 ? wxColour(0, 255, 0) : wxColour(255, 150, 0); + int const range = 18; + int height = 0; + if (value_dB > -range) { + height = min(INDICATOR_SIZE, static_cast(INDICATOR_SIZE * (1 + value_dB / range))); + } + + dc.SetBrush (*wxTheBrushList->FindOrCreateBrush(colour, wxBRUSHSTYLE_SOLID)); + dc.DrawRectangle ( + wxRect( + xp + (_column_widths[x] - INDICATOR_SIZE) / 2, + TOP_HEIGHT + y * ROW_HEIGHT + (ROW_HEIGHT - INDICATOR_SIZE) / 2 + INDICATOR_SIZE - height, + INDICATOR_SIZE, height + ) + ); + + } + xp += _column_widths[x]; + } +} + + +static +void restore (wxDC& dc) +{ + dc.SetLogicalOrigin (0, 0); + dc.DestroyClippingRegion (); +} + + +void +AudioMappingView::paint () +{ + wxPaintDC dc (_body); + + int const hs = _horizontal_scroll->GetThumbPosition (); + int const vs = _vertical_scroll->GetThumbPosition (); + + paint_static (dc); + + dc.SetClippingRegion ( + LEFT_WIDTH, + 0, + _column_widths_total, + ROW_HEIGHT * (2 + _input_channels.size()) + ); + dc.SetLogicalOrigin (hs, 0); + paint_column_labels (dc); + restore (dc); + + dc.SetClippingRegion( + 0, + TOP_HEIGHT, + LEFT_WIDTH, + min(int(ROW_HEIGHT * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT) + 1 + ); + dc.SetLogicalOrigin (0, vs); + paint_row_labels (dc); + restore (dc); + + dc.SetClippingRegion( + MINIMUM_COLUMN_WIDTH * 2, + TOP_HEIGHT, + MINIMUM_COLUMN_WIDTH + _column_widths_total, + min(int(ROW_HEIGHT * (2 + _input_channels.size())), GetSize().GetHeight() - TOP_HEIGHT) + ); + dc.SetLogicalOrigin (hs, vs); + paint_row_lines (dc); + restore (dc); + + dc.SetClippingRegion( + LEFT_WIDTH, + MINIMUM_COLUMN_WIDTH, + MINIMUM_COLUMN_WIDTH + _column_widths_total, + min(int(ROW_HEIGHT * (1 + _input_channels.size())), GetSize().GetHeight() - ROW_HEIGHT) + ); + dc.SetLogicalOrigin(hs, vs); + paint_column_lines (dc); + restore (dc); + + dc.SetClippingRegion ( + LEFT_WIDTH, + TOP_HEIGHT, + _column_widths_total, + min(int(ROW_HEIGHT * _input_channels.size()), GetSize().GetHeight() - TOP_HEIGHT) + ); + dc.SetLogicalOrigin(hs, vs); + paint_indicators (dc); + restore (dc); +} + + +optional> +AudioMappingView::mouse_event_to_channels (wxMouseEvent& ev) const { - _grid = new wxGrid (this, wxID_ANY); + int x = ev.GetX() + _horizontal_scroll->GetThumbPosition(); + int const y = ev.GetY() + _vertical_scroll->GetThumbPosition(); + + if (x <= LEFT_WIDTH || y < TOP_HEIGHT) { + return {}; + } - _grid->CreateGrid (0, 7); - _grid->HideRowLabels (); - _grid->DisableDragRowSize (); - _grid->DisableDragColSize (); - _grid->EnableEditing (false); - _grid->SetCellHighlightPenWidth (0); - _grid->SetDefaultRenderer (new NoSelectionStringRenderer); + int const input = (y - TOP_HEIGHT) / ROW_HEIGHT; - _grid->SetColLabelValue (0, _("Content channel")); - _grid->SetColLabelValue (1, _("L")); - _grid->SetColLabelValue (2, _("R")); - _grid->SetColLabelValue (3, _("C")); - _grid->SetColLabelValue (4, _("Lfe")); - _grid->SetColLabelValue (5, _("Ls")); - _grid->SetColLabelValue (6, _("Rs")); + x -= LEFT_WIDTH; + int output = 0; + for (auto const i: _column_widths) { + x -= i; + if (x < 0) { + break; + } + ++output; + } + + if (input >= int(_input_channels.size()) || output >= int(_output_channels.size())) { + return {}; + } + + return make_pair(_input_channels[input], _output_channels[output]); +} - _grid->AutoSize (); +optional +AudioMappingView::mouse_event_to_input_group_name (wxMouseEvent& ev) const +{ + int const x = ev.GetX() + _horizontal_scroll->GetThumbPosition(); + if (x < MINIMUM_COLUMN_WIDTH || x > (2 * MINIMUM_COLUMN_WIDTH)) { + return {}; + } + + int const y = (ev.GetY() + _vertical_scroll->GetThumbPosition() - TOP_HEIGHT) / ROW_HEIGHT; + for (auto i: _input_groups) { + if (i.from <= y && y <= i.to) { + return i.name; + } + } + + return {}; +} + +void +AudioMappingView::left_down (wxMouseEvent& ev) +{ + auto channels = mouse_event_to_channels (ev); + if (!channels) { + return; + } - wxBoxSizer* s = new wxBoxSizer (wxVERTICAL); - s->Add (_grid, 1, wxEXPAND); - SetSizerAndFit (s); + if (_map.get(channels->first.index, channels->second.index) > 0) { + _map.set (channels->first.index, channels->second.index, 0); + } else { + _map.set (channels->first.index, channels->second.index, 1); + } - Connect (wxID_ANY, wxEVT_GRID_CELL_LEFT_CLICK, wxGridEventHandler (AudioMappingView::left_click), 0, this); + map_values_changed (); } void -AudioMappingView::left_click (wxGridEvent& ev) +AudioMappingView::right_down (wxMouseEvent& ev) { - if (ev.GetCol() == 0) { + auto channels = mouse_event_to_channels (ev); + if (!channels) { return; } - - if (_grid->GetCellValue (ev.GetRow(), ev.GetCol()) == "1") { - _grid->SetCellValue (ev.GetRow(), ev.GetCol(), "0"); + + _menu_input = channels->first.index; + _menu_output = channels->second.index; + PopupMenu (_menu, ev.GetPosition()); +} + +void +AudioMappingView::mouse_wheel (wxMouseEvent& ev) +{ + if (ev.ShiftDown()) { + _horizontal_scroll->SetThumbPosition ( + _horizontal_scroll->GetThumbPosition() + (ev.GetWheelRotation() > 0 ? -HORIZONTAL_PAGE_SIZE : HORIZONTAL_PAGE_SIZE) + ); + } else { - _grid->SetCellValue (ev.GetRow(), ev.GetCol(), "1"); + _vertical_scroll->SetThumbPosition ( + _vertical_scroll->GetThumbPosition() + (ev.GetWheelRotation() > 0 ? -ROW_HEIGHT : ROW_HEIGHT) + ); } + Refresh (); } +/** Called when any gain value has changed */ void -AudioMappingView::set_mapping (AudioMapping map) +AudioMappingView::map_values_changed () { - if (_grid->GetNumberRows ()) { - _grid->DeleteRows (0, _grid->GetNumberRows ()); + Changed (_map); + _last_tooltip_channels = boost::none; + Refresh (); +} + +void +AudioMappingView::set_gain_from_menu (double linear) +{ + _map.set (_menu_input, _menu_output, linear); + map_values_changed (); +} + +void +AudioMappingView::edit () +{ + auto dialog = make_wx(this, _menu_input, _menu_output, _map.get(_menu_input, _menu_output)); + if (dialog->ShowModal() == wxID_OK) { + _map.set (_menu_input, _menu_output, dialog->value ()); + map_values_changed (); } +} + +void +AudioMappingView::set (AudioMapping map) +{ + _map = map; + Refresh (); +} + +void +AudioMappingView::set_input_channels (vector const& channels) +{ + _input_channels = channels; + setup (); + Refresh (); +} + +void +AudioMappingView::set_output_channels (vector const & channels) +{ + _output_channels = channels; + setup (); + Refresh (); +} - list content_channels = map.content_channels (); - _grid->InsertRows (0, content_channels.size ()); - for (size_t r = 0; r < content_channels.size(); ++r) { - for (int c = 1; c < 7; ++c) { - _grid->SetCellRenderer (r, c, new CheckBoxRenderer); +wxString +AudioMappingView::input_channel_name_with_group (NamedChannel const& n) const +{ + optional group; + for (auto i: _input_groups) { + if (i.from <= n.index && n.index <= i.to) { + group = std_to_wx (i.name); } } - - int n = 0; - for (list::iterator i = content_channels.begin(); i != content_channels.end(); ++i) { - shared_ptr ac = i->content.lock (); - assert (ac); - _grid->SetCellValue (n, 0, wxString::Format ("%s %d", std_to_wx (ac->file().filename().string()), i->index + 1)); - list const d = map.content_to_dcp (*i); - for (list::const_iterator j = d.begin(); j != d.end(); ++j) { - _grid->SetCellValue (n, static_cast (*j) + 1, "1"); + if (group && !group->IsEmpty()) { + return wxString::Format ("%s/%s", group->data(), std_to_wx(n.name).data()); + } + + return std_to_wx(n.name); +} + + +void +AudioMappingView::motion (wxMouseEvent& ev) +{ + auto channels = mouse_event_to_channels (ev); + if (channels) { + if (channels != _last_tooltip_channels) { + wxString s; + auto const gain = _map.get(channels->first.index, channels->second.index); + if (gain == 0) { + s = wxString::Format ( + _("No audio will be passed from %s channel '%s' to %s channel '%s'."), + _from, + input_channel_name_with_group(channels->first), + _to, + std_to_wx(channels->second.name) + ); + } else if (gain == 1) { + s = wxString::Format ( + _("Audio will be passed from %s channel %s to %s channel %s unaltered."), + _from, + input_channel_name_with_group(channels->first), + _to, + std_to_wx(channels->second.name) + ); + } else { + auto const dB = linear_to_db(gain); + s = wxString::Format ( + _("Audio will be passed from %s channel %s to %s channel %s with gain %.1fdB."), + _from, + input_channel_name_with_group(channels->first), + _to, + std_to_wx(channels->second.name), + dB + ); + } + + SetToolTip (s + " " + _("Right click to change gain.")); + } + } else { + auto group = mouse_event_to_input_group_name (ev); + if (group) { + SetToolTip (std_to_wx(*group)); + } else { + SetToolTip (""); } - ++n; } - _grid->AutoSize (); + _last_tooltip_channels = channels; + ev.Skip (); } +void +AudioMappingView::set_input_groups (vector const & groups) +{ + _input_groups = groups; +}