summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-07 11:10:41 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-07 11:10:41 +0100
commit261fcd1a1fcf8d7a78b286c367aa30db5ddf859a (patch)
tree4eccbc23203c31779c368f26a7b36bae47b7adbf
parentbe00f12bdb5d74677ae55c7919fae9339e882090 (diff)
Add tooltips over content channel names in the audio mapping view (#888).
-rw-r--r--ChangeLog3
-rw-r--r--src/wx/audio_mapping_view.cc84
-rw-r--r--src/wx/audio_mapping_view.h4
3 files changed, 62 insertions, 29 deletions
diff --git a/ChangeLog b/ChangeLog
index 570f26606..2dcd34a0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2016-06-07 c.hetherington <cth@carlh.net>
+ * Add tooltips over content channel names in the
+ audio mapping view (#888).
+
* Re-add option to save DKDMs to a file.
2016-06-06 Carl Hetherington <cth@carlh.net>
diff --git a/src/wx/audio_mapping_view.cc b/src/wx/audio_mapping_view.cc
index 1771c1230..13559ff53 100644
--- a/src/wx/audio_mapping_view.cc
+++ b/src/wx/audio_mapping_view.cc
@@ -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.
@@ -42,6 +42,8 @@ using std::string;
using std::min;
using std::max;
using std::vector;
+using std::pair;
+using std::make_pair;
using boost::shared_ptr;
#define INDICATOR_SIZE 16
@@ -147,7 +149,7 @@ 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));
Bind (wxEVT_SIZE, boost::bind (&AudioMappingView::sized, this, _1));
_menu = new wxMenu;
@@ -160,6 +162,8 @@ AudioMappingView::AudioMappingView (wxWindow* parent)
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);
+
+ _left_labels->Bind (wxEVT_MOTION, bind (&AudioMappingView::mouse_moved_left_labels, this, _1));
}
/** Called when any gain value has changed */
@@ -303,7 +307,7 @@ AudioMappingView::update_cells ()
}
void
-AudioMappingView::mouse_moved (wxMouseEvent& ev)
+AudioMappingView::mouse_moved_grid (wxMouseEvent& ev)
{
int xx;
int yy;
@@ -368,40 +372,40 @@ AudioMappingView::paint_left_labels ()
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),
+ 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 */
@@ -458,4 +462,28 @@ void
AudioMappingView::set_input_groups (vector<Group> const & groups)
{
_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 ("");
+ }
}
diff --git a/src/wx/audio_mapping_view.h b/src/wx/audio_mapping_view.h
index 2c4432535..0201368c2 100644
--- a/src/wx/audio_mapping_view.h
+++ b/src/wx/audio_mapping_view.h
@@ -75,12 +75,13 @@ public:
private:
void left_click (wxGridEvent &);
void right_click (wxGridEvent &);
- void mouse_moved (wxMouseEvent &);
+ void mouse_moved_grid (wxMouseEvent &);
void update_cells ();
void map_values_changed ();
void sized (wxSizeEvent &);
void paint_left_labels ();
void paint_top_labels ();
+ void mouse_moved_left_labels (wxMouseEvent &);
void off ();
void full ();
@@ -97,6 +98,7 @@ private:
int _menu_column;
std::vector<Group> _input_groups;
+ std::vector<std::pair<int, int> > _input_group_positions;
int _last_tooltip_row;
int _last_tooltip_column;