2009-01-20 14:46:00 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2002-2009 Paul Davis
|
2009-01-20 14:46:00 +00: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.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __gtk_ardour_port_matrix_body_h__
|
|
|
|
|
#define __gtk_ardour_port_matrix_body_h__
|
|
|
|
|
|
2009-02-04 17:05:26 +00:00
|
|
|
#include <gtkmm/eventbox.h>
|
2009-01-25 06:47:11 +00:00
|
|
|
#include "port_group.h"
|
2009-01-27 04:21:13 +00:00
|
|
|
#include "port_matrix_types.h"
|
2009-01-20 14:46:00 +00:00
|
|
|
|
|
|
|
|
class PortMatrix;
|
2009-02-04 17:05:26 +00:00
|
|
|
class PortMatrixColumnLabels;
|
|
|
|
|
class PortMatrixRowLabels;
|
|
|
|
|
class PortMatrixGrid;
|
2009-11-17 00:30:42 +00:00
|
|
|
class PortMatrixComponent;
|
2009-01-20 14:46:00 +00: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 15:08:09 +00:00
|
|
|
PortMatrixBody (PortMatrix *);
|
2009-02-04 17:05:26 +00:00
|
|
|
~PortMatrixBody ();
|
2009-01-21 01:55:46 +00:00
|
|
|
|
2009-01-30 15:08:09 +00:00
|
|
|
void setup ();
|
2009-01-20 14:46:00 +00:00
|
|
|
|
|
|
|
|
uint32_t full_scroll_width ();
|
|
|
|
|
uint32_t alloc_scroll_width ();
|
|
|
|
|
uint32_t full_scroll_height ();
|
|
|
|
|
uint32_t alloc_scroll_height ();
|
|
|
|
|
|
2009-01-27 04:21:13 +00:00
|
|
|
uint32_t xoffset () const {
|
|
|
|
|
return _xoffset;
|
|
|
|
|
}
|
2009-01-20 14:46:00 +00:00
|
|
|
void set_xoffset (uint32_t);
|
2009-01-27 04:21:13 +00:00
|
|
|
uint32_t yoffset () const {
|
|
|
|
|
return _yoffset;
|
|
|
|
|
}
|
2009-01-20 14:46:00 +00:00
|
|
|
void set_yoffset (uint32_t);
|
|
|
|
|
|
2009-01-22 03:38:40 +00:00
|
|
|
void rebuild_and_draw_grid ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-01-27 04:21:13 +00:00
|
|
|
void set_mouseover (PortMatrixNode const &);
|
2009-11-17 00:30:42 +00:00
|
|
|
void set_mouseover (std::list<PortMatrixNode> const &);
|
|
|
|
|
std::list<PortMatrixNode> mouseover () const {
|
2009-01-27 04:21:13 +00:00
|
|
|
return _mouseover;
|
|
|
|
|
}
|
2009-01-27 18:56:06 +00:00
|
|
|
|
2009-07-17 22:54:45 +00:00
|
|
|
void highlight_associated_channels (int, ARDOUR::BundleChannel);
|
2009-02-05 12:56:12 +00:00
|
|
|
void component_size_changed ();
|
2009-07-17 22:54:45 +00:00
|
|
|
std::pair<uint32_t, uint32_t> max_size () const;
|
2009-02-03 01:55:25 +00:00
|
|
|
|
2009-12-07 00:41:50 +00:00
|
|
|
uint32_t column_labels_border_x () const;
|
|
|
|
|
uint32_t column_labels_height () const;
|
|
|
|
|
|
|
|
|
|
sigc::signal<void> DimensionsChanged;
|
|
|
|
|
|
2009-01-20 14:46:00 +00: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-03 01:55:25 +00:00
|
|
|
bool on_button_release_event (GdkEventButton *);
|
2009-02-02 13:59:50 +00:00
|
|
|
bool on_leave_notify_event (GdkEventCrossing *);
|
2009-01-27 04:21:13 +00:00
|
|
|
bool on_motion_notify_event (GdkEventMotion *);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-01-20 14:46:00 +00:00
|
|
|
private:
|
2009-01-21 01:55:46 +00:00
|
|
|
void compute_rectangles ();
|
2009-01-22 03:38:40 +00:00
|
|
|
void rebuild_and_draw_column_labels ();
|
|
|
|
|
void rebuild_and_draw_row_labels ();
|
2009-01-27 04:21:13 +00:00
|
|
|
void update_bundles ();
|
2009-02-04 14:26:00 +00:00
|
|
|
void set_cairo_clip (cairo_t *, Gdk::Rectangle const &) const;
|
2009-02-05 12:56:12 +00:00
|
|
|
|
2009-01-30 15:08:09 +00:00
|
|
|
PortMatrix* _matrix;
|
2009-02-04 17:05:26 +00:00
|
|
|
PortMatrixColumnLabels* _column_labels;
|
|
|
|
|
PortMatrixRowLabels* _row_labels;
|
|
|
|
|
PortMatrixGrid* _grid;
|
2009-11-17 00:30:42 +00:00
|
|
|
std::list<PortMatrixComponent*> _components;
|
2009-01-20 14:46:00 +00:00
|
|
|
|
|
|
|
|
uint32_t _alloc_width; ///< allocated width
|
|
|
|
|
uint32_t _alloc_height; ///< allocated height
|
|
|
|
|
uint32_t _xoffset;
|
|
|
|
|
uint32_t _yoffset;
|
2009-12-07 00:41:50 +00:00
|
|
|
uint32_t _column_labels_border_x;
|
|
|
|
|
uint32_t _column_labels_height;
|
2009-01-20 14:46:00 +00:00
|
|
|
|
2009-11-17 00:30:42 +00:00
|
|
|
std::list<PortMatrixNode> _mouseover;
|
2009-11-14 15:12:13 +00:00
|
|
|
bool _ignore_component_size_changed;
|
2009-01-27 04:21:13 +00:00
|
|
|
|
2009-12-17 18:24:23 +00:00
|
|
|
PBD::ScopedConnectionList _bundle_connections;
|
2009-01-20 14:46:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|