summaryrefslogtreecommitdiff
path: root/gtk2_ardour/port_matrix_grid.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-01-27 18:56:06 +0000
committerCarl Hetherington <carl@carlh.net>2009-01-27 18:56:06 +0000
commit2a341d99593851ce147b9aa63677d54575b56339 (patch)
tree6f8d904a05fb6b558b2d6e2066d104f46ddde4bb /gtk2_ardour/port_matrix_grid.cc
parent948034f15aa8716fc87cc0efefe6152d27de5552 (diff)
Draw mouseover lines only between the target and the labels.
git-svn-id: svn://localhost/ardour2/branches/3.0@4449 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/port_matrix_grid.cc')
-rw-r--r--gtk2_ardour/port_matrix_grid.cc32
1 files changed, 20 insertions, 12 deletions
diff --git a/gtk2_ardour/port_matrix_grid.cc b/gtk2_ardour/port_matrix_grid.cc
index 2343cb4c08..eae8823af8 100644
--- a/gtk2_ardour/port_matrix_grid.cc
+++ b/gtk2_ardour/port_matrix_grid.cc
@@ -252,25 +252,33 @@ PortMatrixGrid::draw_extra (cairo_t* cr)
set_source_rgba (cr, mouseover_line_colour(), 0.3);
cairo_set_line_width (cr, mouseover_line_width());
+ double const x = component_to_parent_x (
+ channel_position (_body->mouseover().column, _body->column_ports().bundles(), column_width()) + column_width() / 2
+ );
+
+ double const y = component_to_parent_y (
+ channel_position (_body->mouseover().row, _body->row_ports().bundles(), row_height()) + row_height() / 2
+ );
+
if (_body->mouseover().row.bundle) {
- double const y = component_to_parent_y (
- channel_position (_body->mouseover().row, _body->row_ports().bundles(), row_height()) + row_height() / 2
- );
-
- cairo_move_to (cr, _parent_rectangle.get_x(), y);
- cairo_line_to (cr, _parent_rectangle.get_x() + _parent_rectangle.get_width(), y);
+ cairo_move_to (cr, x, y);
+ if (_body->arrangement() == PortMatrixBody::BOTTOM_AND_LEFT) {
+ cairo_line_to (cr, component_to_parent_x (0), y);
+ } else if (_body->arrangement() == PortMatrixBody::TOP_AND_RIGHT) {
+ cairo_line_to (cr, _parent_rectangle.get_x() + _parent_rectangle.get_width(), y);
+ }
cairo_stroke (cr);
}
if (_body->mouseover().column.bundle) {
- double const x = component_to_parent_x (
- channel_position (_body->mouseover().column, _body->column_ports().bundles(), column_width()) + column_width() / 2
- );
-
- cairo_move_to (cr, x, _parent_rectangle.get_y());
- cairo_line_to (cr, x, _parent_rectangle.get_y() + _parent_rectangle.get_height());
+ cairo_move_to (cr, x, y);
+ if (_body->arrangement() == PortMatrixBody::BOTTOM_AND_LEFT) {
+ cairo_line_to (cr, x, _parent_rectangle.get_y() + _parent_rectangle.get_height());
+ } else if (_body->arrangement() == PortMatrixBody::TOP_AND_RIGHT) {
+ cairo_line_to (cr, x, component_to_parent_y (0));
+ }
cairo_stroke (cr);
}
}