diff options
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; }; |
