summaryrefslogtreecommitdiffstats
path: root/src/handle_event.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-05-10 13:19:34 -0400
committerDavid Robillard <d@drobilla.net>2021-05-10 13:19:34 -0400
commitc1d99e42674d26a2699e5a7244dbaa988820b40d (patch)
tree29a103fdb8536c6c6e42dcc8013f146fedcc8e14 /src/handle_event.hpp
parenta280246c3043fc2ea1f50fa695539ac0bec44be1 (diff)
downloadpatchage-c1d99e42674d26a2699e5a7244dbaa988820b40d.tar.gz
patchage-c1d99e42674d26a2699e5a7244dbaa988820b40d.tar.bz2
patchage-c1d99e42674d26a2699e5a7244dbaa988820b40d.zip
Add Action representation to isolate behaviour from canvas objects
A step towards isolating the canvas and ultimately the entire UI away so it can be replaced.
Diffstat (limited to 'src/handle_event.hpp')
-rw-r--r--src/handle_event.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handle_event.hpp b/src/handle_event.hpp
index 975b3bb..6a62d61 100644
--- a/src/handle_event.hpp
+++ b/src/handle_event.hpp
@@ -1,5 +1,5 @@
/* This file is part of Patchage.
- * Copyright 2007-2020 David Robillard <d@drobilla.net>
+ * Copyright 2007-2021 David Robillard <d@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
@@ -23,7 +23,7 @@ namespace patchage {
class Patchage;
-/// Handle an event in the GUI
+/// Handle an event from the system by updating the GUI as necessary
void
handle_event(Patchage& patchage, const Event& event);