X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Faudio_mapping_view.cc;h=140f18d60341207cd03ad2bdc89a4999c32e4a56;hp=0aaee31c073d1da1662179039ed729c8f65b805f;hb=0a3f387f5d39da2ca38ec90a9593c1b598040dd7;hpb=82e99f2294e9e8c382446a86e854b80f43dbaac9 diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc index 0aaee31c0..140f18d60 100644 --- a/src/wx/audio_mapping_view.cc +++ b/src/wx/audio_mapping_view.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2018 Carl Hetherington + Copyright (C) 2013-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -45,10 +45,13 @@ using std::vector; using std::pair; using std::make_pair; using boost::shared_ptr; +using boost::optional; using dcp::locale_convert; -#define INDICATOR_SIZE 16 -#define LEFT_WIDTH 48 +#define INDICATOR_SIZE 20 +#define GRID_SPACING 32 +#define LEFT_WIDTH (GRID_SPACING * 3) +#define TOP_HEIGHT (GRID_SPACING * 2) enum { ID_off = 1, @@ -57,509 +60,573 @@ enum { ID_edit = 4 }; -class NoSelectionStringRenderer : public wxGridCellStringRenderer -{ -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); - } -}; - -/** @class ValueRenderer - * @brief wxGridCellRenderer for a gain value. - */ -class ValueRenderer : public wxGridCellRenderer -{ -public: - - void Draw (wxGrid& grid, wxGridCellAttr &, wxDC& dc, const wxRect& rect, int row, int col, bool) - { - dc.SetPen (*wxThePenList->FindOrCreatePen (wxColour (255, 255, 255), 1, wxPENSTYLE_SOLID)); - dc.SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (255, 255, 255), wxBRUSHSTYLE_SOLID)); - dc.DrawRectangle (rect); - - int const xo = (rect.GetWidth() - INDICATOR_SIZE) / 2; - int const yo = (rect.GetHeight() - INDICATOR_SIZE) / 2; - - dc.SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 1, wxPENSTYLE_SOLID)); - dc.SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (255, 255, 255), wxBRUSHSTYLE_SOLID)); - dc.DrawRectangle (wxRect (rect.GetLeft() + xo, rect.GetTop() + yo, INDICATOR_SIZE, INDICATOR_SIZE)); - - float const value = locale_convert (wx_to_std (grid.GetCellValue (row, col))); - float const value_dB = 20 * log10 (value); - int const range = 18; - int height = 0; - if (value_dB > -range) { - height = INDICATOR_SIZE * (1 + value_dB / range); - } - - height = max (0, height); - - if (value > 0) { - /* Make sure we get a little bit of the marker if there is any gain */ - height = max (3, height); - } - - dc.SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (0, 255, 0), wxBRUSHSTYLE_SOLID)); - dc.DrawRectangle (wxRect (rect.GetLeft() + xo, rect.GetTop() + yo + INDICATOR_SIZE - height, INDICATOR_SIZE, height)); - } - - wxSize GetBestSize (wxGrid &, wxGridCellAttr &, wxDC &, int, int) - { - return wxSize (INDICATOR_SIZE + 4, INDICATOR_SIZE + 4); - } - - wxGridCellRenderer* Clone () const - { - return new ValueRenderer; - } -}; - - -AudioMappingView::AudioMappingView (wxWindow* parent) +AudioMappingView::AudioMappingView (wxWindow* parent, wxString left_label, wxString from, wxString top_label, wxString to) : wxPanel (parent, wxID_ANY) - , _menu_row (0) - , _menu_column (1) - , _last_tooltip_row (0) - , _last_tooltip_column (0) + , _menu_input (0) + , _menu_output (1) + , _left_label (left_label) + , _from (from) + , _top_label (top_label) + , _to (to) { - _left_labels = new wxScrolledCanvas (this, wxID_ANY); - _left_labels->Bind (wxEVT_PAINT, boost::bind (&AudioMappingView::paint_left_labels, this)); - _top_labels = new wxScrolledCanvas (this, wxID_ANY); - _top_labels->Bind (wxEVT_PAINT, boost::bind (&AudioMappingView::paint_top_labels, this)); - - _left_labels->ShowScrollbars (wxSHOW_SB_NEVER, wxSHOW_SB_NEVER); - _top_labels->ShowScrollbars (wxSHOW_SB_NEVER, wxSHOW_SB_NEVER); - - _grid = new wxGrid (this, wxID_ANY); - - _grid->CreateGrid (0, MAX_DCP_AUDIO_CHANNELS + 1); - _grid->HideRowLabels (); - _grid->DisableDragRowSize (); - _grid->DisableDragColSize (); - _grid->EnableEditing (false); - _grid->SetCellHighlightPenWidth (0); - _grid->SetDefaultRenderer (new NoSelectionStringRenderer); - _grid->EnableScrolling (true, true); - _grid->AutoSize (); - - wxSizer* vertical_sizer = new wxBoxSizer (wxVERTICAL); - vertical_sizer->Add (_top_labels); - wxSizer* horizontal_sizer = new wxBoxSizer (wxHORIZONTAL); - horizontal_sizer->Add (_left_labels); - horizontal_sizer->Add (_grid, 1, wxEXPAND | wxALL); - vertical_sizer->Add (horizontal_sizer); - SetSizerAndFit (vertical_sizer); - - Bind (wxEVT_GRID_CELL_LEFT_CLICK, boost::bind (&AudioMappingView::left_click, this, _1)); - Bind (wxEVT_GRID_CELL_RIGHT_CLICK, boost::bind (&AudioMappingView::right_click, this, _1)); - _grid->GetGridWindow()->Bind (wxEVT_MOTION, boost::bind (&AudioMappingView::mouse_moved_grid, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_TOP, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_BOTTOM, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_LINEUP, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_LINEDOWN, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_PAGEUP, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_PAGEDOWN, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_THUMBTRACK, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - _grid->Bind (wxEVT_SCROLLWIN_THUMBRELEASE, boost::bind (&AudioMappingView::grid_scrolled, this, _1)); - Bind (wxEVT_SIZE, boost::bind (&AudioMappingView::sized, this, _1)); - _menu = new wxMenu; _menu->Append (ID_off, _("Off")); _menu->Append (ID_full, _("Full")); _menu->Append (ID_minus6dB, _("-6dB")); _menu->Append (ID_edit, _("Edit...")); - Bind (wxEVT_MENU, boost::bind (&AudioMappingView::off, this), ID_off); - Bind (wxEVT_MENU, boost::bind (&AudioMappingView::full, this), ID_full); - Bind (wxEVT_MENU, boost::bind (&AudioMappingView::minus6dB, this), ID_minus6dB); - Bind (wxEVT_MENU, boost::bind (&AudioMappingView::edit, this), ID_edit); - - _left_labels->Bind (wxEVT_MOTION, bind (&AudioMappingView::mouse_moved_left_labels, this, _1)); + _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::off, this), ID_off); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::full, this), ID_full); + Bind (wxEVT_MENU, boost::bind(&AudioMappingView::minus6dB, this), ID_minus6dB); + 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)); } -/** Called when any gain value has changed */ void -AudioMappingView::map_values_changed () +AudioMappingView::size (wxSizeEvent& ev) { - update_cells (); - Changed (_map); - _last_tooltip_column = -1; + setup (); + ev.Skip (); } void -AudioMappingView::left_click (wxGridEvent& ev) +AudioMappingView::setup () { - if (ev.GetCol() == 0) { - return; - } + wxSize const s = GetSize(); + int const w = _vertical_scroll->GetSize().GetWidth(); + int const h = _horizontal_scroll->GetSize().GetHeight(); - int const d = ev.GetCol() - 1; + _vertical_scroll->SetPosition (wxPoint(s.GetWidth() - w, 0)); + _vertical_scroll->SetSize (wxSize(w, max(0, s.GetHeight() - h))); - if (_map.get (ev.GetRow(), d) > 0) { - _map.set (ev.GetRow(), d, 0); - } else { - _map.set (ev.GetRow(), d, 1); - } + _body->SetSize (wxSize(max(0, s.GetWidth() - w), max(0, s.GetHeight() - h))); - map_values_changed (); -} + _horizontal_scroll->SetPosition (wxPoint(0, s.GetHeight() - h)); + _horizontal_scroll->SetSize (wxSize(max(0, s.GetWidth() - w), h)); -void -AudioMappingView::right_click (wxGridEvent& ev) -{ - if (ev.GetCol() == 0) { - return; - } + _vertical_scroll->SetScrollbar ( + _vertical_scroll->GetThumbPosition(), + s.GetHeight() - h - 8, + GRID_SPACING * (2 + _input_channels.size()), + GRID_SPACING, + true + ); - _menu_row = ev.GetRow (); - _menu_column = ev.GetCol (); - PopupMenu (_menu, ev.GetPosition ()); + _horizontal_scroll->SetScrollbar ( + _horizontal_scroll->GetThumbPosition(), + s.GetWidth() - w - 8, + GRID_SPACING * (3 + _output_channels.size()), + GRID_SPACING, + true); } void -AudioMappingView::off () +AudioMappingView::scroll () { - _map.set (_menu_row, _menu_column - 1, 0); - map_values_changed (); + Refresh (); } void -AudioMappingView::full () +AudioMappingView::paint_static (wxDC& dc, wxGraphicsContext* gc) { - _map.set (_menu_row, _menu_column - 1, 1); - map_values_changed (); -} + gc->SetAntialiasMode (wxANTIALIAS_DEFAULT); + dc.SetFont (wxSWISS_FONT->Bold()); + wxCoord label_width; + wxCoord label_height; -void -AudioMappingView::minus6dB () -{ - _map.set (_menu_row, _menu_column - 1, pow (10, -6.0 / 20)); - map_values_changed (); -} + dc.GetTextExtent (_top_label, &label_width, &label_height); + dc.DrawText (_top_label, LEFT_WIDTH + (_output_channels.size() * GRID_SPACING - label_width) / 2, (GRID_SPACING - label_height) / 2); -void -AudioMappingView::edit () -{ - int const d = _menu_column - 1; - - AudioGainDialog* dialog = new AudioGainDialog (this, _menu_row, _menu_column - 1, _map.get (_menu_row, d)); - if (dialog->ShowModal () == wxID_OK) { - _map.set (_menu_row, d, dialog->value ()); - map_values_changed (); - } + dc.GetTextExtent (_left_label, &label_width, &label_height); + dc.DrawRotatedText ( + _left_label, + (GRID_SPACING - label_height) / 2, + TOP_HEIGHT + (_input_channels.size() * GRID_SPACING + label_width) / 2, + 90 + ); - dialog->Destroy (); + dc.SetFont (*wxSWISS_FONT); + gc->SetPen (*wxBLACK_PEN); } void -AudioMappingView::set (AudioMapping map) +AudioMappingView::paint_column_labels (wxDC& dc, wxGraphicsContext* gc) { - _map = map; - update_cells (); + wxCoord label_width; + wxCoord label_height; + int N = 0; + BOOST_FOREACH (string i, _output_channels) { + dc.GetTextExtent (std_to_wx(i), &label_width, &label_height); + dc.DrawText (std_to_wx(i), LEFT_WIDTH + GRID_SPACING * N + (GRID_SPACING - label_width) / 2, GRID_SPACING + (GRID_SPACING - label_height) / 2); + ++N; + } + + wxGraphicsPath lines = gc->CreatePath (); + lines.MoveToPoint (LEFT_WIDTH, GRID_SPACING); + lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING); + lines.MoveToPoint (LEFT_WIDTH, GRID_SPACING * 2); + lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, GRID_SPACING * 2); + gc->StrokePath (lines); } void -AudioMappingView::set_input_channels (vector const & names) +AudioMappingView::paint_column_lines (wxGraphicsContext* gc) { - for (int i = 0; i < _grid->GetNumberRows(); ++i) { - _grid->SetCellValue (i, 0, std_to_wx (names[i])); + wxGraphicsPath lines = gc->CreatePath (); + for (size_t i = 0; i < _output_channels.size(); ++i) { + lines.MoveToPoint (LEFT_WIDTH + GRID_SPACING * i, GRID_SPACING); + lines.AddLineToPoint (LEFT_WIDTH + GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING); } + lines.MoveToPoint (LEFT_WIDTH + GRID_SPACING * _output_channels.size(), GRID_SPACING); + lines.AddLineToPoint (LEFT_WIDTH + GRID_SPACING * _output_channels.size(), TOP_HEIGHT + _input_channels.size() * GRID_SPACING); + gc->StrokePath (lines); } void -AudioMappingView::set_output_channels (vector const & names) +AudioMappingView::paint_row_labels (wxDC& dc, wxGraphicsContext* gc) { - int const o = names.size() + 1; - if (o < _grid->GetNumberCols ()) { - _grid->DeleteCols (o, _grid->GetNumberCols() - o); - } else if (o > _grid->GetNumberCols ()) { - _grid->AppendCols (o - _grid->GetNumberCols()); - } + wxCoord label_width; + wxCoord label_height; + wxGraphicsPath lines = gc->CreatePath (); - _grid->SetColLabelValue (0, wxT ("")); + /* Row channel labels */ - for (size_t i = 0; i < names.size(); ++i) { - _grid->SetColLabelValue (i + 1, std_to_wx (names[i])); + int N = 0; + BOOST_FOREACH (string i, _input_channels) { + dc.GetTextExtent (std_to_wx(i), &label_width, &label_height); + dc.DrawText (std_to_wx(i), GRID_SPACING * 2 + (GRID_SPACING - label_width) / 2, TOP_HEIGHT + GRID_SPACING * N + (GRID_SPACING - label_height) / 2); + ++N; } - update_cells (); - setup_sizes (); - - Layout (); -} - -void -AudioMappingView::update_cells () -{ - vector row_names; - for (int i = 0; i < _grid->GetNumberRows (); ++i) { - row_names.push_back (wx_to_std (_grid->GetCellValue (i, 0))); - } + /* Vertical lines on the left */ - if (_grid->GetNumberRows ()) { - _grid->DeleteRows (0, _grid->GetNumberRows ()); + for (int i = 1; i < 3; ++i) { + lines.MoveToPoint (GRID_SPACING * i, TOP_HEIGHT); + lines.AddLineToPoint (GRID_SPACING * i, TOP_HEIGHT + _input_channels.size() * GRID_SPACING); } - _grid->InsertRows (0, _map.input_channels ()); + /* Group labels and lines */ - for (int i = 0; i < _map.input_channels(); ++i) { - for (int j = 0; j < _map.output_channels(); ++j) { - _grid->SetCellRenderer (i, j + 1, new ValueRenderer); + int y = TOP_HEIGHT; + BOOST_FOREACH (Group i, _input_groups) { + int const height = (i.to - i.from + 1) * GRID_SPACING; + dc.GetTextExtent (std_to_wx(i.name), &label_width, &label_height); + if (label_width > height) { + label_width = height - 8; } - } - for (int i = 0; i < _map.input_channels(); ++i) { - if (i < int (row_names.size ())) { - _grid->SetCellValue (i, 0, std_to_wx (row_names[i])); - } - for (int j = 1; j < _grid->GetNumberCols(); ++j) { - _grid->SetCellValue (i, j, std_to_wx (locale_convert (_map.get (i, j - 1)))); + { + int yp = y; + if ((yp - 2 * GRID_SPACING) < dc.GetLogicalOrigin().y) { + yp += dc.GetLogicalOrigin().y; + } + + wxCoord old_x, old_y, old_width, old_height; + dc.GetClippingBox (&old_x, &old_y, &old_width, &old_height); + dc.DestroyClippingRegion (); + dc.SetClippingRegion (GRID_SPACING, yp + 4, GRID_SPACING, height - 8); + + dc.DrawRotatedText ( + std_to_wx(i.name), + GRID_SPACING + (GRID_SPACING - label_height) / 2, + y + (height + label_width) / 2, + 90 + ); + + dc.DestroyClippingRegion (); + dc.SetClippingRegion (old_x, old_y, old_width, old_height); } + + lines.MoveToPoint (GRID_SPACING, y); + lines.AddLineToPoint (GRID_SPACING * 2, y); + y += height; } - _grid->AutoSize (); + lines.MoveToPoint (GRID_SPACING, y); + lines.AddLineToPoint (GRID_SPACING * 2, y); + + gc->StrokePath (lines); } void -AudioMappingView::mouse_moved_grid (wxMouseEvent& ev) +AudioMappingView::paint_row_lines (wxGraphicsContext* gc) { - int xx; - int yy; - _grid->CalcUnscrolledPosition (ev.GetX(), ev.GetY(), &xx, &yy); - - int const row = _grid->YToRow (yy); - int const column = _grid->XToCol (xx); - - if (row < 0 || column < 1) { - _grid->GetGridWindow()->SetToolTip (""); - _last_tooltip_row = row; - _last_tooltip_column = column; + wxGraphicsPath lines = gc->CreatePath (); + for (size_t i = 0; i < _input_channels.size(); ++i) { + lines.MoveToPoint (GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * i); + lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * i); } + lines.MoveToPoint (GRID_SPACING * 2, TOP_HEIGHT + GRID_SPACING * _input_channels.size()); + lines.AddLineToPoint (LEFT_WIDTH + _output_channels.size() * GRID_SPACING, TOP_HEIGHT + GRID_SPACING * _input_channels.size()); + gc->StrokePath (lines); +} - if (row != _last_tooltip_row || column != _last_tooltip_column) { - - wxString s; - float const gain = _map.get (row, column - 1); - if (gain == 0) { - s = wxString::Format (_("No audio will be passed from content channel %d to DCP channel %d."), row + 1, column); - } else if (gain == 1) { - s = wxString::Format (_("Audio will be passed from content channel %d to DCP channel %d unaltered."), row + 1, column); - } else { - float const dB = 20 * log10 (gain); - s = wxString::Format (_("Audio will be passed from content channel %d to DCP channel %d with gain %.1fdB."), row + 1, column, dB); +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())); + + for (size_t x = 0; x < output; ++x) { + for (size_t y = 0; y < input; ++y) { + dc.SetBrush (*wxWHITE_BRUSH); + dc.DrawRectangle ( + wxRect( + LEFT_WIDTH + x * GRID_SPACING + (GRID_SPACING - INDICATOR_SIZE) / 2, + TOP_HEIGHT + y * GRID_SPACING + (GRID_SPACING - INDICATOR_SIZE) / 2, + INDICATOR_SIZE, INDICATOR_SIZE + ) + ); + + float const value_dB = 20 * log10 (_map.get(y, x)); + int const range = 18; + int height = 0; + if (value_dB > -range) { + height = INDICATOR_SIZE * (1 + value_dB / range); + } + + dc.SetBrush (*wxTheBrushList->FindOrCreateBrush(wxColour (0, 255, 0), wxBRUSHSTYLE_SOLID)); + dc.DrawRectangle ( + wxRect( + LEFT_WIDTH + x * GRID_SPACING + (GRID_SPACING - INDICATOR_SIZE) / 2, + TOP_HEIGHT + y * GRID_SPACING + (GRID_SPACING - INDICATOR_SIZE) / 2 + INDICATOR_SIZE - height, + INDICATOR_SIZE, height + ) + ); } - - _grid->GetGridWindow()->SetToolTip (s + " " + _("Right click to change gain.")); - _last_tooltip_row = row; - _last_tooltip_column = column; } +} - ev.Skip (); +static +void clip (wxDC& dc, wxGraphicsContext* gc, int x, int y, int w, int h) +{ + dc.SetClippingRegion (x, y, w, h); + gc->Clip (x, y, w, h); } -void -AudioMappingView::sized (wxSizeEvent& ev) +static +void translate (wxDC& dc, wxGraphicsContext* gc, int x, int y) { - setup_sizes (); - ev.Skip (); + gc->PushState (); + gc->Translate (-x, -y); + dc.SetLogicalOrigin (x, y); } -void -AudioMappingView::setup_sizes () +static +void restore (wxDC& dc, wxGraphicsContext* gc) { - int const top_height = 24; - - _grid->AutoSize (); - _left_labels->SetMinSize (wxSize (LEFT_WIDTH, _grid->GetSize().GetHeight())); - /* Allow it to scroll */ - _left_labels->SetVirtualSize (1024, 1024); - _top_labels->SetMinSize (wxSize (_grid->GetSize().GetWidth() + LEFT_WIDTH, top_height)); - /* Allow it to scroll */ - _top_labels->SetVirtualSize (1024, 1024); - /* Try to make the _top_labels 'actual' size respect the minimum we just set */ - _top_labels->Fit (); - _left_labels->Refresh (); - _top_labels->Refresh (); - - int x, y; - _grid->GetScrollPixelsPerUnit (&x, &y); - _top_labels->SetScrollRate (x, 0); - _left_labels->SetScrollRate (0, y); + dc.SetLogicalOrigin (0, 0); + gc->PopState (); + dc.DestroyClippingRegion (); + gc->ResetClip (); } void -AudioMappingView::paint_left_labels () +AudioMappingView::paint () { - wxPaintDC dc (_left_labels); + wxPaintDC dc (_body); wxGraphicsContext* gc = wxGraphicsContext::Create (dc); if (!gc) { return; } - int sx, sy; - _left_labels->GetViewStart (&sx, &sy); - int rx, ry; - _grid->GetScrollPixelsPerUnit (&rx, &ry); - gc->Translate (0, -sy * ry); + int const hs = _horizontal_scroll->GetThumbPosition (); + int const vs = _vertical_scroll->GetThumbPosition (); - wxSize const size = dc.GetSize(); - int const half = size.GetWidth() / 2; + paint_static (dc, gc); - gc->SetPen (wxPen (wxColour (0, 0, 0))); - gc->SetAntialiasMode (wxANTIALIAS_DEFAULT); + clip (dc, gc, LEFT_WIDTH, 0, GRID_SPACING * _output_channels.size(), GRID_SPACING * (2 + _input_channels.size())); + translate (dc, gc, hs, 0); + paint_column_labels (dc, gc); + restore (dc, gc); - wxGraphicsPath lines = gc->CreatePath(); + clip (dc, gc, 0, TOP_HEIGHT, GRID_SPACING * (3 + _output_channels.size()), GRID_SPACING * _input_channels.size() + 1); + translate (dc, gc, 0, vs); + paint_row_labels (dc, gc); + restore (dc, gc); - vector >::const_iterator i = _input_group_positions.begin(); - if (i != _input_group_positions.end()) { - lines.MoveToPoint (half, i->first); - lines.AddLineToPoint (size.GetWidth(), i->first); - } + clip (dc, gc, GRID_SPACING * 2, TOP_HEIGHT, GRID_SPACING * (1 + _output_channels.size()), GRID_SPACING * _input_channels.size() + 1); + translate (dc, gc, hs, vs); + paint_row_lines (gc); + restore (dc, gc); - vector::const_iterator j = _input_groups.begin(); - while (i != _input_group_positions.end() && j != _input_groups.end()) { + clip (dc, gc, LEFT_WIDTH, GRID_SPACING, GRID_SPACING * (1 + _output_channels.size()), GRID_SPACING * (1 + _input_channels.size())); + translate (dc, gc, hs, vs); + paint_column_lines (gc); + restore (dc, gc); - dc.SetClippingRegion (0, i->first + 2, size.GetWidth(), i->second - 4); + clip (dc, gc, LEFT_WIDTH, TOP_HEIGHT, GRID_SPACING * _output_channels.size(), GRID_SPACING * _input_channels.size()); + translate (dc, gc, hs, vs); + paint_indicators (dc); + restore (dc, gc); - dc.SetFont (*wxSWISS_FONT); - wxCoord label_width; - wxCoord label_height; - dc.GetTextExtent (std_to_wx (j->name), &label_width, &label_height); + delete gc; +} - dc.DrawRotatedText ( - j->name, - half + (half - label_height) / 2, - min (i->second, (i->second + i->first + label_width) / 2), - 90 - ); +optional > +AudioMappingView::mouse_event_to_channels (wxMouseEvent& ev) const +{ + int const x = ev.GetX() + _horizontal_scroll->GetThumbPosition(); + int const y = ev.GetY() + _vertical_scroll->GetThumbPosition(); - dc.DestroyClippingRegion (); + if (x <= LEFT_WIDTH || y < TOP_HEIGHT) { + return optional >(); + } - lines.MoveToPoint (half, i->second); - lines.AddLineToPoint (size.GetWidth(), i->second); + int const input = (y - TOP_HEIGHT) / GRID_SPACING; + int const output = (x - LEFT_WIDTH) / GRID_SPACING; - gc->StrokePath (lines); + if (input >= int(_input_channels.size()) || output >= int(_output_channels.size())) { + return optional >(); + } - ++i; - ++j; + return make_pair (input, output); +} + +optional +AudioMappingView::mouse_event_to_input_group_name (wxMouseEvent& ev) const +{ + int const x = ev.GetX() + _horizontal_scroll->GetThumbPosition(); + if (x < GRID_SPACING || x > (2 * GRID_SPACING)) { + return optional(); } - /* Overall label */ - dc.SetFont (wxSWISS_FONT->Bold()); - wxCoord overall_label_width; - wxCoord overall_label_height; - dc.GetTextExtent (_("Content"), &overall_label_width, &overall_label_height); - dc.DrawRotatedText ( - _("Content"), - (half - overall_label_height) / 2, - min (size.GetHeight(), (size.GetHeight() + _grid->GetColLabelSize() + overall_label_width) / 2), - 90 - ); + int y = (ev.GetY() + _vertical_scroll->GetThumbPosition() - (GRID_SPACING * 2)) / GRID_SPACING; + BOOST_FOREACH (Group i, _input_groups) { + if (i.from <= y && y <= i.to) { + return i.name; + } + } - delete gc; + return optional(); } void -AudioMappingView::paint_top_labels () +AudioMappingView::left_down (wxMouseEvent& ev) { - wxPaintDC dc (_top_labels); - if (_grid->GetNumberCols() == 0) { + optional > channels = mouse_event_to_channels (ev); + if (!channels) { return; } - wxGraphicsContext* gc = wxGraphicsContext::Create (dc); - if (!gc) { + if (_map.get(channels->first, channels->second) > 0) { + _map.set (channels->first, channels->second, 0); + } else { + _map.set (channels->first, channels->second, 1); + } + + map_values_changed (); +} + +void +AudioMappingView::right_down (wxMouseEvent& ev) +{ + optional > channels = mouse_event_to_channels (ev); + if (!channels) { return; } - int sx, sy; - _top_labels->GetViewStart (&sx, &sy); - int rx, ry; - _grid->GetScrollPixelsPerUnit (&rx, &ry); - int toff = sx * rx; - gc->Translate (-toff, 0); + _menu_input = channels->first; + _menu_output = channels->second; + PopupMenu (_menu, ev.GetPosition()); +} - wxSize const size = dc.GetSize(); +void +AudioMappingView::mouse_wheel (wxMouseEvent& ev) +{ + if (ev.ShiftDown()) { + _horizontal_scroll->SetThumbPosition ( + _horizontal_scroll->GetThumbPosition() + (ev.GetWheelRotation() > 0 ? -GRID_SPACING : GRID_SPACING) + ); - gc->SetAntialiasMode (wxANTIALIAS_DEFAULT); + } else { + _vertical_scroll->SetThumbPosition ( + _vertical_scroll->GetThumbPosition() + (ev.GetWheelRotation() > 0 ? -GRID_SPACING : GRID_SPACING) + ); + } + Refresh (); +} - dc.SetFont (wxSWISS_FONT->Bold()); - wxCoord label_width; - wxCoord label_height; - dc.GetTextExtent (_("DCP"), &label_width, &label_height); +/** Called when any gain value has changed */ +void +AudioMappingView::map_values_changed () +{ + Changed (_map); + _last_tooltip_channels = optional >(); + Refresh (); +} - dc.DrawText (_("DCP"), (size.GetWidth() + _grid->GetColSize(0) + LEFT_WIDTH - label_width) / 2 - toff, (size.GetHeight() - label_height) / 2); +void +AudioMappingView::off () +{ + _map.set (_menu_input, _menu_output, 0); + map_values_changed (); +} - gc->SetPen (wxPen (wxColour (0, 0, 0))); - wxGraphicsPath lines = gc->CreatePath(); +void +AudioMappingView::full () +{ + _map.set (_menu_input, _menu_output, 1); + map_values_changed (); +} - int lhs = LEFT_WIDTH + _grid->GetColSize(0) - 1; - if (toff < (lhs - LEFT_WIDTH)) { - lines.MoveToPoint (lhs, 0); - lines.AddLineToPoint (lhs, size.GetHeight()); - } +void +AudioMappingView::minus6dB () +{ + _map.set (_menu_input, _menu_output, pow (10, -6.0 / 20)); + map_values_changed (); +} - wxGridSizesInfo si = _grid->GetColSizes(); - int total = 0; - for (int i = 0; i < _grid->GetNumberCols(); ++i) { - total += si.GetSize (i); +void +AudioMappingView::edit () +{ + AudioGainDialog* dialog = new AudioGainDialog (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 (); } - lines.MoveToPoint (LEFT_WIDTH + total, 0); - lines.AddLineToPoint (LEFT_WIDTH + total, size.GetHeight()); - gc->StrokePath (lines); + dialog->Destroy (); +} - delete gc; +void +AudioMappingView::set (AudioMapping map) +{ + _map = map; + Refresh (); } void -AudioMappingView::set_input_groups (vector const & groups) +AudioMappingView::set_input_channels (vector const & names) { - if (_grid->GetNumberRows() == 0) { - return; + _input_channels = names; + setup (); + Refresh (); +} + +void +AudioMappingView::set_output_channels (vector const & names) +{ + _output_channels = names; + setup (); + Refresh (); +} + +wxString +AudioMappingView::safe_input_channel_name (int n) const +{ + if (n >= int(_input_channels.size())) { + return wxString::Format ("%d", n + 1); } - _input_groups = groups; - _input_group_positions.clear (); + optional group; + BOOST_FOREACH (Group i, _input_groups) { + if (i.from <= n && n <= i.to) { + group = std_to_wx (i.name); + } + } - int ypos = _grid->GetColLabelSize() - 1; - BOOST_FOREACH (Group const & i, _input_groups) { - int const old_ypos = ypos; - ypos += (i.to - i.from + 1) * _grid->GetRowSize(0); - _input_group_positions.push_back (make_pair (old_ypos, ypos)); + if (group && !group->IsEmpty()) { + return wxString::Format ("%s/%s", group->data(), std_to_wx(_input_channels[n]).data()); } + + return std_to_wx(_input_channels[n]); } -void -AudioMappingView::mouse_moved_left_labels (wxMouseEvent& event) +wxString +AudioMappingView::safe_output_channel_name (int n) const { - bool done = false; - for (size_t i = 0; i < _input_group_positions.size(); ++i) { - if (_input_group_positions[i].first <= event.GetY() && event.GetY() < _input_group_positions[i].second) { - _left_labels->SetToolTip (_input_groups[i].name); - done = true; - } + if (n >= int(_output_channels.size())) { + return wxString::Format ("%d", n + 1); } - if (!done) { - _left_labels->SetToolTip (""); - } + return std_to_wx(_output_channels[n]); } void -AudioMappingView::grid_scrolled (wxScrollWinEvent& ev) +AudioMappingView::motion (wxMouseEvent& ev) { - int x, y; - _grid->GetViewStart (&x, &y); - if (ev.GetOrientation() == wxVERTICAL) { - _left_labels->Scroll (0, ev.GetPosition()); + optional > channels = mouse_event_to_channels (ev); + if (channels) { + if (channels != _last_tooltip_channels) { + wxString s; + float const gain = _map.get(channels->first, channels->second); + if (gain == 0) { + s = wxString::Format ( + _("No audio will be passed from %s channel '%s' to %s channel '%s'."), + _from, + safe_input_channel_name(channels->first), + _to, + safe_output_channel_name(channels->second) + ); + } else if (gain == 1) { + s = wxString::Format ( + _("Audio will be passed from %s channel %s to %s channel %s unaltered."), + _from, + safe_input_channel_name(channels->first), + _to, + safe_output_channel_name(channels->second) + ); + } else { + float const dB = 20 * log10 (gain); + s = wxString::Format ( + _("Audio will be passed from %s channel %s to %s channel %s with gain %.1fdB."), + _from, + safe_input_channel_name(channels->first), + _to, + safe_output_channel_name(channels->second), + dB + ); + } + + SetToolTip (s + " " + _("Right click to change gain.")); + } } else { - _top_labels->Scroll (ev.GetPosition(), 0); - /* Repaint the whole thing so that the left-hand line disappears where appropriate */ - _top_labels->Refresh (); + optional group = mouse_event_to_input_group_name (ev); + if (group) { + SetToolTip (std_to_wx(*group)); + } else { + SetToolTip (""); + } } - ev.Skip (); + + _last_tooltip_channels = channels; + ev.Skip (); +} + +void +AudioMappingView::set_input_groups (vector const & groups) +{ + _input_groups = groups; }