--------------------------------------------------------------
| 244 | |
| 245 | //-------------------------------------------------------------- |
| 246 | void testApp::mouseDragged(int x, int y, int button){ |
| 247 | if(draggingSeek){ |
| 248 | seekPercent = ofMap(x, seekRect.getMinX(), seekRect.getMaxX(), 0, 1.0, true); |
| 249 | clearArgs(); |
| 250 | commandInput->setTextString("/duration/seektoposition"); |
| 251 | arg1->setTextString(ofToString(seekPercent, 4)); |
| 252 | sendCurrentCommand(); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | //-------------------------------------------------------------- |
| 257 | void testApp::mousePressed(int x, int y, int button){ |
nothing calls this directly
no outgoing calls
no test coverage detected