From 2f0e092964f800c0ff82cbd08bf2ee05db814e7b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 9 Jun 2006 02:18:57 +0000 Subject: Added patchage git-svn-id: http://svn.drobilla.net/lad/patchage@5 a436a847-0d15-0410-975c-d299462d15a1 --- src/PatchagePort.h | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/PatchagePort.h (limited to 'src/PatchagePort.h') diff --git a/src/PatchagePort.h b/src/PatchagePort.h new file mode 100644 index 0000000..601bce9 --- /dev/null +++ b/src/PatchagePort.h @@ -0,0 +1,66 @@ +/* This file is part of Om. Copyright (C) 2004 Dave Robillard. + * + * Om 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. + * + * Om 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 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., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#ifndef PATCHAGEPORT_H +#define PATCHAGEPORT_H + +#include +#include +#include +#include +#include + +using namespace LibFlowCanvas; +using std::string; using std::list; + +enum PortType { JACK_AUDIO, JACK_MIDI, ALSA_MIDI }; + + +/** A Port on a PatchageModule + * + * \ingroup OmGtk + */ +class PatchagePort : public LibFlowCanvas::Port +{ +public: + PatchagePort(LibFlowCanvas::Module* module, PortType type, const string& name, bool is_input, int color) + : Port(module, name, is_input, color), + m_type(type) + { + m_alsa_addr.client = '\0'; + m_alsa_addr.port = '\0'; + } + + virtual ~PatchagePort() {} + + // FIXME: This driver specific crap really needs to go + void alsa_addr(const snd_seq_addr_t addr) { m_alsa_addr = addr; } + const snd_seq_addr_t* alsa_addr() const + { return (m_type == ALSA_MIDI) ? &m_alsa_addr : NULL; } + + /** Returns the full name of this port, as "modulename:portname" */ + string full_name() const { return m_module->name() + ":" + m_name; } + + PortType type() const { return m_type; } + +private: + snd_seq_addr_t m_alsa_addr; + PortType m_type; +}; + + +#endif // PATCHAGEPORT_H -- cgit v1.2.1