Changeset 14077 for trunk


Ignore:
Timestamp:
06/05/12 14:22:22 (12 years ago)
Author:
lyard
Message:
added the play pixel radio button
Location:
trunk/FACT++/gui/RawEventsViewer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc

    r14076 r14077  
    975975    animateGroup.addButton(playEventsRadio);
    976976    animateGroup.addButton(playSlicesRadio);
     977    animateGroup.addButton(playPixelsRadio);
    977978
    978979    entireCameraScale->setChecked(true);
     
    10861087        GLWindow->eventStepping(true);
    10871088    else
    1088         GLWindow->nextSlice();
     1089        if (playPixelsRadio->isChecked())
     1090            GLWindow->setCurrentPixel((GLWindow->getCurrentPixel()+1)%1440);
     1091        else
     1092            GLWindow->nextSlice();
    10891093}
    10901094
  • trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.h

    r12917 r14077  
    8383                                                     const int roi,
    8484                                                     const int roiTM);
    85 
     85    int getCurrentPixel(){return selectedPixel;}
    8686public Q_SLOTS:
    8787    void plusEvent();
     
    9191    void previousSlice();
    9292    void setCurrentPixel(int);
     93
    9394
    9495Q_SIGNALS:
  • trunk/FACT++/gui/RawEventsViewer/viewer.ui

    r12917 r14077  
    88    <y>0</y>
    99    <width>984</width>
    10     <height>712</height>
     10    <height>757</height>
    1111   </rect>
    1212  </property>
     
    11371137       <layout class="QHBoxLayout" name="horizontalLayout_5">
    11381138        <item>
     1139         <widget class="QRadioButton" name="playSlicesRadio">
     1140          <property name="text">
     1141           <string>play Slices</string>
     1142          </property>
     1143          <property name="checked">
     1144           <bool>true</bool>
     1145          </property>
     1146         </widget>
     1147        </item>
     1148        <item>
    11391149         <widget class="QRadioButton" name="playEventsRadio">
    11401150          <property name="text">
    11411151           <string>play Events</string>
     1152          </property>
     1153         </widget>
     1154        </item>
     1155        <item>
     1156         <widget class="QRadioButton" name="playPixelsRadio">
     1157          <property name="text">
     1158           <string>play Pixels</string>
    11421159          </property>
    11431160         </widget>
     
    11801197      </item>
    11811198      <item row="1" column="8">
    1182        <layout class="QHBoxLayout" name="horizontalLayout_4">
    1183         <item>
    1184          <widget class="QRadioButton" name="playSlicesRadio">
    1185           <property name="text">
    1186            <string>play Slices</string>
    1187           </property>
    1188           <property name="checked">
    1189            <bool>true</bool>
    1190           </property>
    1191          </widget>
    1192         </item>
    1193        </layout>
     1199       <layout class="QHBoxLayout" name="horizontalLayout_4"/>
    11941200      </item>
    11951201     </layout>
Note: See TracChangeset for help on using the changeset viewer.