summaryrefslogtreecommitdiff
path: root/gtk2_ardour/port_matrix_types.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-01-27 04:21:13 +0000
committerCarl Hetherington <carl@carlh.net>2009-01-27 04:21:13 +0000
commit9cc7b452ebb8fe8f348ad6aad18054703700da18 (patch)
treea54d33c5f608b321823665baec607ee4f83d5f70 /gtk2_ardour/port_matrix_types.h
parent7e1b86aceeef477e13b4c35f524034d909acd92c (diff)
First cut at mouseovers for the port matrix.
git-svn-id: svn://localhost/ardour2/branches/3.0@4446 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/port_matrix_types.h')
-rw-r--r--gtk2_ardour/port_matrix_types.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/gtk2_ardour/port_matrix_types.h b/gtk2_ardour/port_matrix_types.h
new file mode 100644
index 0000000000..66dcf619b7
--- /dev/null
+++ b/gtk2_ardour/port_matrix_types.h
@@ -0,0 +1,54 @@
+/*
+ Copyright (C) 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 __ardour_gtk_port_matrix_types_h__
+#define __ardour_gtk_port_matrix_types_h__
+
+struct PortMatrixBundleChannel {
+ PortMatrixBundleChannel () : channel (0) {}
+ PortMatrixBundleChannel (boost::shared_ptr<ARDOUR::Bundle> b, uint32_t c)
+ : bundle (b), channel (c) {}
+
+ bool operator== (PortMatrixBundleChannel const& other) const {
+ return bundle == other.bundle && channel == other.channel;
+ }
+ bool operator!= (PortMatrixBundleChannel const& other) const {
+ return bundle != other.bundle || channel != other.channel;
+ }
+
+ boost::shared_ptr<ARDOUR::Bundle> bundle;
+ uint32_t channel;
+};
+
+struct PortMatrixNode {
+ PortMatrixNode () {}
+ PortMatrixNode (PortMatrixBundleChannel r, PortMatrixBundleChannel c) : row (r), column (c) {}
+
+ bool operator== (PortMatrixNode const& other) const {
+ return row == other.row && column == other.column;
+ }
+ bool operator!= (PortMatrixNode const& other) const {
+ return row != other.row || column != other.column;
+ }
+
+ PortMatrixBundleChannel row;
+ PortMatrixBundleChannel column;
+};
+
+#endif