Some small-ish port matrix rendering improvements.
[ardour.git] / gtk2_ardour / port_matrix_body.h
1 /*
2     Copyright (C) 2002-2009 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk_ardour_port_matrix_body_h__
21 #define __gtk_ardour_port_matrix_body_h__
22
23 #include "port_matrix_column_labels.h"
24 #include "port_matrix_row_labels.h"
25 #include "port_matrix_grid.h"
26
27 class PortMatrix;
28
29 /** The main body of the port matrix.  It is made up of three parts:
30  *  column labels, grid and row labels, each drawn using cairo.
31  *  This class handles the arrangement of these parts.
32  */
33 class PortMatrixBody : public Gtk::EventBox
34 {
35 public:
36         enum Arrangement {
37                 TOP_AND_RIGHT,
38                 BOTTOM_AND_LEFT
39         };
40
41         PortMatrixBody (PortMatrix *, Arrangement);
42
43         /** @return bundles to offer for columns */
44         std::vector<boost::shared_ptr<ARDOUR::Bundle> > const & column_bundles () {
45                 return _column_bundles;
46         }
47
48         /** @return bundles to offer for rows */
49         std::vector<boost::shared_ptr<ARDOUR::Bundle> > const & row_bundles () {
50                 return _row_bundles;
51         }
52         
53         void setup (
54                 std::vector<boost::shared_ptr<ARDOUR::Bundle> > const &,
55                 std::vector<boost::shared_ptr<ARDOUR::Bundle> > const &
56                 );
57
58         uint32_t full_scroll_width ();
59         uint32_t alloc_scroll_width ();
60         uint32_t full_scroll_height ();
61         uint32_t alloc_scroll_height ();
62
63         void set_xoffset (uint32_t);
64         void set_yoffset (uint32_t);
65
66         void rebuild_and_draw_grid ();
67
68 protected:
69         bool on_expose_event (GdkEventExpose *);
70         void on_size_request (Gtk::Requisition *);
71         void on_size_allocate (Gtk::Allocation &);
72         bool on_button_press_event (GdkEventButton *);
73
74 private:
75         void compute_rectangles ();
76         void rebuild_and_draw_column_labels ();
77         void rebuild_and_draw_row_labels ();
78         
79         PortMatrix* _port_matrix;
80         PortMatrixColumnLabels _column_labels;
81         PortMatrixRowLabels _row_labels;
82         PortMatrixGrid _grid;
83
84         Arrangement _arrangement;
85         uint32_t _alloc_width; ///< allocated width
86         uint32_t _alloc_height; ///< allocated height
87         Gdk::Rectangle _column_labels_rect;
88         Gdk::Rectangle _row_labels_rect;
89         Gdk::Rectangle _grid_rect;
90         uint32_t _xoffset;
91         uint32_t _yoffset;
92
93         /// bundles to offer for columns
94         std::vector<boost::shared_ptr<ARDOUR::Bundle> > _column_bundles;
95         /// bundles to offer for rows
96         std::vector<boost::shared_ptr<ARDOUR::Bundle> > _row_bundles;
97
98         std::list<sigc::connection> _bundle_connections;
99 };
100
101 #endif