No-op; rename a whole load of wx constants to their shorter equivalents.
[dcpomatic.git] / src / wx / audio_mapping_view.cc
index d984defee646cf7e00243918e4aa55067575e0da..af892bb1178a2a54de9e47364fc7d6710424bb9f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
  *  @brief AudioMappingView class and helpers.
  */
 
-#include "lib/audio_mapping.h"
-#include "lib/util.h"
-#include "lib/raw_convert.h"
 #include "audio_mapping_view.h"
 #include "wx_util.h"
 #include "audio_gain_dialog.h"
+#include "lib/audio_mapping.h"
+#include "lib/util.h"
+#include <dcp/locale_convert.h>
 #include <dcp/types.h>
 #include <wx/wx.h>
 #include <wx/renderer.h>
@@ -42,7 +42,10 @@ using std::string;
 using std::min;
 using std::max;
 using std::vector;
+using std::pair;
+using std::make_pair;
 using boost::shared_ptr;
+using dcp::locale_convert;
 
 #define INDICATOR_SIZE 16
 #define LEFT_WIDTH 48
@@ -83,7 +86,7 @@ public:
                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 = raw_convert<float> (wx_to_std (grid.GetCellValue (row, col)));
+               float const value = locale_convert<float> (wx_to_std (grid.GetCellValue (row, col)));
                float const value_dB = 20 * log10 (value);
                int const range = 18;
                int height = 0;
@@ -147,7 +150,15 @@ AudioMappingView::AudioMappingView (wxWindow* parent)
 
        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, 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));
+       _grid->Bind (wxEVT_SCROLLWIN_BOTTOM, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_LINEUP, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_LINEDOWN, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_PAGEUP, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_PAGEDOWN, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_THUMBTRACK, boost::bind (&AudioMappingView::grid_scrolled, this));
+       _grid->Bind (wxEVT_SCROLLWIN_THUMBRELEASE, boost::bind (&AudioMappingView::grid_scrolled, this));
        Bind (wxEVT_SIZE, boost::bind (&AudioMappingView::sized, this, _1));
 
        _menu = new wxMenu;
@@ -156,10 +167,12 @@ AudioMappingView::AudioMappingView (wxWindow* parent)
        _menu->Append (ID_minus6dB, _("-6dB"));
        _menu->Append (ID_edit, _("Edit..."));
 
-       Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&AudioMappingView::off, this), ID_off);
-       Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&AudioMappingView::full, this), ID_full);
-       Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&AudioMappingView::minus6dB, this), ID_minus6dB);
-       Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&AudioMappingView::edit, this), ID_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));
 }
 
 /** Called when any gain value has changed */
@@ -268,6 +281,7 @@ AudioMappingView::set_output_channels (vector<string> const & names)
        }
 
        update_cells ();
+       setup_sizes ();
 }
 
 void
@@ -295,7 +309,7 @@ AudioMappingView::update_cells ()
                        _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 (raw_convert<string> (_map.get (i, j - 1))));
+                       _grid->SetCellValue (i, j, std_to_wx (locale_convert<string> (_map.get (i, j - 1))));
                }
        }
 
@@ -303,7 +317,7 @@ AudioMappingView::update_cells ()
 }
 
 void
-AudioMappingView::mouse_moved (wxMouseEvent& ev)
+AudioMappingView::mouse_moved_grid (wxMouseEvent& ev)
 {
        int xx;
        int yy;
@@ -341,13 +355,23 @@ AudioMappingView::mouse_moved (wxMouseEvent& ev)
 
 void
 AudioMappingView::sized (wxSizeEvent& ev)
+{
+       setup_sizes ();
+       ev.Skip ();
+}
+
+void
+AudioMappingView::setup_sizes ()
 {
        int const top_height = 24;
 
        _grid->AutoSize ();
        _left_labels->SetMinSize (wxSize (LEFT_WIDTH, _grid->GetSize().GetHeight()));
        _top_labels->SetMinSize (wxSize (_grid->GetSize().GetWidth() + LEFT_WIDTH, top_height));
-       ev.Skip ();
+       /* Try to make the _top_labels 'actual' size respect the minimum we just set */
+       _top_labels->Fit ();
+       _left_labels->Refresh ();
+       _top_labels->Refresh ();
 }
 
 void
@@ -360,46 +384,50 @@ AudioMappingView::paint_left_labels ()
                return;
        }
 
+       int sx, sy;
+       _grid->CalcUnscrolledPosition (0, 0, &sx, &sy);
+       gc->Translate (0, -sy);
+
        wxSize const size = dc.GetSize();
        int const half = size.GetWidth() / 2;
 
        gc->SetPen (wxPen (wxColour (0, 0, 0)));
        gc->SetAntialiasMode (wxANTIALIAS_DEFAULT);
 
-       if (_grid->GetNumberRows() > 0) {
+       wxGraphicsPath lines = gc->CreatePath();
 
-               /* Draw a line at the top of the first group */
-               int ypos = _grid->GetColLabelSize() - 1;
-               wxGraphicsPath lines = gc->CreatePath();
-               lines.MoveToPoint (half, ypos);
-               lines.AddLineToPoint (size.GetWidth(), ypos);
+       vector<pair<int, int> >::const_iterator i = _input_group_positions.begin();
+       if (i != _input_group_positions.end()) {
+               lines.MoveToPoint (half, i->first);
+               lines.AddLineToPoint (size.GetWidth(), i->first);
+       }
 
-               /* And the names of the groups and a line under each */
-               BOOST_FOREACH (Group const & i, _input_groups) {
-                       int const old_ypos = ypos;
-                       ypos += (i.to - i.from + 1) * _grid->GetRowSize(0);
+       vector<Group>::const_iterator j = _input_groups.begin();
+       while (i != _input_group_positions.end() && j != _input_groups.end()) {
 
-                       dc.SetClippingRegion (0, old_ypos + 2, size.GetWidth(), ypos - 4);
+               dc.SetClippingRegion (0, i->first + 2, size.GetWidth(), i->second - 4);
 
-                       dc.SetFont (*wxSWISS_FONT);
-                       wxCoord label_width;
-                       wxCoord label_height;
-                       dc.GetTextExtent (std_to_wx (i.name), &label_width, &label_height);
+               dc.SetFont (*wxSWISS_FONT);
+               wxCoord label_width;
+               wxCoord label_height;
+               dc.GetTextExtent (std_to_wx (j->name), &label_width, &label_height);
 
-                       dc.DrawRotatedText (
-                               i.name,
-                               half + (half - label_height) / 2,
-                               min (ypos, (ypos + old_ypos + label_width) / 2),
-                               90
-                               );
+               dc.DrawRotatedText (
+                       j->name,
+                       half + (half - label_height) / 2,
+                       min (i->second, (i->second + i->first + label_width) / 2) - sy,
+                       90
+                       );
 
-                       dc.DestroyClippingRegion ();
+               dc.DestroyClippingRegion ();
 
-                       lines.MoveToPoint (half, ypos);
-                       lines.AddLineToPoint (size.GetWidth(), ypos);
-               }
+               lines.MoveToPoint (half, i->second);
+               lines.AddLineToPoint (size.GetWidth(), i->second);
 
                gc->StrokePath (lines);
+
+               ++i;
+               ++j;
        }
 
        /* Overall label */
@@ -410,7 +438,7 @@ AudioMappingView::paint_left_labels ()
        dc.DrawRotatedText (
                _("Content"),
                (half - overall_label_height) / 2,
-               min (size.GetHeight(), (size.GetHeight() + _grid->GetColLabelSize() + overall_label_width) / 2),
+               min (size.GetHeight(), (size.GetHeight() + _grid->GetColLabelSize() + overall_label_width) / 2 - sy),
                90
                );
 
@@ -430,6 +458,10 @@ AudioMappingView::paint_top_labels ()
                return;
        }
 
+       int sx, sy;
+       _grid->CalcUnscrolledPosition (0, 0, &sx, &sy);
+       gc->Translate (-sx, 0);
+
        wxSize const size = dc.GetSize();
 
        gc->SetAntialiasMode (wxANTIALIAS_DEFAULT);
@@ -439,7 +471,7 @@ AudioMappingView::paint_top_labels ()
        wxCoord label_height;
        dc.GetTextExtent (_("DCP"), &label_width, &label_height);
 
-       dc.DrawText (_("DCP"), (size.GetWidth() + _grid->GetColSize(0) + LEFT_WIDTH - label_width) / 2, (size.GetHeight() - label_height) / 2);
+       dc.DrawText (_("DCP"), (size.GetWidth() + _grid->GetColSize(0) + LEFT_WIDTH - label_width) / 2 - sx, (size.GetHeight() - label_height) / 2);
 
        gc->SetPen (wxPen (wxColour (0, 0, 0)));
        wxGraphicsPath lines = gc->CreatePath();
@@ -455,5 +487,42 @@ AudioMappingView::paint_top_labels ()
 void
 AudioMappingView::set_input_groups (vector<Group> const & groups)
 {
+       if (_grid->GetNumberRows() == 0) {
+               return;
+       }
+
        _input_groups = groups;
+       _input_group_positions.clear ();
+
+       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));
+       }
+}
+
+void
+AudioMappingView::mouse_moved_left_labels (wxMouseEvent& event)
+{
+       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 (!done) {
+               _left_labels->SetToolTip ("");
+       }
+}
+
+void
+AudioMappingView::grid_scrolled ()
+{
+       _left_labels->Refresh ();
+       _left_labels->Update ();
+       _top_labels->Refresh ();
+       _top_labels->Update ();
 }