2009-01-20 09:46:00 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2009 Carl Hetherington <carl@carlh.net>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
#ifndef __gtk_ardour_port_matrix_body_h__
|
|
|
|
#define __gtk_ardour_port_matrix_body_h__
|
|
|
|
|
2009-02-04 12:05:26 -05:00
|
|
|
#include <gtkmm/eventbox.h>
|
2009-01-25 01:47:11 -05:00
|
|
|
#include "port_group.h"
|
2009-01-26 23:21:13 -05:00
|
|
|
#include "port_matrix_types.h"
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
class PortMatrix;
|
2009-02-04 12:05:26 -05:00
|
|
|
class PortMatrixColumnLabels;
|
|
|
|
class PortMatrixRowLabels;
|
|
|
|
class PortMatrixGrid;
|
2009-11-16 19:30:42 -05:00
|
|
|
class PortMatrixComponent;
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
/** The main body of the port matrix. It is made up of three parts:
|
|
|
|
* column labels, grid and row labels, each drawn using cairo.
|
|
|
|
*/
|
|
|
|
class PortMatrixBody : public Gtk::EventBox
|
|
|
|
{
|
|
|
|
public:
|
2009-01-30 10:08:09 -05:00
|
|
|
PortMatrixBody (PortMatrix *);
|
2009-02-04 12:05:26 -05:00
|
|
|
~PortMatrixBody ();
|
2009-01-20 20:55:46 -05:00
|
|
|
|
2009-01-30 10:08:09 -05:00
|
|
|
void setup ();
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
uint32_t full_scroll_width ();
|
|
|
|
uint32_t alloc_scroll_width ();
|
|
|
|
uint32_t full_scroll_height ();
|
|
|
|
uint32_t alloc_scroll_height ();
|
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
uint32_t xoffset () const {
|
|
|
|
return _xoffset;
|
|
|
|
}
|
2009-01-20 09:46:00 -05:00
|
|
|
void set_xoffset (uint32_t);
|
2009-01-26 23:21:13 -05:00
|
|
|
uint32_t yoffset () const {
|
|
|
|
return _yoffset;
|
|
|
|
}
|
2009-01-20 09:46:00 -05:00
|
|
|
void set_yoffset (uint32_t);
|
|
|
|
|
2009-01-21 22:38:40 -05:00
|
|
|
void rebuild_and_draw_grid ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
void set_mouseover (PortMatrixNode const &);
|
2009-11-16 19:30:42 -05:00
|
|
|
void set_mouseover (std::list<PortMatrixNode> const &);
|
|
|
|
std::list<PortMatrixNode> mouseover () const {
|
2009-01-26 23:21:13 -05:00
|
|
|
return _mouseover;
|
|
|
|
}
|
2009-01-27 13:56:06 -05:00
|
|
|
|
2009-07-17 18:54:45 -04:00
|
|
|
void highlight_associated_channels (int, ARDOUR::BundleChannel);
|
2009-02-05 07:56:12 -05:00
|
|
|
void component_size_changed ();
|
2009-07-17 18:54:45 -04:00
|
|
|
std::pair<uint32_t, uint32_t> max_size () const;
|
2009-02-02 20:55:25 -05:00
|
|
|
|
2009-12-06 19:41:50 -05:00
|
|
|
uint32_t column_labels_border_x () const;
|
|
|
|
uint32_t column_labels_height () const;
|
|
|
|
|
|
|
|
sigc::signal<void> DimensionsChanged;
|
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
protected:
|
|
|
|
bool on_expose_event (GdkEventExpose *);
|
|
|
|
void on_size_request (Gtk::Requisition *);
|
|
|
|
void on_size_allocate (Gtk::Allocation &);
|
|
|
|
bool on_button_press_event (GdkEventButton *);
|
2009-02-02 20:55:25 -05:00
|
|
|
bool on_button_release_event (GdkEventButton *);
|
2009-02-02 08:59:50 -05:00
|
|
|
bool on_leave_notify_event (GdkEventCrossing *);
|
2009-01-26 23:21:13 -05:00
|
|
|
bool on_motion_notify_event (GdkEventMotion *);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
private:
|
2009-01-20 20:55:46 -05:00
|
|
|
void compute_rectangles ();
|
2009-01-21 22:38:40 -05:00
|
|
|
void rebuild_and_draw_column_labels ();
|
|
|
|
void rebuild_and_draw_row_labels ();
|
2009-01-26 23:21:13 -05:00
|
|
|
void update_bundles ();
|
2009-02-04 09:26:00 -05:00
|
|
|
void set_cairo_clip (cairo_t *, Gdk::Rectangle const &) const;
|
2009-02-05 07:56:12 -05:00
|
|
|
|
2009-01-30 10:08:09 -05:00
|
|
|
PortMatrix* _matrix;
|
2009-02-04 12:05:26 -05:00
|
|
|
PortMatrixColumnLabels* _column_labels;
|
|
|
|
PortMatrixRowLabels* _row_labels;
|
|
|
|
PortMatrixGrid* _grid;
|
2009-11-16 19:30:42 -05:00
|
|
|
std::list<PortMatrixComponent*> _components;
|
2009-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
uint32_t _alloc_width; ///< allocated width
|
|
|
|
uint32_t _alloc_height; ///< allocated height
|
|
|
|
uint32_t _xoffset;
|
|
|
|
uint32_t _yoffset;
|
2009-12-06 19:41:50 -05:00
|
|
|
uint32_t _column_labels_border_x;
|
|
|
|
uint32_t _column_labels_height;
|
2009-01-20 09:46:00 -05:00
|
|
|
|
2009-11-16 19:30:42 -05:00
|
|
|
std::list<PortMatrixNode> _mouseover;
|
2009-11-14 10:12:13 -05:00
|
|
|
bool _ignore_component_size_changed;
|
2009-01-26 23:21:13 -05:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
PBD::ScopedConnectionList _bundle_connections;
|
2009-01-20 09:46:00 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|