diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-02-03 11:10:20 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-02-03 11:10:20 +0000 |
| commit | 022563c4bdc832b1177ed12ef0bac7f85912db95 (patch) | |
| tree | 82db9c1fb31edc38f1b0b6e7e61a27ed1aaba77a /gui/src/ofApp.h | |
| parent | 218003c711daf5e20fab77ee9b3ada67e2637922 (diff) | |
scan repositioning
Diffstat (limited to 'gui/src/ofApp.h')
| -rw-r--r-- | gui/src/ofApp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/src/ofApp.h b/gui/src/ofApp.h index fd0bcc3..5ecbe61 100644 --- a/gui/src/ofApp.h +++ b/gui/src/ofApp.h @@ -27,7 +27,7 @@ class ofApp: public ofBaseApp { void exit(); void keyPressed(ofKeyEventArgs &keyargs); - void keyReleased(int key); + 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); @@ -40,6 +40,7 @@ class ofApp: public ofBaseApp { void updateOutput(ofEventArgs & args); void drawOutput(ofEventArgs & args); void outputKeyPressed(ofKeyEventArgs & args); + void outputKeyReleased(ofKeyEventArgs & args); void outputMouseDragged(ofMouseEventArgs & args); void outputMousePressed(ofMouseEventArgs & args); void outputMouseReleased(ofMouseEventArgs & args); @@ -111,5 +112,6 @@ class ofApp: public ofBaseApp { ofPoint outputPosition; ofPoint outputOffset; float outputScale; + float outputOffsetScale; }; |
