diff options
| author | Tim Redfern <tim@getdrop.com> | 2022-10-09 12:51:01 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2022-10-09 12:51:01 +0100 |
| commit | c75c17685a646e90d772c2d6ea4de7c2d0d250b6 (patch) | |
| tree | b6c8b0add8651f5d89ff614e647544faf25c9d80 /pluginchooser/src/ofApp.h | |
| parent | 33a8310b5d5e51c6262d63a8b6679dd129abecc0 (diff) | |
new plugin chooser
Diffstat (limited to 'pluginchooser/src/ofApp.h')
| -rw-r--r-- | pluginchooser/src/ofApp.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pluginchooser/src/ofApp.h b/pluginchooser/src/ofApp.h new file mode 100644 index 0000000..8d716c1 --- /dev/null +++ b/pluginchooser/src/ofApp.h @@ -0,0 +1,27 @@ +#pragma once + +#include "ofMain.h" +#include "pluginpanel.h" + +class ofApp: public ofBaseApp{ + + public: + void setup(); + void update(); + void draw(); + void exit(); + + void keyPressed(ofKeyEventArgs &keyargs); + void keyReleased(ofKeyEventArgs & args); + void mouseMoved(int x, int y ); + void mouseDragged(int x, int y, int button); + void mousePressed(int x, int y, int button); + void mouseReleased(int x, int y, int button); + void mouseEntered(int x, int y); + void mouseExited(int x, int y); + void windowResized(int w, int h); + void dragEvent(ofDragInfo dragInfo); + + pluginPanel plugingui; + +}; |
