summaryrefslogtreecommitdiff
path: root/liveengine/src/testApp.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2012-09-14 19:24:39 +0100
committerTim Redfern <tim@eclectronics.org>2012-09-14 19:24:39 +0100
commit4fda3af17e55c0afff35b3f3ebbe5b4fd1ffad7e (patch)
treeca47926461a8c7176c3542ff7734ec74833abdba /liveengine/src/testApp.h
parent639dfe9190c06bba4dced32f282ad1fddc573b59 (diff)
working nicely multiscreen
Diffstat (limited to 'liveengine/src/testApp.h')
-rwxr-xr-xliveengine/src/testApp.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/liveengine/src/testApp.h b/liveengine/src/testApp.h
index a556038..5e050da 100755
--- a/liveengine/src/testApp.h
+++ b/liveengine/src/testApp.h
@@ -58,6 +58,10 @@ non random colours
option to randomise colours on each note
+--make transparent
+
+--interface for exploring and saving - swapping?
+
*/
@@ -85,7 +89,7 @@ public:
ofFbo *rb;
void setup();
void setBuffer(ofFbo *buffer);
- void draw();
+ void draw();
};
//#define GRAB_TEXTURE
@@ -109,8 +113,8 @@ class testApp : public ofxFensterListener, public ofxMidiListener{
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
- void mouseMovedEvent(ofMouseEventArgs &args);
- void keyPressedEvent(ofKeyEventArgs &args);
+ void mousePressedEvent(ofMouseEventArgs &args);
+ void keyPressedEvent(ofKeyEventArgs &args);
void makeColours();
@@ -122,8 +126,13 @@ class testApp : public ofxFensterListener, public ofxMidiListener{
unsigned char* controllers;
int note, mode;
+ //to be moved into svg object gui
+
bool debug, controlColours;
bool noteRandomiseColours;
+ bool transparentBlack;
+
+ bool fullscreenoutput;
float lastnoteTime;
float decayTime;
@@ -136,7 +145,7 @@ class testApp : public ofxFensterListener, public ofxMidiListener{
ofColor* controller_colours;
- ofFbo rb1,rb2;
+ ofFbo rb1,rb2,rb3,rb4; //2 buffers * 2 outputs
previewWindow prevWin;