Changeset 10953 for trunk/FACT++/gui


Ignore:
Timestamp:
06/09/11 16:23:48 (13 years ago)
Author:
tbretz
Message:
Added the possibility to disable all patches/pixels except one.
Location:
trunk/FACT++/gui
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/FactGui.h

    r10950 r10953  
    18411841                cout << "Select: " << idx << endl;
    18421842
     1843                fPixelIdx->setValue(idx);
    18431844                ChoosePixel(*cam, idx);
    18441845
    1845                 fPixelIdx->setValue(idx);
    18461846            }
    18471847            return;
  • trunk/FACT++/gui/MainWindow.cc

    r10936 r10953  
    247247void MainWindow::on_fPixelEnable_stateChanged(int b)
    248248{
    249     cout << "PIXEL: " << fPixelIdx->value() << " " << b << endl;
    250249    if (!fInHandler)
    251250        Dim::SendCommand(b==Qt::Unchecked ?
    252251                         "FTM_CONTROL/DISABLE_PIXEL" : "FTM_CONTROL/ENABLE_PIXEL",
    253252                         uint16_t(fPixelIdx->value()));
     253}
     254
     255void MainWindow::on_fPixelDisableOthers_clicked()
     256{
     257    Dim::SendCommand("FTM_CONTROL/DISABLE_ALL_PIXELS_EXCEPT",
     258                     uint16_t(fPixelIdx->value()));
     259}
     260
     261void MainWindow::on_fThresholdDisableOthers_clicked()
     262{
     263    Dim::SendCommand("FTM_CONTROL/DISABLE_ALL_PATCHES_EXCEPT",
     264                     uint16_t(fThresholdIdx->value()));
    254265}
    255266
  • trunk/FACT++/gui/MainWindow.h

    r10948 r10953  
    9393    virtual void on_fPixelIdx_valueChanged(int) { }
    9494
     95    void on_fPixelDisableOthers_clicked();
     96    virtual void on_fThresholdDisableOthers_clicked();
     97
    9598    virtual void on_fRatePatch1_valueChanged(int) { }
    9699    virtual void on_fRatePatch2_valueChanged(int) { }
  • trunk/FACT++/gui/design.ui

    r10948 r10953  
    24912491              </item>
    24922492              <item>
     2493               <layout class="QHBoxLayout" name="horizontalLayout_22">
     2494                <property name="topMargin">
     2495                 <number>0</number>
     2496                </property>
     2497                <item>
     2498                 <spacer name="horizontalSpacer_29">
     2499                  <property name="orientation">
     2500                   <enum>Qt::Horizontal</enum>
     2501                  </property>
     2502                  <property name="sizeType">
     2503                   <enum>QSizePolicy::Minimum</enum>
     2504                  </property>
     2505                  <property name="sizeHint" stdset="0">
     2506                   <size>
     2507                    <width>40</width>
     2508                    <height>20</height>
     2509                   </size>
     2510                  </property>
     2511                 </spacer>
     2512                </item>
     2513                <item>
     2514                 <widget class="QPushButton" name="fPixelDisableOthers">
     2515                  <property name="text">
     2516                   <string>Disable others</string>
     2517                  </property>
     2518                 </widget>
     2519                </item>
     2520               </layout>
     2521              </item>
     2522              <item>
    24932523               <spacer name="verticalSpacer_16">
    24942524                <property name="orientation">
     
    25342564                </property>
    25352565               </widget>
     2566              </item>
     2567              <item>
     2568               <layout class="QHBoxLayout" name="horizontalLayout_23">
     2569                <property name="topMargin">
     2570                 <number>0</number>
     2571                </property>
     2572                <item>
     2573                 <spacer name="horizontalSpacer_31">
     2574                  <property name="orientation">
     2575                   <enum>Qt::Horizontal</enum>
     2576                  </property>
     2577                  <property name="sizeType">
     2578                   <enum>QSizePolicy::Minimum</enum>
     2579                  </property>
     2580                  <property name="sizeHint" stdset="0">
     2581                   <size>
     2582                    <width>40</width>
     2583                    <height>20</height>
     2584                   </size>
     2585                  </property>
     2586                 </spacer>
     2587                </item>
     2588                <item>
     2589                 <widget class="QPushButton" name="fThresholdDisableOthers">
     2590                  <property name="text">
     2591                   <string>Disable others</string>
     2592                  </property>
     2593                 </widget>
     2594                </item>
     2595               </layout>
    25362596              </item>
    25372597              <item>
     
    25892649                 <widget class="QLabel" name="label_130">
    25902650                  <property name="text">
    2591                    <string>Patch ID</string>
     2651                   <string>Patch</string>
     2652                  </property>
     2653                 </widget>
     2654                </item>
     2655                <item row="0" column="0">
     2656                 <widget class="QLabel" name="label_132">
     2657                  <property name="text">
     2658                   <string>Crate</string>
    25922659                  </property>
    25932660                 </widget>
     
    25962663                 <widget class="QLabel" name="label_131">
    25972664                  <property name="text">
    2598                    <string>Board ID</string>
    2599                   </property>
    2600                  </widget>
    2601                 </item>
    2602                 <item row="0" column="0">
    2603                  <widget class="QLabel" name="label_132">
    2604                   <property name="text">
    2605                    <string>Crate ID</string>
     2665                   <string>Board</string>
    26062666                  </property>
    26072667                 </widget>
Note: See TracChangeset for help on using the changeset viewer.