diff MessageOrganiser.h @ 43:4ad0d218f890

can skip runs if it crashed etc.
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Mon, 15 Dec 2014 12:51:09 +0000
parents fea11c3d1d94
children 2396eb9dcddd
line wrap: on
line diff
--- a/MessageOrganiser.h	Mon Dec 08 18:29:10 2014 +0000
+++ b/MessageOrganiser.h	Mon Dec 15 12:51:09 2014 +0000
@@ -67,10 +67,12 @@
     void setControlPanel(SliderPanel* p);
     void setBottomPanel(ButtonPanel * ntb);
     void setIconPanel(IconPanel * ip);
+    void setSkipButton(Buttron* b);
     void setInstructionPanel(TextPanel * ip);
     void setSeqNumPanel(TextPanel * snp);
     void setScoreNumPanel(TextPanel * snp);
     void setDistanceSlider(ButtronSlider * s);
+    void setMiddlePanel(TextPanel* tp);
     //-----------------------------------------------------------------------------
     void hideMyPanels();
     void showMyPanels();
@@ -88,6 +90,7 @@
     TextPanel* instructionPanel;
     TextPanel * seqNumPanel;
     TextPanel * scoreNumPanel;
+    TextPanel* middlePanel;
     map<int,UIElement*> currentMapping; // could get more sophisticated if not 1-1 ?
     
     vector<int> getMappingIDsFromSynths();
@@ -119,5 +122,7 @@
     bool okToGetMidi;
     controlPanelType panelType;
     ButtronSlider * distanceSlider;
+    Buttron* skipButton;
+    
 };