2009-01-20 09:46:00 -05:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2002-2009 Paul Davis
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
This program 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,
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <boost/weak_ptr.hpp>
|
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include "ardour/bundle.h"
|
|
|
|
#include "port_matrix_row_labels.h"
|
|
|
|
#include "port_matrix.h"
|
2009-02-04 12:05:26 -05:00
|
|
|
#include "port_matrix_body.h"
|
2009-01-20 09:46:00 -05:00
|
|
|
#include "i18n.h"
|
2009-06-20 09:41:55 -04:00
|
|
|
#include "utils.h"
|
2009-01-20 09:46:00 -05:00
|
|
|
|
2009-07-17 18:54:45 -04:00
|
|
|
using namespace std;
|
|
|
|
|
2009-01-30 10:08:09 -05:00
|
|
|
PortMatrixRowLabels::PortMatrixRowLabels (PortMatrix* m, PortMatrixBody* b)
|
2009-02-02 20:55:25 -05:00
|
|
|
: PortMatrixLabels (m, b)
|
2009-01-20 09:46:00 -05:00
|
|
|
{
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PortMatrixRowLabels::compute_dimensions ()
|
|
|
|
{
|
|
|
|
GdkPixmap* pm = gdk_pixmap_new (NULL, 1, 1, 24);
|
|
|
|
gdk_drawable_set_colormap (pm, gdk_colormap_get_system());
|
|
|
|
cairo_t* cr = gdk_cairo_create (pm);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
_longest_port_name = 0;
|
2009-01-25 01:47:11 -05:00
|
|
|
_longest_bundle_name = 0;
|
2009-11-18 08:35:31 -05:00
|
|
|
|
|
|
|
/* Compute maximum dimensions using all port groups, so that we allow for the largest and hence
|
|
|
|
we can change between visible groups without the size of the labels jumping around.
|
|
|
|
*/
|
2009-07-19 15:07:31 -04:00
|
|
|
|
|
|
|
for (PortGroupList::List::const_iterator i = _matrix->rows()->begin(); i != _matrix->rows()->end(); ++i) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-19 15:07:31 -04:00
|
|
|
PortGroup::BundleList const r = (*i)->bundles ();
|
|
|
|
for (PortGroup::BundleList::const_iterator j = r.begin(); j != r.end(); ++j) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-06-29 22:59:13 -04:00
|
|
|
for (uint32_t k = 0; k < (*j)->bundle->nchannels().n_total(); ++k) {
|
|
|
|
|
2010-06-30 21:14:14 -04:00
|
|
|
if (!_matrix->should_show ((*j)->bundle->channel_type(k))) {
|
2010-06-29 22:59:13 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-07-19 15:07:31 -04:00
|
|
|
cairo_text_extents_t ext;
|
2009-12-17 13:24:23 -05:00
|
|
|
cairo_text_extents (cr, (*j)->bundle->channel_name(k).c_str(), &ext);
|
2009-07-19 15:07:31 -04:00
|
|
|
if (ext.width > _longest_port_name) {
|
|
|
|
_longest_port_name = ext.width;
|
|
|
|
}
|
|
|
|
}
|
2009-07-17 18:54:45 -04:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
cairo_text_extents_t ext;
|
2009-12-17 13:24:23 -05:00
|
|
|
cairo_text_extents (cr, (*j)->bundle->name().c_str(), &ext);
|
2009-07-19 15:07:31 -04:00
|
|
|
if (ext.width > _longest_bundle_name) {
|
|
|
|
_longest_bundle_name = ext.width;
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-06 19:41:50 -05:00
|
|
|
|
|
|
|
if (_matrix->visible_rows()) {
|
|
|
|
_height = group_size (_matrix->visible_rows()) * grid_spacing ();
|
|
|
|
} else {
|
|
|
|
_height = 0;
|
|
|
|
}
|
2009-11-18 08:35:31 -05:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
cairo_destroy (cr);
|
2010-05-28 11:20:39 -04:00
|
|
|
g_object_unref (pm);
|
2009-01-20 09:46:00 -05:00
|
|
|
|
2009-11-18 08:35:31 -05:00
|
|
|
_width = _longest_bundle_name +
|
|
|
|
name_pad() * 2;
|
2009-05-03 10:31:42 -04:00
|
|
|
|
|
|
|
if (!_matrix->show_only_bundles()) {
|
|
|
|
_width += _longest_port_name;
|
|
|
|
_width += name_pad() * 2;
|
|
|
|
}
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
PortMatrixRowLabels::render (cairo_t* cr)
|
|
|
|
{
|
|
|
|
/* BACKGROUND */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
set_source_rgb (cr, background_colour());
|
|
|
|
cairo_rectangle (cr, 0, 0, _width, _height);
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
2009-07-17 18:54:45 -04:00
|
|
|
/* BUNDLE AND PORT NAMES */
|
2009-01-20 09:46:00 -05:00
|
|
|
|
2009-11-14 06:50:01 -05:00
|
|
|
double y = 0;
|
2009-07-17 09:18:58 -04:00
|
|
|
int N = 0;
|
2009-07-17 18:54:45 -04:00
|
|
|
int M = 0;
|
2009-11-18 08:35:31 -05:00
|
|
|
|
|
|
|
PortGroup::BundleList const & bundles = _matrix->visible_rows()->bundles ();
|
|
|
|
for (PortGroup::BundleList::const_iterator i = bundles.begin(); i != bundles.end(); ++i) {
|
2009-12-17 13:24:23 -05:00
|
|
|
render_bundle_name (cr, background_colour (), (*i)->has_colour ? (*i)->colour : get_a_bundle_colour (N), 0, y, (*i)->bundle);
|
2009-11-18 08:35:31 -05:00
|
|
|
|
|
|
|
if (!_matrix->show_only_bundles()) {
|
2010-06-29 22:59:13 -04:00
|
|
|
for (uint32_t j = 0; j < (*i)->bundle->nchannels().n_total(); ++j) {
|
|
|
|
|
2010-06-30 21:14:14 -04:00
|
|
|
if (!_matrix->should_show ((*i)->bundle->channel_type(j))) {
|
2010-06-29 22:59:13 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
Gdk::Color c = (*i)->has_colour ? (*i)->colour : get_a_bundle_colour (M);
|
|
|
|
render_channel_name (cr, background_colour (), c, 0, y, ARDOUR::BundleChannel ((*i)->bundle, j));
|
2009-11-18 08:35:31 -05:00
|
|
|
y += grid_spacing();
|
|
|
|
++M;
|
2009-05-03 10:31:42 -04:00
|
|
|
}
|
2009-07-17 18:54:45 -04:00
|
|
|
} else {
|
2009-11-18 08:35:31 -05:00
|
|
|
y += grid_spacing();
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
2009-11-18 08:35:31 -05:00
|
|
|
|
|
|
|
++N;
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-16 19:30:42 -05:00
|
|
|
void
|
2009-11-18 10:16:28 -05:00
|
|
|
PortMatrixRowLabels::button_press (double x, double y, int b, uint32_t t, guint)
|
2009-11-16 19:30:42 -05:00
|
|
|
{
|
2009-12-14 11:44:20 -05:00
|
|
|
ARDOUR::BundleChannel w = position_to_channel (y, x, _matrix->visible_rows());
|
|
|
|
|
|
|
|
if (
|
|
|
|
(_matrix->arrangement() == PortMatrix::TOP_TO_RIGHT && x > (_longest_port_name + name_pad() * 2)) ||
|
|
|
|
(_matrix->arrangement() == PortMatrix::LEFT_TO_BOTTOM && x < (_longest_bundle_name + name_pad() * 2))
|
|
|
|
|
|
|
|
) {
|
|
|
|
w.channel = -1;
|
|
|
|
}
|
2009-07-17 18:54:45 -04:00
|
|
|
|
2009-11-16 19:30:42 -05:00
|
|
|
if (b == 3) {
|
2009-07-17 18:54:45 -04:00
|
|
|
|
2009-07-17 22:10:15 -04:00
|
|
|
_matrix->popup_menu (
|
2009-11-18 08:35:31 -05:00
|
|
|
ARDOUR::BundleChannel (),
|
2009-07-17 22:10:15 -04:00
|
|
|
w,
|
|
|
|
t
|
|
|
|
);
|
2009-01-20 09:46:00 -05:00
|
|
|
}
|
|
|
|
}
|
2009-01-26 23:21:13 -05:00
|
|
|
|
|
|
|
double
|
|
|
|
PortMatrixRowLabels::component_to_parent_x (double x) const
|
|
|
|
{
|
2009-11-14 06:50:01 -05:00
|
|
|
/* Row labels don't scroll horizontally, so x conversion does not depend on xoffset */
|
2009-01-26 23:21:13 -05:00
|
|
|
return x + _parent_rectangle.get_x();
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
PortMatrixRowLabels::parent_to_component_x (double x) const
|
|
|
|
{
|
2009-11-14 06:50:01 -05:00
|
|
|
/* Row labels don't scroll horizontally, so x conversion does not depend on xoffset */
|
2009-01-26 23:21:13 -05:00
|
|
|
return x - _parent_rectangle.get_x();
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
PortMatrixRowLabels::component_to_parent_y (double y) const
|
|
|
|
{
|
|
|
|
return y - _body->yoffset() + _parent_rectangle.get_y();
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
PortMatrixRowLabels::parent_to_component_y (double y) const
|
|
|
|
{
|
|
|
|
return y + _body->yoffset() - _parent_rectangle.get_y();
|
|
|
|
}
|
|
|
|
|
2009-05-03 10:31:42 -04:00
|
|
|
|
|
|
|
double
|
|
|
|
PortMatrixRowLabels::bundle_name_x () const
|
|
|
|
{
|
|
|
|
double x = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-11-18 08:35:31 -05:00
|
|
|
if (_matrix->arrangement() == PortMatrix::TOP_TO_RIGHT && !_matrix->show_only_bundles ()) {
|
|
|
|
x = _longest_port_name + name_pad() * 2;
|
2009-05-03 10:31:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
double
|
|
|
|
PortMatrixRowLabels::port_name_x () const
|
|
|
|
{
|
2009-01-30 10:08:09 -05:00
|
|
|
if (_matrix->arrangement() == PortMatrix::LEFT_TO_BOTTOM) {
|
2009-11-18 08:35:31 -05:00
|
|
|
return _longest_bundle_name + name_pad() * 2;
|
2009-01-30 10:08:09 -05:00
|
|
|
} else {
|
2009-01-26 23:21:13 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-03 10:31:42 -04:00
|
|
|
void
|
|
|
|
PortMatrixRowLabels::render_bundle_name (
|
2009-07-19 17:46:38 -04:00
|
|
|
cairo_t* cr, Gdk::Color fg_colour, Gdk::Color bg_colour, double xoff, double yoff, boost::shared_ptr<ARDOUR::Bundle> b
|
2009-05-03 10:31:42 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
double const x = bundle_name_x ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-06-30 21:14:14 -04:00
|
|
|
int const n = _matrix->show_only_bundles() ? 1 : _matrix->count_of_our_type (b->nchannels());
|
2009-07-19 17:46:38 -04:00
|
|
|
set_source_rgb (cr, bg_colour);
|
2009-07-17 22:10:15 -04:00
|
|
|
cairo_rectangle (cr, xoff + x, yoff, _longest_bundle_name + name_pad() * 2, grid_spacing() * n);
|
2009-05-03 10:31:42 -04:00
|
|
|
cairo_fill_preserve (cr);
|
2009-07-19 17:46:38 -04:00
|
|
|
set_source_rgb (cr, fg_colour);
|
2009-05-03 10:31:42 -04:00
|
|
|
cairo_set_line_width (cr, label_border_width ());
|
|
|
|
cairo_stroke (cr);
|
|
|
|
|
2009-11-11 20:58:20 -05:00
|
|
|
cairo_text_extents_t ext;
|
|
|
|
cairo_text_extents (cr, b->name().c_str(), &ext);
|
|
|
|
double const off = (grid_spacing() - ext.height) / 2;
|
2009-05-03 10:31:42 -04:00
|
|
|
|
|
|
|
set_source_rgb (cr, text_colour());
|
|
|
|
cairo_move_to (cr, xoff + x + name_pad(), yoff + name_pad() + off);
|
|
|
|
cairo_show_text (cr, b->name().c_str());
|
|
|
|
}
|
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
void
|
2009-02-02 20:55:25 -05:00
|
|
|
PortMatrixRowLabels::render_channel_name (
|
2009-07-19 17:46:38 -04:00
|
|
|
cairo_t* cr, Gdk::Color fg_colour, Gdk::Color bg_colour, double xoff, double yoff, ARDOUR::BundleChannel const& bc
|
2009-01-26 23:21:13 -05:00
|
|
|
)
|
|
|
|
{
|
2009-07-19 17:46:38 -04:00
|
|
|
set_source_rgb (cr, bg_colour);
|
2009-07-17 22:10:15 -04:00
|
|
|
cairo_rectangle (cr, port_name_x() + xoff, yoff, _longest_port_name + name_pad() * 2, grid_spacing());
|
2009-01-26 23:21:13 -05:00
|
|
|
cairo_fill_preserve (cr);
|
2009-07-19 17:46:38 -04:00
|
|
|
set_source_rgb (cr, fg_colour);
|
2009-01-26 23:21:13 -05:00
|
|
|
cairo_set_line_width (cr, label_border_width ());
|
|
|
|
cairo_stroke (cr);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
cairo_text_extents_t ext;
|
|
|
|
cairo_text_extents (cr, bc.bundle->channel_name(bc.channel).c_str(), &ext);
|
2009-07-17 22:10:15 -04:00
|
|
|
double const off = (grid_spacing() - ext.height) / 2;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-06-30 21:14:14 -04:00
|
|
|
if (_matrix->count_of_our_type (bc.bundle->nchannels()) > 1) {
|
2009-11-09 22:16:57 -05:00
|
|
|
|
|
|
|
/* only plot the name if the bundle has more than one channel;
|
|
|
|
the name of a single channel is assumed to be redundant */
|
|
|
|
|
|
|
|
set_source_rgb (cr, text_colour());
|
|
|
|
cairo_move_to (cr, port_name_x() + xoff + name_pad(), yoff + name_pad() + off);
|
|
|
|
cairo_show_text (cr, bc.bundle->channel_name(bc.channel).c_str());
|
|
|
|
}
|
2009-01-26 23:21:13 -05:00
|
|
|
}
|
|
|
|
|
2009-02-02 20:55:25 -05:00
|
|
|
double
|
2009-07-21 11:55:17 -04:00
|
|
|
PortMatrixRowLabels::channel_x (ARDOUR::BundleChannel const &) const
|
2009-02-02 20:55:25 -05:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
double
|
2009-01-30 10:08:09 -05:00
|
|
|
PortMatrixRowLabels::channel_y (ARDOUR::BundleChannel const& bc) const
|
2009-01-26 23:21:13 -05:00
|
|
|
{
|
2009-11-18 08:35:31 -05:00
|
|
|
return channel_to_position (bc, _matrix->visible_rows()) * grid_spacing ();
|
2009-01-26 23:21:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-02 20:55:25 -05:00
|
|
|
PortMatrixRowLabels::queue_draw_for (ARDOUR::BundleChannel const & bc)
|
2009-01-26 23:21:13 -05:00
|
|
|
{
|
2009-02-02 20:55:25 -05:00
|
|
|
if (bc.bundle) {
|
2009-01-26 23:21:13 -05:00
|
|
|
|
2009-05-03 10:31:42 -04:00
|
|
|
if (_matrix->show_only_bundles()) {
|
|
|
|
_body->queue_draw_area (
|
2009-07-19 17:46:38 -04:00
|
|
|
component_to_parent_x (bundle_name_x()) - 1,
|
|
|
|
component_to_parent_y (channel_y (bc)) - 1,
|
|
|
|
_longest_bundle_name + name_pad() * 2 + 2,
|
|
|
|
grid_spacing() + 2
|
2009-05-03 10:31:42 -04:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
_body->queue_draw_area (
|
2009-10-14 12:10:01 -04:00
|
|
|
component_to_parent_x (port_name_x()) - 1,
|
2009-07-19 17:46:38 -04:00
|
|
|
component_to_parent_y (channel_y (bc)) - 1,
|
|
|
|
_longest_port_name + name_pad() * 2 + 2,
|
|
|
|
grid_spacing() + 2
|
2009-05-03 10:31:42 -04:00
|
|
|
);
|
|
|
|
}
|
2009-01-26 23:21:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-11-16 19:30:42 -05:00
|
|
|
PortMatrixRowLabels::mouseover_changed (list<PortMatrixNode> const &)
|
2009-01-26 23:21:13 -05:00
|
|
|
{
|
2009-11-16 19:30:42 -05:00
|
|
|
list<PortMatrixNode> const m = _body->mouseover ();
|
|
|
|
for (list<PortMatrixNode>::const_iterator i = m.begin(); i != m.end(); ++i) {
|
|
|
|
|
|
|
|
ARDOUR::BundleChannel c = i->column;
|
|
|
|
ARDOUR::BundleChannel r = i->row;
|
|
|
|
|
|
|
|
if (c.bundle && r.bundle) {
|
|
|
|
add_channel_highlight (r);
|
|
|
|
} else if (r.bundle) {
|
|
|
|
_body->highlight_associated_channels (_matrix->row_index(), r);
|
|
|
|
}
|
2009-01-26 23:21:13 -05:00
|
|
|
}
|
|
|
|
}
|
2009-11-14 06:50:01 -05:00
|
|
|
|
2009-11-16 19:30:42 -05:00
|
|
|
void
|
|
|
|
PortMatrixRowLabels::motion (double x, double y)
|
|
|
|
{
|
2009-11-18 08:35:31 -05:00
|
|
|
ARDOUR::BundleChannel const w = position_to_channel (y, x, _matrix->visible_rows());
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-11-18 08:35:31 -05:00
|
|
|
uint32_t const bw = _longest_bundle_name + 2 * name_pad();
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
bool done = false;
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
if (w.bundle) {
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
if (
|
|
|
|
(_matrix->arrangement() == PortMatrix::LEFT_TO_BOTTOM && x < bw) ||
|
|
|
|
(_matrix->arrangement() == PortMatrix::TOP_TO_RIGHT && x > (_width - bw) && x < _width)
|
|
|
|
|
|
|
|
) {
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
/* if the mouse is over a bundle name, highlight all channels in the bundle */
|
|
|
|
|
|
|
|
list<PortMatrixNode> n;
|
|
|
|
|
2010-06-29 22:59:13 -04:00
|
|
|
for (uint32_t i = 0; i < w.bundle->nchannels().n_total(); ++i) {
|
|
|
|
|
2010-06-30 21:14:14 -04:00
|
|
|
if (!_matrix->should_show (w.bundle->channel_type(i))) {
|
2010-06-29 22:59:13 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
ARDOUR::BundleChannel const bc (w.bundle, i);
|
|
|
|
n.push_back (PortMatrixNode (bc, ARDOUR::BundleChannel ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
_body->set_mouseover (n);
|
|
|
|
done = true;
|
|
|
|
|
|
|
|
} else if (x < _width) {
|
|
|
|
|
|
|
|
_body->set_mouseover (PortMatrixNode (w, ARDOUR::BundleChannel ()));
|
|
|
|
done = true;
|
|
|
|
|
2009-11-16 19:30:42 -05:00
|
|
|
}
|
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
}
|
2009-11-16 19:30:42 -05:00
|
|
|
|
2009-12-04 07:49:58 -05:00
|
|
|
if (!done) {
|
|
|
|
/* not over any bundle */
|
|
|
|
_body->set_mouseover (PortMatrixNode ());
|
|
|
|
return;
|
2009-11-16 19:30:42 -05:00
|
|
|
}
|
|
|
|
}
|