summaryrefslogtreecommitdiffstats
path: root/src/PatchageEvent.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
committerDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
commit560fac6a42644bd7584db5f53db19c936ef50ab0 (patch)
tree480f0cc071fd83a1e71b7deaa17ca6f98d2412f3 /src/PatchageEvent.h
parentf8b4b09e42318eed8b7cd1fe6746fa4bc542771f (diff)
downloadpatchage-560fac6a42644bd7584db5f53db19c936ef50ab0.tar.gz
patchage-560fac6a42644bd7584db5f53db19c936ef50ab0.tar.bz2
patchage-560fac6a42644bd7584db5f53db19c936ef50ab0.zip
Consistently rename all C++ files .cpp/.hpp.
Fix (some) inclusion guard names to not clash with other libs. git-svn-id: http://svn.drobilla.net/lad/patchage@613 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageEvent.h')
-rw-r--r--src/PatchageEvent.h103
1 files changed, 0 insertions, 103 deletions
diff --git a/src/PatchageEvent.h b/src/PatchageEvent.h
deleted file mode 100644
index 24dd7ba..0000000
--- a/src/PatchageEvent.h
+++ /dev/null
@@ -1,103 +0,0 @@
-/* This file is part of Patchage.
- * Copyright (C) 2007 Dave Robillard <http://drobilla.net>
- *
- * Patchage 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.
- *
- * Patchage 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.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#ifndef PATCHAGEEVENT_H
-#define PATCHAGEEVENT_H
-
-#include <string>
-#include <jack/jack.h>
-#include "../../config/config.h"
-#ifdef HAVE_ALSA
-#include <alsa/asoundlib.h>
-#endif
-#include "PatchagePort.h"
-
-class Patchage;
-
-
-/** A Driver event to be processed by the GUI thread.
- */
-class PatchageEvent {
-public:
- enum Type {
- NULL_EVENT = 0,
- PORT_CREATION,
- PORT_DESTRUCTION,
- CONNECTION,
- DISCONNECTION
- };
-
- PatchageEvent()
- : _type(NULL_EVENT)
- {}
-
- PatchageEvent(Type type, jack_port_id_t port)
- : _type(type)
- , _port_1(port)
- {}
-
- PatchageEvent(Type type, jack_port_id_t port_1, jack_port_id_t port_2)
- : _type(type)
- , _port_1(port_1)
- , _port_2(port_2)
- {}
-
-#ifdef HAVE_ALSA
- PatchageEvent(Type type, snd_seq_addr_t port_1, snd_seq_addr_t port_2)
- : _type(type)
- , _port_1(port_1)
- , _port_2(port_2)
- {}
-#endif
-
- void execute(Patchage* patchage);
-
- inline Type type() const { return (Type)_type; }
-
-private:
- uint8_t _type;
-
- struct PortRef {
- PortRef() : type(NULL_PORT_REF) { id.jack_id = 0; }
-
- PortRef(jack_port_id_t jack_id) : type(JACK_ID) { id.jack_id = jack_id; }
- PortRef(jack_port_t* jack_port) : type(JACK_PORT) { id.jack_port = jack_port; }
-
-#ifdef HAVE_ALSA
- PortRef(snd_seq_addr_t addr) : type(ALSA_ADDR) { id.alsa_addr = addr; }
-#endif
-
- enum { NULL_PORT_REF, JACK_ID, JACK_PORT, ALSA_ADDR } type;
-
- union {
- jack_port_t* jack_port;
- jack_port_id_t jack_id;
-#ifdef HAVE_ALSA
- snd_seq_addr_t alsa_addr;
-#endif
- } id;
- };
-
- PortRef _port_1;
- PortRef _port_2;
-
- boost::shared_ptr<PatchagePort> find_port(const Patchage* patchage, const PortRef& ref);
-};
-
-
-#endif // PATCHAGEEVENT_H
-