diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-07-05 22:51:49 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-07-05 22:51:49 +0200 |
commit | 7081c1c1f06c658fb8edb34344e813b135cf7e2b (patch) | |
tree | 7379071879b7eeffb3b207911c3a72ede793eb0b /pugl/pugl.hpp | |
parent | adaf38d0984087ba9b6281dde46749dfb29a2a38 (diff) | |
download | synthpod-7081c1c1f06c658fb8edb34344e813b135cf7e2b.tar.xz |
Squashed 'pugl/' changes from adaf38d..0406d71
0406d71 Implement clipboard
c977ef2 Implement special key handling on MacOS
git-subtree-dir: pugl
git-subtree-split: 0406d71d421e141802ca8c085bbd00125a4af961
Diffstat (limited to 'pugl/pugl.hpp')
-rw-r--r-- | pugl/pugl.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pugl/pugl.hpp b/pugl/pugl.hpp index 82328878..7d3ea9e3 100644 --- a/pugl/pugl.hpp +++ b/pugl/pugl.hpp @@ -83,6 +83,8 @@ public: virtual void* getContext() { return puglGetContext(_view); } virtual void ignoreKeyRepeat(bool ignore) { puglIgnoreKeyRepeat(_view, ignore); } virtual void grabFocus() { puglGrabFocus(_view); } + virtual void copyToClipboard(char* selection) { puglCopyToClipboard(_view, selection); } + virtual const char* pasteFromClipboard() { return puglPasteFromClipboard(_view); } virtual PuglStatus waitForEvent() { return puglWaitForEvent(_view); } virtual PuglStatus processEvents() { return puglProcessEvents(_view); } virtual void postRedisplay() { puglPostRedisplay(_view); } |