2009-01-20 09:46:00 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002-2009 Paul Davis
|
|
|
|
|
|
|
|
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 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-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-01-26 23:21:13 -05:00
|
|
|
|
|
|
|
void set_mouseover (PortMatrixNode const &);
|
|
|
|
PortMatrixNode mouseover () const {
|
|
|
|
return _mouseover;
|
|
|
|
}
|
2009-01-27 13:56:06 -05:00
|
|
|
|
2009-02-02 20:55:25 -05:00
|
|
|
void highlight_associated_channels (int, uint32_t);
|
2009-02-05 07:56:12 -05:00
|
|
|
void component_size_changed ();
|
2009-02-02 20:55:25 -05:00
|
|
|
|
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-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-01-20 09:46:00 -05:00
|
|
|
|
|
|
|
uint32_t _alloc_width; ///< allocated width
|
|
|
|
uint32_t _alloc_height; ///< allocated height
|
2009-01-20 20:55:46 -05:00
|
|
|
Gdk::Rectangle _column_labels_rect;
|
|
|
|
Gdk::Rectangle _row_labels_rect;
|
|
|
|
Gdk::Rectangle _grid_rect;
|
2009-01-20 09:46:00 -05:00
|
|
|
uint32_t _xoffset;
|
|
|
|
uint32_t _yoffset;
|
|
|
|
|
2009-01-26 23:21:13 -05:00
|
|
|
PortMatrixNode _mouseover;
|
2009-02-02 20:55:25 -05:00
|
|
|
bool _mouse_over_grid;
|
2009-01-26 23:21:13 -05:00
|
|
|
|
2009-01-20 09:46:00 -05:00
|
|
|
std::list<sigc::connection> _bundle_connections;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|