summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-30 21:19:06 +0000
committerDavid Robillard <d@drobilla.net>2007-09-30 21:19:06 +0000
commitffc6f457d61460ca73bb24a3d7e583f90d54ecd2 (patch)
treee9dc5de06ba8e10d4ea78be73c0ab6ad621bbb4e
parent399ddfc5b1d4f1f131362d0439821778c6681b23 (diff)
downloadingen-ffc6f457d61460ca73bb24a3d7e583f90d54ecd2.tar.gz
ingen-ffc6f457d61460ca73bb24a3d7e583f90d54ecd2.tar.bz2
ingen-ffc6f457d61460ca73bb24a3d7e583f90d54ecd2.zip
Port "monitoring" -> Port "broadcasting" to avoid confusion with the usual use of (audible) "monitoring", which Ingen will probably have one of these days.
git-svn-id: http://svn.drobilla.net/lad/ingen@789 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/libs/engine/events/EnablePortBroadcastingEvent.cpp (renamed from src/libs/engine/events/EnablePortMonitoringEvent.cpp)16
-rw-r--r--src/libs/engine/events/EnablePortBroadcastingEvent.hpp (renamed from src/libs/engine/events/EnablePortMonitoringEvent.hpp)16
-rw-r--r--src/libs/engine/events/Makefile.am4
3 files changed, 18 insertions, 18 deletions
diff --git a/src/libs/engine/events/EnablePortMonitoringEvent.cpp b/src/libs/engine/events/EnablePortBroadcastingEvent.cpp
index bad80041..e432a884 100644
--- a/src/libs/engine/events/EnablePortMonitoringEvent.cpp
+++ b/src/libs/engine/events/EnablePortBroadcastingEvent.cpp
@@ -17,7 +17,7 @@
#include <string>
#include "interface/ClientInterface.hpp"
-#include "events/EnablePortMonitoringEvent.hpp"
+#include "events/EnablePortBroadcastingEvent.hpp"
#include "Responder.hpp"
#include "Engine.hpp"
#include "Port.hpp"
@@ -30,10 +30,10 @@ using std::string;
namespace Ingen {
-EnablePortMonitoringEvent::EnablePortMonitoringEvent(Engine& engine,
- SharedPtr<Responder> responder,
- SampleCount timestamp,
- const std::string& port_path)
+EnablePortBroadcastingEvent::EnablePortBroadcastingEvent(Engine& engine,
+ SharedPtr<Responder> responder,
+ SampleCount timestamp,
+ const std::string& port_path)
: QueuedEvent(engine, responder, timestamp),
_port_path(port_path),
_port(NULL)
@@ -42,7 +42,7 @@ EnablePortMonitoringEvent::EnablePortMonitoringEvent(Engine& engine
void
-EnablePortMonitoringEvent::pre_process()
+EnablePortBroadcastingEvent::pre_process()
{
_port = _engine.object_store()->find_port(_port_path);
@@ -51,7 +51,7 @@ EnablePortMonitoringEvent::pre_process()
void
-EnablePortMonitoringEvent::execute(ProcessContext& context)
+EnablePortBroadcastingEvent::execute(ProcessContext& context)
{
QueuedEvent::execute(context);
@@ -67,7 +67,7 @@ EnablePortMonitoringEvent::execute(ProcessContext& context)
void
-EnablePortMonitoringEvent::post_process()
+EnablePortBroadcastingEvent::post_process()
{
#if 0
string msg;
diff --git a/src/libs/engine/events/EnablePortMonitoringEvent.hpp b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
index 9696e5ca..55f7decb 100644
--- a/src/libs/engine/events/EnablePortMonitoringEvent.hpp
+++ b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp
@@ -15,8 +15,8 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef ENABLEPORTNOTIFICATIONEVENT_H
-#define ENABLEPORTNOTIFICATIONEVENT_H
+#ifndef ENABLEPORTBROADCASTINGEVENT_H
+#define ENABLEPORTBROADCASTINGEVENT_H
#include <string>
#include "QueuedEvent.hpp"
@@ -35,13 +35,13 @@ using Shared::ClientInterface;
*
* \ingroup engine
*/
-class EnablePortMonitoringEvent : public QueuedEvent
+class EnablePortBroadcastingEvent : public QueuedEvent
{
public:
- EnablePortMonitoringEvent(Engine& engine,
- SharedPtr<Responder> responder,
- SampleCount timestamp,
- const std::string& port_path);
+ EnablePortBroadcastingEvent(Engine& engine,
+ SharedPtr<Responder> responder,
+ SampleCount timestamp,
+ const std::string& port_path);
void pre_process();
void execute(ProcessContext& context);
@@ -55,4 +55,4 @@ private:
} // namespace Ingen
-#endif // ENABLEPORTNOTIFICATIONEVENT_H
+#endif // ENABLEPORTBROADCASTINGEVENT_H
diff --git a/src/libs/engine/events/Makefile.am b/src/libs/engine/events/Makefile.am
index d6b671a3..e634b63b 100644
--- a/src/libs/engine/events/Makefile.am
+++ b/src/libs/engine/events/Makefile.am
@@ -33,8 +33,8 @@ EXTRA_DIST = \
DisconnectionEvent.hpp \
EnablePatchEvent.cpp \
EnablePatchEvent.hpp \
- EnablePortMonitoringEvent.cpp \
- EnablePortMonitoringEvent.hpp \
+ EnablePortBroadcastingEvent.cpp \
+ EnablePortBroadcastingEvent.hpp \
LoadPluginsEvent.cpp \
LoadPluginsEvent.hpp \
MidiLearnEvent.cpp \