Show
Ignore:
Timestamp:
04/20/08 16:51:50 (16 years ago)
Author:
jwoithe
Message:

MOTU updates:

  • cleanup of "define" namespace. All MOTU-related defines now start with "MOTU_" rather than a mix of this and "MOTUFW_".
  • Significant cleanup of motu mixer UI definition and python code. Far less glue code is now needed.
  • Use generic binary switch control in mixer dbus interface where possibe.
  • Implement proof-of-concept input level/boost switches.
  • Provide mechanism to feed some device status back to the mixer application. Currently this is done only at startup but in time we'll need a way to poll for some of it as the mixer runs.
  • When streaming is active, disable controls whose operation is incompatible with an active streaming system.
  • Adapt active channels in the mixer to the current device state. The handling of optical input mode is still to be done.
  • Minor updates to MOTU protocol documentation.
  • Whitespace cleanup in mixer_motu.py for consistency with the "tab is 4 spaces" rule used elsewhere in FFADO's source code.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/mixer/mixer_motu.py

    r995 r1003  
    2929        MotuMixerUI.__init__(self,parent,name,modal,fl) 
    3030 
    31     # public slots: mix1 faders 
    32     def set_mix1ana1_fader(self,a0): 
    33         self.setChannelFader('mix1ana1', a0) 
    34     def set_mix1ana2_fader(self,a0): 
    35         self.setChannelFader('mix1ana2', a0) 
    36     def set_mix1ana3_fader(self,a0): 
    37         self.setChannelFader('mix1ana3', a0) 
    38     def set_mix1ana4_fader(self,a0): 
    39         self.setChannelFader('mix1ana4', a0) 
    40     def set_mix1ana5_fader(self,a0): 
    41         self.setChannelFader('mix1ana5', a0) 
    42     def set_mix1ana6_fader(self,a0): 
    43         self.setChannelFader('mix1ana6', a0) 
    44     def set_mix1ana7_fader(self,a0): 
    45         self.setChannelFader('mix1ana7', a0) 
    46     def set_mix1ana8_fader(self,a0): 
    47         self.setChannelFader('mix1ana8', a0) 
    48  
    49     # public slots: mix1 pan 
    50     def set_mix1ana1_pan(self,a0): 
    51         self.setChannelPan('mix1ana1', a0) 
    52     def set_mix1ana2_pan(self,a0): 
    53         self.setChannelPan('mix1ana2', a0) 
    54     def set_mix1ana3_pan(self,a0): 
    55         self.setChannelPan('mix1ana3', a0) 
    56     def set_mix1ana4_pan(self,a0): 
    57         self.setChannelPan('mix1ana4', a0) 
    58     def set_mix1ana5_pan(self,a0): 
    59         self.setChannelPan('mix1ana5', a0) 
    60     def set_mix1ana6_pan(self,a0): 
    61         self.setChannelPan('mix1ana6', a0) 
    62     def set_mix1ana7_pan(self,a0): 
    63         self.setChannelPan('mix1ana7', a0) 
    64     def set_mix1ana8_pan(self,a0): 
    65         self.setChannelPan('mix1ana8', a0) 
    66  
    67     # public slots: mix1 mute 
    68     def set_mix1ana1_mute(self,a0): 
    69         self.setChannelMute('mix1ana1', a0) 
    70     def set_mix1ana2_mute(self,a0): 
    71         self.setChannelMute('mix1ana2', a0) 
    72     def set_mix1ana3_mute(self,a0): 
    73         self.setChannelMute('mix1ana3', a0) 
    74     def set_mix1ana4_mute(self,a0): 
    75         self.setChannelMute('mix1ana4', a0) 
    76     def set_mix1ana5_mute(self,a0): 
    77         self.setChannelMute('mix1ana5', a0) 
    78     def set_mix1ana6_mute(self,a0): 
    79         self.setChannelMute('mix1ana6', a0) 
    80     def set_mix1ana7_mute(self,a0): 
    81         self.setChannelMute('mix1ana7', a0) 
    82     def set_mix1ana8_mute(self,a0): 
    83         self.setChannelMute('mix1ana8', a0) 
    84  
    85     # public slots: mix1 solo 
    86     def set_mix1ana1_solo(self,a0): 
    87         self.setChannelSolo('mix1ana1', a0) 
    88     def set_mix1ana2_solo(self,a0): 
    89         self.setChannelSolo('mix1ana2', a0) 
    90     def set_mix1ana3_solo(self,a0): 
    91         self.setChannelSolo('mix1ana3', a0) 
    92     def set_mix1ana4_solo(self,a0): 
    93         self.setChannelSolo('mix1ana4', a0) 
    94     def set_mix1ana5_solo(self,a0): 
    95         self.setChannelSolo('mix1ana5', a0) 
    96     def set_mix1ana6_solo(self,a0): 
    97         self.setChannelSolo('mix1ana6', a0) 
    98     def set_mix1ana7_solo(self,a0): 
    99         self.setChannelSolo('mix1ana7', a0) 
    100     def set_mix1ana8_solo(self,a0): 
    101         self.setChannelSolo('mix1ana8', a0) 
     31    # public slot: channel/mix faders 
     32    def updateFader(self, a0): 
     33        sender = self.sender() 
     34        vol = 128-a0 
     35        print "setting %s channel/mix fader to %d" % (self.ChannelFaders[sender][0], vol) 
     36        self.hw.setDiscrete(self.ChannelFaders[sender][0], vol) 
     37 
     38    # public slot: channel pan 
     39    def updatePan(self, a0): 
     40        sender = self.sender() 
     41        pan = a0 
     42        print "setting %s channel pan to %d" % (self.ChannelPans[sender][0], pan) 
     43        self.hw.setDiscrete(self.ChannelPans[sender][0], pan) 
     44 
     45    # public slot: generic binary switch 
     46    def updateBinarySwitch(self, a0): 
     47        sender = self.sender() 
     48        val=a0 
     49        print "setting %s switch to %d" % (self.BinarySwitches[sender][0], val) 
     50        self.hw.setDiscrete(self.BinarySwitches[sender][0], val) 
     51 
     52    # public slot: mix destination control 
     53    def updateMixDest(self, a0): 
     54        sender = self.sender() 
     55        dest=a0 
     56        print "setting %s mix destination to %d" % (self.MixDests[sender][0], dest) 
     57        self.hw.setDiscrete(self.MixDests[sender][0], dest) 
    10258 
    10359    # public slots: mix output controls 
    104     def set_mix1_fader(self,a0): 
    105         self.setChannelFader('mix1', a0) 
    106     def set_mix1_mute(self,a0): 
    107         self.setChannelMute('mix1', a0) 
    10860    def set_mix1_dest(self,a0): 
    10961        self.setMixDest('mix1', a0) 
    11062 
    111     def setChannelFader(self,a0,a1): 
    112             name=a0 
    113             vol = 128-a1 
    114             print "setting %s channel/mix fader to %d" % (name, vol) 
    115             self.hw.setDiscrete(self.ChannelFaders[name][0], vol) 
    116  
    117     def setChannelPan(self,a0,a1): 
    118             name=a0 
    119             pan = a1 
    120             print "setting %s channel pan to %d" % (name, pan) 
    121             self.hw.setDiscrete(self.ChannelPans[name][0], pan) 
    122  
    123     def setChannelMute(self,a0,a1): 
    124             name=a0 
    125             mute=a1 
    126             print "setting %s channel/mix mute to %d" % (name, mute) 
    127             self.hw.setDiscrete(self.ChannelMutes[name][0], mute) 
    128  
    129     def setChannelSolo(self,a0,a1): 
    130             name=a0 
    131             solo=a1 
    132             print "setting %s channel solo to %d" % (name, solo) 
    133             self.hw.setDiscrete(self.ChannelSolos[name][0], solo) 
    134  
    135     def setMixDest(self,a0,a1): 
    136             name=a0 
    137             dest=a1 
    138             print "setting %s mix destination to %d" % (name, dest) 
    139             self.hw.setDiscrete(self.MixDests[name][0], dest) 
    140  
    14163    def setSelector(self,a0,a1): 
    142             name=a0 
    143             state = a1 
    144             print "setting %s state to %d" % (name, state) 
    145             self.hw.setDiscrete(self.SelectorControls[name][0], state) 
     64        name=a0 
     65        state = a1 
     66        print "setting %s state to %d" % (name, state) 
     67        self.hw.setDiscrete(self.SelectorControls[name][0], state) 
    14668 
    14769    def init(self): 
    148             print "Init MOTU mixer window" 
    149  
    150             self.ChannelFaders={ 
    151                 'mix1ana1':    ['/Mixer/Mix1/Ana1_fader', self.mix1ana1_fader],  
    152                 'mix1ana2':    ['/Mixer/Mix1/Ana2_fader', self.mix1ana2_fader],  
    153                 'mix1ana3':    ['/Mixer/Mix1/Ana3_fader', self.mix1ana3_fader],  
    154                 'mix1ana4':    ['/Mixer/Mix1/Ana4_fader', self.mix1ana4_fader],  
    155                 'mix1ana5':    ['/Mixer/Mix1/Ana5_fader', self.mix1ana5_fader],  
    156                 'mix1ana6':    ['/Mixer/Mix1/Ana6_fader', self.mix1ana6_fader],  
    157                 'mix1ana7':    ['/Mixer/Mix1/Ana7_fader', self.mix1ana7_fader],  
    158                 'mix1ana8':    ['/Mixer/Mix1/Ana8_fader', self.mix1ana8_fader],  
    159                 'mix1':        ['/Mixer/Mix1/Mix_fader',  self.mix1_fader], 
    160                 } 
    161  
    162             self.ChannelPans={ 
    163                 'mix1ana1':    ['/Mixer/Mix1/Ana1_pan', self.mix1ana1_pan], 
    164                 'mix1ana2':    ['/Mixer/Mix1/Ana2_pan', self.mix1ana2_pan], 
    165                 'mix1ana3':    ['/Mixer/Mix1/Ana3_pan', self.mix1ana3_pan], 
    166                 'mix1ana4':    ['/Mixer/Mix1/Ana4_pan', self.mix1ana4_pan], 
    167                 'mix1ana5':    ['/Mixer/Mix1/Ana5_pan', self.mix1ana5_pan], 
    168                 'mix1ana6':    ['/Mixer/Mix1/Ana6_pan', self.mix1ana6_pan], 
    169                 'mix1ana7':    ['/Mixer/Mix1/Ana7_pan', self.mix1ana7_pan], 
    170                 'mix1ana8':    ['/Mixer/Mix1/Ana8_pan', self.mix1ana8_pan], 
     70        print "Init MOTU mixer window" 
     71 
     72        self.ChannelFaders={ 
     73            self.mix1ana1_fader: ['/Mixer/Mix1/Ana1_fader'], 
     74            self.mix1ana2_fader: ['/Mixer/Mix1/Ana2_fader'], 
     75            self.mix1ana3_fader: ['/Mixer/Mix1/Ana3_fader'], 
     76            self.mix1ana4_fader: ['/Mixer/Mix1/Ana4_fader'], 
     77            self.mix1ana5_fader: ['/Mixer/Mix1/Ana5_fader'], 
     78            self.mix1ana6_fader: ['/Mixer/Mix1/Ana6_fader'], 
     79            self.mix1ana7_fader: ['/Mixer/Mix1/Ana7_fader'], 
     80            self.mix1ana8_fader: ['/Mixer/Mix1/Ana8_fader'], 
     81            self.mix1_fader: ['/Mixer/Mix1/Mix_fader'], 
    17182            } 
    17283 
    173             self.ChannelMutes={ 
    174                 'mix1ana1':    ['/Mixer/Mix1/Ana1_mute', self.mix1ana1_mute], 
    175                 'mix1ana2':    ['/Mixer/Mix1/Ana2_mute', self.mix1ana2_mute], 
    176                 'mix1ana3':    ['/Mixer/Mix1/Ana3_mute', self.mix1ana3_mute], 
    177                 'mix1ana4':    ['/Mixer/Mix1/Ana4_mute', self.mix1ana4_mute], 
    178                 'mix1ana5':    ['/Mixer/Mix1/Ana5_mute', self.mix1ana5_mute], 
    179                 'mix1ana6':    ['/Mixer/Mix1/Ana6_mute', self.mix1ana6_mute], 
    180                 'mix1ana7':    ['/Mixer/Mix1/Ana7_mute', self.mix1ana7_mute], 
    181                 'mix1ana8':    ['/Mixer/Mix1/Ana8_mute', self.mix1ana8_mute], 
    182                 'mix1':        ['/Mixer/Mix1/Mix_mute',  self.mix1_mute], 
    183             } 
    184  
    185             self.ChannelSolos={ 
    186                 'mix1ana1':    ['/Mixer/Mix1/Ana1_solo', self.mix1ana1_solo], 
    187                 'mix1ana2':    ['/Mixer/Mix1/Ana2_solo', self.mix1ana2_solo], 
    188                 'mix1ana3':    ['/Mixer/Mix1/Ana3_solo', self.mix1ana3_solo], 
    189                 'mix1ana4':    ['/Mixer/Mix1/Ana4_solo', self.mix1ana4_solo], 
    190                 'mix1ana5':    ['/Mixer/Mix1/Ana5_solo', self.mix1ana5_solo], 
    191                 'mix1ana6':    ['/Mixer/Mix1/Ana6_solo', self.mix1ana6_solo], 
    192                 'mix1ana7':    ['/Mixer/Mix1/Ana7_solo', self.mix1ana7_solo], 
    193                 'mix1ana8':    ['/Mixer/Mix1/Ana8_solo', self.mix1ana8_solo], 
    194             } 
    195  
    196             self.MixDests={ 
    197                 'mix1':        ['/Mixer/Mix1/Mix_dest',  self.mix1_dest], 
    198             } 
    199  
    200             self.SelectorControls={ 
    201  
    202             } 
     84        self.ChannelPans={ 
     85            self.mix1ana1_pan:   ['/Mixer/Mix1/Ana1_pan'], 
     86            self.mix1ana2_pan:   ['/Mixer/Mix1/Ana2_pan'], 
     87            self.mix1ana3_pan:   ['/Mixer/Mix1/Ana3_pan'], 
     88            self.mix1ana4_pan:   ['/Mixer/Mix1/Ana4_pan'], 
     89            self.mix1ana5_pan:   ['/Mixer/Mix1/Ana5_pan'], 
     90            self.mix1ana6_pan:   ['/Mixer/Mix1/Ana6_pan'], 
     91            self.mix1ana7_pan:   ['/Mixer/Mix1/Ana7_pan'], 
     92            self.mix1ana8_pan:   ['/Mixer/Mix1/Ana8_pan'], 
     93        } 
     94 
     95        self.BinarySwitches={ 
     96            self.mix1ana1_mute:  ['/Mixer/Mix1/Ana1_mute'], 
     97            self.mix1ana2_mute:  ['/Mixer/Mix1/Ana2_mute'], 
     98            self.mix1ana3_mute:  ['/Mixer/Mix1/Ana3_mute'], 
     99            self.mix1ana4_mute:  ['/Mixer/Mix1/Ana4_mute'], 
     100            self.mix1ana5_mute:  ['/Mixer/Mix1/Ana5_mute'], 
     101            self.mix1ana6_mute:  ['/Mixer/Mix1/Ana6_mute'], 
     102            self.mix1ana7_mute:  ['/Mixer/Mix1/Ana7_mute'], 
     103            self.mix1ana8_mute:  ['/Mixer/Mix1/Ana8_mute'], 
     104            self.mix1_mute:  ['/Mixer/Mix1/Mix_mute'], 
     105            self.mix1ana1_solo:  ['/Mixer/Mix1/Ana1_solo'], 
     106            self.mix1ana2_solo:  ['/Mixer/Mix1/Ana2_solo'], 
     107            self.mix1ana3_solo:  ['/Mixer/Mix1/Ana3_solo'], 
     108            self.mix1ana4_solo:  ['/Mixer/Mix1/Ana4_solo'], 
     109            self.mix1ana5_solo:  ['/Mixer/Mix1/Ana5_solo'], 
     110            self.mix1ana6_solo:  ['/Mixer/Mix1/Ana6_solo'], 
     111            self.mix1ana7_solo:  ['/Mixer/Mix1/Ana7_solo'], 
     112            self.mix1ana8_solo:  ['/Mixer/Mix1/Ana8_solo'], 
     113            self.ana5_level:     ['/Mixer/Control/Ana5_level'], 
     114            self.ana6_level:     ['/Mixer/Control/Ana6_level'], 
     115            self.ana7_level:     ['/Mixer/Control/Ana7_level'], 
     116            self.ana8_level:     ['/Mixer/Control/Ana8_level'], 
     117            self.ana5_boost:     ['/Mixer/Control/Ana5_boost'], 
     118            self.ana6_boost:     ['/Mixer/Control/Ana6_boost'], 
     119            self.ana7_boost:     ['/Mixer/Control/Ana7_boost'], 
     120            self.ana8_boost:     ['/Mixer/Control/Ana8_boost'], 
     121        } 
     122 
     123        self.MixDests={ 
     124            self.mix1_dest:      ['/Mixer/Mix1/Mix_dest'], 
     125        } 
     126 
     127        self.SelectorControls={ 
     128 
     129        } 
     130 
     131        # Other mixer variables 
     132        self.is_streaming = 0 
     133        self.sample_rate = 0 
    203134 
    204135    def initValues(self): 
    205             for name, ctrl in self.ChannelFaders.iteritems(): 
    206                 vol = 128-self.hw.getDiscrete(ctrl[0]) 
    207                 print "%s channel fader is %d" % (name , vol) 
    208                 ctrl[1].setValue(vol) 
    209             for name, ctrl in self.ChannelPans.iteritems(): 
    210                 pan = self.hw.getDiscrete(ctrl[0]) 
    211                 print "%s channel pan is %d" % (name , pan) 
    212                 ctrl[1].setValue(pan) 
    213             for name, ctrl in self.ChannelMutes.iteritems(): 
    214                 mute = self.hw.getDiscrete(ctrl[0]) 
    215                 print "%s channel mute is %d" % (name , mute) 
    216                 ctrl[1].setChecked(mute) 
    217             for name, ctrl in self.ChannelSolos.iteritems(): 
    218                 solo = self.hw.getDiscrete(ctrl[0]) 
    219                 print "%s channel solo is %d" % (name , solo) 
    220                 ctrl[1].setChecked(solo) 
    221             for name, ctrl in self.MixDests.iteritems(): 
    222                 dest = self.hw.getDiscrete(ctrl[0]) 
    223                 print "%s mix destination is %d" % (name , dest) 
    224                 ctrl[1].setCurrentItem(dest) 
    225  
    226             for name, ctrl in self.SelectorControls.iteritems(): 
    227                 state = self.hw.getDiscrete(ctrl[0]) 
    228                 print "%s state is %d" % (name , state) 
    229                 ctrl[1].setCurrentItem(state)     
     136        # Is the device streaming? 
     137        self.is_streaming = self.hw.getDiscrete('/Mixer/Info/IsStreaming') 
     138        print "device streaming flag: %d" % (self.is_streaming) 
     139 
     140        # Retrieve other device settings as needed 
     141        self.sample_rate = self.hw.getDiscrete('/Mixer/Info/SampleRate') 
     142        print "device sample rate: %d" % (self.sample_rate) 
     143        self.has_mic_inputs = self.hw.getDiscrete('/Mixer/Info/HasMicInputs') 
     144        print "device has mic inputs: %d" % (self.has_mic_inputs) 
     145        self.has_aesebu_inputs = self.hw.getDiscrete('/Mixer/Info/HasAESEBUInputs') 
     146        print "device has AES/EBU inputs: %d" % (self.has_aesebu_inputs) 
     147        self.has_spdif_inputs = self.hw.getDiscrete('/Mixer/Info/HasSPDIFInputs') 
     148        print "device has SPDIF inputs: %d" % (self.has_spdif_inputs) 
     149 
     150        # Customise the UI based on device options retrieved 
     151        if (self.has_mic_inputs): 
     152            # Mic input controls displace AES/EBU since no current device 
     153            # has both. 
     154            self.mix1_aes_group.setTitle("Mic inputs") 
     155            # FIXME: when implmented, will mic channels just reuse the AES/EBU 
     156            # dbus path?  If not we'll have to reset the respective values in 
     157            # the control arrays (self.ChannelFaders etc). 
     158        else: 
     159            if (not(self.has_aesebu_inputs)): 
     160                self.mix1_aes_group.setEnabled(False) 
     161        if (not(self.has_spdif_inputs)): 
     162            self.mix1_spdif_group.setEnabled(False) 
     163 
     164        # Some controls must be disabled if the device is streaming 
     165        if (self.is_streaming): 
     166            print "Disabling controls which require inactive streaming" 
     167            self.optical_in_mode.setEnabled(False) 
     168            self.optical_out_mode.setEnabled(False) 
     169 
     170        # Some channels aren't available at higher sampling rates 
     171        if (self.sample_rate > 96000): 
     172            print "Disabling controls not present above 96 kHz" 
     173            self.mix1_adat_group.setEnabled(False) 
     174            self.mix1_aes_group.setEnabled(False) 
     175            self.mix1_spdif_group.setEnabled(False) 
     176        if (self.sample_rate > 48000): 
     177            print "Disabling controls not present above 48 kHz" 
     178            self.mix1_adat58_group.setEnabled(False) 
     179 
     180        # Now fetch the current values into the respective controls.  Don't 
     181        # bother fetching controls which are disabled. 
     182        for ctrl, info in self.ChannelFaders.iteritems(): 
     183            if (not(ctrl.isEnabled())): 
     184                continue 
     185            vol = 128-self.hw.getDiscrete(info[0]) 
     186            print "%s channel fader is %d" % (info[0] , vol) 
     187            ctrl.setValue(vol) 
     188            QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updateFader) 
     189 
     190        for ctrl, info in self.ChannelPans.iteritems(): 
     191            if (not(ctrl.isEnabled())): 
     192                continue 
     193            pan = self.hw.getDiscrete(info[0]) 
     194            print "%s channel pan is %d" % (info[0] , pan) 
     195            ctrl.setValue(pan) 
     196            QObject.connect(ctrl, SIGNAL('valueChanged(int)'), self.updatePan) 
     197 
     198        for ctrl, info in self.BinarySwitches.iteritems(): 
     199            if (not(ctrl.isEnabled())): 
     200                continue 
     201            val = self.hw.getDiscrete(info[0]) 
     202            print "%s switch is %d" % (info[0] , val) 
     203            ctrl.setChecked(val) 
     204            QObject.connect(ctrl, SIGNAL('toggled(bool)'), self.updateBinarySwitch) 
     205 
     206        for ctrl, info in self.MixDests.iteritems(): 
     207            if (not(ctrl.isEnabled())): 
     208                continue 
     209            dest = self.hw.getDiscrete(info[0]) 
     210            print "%s mix destination is %d" % (info[0] , dest) 
     211            ctrl.setCurrentItem(dest) 
     212            QObject.connect(ctrl, SIGNAL('activated(int)'), self.updateMixDest) 
     213 
     214        for name, ctrl in self.SelectorControls.iteritems(): 
     215            state = self.hw.getDiscrete(ctrl[0]) 
     216            print "%s state is %d" % (name , state) 
     217            ctrl[1].setCurrentItem(state)     
     218 
     219        # FIXME: If optical mode is not ADAT, disable ADAT controls here.  
     220        # It can't be done earlier because we need the current values of the 
     221        # ADAT channel controls in case the user goes ahead and enables the 
     222        # ADAT optical mode. 
  • trunk/libffado/support/mixer/mixer_motu.ui

    r995 r1003  
    3636    <widget class="QGroupBox"> 
    3737        <property name="name"> 
    38             <cstring>groupBox6</cstring> 
    39         </property> 
    40         <property name="geometry"> 
    41             <rect> 
    42                 <x>10</x> 
    43                 <y>0</y> 
    44                 <width>170</width> 
    45                 <height>530</height> 
    46             </rect> 
    47         </property> 
    48         <property name="title"> 
    49             <string>Input settings</string> 
    50         </property> 
    51         <widget class="QDial"> 
    52             <property name="name"> 
    53                 <cstring>mix1ana1_pan_2</cstring> 
    54             </property> 
    55             <property name="geometry"> 
    56                 <rect> 
    57                     <x>10</x> 
    58                     <y>30</y> 
    59                     <width>30</width> 
    60                     <height>30</height> 
    61                 </rect> 
    62             </property> 
    63             <property name="minValue"> 
    64                 <number>-64</number> 
    65             </property> 
    66             <property name="maxValue"> 
    67                 <number>64</number> 
    68             </property> 
    69         </widget> 
    70         <widget class="QDial"> 
    71             <property name="name"> 
    72                 <cstring>mix1ana1_pan_2_2</cstring> 
    73             </property> 
    74             <property name="geometry"> 
    75                 <rect> 
    76                     <x>50</x> 
    77                     <y>30</y> 
    78                     <width>30</width> 
    79                     <height>30</height> 
    80                 </rect> 
    81             </property> 
    82             <property name="minValue"> 
    83                 <number>-64</number> 
    84             </property> 
    85             <property name="maxValue"> 
    86                 <number>64</number> 
    87             </property> 
    88         </widget> 
    89         <widget class="QDial"> 
    90             <property name="name"> 
    91                 <cstring>mix1ana1_pan_2_3</cstring> 
    92             </property> 
    93             <property name="geometry"> 
    94                 <rect> 
    95                     <x>90</x> 
    96                     <y>30</y> 
    97                     <width>30</width> 
    98                     <height>30</height> 
    99                 </rect> 
    100             </property> 
    101             <property name="minValue"> 
    102                 <number>-64</number> 
    103             </property> 
    104             <property name="maxValue"> 
    105                 <number>64</number> 
    106             </property> 
    107         </widget> 
    108         <widget class="QDial"> 
    109             <property name="name"> 
    110                 <cstring>mix1ana1_pan_2_4</cstring> 
    111             </property> 
    112             <property name="geometry"> 
    113                 <rect> 
    114                     <x>130</x> 
    115                     <y>30</y> 
    116                     <width>30</width> 
    117                     <height>30</height> 
    118                 </rect> 
    119             </property> 
    120             <property name="minValue"> 
    121                 <number>-64</number> 
    122             </property> 
    123             <property name="maxValue"> 
    124                 <number>64</number> 
    125             </property> 
    126         </widget> 
    127         <widget class="QLabel"> 
    128             <property name="name"> 
    129                 <cstring>textLabel1_2_2_13</cstring> 
    130             </property> 
    131             <property name="geometry"> 
    132                 <rect> 
    133                     <x>10</x> 
    134                     <y>60</y> 
    135                     <width>31</width> 
    136                     <height>37</height> 
    137                 </rect> 
    138             </property> 
    139             <property name="font"> 
    140                 <font> 
    141                     <pointsize>9</pointsize> 
    142                 </font> 
    143             </property> 
    144             <property name="text"> 
    145                 <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
    146             </property> 
    147             <property name="alignment"> 
    148                 <set>WordBreak|AlignCenter</set> 
    149             </property> 
    150         </widget> 
    151         <widget class="QLabel"> 
    152             <property name="name"> 
    153                 <cstring>textLabel1_2_2_13_2</cstring> 
    154             </property> 
    155             <property name="geometry"> 
    156                 <rect> 
    157                     <x>50</x> 
    158                     <y>60</y> 
    159                     <width>31</width> 
    160                     <height>37</height> 
    161                 </rect> 
    162             </property> 
    163             <property name="font"> 
    164                 <font> 
    165                     <pointsize>9</pointsize> 
    166                 </font> 
    167             </property> 
    168             <property name="text"> 
    169                 <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
    170             </property> 
    171             <property name="alignment"> 
    172                 <set>WordBreak|AlignCenter</set> 
    173             </property> 
    174         </widget> 
    175         <widget class="QLabel"> 
    176             <property name="name"> 
    177                 <cstring>textLabel1_2_2_13_3</cstring> 
    178             </property> 
    179             <property name="geometry"> 
    180                 <rect> 
    181                     <x>90</x> 
    182                     <y>60</y> 
    183                     <width>31</width> 
    184                     <height>37</height> 
    185                 </rect> 
    186             </property> 
    187             <property name="font"> 
    188                 <font> 
    189                     <pointsize>9</pointsize> 
    190                 </font> 
    191             </property> 
    192             <property name="text"> 
    193                 <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
    194             </property> 
    195             <property name="alignment"> 
    196                 <set>WordBreak|AlignCenter</set> 
    197             </property> 
    198         </widget> 
    199         <widget class="QLabel"> 
    200             <property name="name"> 
    201                 <cstring>textLabel1_2_2_13_4</cstring> 
    202             </property> 
    203             <property name="geometry"> 
    204                 <rect> 
    205                     <x>130</x> 
    206                     <y>60</y> 
    207                     <width>31</width> 
    208                     <height>37</height> 
    209                 </rect> 
    210             </property> 
    211             <property name="font"> 
    212                 <font> 
    213                     <pointsize>9</pointsize> 
    214                 </font> 
    215             </property> 
    216             <property name="text"> 
    217                 <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
    218             </property> 
    219             <property name="alignment"> 
    220                 <set>WordBreak|AlignCenter</set> 
    221             </property> 
    222         </widget> 
    223         <widget class="QLabel"> 
    224             <property name="name"> 
    225                 <cstring>textLabel1_2_2_12_2</cstring> 
    226             </property> 
    227             <property name="geometry"> 
    228                 <rect> 
    229                     <x>50</x> 
    230                     <y>130</y> 
    231                     <width>37</width> 
    232                     <height>40</height> 
    233                 </rect> 
    234             </property> 
    235             <property name="font"> 
    236                 <font> 
    237                     <pointsize>9</pointsize> 
    238                 </font> 
    239             </property> 
    240             <property name="text"> 
    241                 <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
    242             </property> 
    243             <property name="alignment"> 
    244                 <set>WordBreak|AlignCenter</set> 
    245             </property> 
    246         </widget> 
    247         <widget class="QLabel"> 
    248             <property name="name"> 
    249                 <cstring>textLabel1_2_2_12_3</cstring> 
    250             </property> 
    251             <property name="geometry"> 
    252                 <rect> 
    253                     <x>90</x> 
    254                     <y>130</y> 
    255                     <width>37</width> 
    256                     <height>40</height> 
    257                 </rect> 
    258             </property> 
    259             <property name="font"> 
    260                 <font> 
    261                     <pointsize>9</pointsize> 
    262                 </font> 
    263             </property> 
    264             <property name="text"> 
    265                 <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
    266             </property> 
    267             <property name="alignment"> 
    268                 <set>WordBreak|AlignCenter</set> 
    269             </property> 
    270         </widget> 
    271         <widget class="QLabel"> 
    272             <property name="name"> 
    273                 <cstring>textLabel1_2_2_12_3_2</cstring> 
    274             </property> 
    275             <property name="geometry"> 
    276                 <rect> 
    277                     <x>130</x> 
    278                     <y>130</y> 
    279                     <width>37</width> 
    280                     <height>40</height> 
    281                 </rect> 
    282             </property> 
    283             <property name="font"> 
    284                 <font> 
    285                     <pointsize>9</pointsize> 
    286                 </font> 
    287             </property> 
    288             <property name="text"> 
    289                 <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
    290             </property> 
    291             <property name="alignment"> 
    292                 <set>WordBreak|AlignCenter</set> 
    293             </property> 
    294         </widget> 
    295         <widget class="QCheckBox"> 
    296             <property name="name"> 
    297                 <cstring>mix1ana1_mute_5</cstring> 
    298             </property> 
    299             <property name="geometry"> 
    300                 <rect> 
    301                     <x>140</x> 
    302                     <y>110</y> 
    303                     <width>20</width> 
    304                     <height>26</height> 
    305                 </rect> 
    306             </property> 
    307             <property name="sizePolicy"> 
    308                 <sizepolicy> 
    309                     <hsizetype>1</hsizetype> 
    310                     <vsizetype>0</vsizetype> 
    311                     <horstretch>0</horstretch> 
    312                     <verstretch>0</verstretch> 
    313                 </sizepolicy> 
    314             </property> 
    315             <property name="font"> 
    316                 <font> 
    317                     <pointsize>9</pointsize> 
    318                 </font> 
    319             </property> 
    320             <property name="text"> 
    321                 <string></string> 
    322             </property> 
    323         </widget> 
    324         <widget class="QCheckBox"> 
    325             <property name="name"> 
    326                 <cstring>mix1ana1_mute_4</cstring> 
    327             </property> 
    328             <property name="geometry"> 
    329                 <rect> 
    330                     <x>100</x> 
    331                     <y>110</y> 
    332                     <width>20</width> 
    333                     <height>26</height> 
    334                 </rect> 
    335             </property> 
    336             <property name="sizePolicy"> 
    337                 <sizepolicy> 
    338                     <hsizetype>1</hsizetype> 
    339                     <vsizetype>0</vsizetype> 
    340                     <horstretch>0</horstretch> 
    341                     <verstretch>0</verstretch> 
    342                 </sizepolicy> 
    343             </property> 
    344             <property name="font"> 
    345                 <font> 
    346                     <pointsize>9</pointsize> 
    347                 </font> 
    348             </property> 
    349             <property name="text"> 
    350                 <string></string> 
    351             </property> 
    352         </widget> 
    353         <widget class="QCheckBox"> 
    354             <property name="name"> 
    355                 <cstring>mix1ana1_mute_3</cstring> 
    356             </property> 
    357             <property name="geometry"> 
    358                 <rect> 
    359                     <x>60</x> 
    360                     <y>110</y> 
    361                     <width>20</width> 
    362                     <height>26</height> 
    363                 </rect> 
    364             </property> 
    365             <property name="sizePolicy"> 
    366                 <sizepolicy> 
    367                     <hsizetype>1</hsizetype> 
    368                     <vsizetype>0</vsizetype> 
    369                     <horstretch>0</horstretch> 
    370                     <verstretch>0</verstretch> 
    371                 </sizepolicy> 
    372             </property> 
    373             <property name="font"> 
    374                 <font> 
    375                     <pointsize>9</pointsize> 
    376                 </font> 
    377             </property> 
    378             <property name="text"> 
    379                 <string></string> 
    380             </property> 
    381         </widget> 
    382         <widget class="QCheckBox"> 
    383             <property name="name"> 
    384                 <cstring>mix1ana1_mute_2_2_2</cstring> 
    385             </property> 
    386             <property name="geometry"> 
    387                 <rect> 
    388                     <x>60</x> 
    389                     <y>180</y> 
    390                     <width>20</width> 
    391                     <height>26</height> 
    392                 </rect> 
    393             </property> 
    394             <property name="sizePolicy"> 
    395                 <sizepolicy> 
    396                     <hsizetype>1</hsizetype> 
    397                     <vsizetype>0</vsizetype> 
    398                     <horstretch>0</horstretch> 
    399                     <verstretch>0</verstretch> 
    400                 </sizepolicy> 
    401             </property> 
    402             <property name="font"> 
    403                 <font> 
    404                     <pointsize>9</pointsize> 
    405                 </font> 
    406             </property> 
    407             <property name="text"> 
    408                 <string></string> 
    409             </property> 
    410         </widget> 
    411         <widget class="QCheckBox"> 
    412             <property name="name"> 
    413                 <cstring>mix1ana1_mute_2_2_3</cstring> 
    414             </property> 
    415             <property name="geometry"> 
    416                 <rect> 
    417                     <x>100</x> 
    418                     <y>180</y> 
    419                     <width>20</width> 
    420                     <height>26</height> 
    421                 </rect> 
    422             </property> 
    423             <property name="sizePolicy"> 
    424                 <sizepolicy> 
    425                     <hsizetype>1</hsizetype> 
    426                     <vsizetype>0</vsizetype> 
    427                     <horstretch>0</horstretch> 
    428                     <verstretch>0</verstretch> 
    429                 </sizepolicy> 
    430             </property> 
    431             <property name="font"> 
    432                 <font> 
    433                     <pointsize>9</pointsize> 
    434                 </font> 
    435             </property> 
    436             <property name="text"> 
    437                 <string></string> 
    438             </property> 
    439         </widget> 
    440         <widget class="QCheckBox"> 
    441             <property name="name"> 
    442                 <cstring>mix1ana1_mute_2_2_4</cstring> 
    443             </property> 
    444             <property name="geometry"> 
    445                 <rect> 
    446                     <x>140</x> 
    447                     <y>180</y> 
    448                     <width>20</width> 
    449                     <height>26</height> 
    450                 </rect> 
    451             </property> 
    452             <property name="sizePolicy"> 
    453                 <sizepolicy> 
    454                     <hsizetype>1</hsizetype> 
    455                     <vsizetype>0</vsizetype> 
    456                     <horstretch>0</horstretch> 
    457                     <verstretch>0</verstretch> 
    458                 </sizepolicy> 
    459             </property> 
    460             <property name="font"> 
    461                 <font> 
    462                     <pointsize>9</pointsize> 
    463                 </font> 
    464             </property> 
    465             <property name="text"> 
    466                 <string></string> 
    467             </property> 
    468         </widget> 
    469         <widget class="QLabel"> 
    470             <property name="name"> 
    471                 <cstring>textLabel1_2_2_14_2</cstring> 
    472             </property> 
    473             <property name="geometry"> 
    474                 <rect> 
    475                     <x>50</x> 
    476                     <y>200</y> 
    477                     <width>30</width> 
    478                     <height>22</height> 
    479                 </rect> 
    480             </property> 
    481             <property name="font"> 
    482                 <font> 
    483                     <pointsize>9</pointsize> 
    484                 </font> 
    485             </property> 
    486             <property name="text"> 
    487                 <string>Pair</string> 
    488             </property> 
    489             <property name="alignment"> 
    490                 <set>AlignCenter</set> 
    491             </property> 
    492         </widget> 
    493         <widget class="QLabel"> 
    494             <property name="name"> 
    495                 <cstring>textLabel1_2_2_14_3</cstring> 
    496             </property> 
    497             <property name="geometry"> 
    498                 <rect> 
    499                     <x>90</x> 
    500                     <y>200</y> 
    501                     <width>30</width> 
    502                     <height>22</height> 
    503                 </rect> 
    504             </property> 
    505             <property name="font"> 
    506                 <font> 
    507                     <pointsize>9</pointsize> 
    508                 </font> 
    509             </property> 
    510             <property name="text"> 
    511                 <string>Pair</string> 
    512             </property> 
    513             <property name="alignment"> 
    514                 <set>AlignCenter</set> 
    515             </property> 
    516         </widget> 
    517         <widget class="QLabel"> 
    518             <property name="name"> 
    519                 <cstring>textLabel1_2_2_14_4</cstring> 
    520             </property> 
    521             <property name="geometry"> 
    522                 <rect> 
    523                     <x>130</x> 
    524                     <y>200</y> 
    525                     <width>30</width> 
    526                     <height>22</height> 
    527                 </rect> 
    528             </property> 
    529             <property name="font"> 
    530                 <font> 
    531                     <pointsize>9</pointsize> 
    532                 </font> 
    533             </property> 
    534             <property name="text"> 
    535                 <string>Pair</string> 
    536             </property> 
    537             <property name="alignment"> 
    538                 <set>AlignCenter</set> 
    539             </property> 
    540         </widget> 
    541         <widget class="QLabel"> 
    542             <property name="name"> 
    543                 <cstring>textLabel2_11</cstring> 
    544             </property> 
    545             <property name="geometry"> 
    546                 <rect> 
    547                     <x>10</x> 
    548                     <y>220</y> 
    549                     <width>30</width> 
    550                     <height>22</height> 
    551                 </rect> 
    552             </property> 
    553             <property name="text"> 
    554                 <string>1</string> 
    555             </property> 
    556             <property name="alignment"> 
    557                 <set>AlignCenter</set> 
    558             </property> 
    559         </widget> 
    560         <widget class="QLabel"> 
    561             <property name="name"> 
    562                 <cstring>textLabel2_2_4</cstring> 
    563             </property> 
    564             <property name="geometry"> 
    565                 <rect> 
    566                     <x>50</x> 
    567                     <y>220</y> 
    568                     <width>30</width> 
    569                     <height>22</height> 
    570                 </rect> 
    571             </property> 
    572             <property name="text"> 
    573                 <string>2</string> 
    574             </property> 
    575             <property name="alignment"> 
    576                 <set>AlignCenter</set> 
    577             </property> 
    578         </widget> 
    579         <widget class="QLabel"> 
    580             <property name="name"> 
    581                 <cstring>textLabel2_3_3</cstring> 
    582             </property> 
    583             <property name="geometry"> 
    584                 <rect> 
    585                     <x>90</x> 
    586                     <y>220</y> 
    587                     <width>30</width> 
    588                     <height>22</height> 
    589                 </rect> 
    590             </property> 
    591             <property name="text"> 
    592                 <string>3</string> 
    593             </property> 
    594             <property name="alignment"> 
    595                 <set>AlignCenter</set> 
    596             </property> 
    597         </widget> 
    598         <widget class="QLabel"> 
    599             <property name="name"> 
    600                 <cstring>textLabel2_4_3</cstring> 
    601             </property> 
    602             <property name="geometry"> 
    603                 <rect> 
    604                     <x>130</x> 
    605                     <y>220</y> 
    606                     <width>30</width> 
    607                     <height>22</height> 
    608                 </rect> 
    609             </property> 
    610             <property name="text"> 
    611                 <string>4</string> 
    612             </property> 
    613             <property name="alignment"> 
    614                 <set>AlignCenter</set> 
    615             </property> 
    616         </widget> 
    617         <widget class="QCheckBox"> 
    618             <property name="name"> 
    619                 <cstring>mix1ana1_mute_2</cstring> 
    620             </property> 
    621             <property name="geometry"> 
    622                 <rect> 
    623                     <x>20</x> 
    624                     <y>110</y> 
    625                     <width>20</width> 
    626                     <height>26</height> 
    627                 </rect> 
    628             </property> 
    629             <property name="sizePolicy"> 
    630                 <sizepolicy> 
    631                     <hsizetype>1</hsizetype> 
    632                     <vsizetype>0</vsizetype> 
    633                     <horstretch>0</horstretch> 
    634                     <verstretch>0</verstretch> 
    635                 </sizepolicy> 
    636             </property> 
    637             <property name="font"> 
    638                 <font> 
    639                     <pointsize>9</pointsize> 
    640                 </font> 
    641             </property> 
    642             <property name="text"> 
    643                 <string></string> 
    644             </property> 
    645         </widget> 
    646         <widget class="QLabel"> 
    647             <property name="name"> 
    648                 <cstring>textLabel1_2_2_12</cstring> 
    649             </property> 
    650             <property name="geometry"> 
    651                 <rect> 
    652                     <x>10</x> 
    653                     <y>130</y> 
    654                     <width>37</width> 
    655                     <height>40</height> 
    656                 </rect> 
    657             </property> 
    658             <property name="font"> 
    659                 <font> 
    660                     <pointsize>9</pointsize> 
    661                 </font> 
    662             </property> 
    663             <property name="text"> 
    664                 <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
    665             </property> 
    666             <property name="alignment"> 
    667                 <set>WordBreak|AlignCenter</set> 
    668             </property> 
    669         </widget> 
    670         <widget class="QLabel"> 
    671             <property name="name"> 
    672                 <cstring>textLabel1_2_2_12_4</cstring> 
    673             </property> 
    674             <property name="geometry"> 
    675                 <rect> 
    676                     <x>10</x> 
    677                     <y>350</y> 
    678                     <width>37</width> 
    679                     <height>40</height> 
    680                 </rect> 
    681             </property> 
    682             <property name="font"> 
    683                 <font> 
    684                     <pointsize>9</pointsize> 
    685                 </font> 
    686             </property> 
    687             <property name="text"> 
    688                 <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
    689             </property> 
    690             <property name="alignment"> 
    691                 <set>WordBreak|AlignCenter</set> 
    692             </property> 
    693         </widget> 
    694         <widget class="QCheckBox"> 
    695             <property name="name"> 
    696                 <cstring>mix1ana1_mute_2_2_5</cstring> 
    697             </property> 
    698             <property name="geometry"> 
    699                 <rect> 
    700                     <x>20</x> 
    701                     <y>330</y> 
    702                     <width>20</width> 
    703                     <height>26</height> 
    704                 </rect> 
    705             </property> 
    706             <property name="sizePolicy"> 
    707                 <sizepolicy> 
    708                     <hsizetype>1</hsizetype> 
    709                     <vsizetype>0</vsizetype> 
    710                     <horstretch>0</horstretch> 
    711                     <verstretch>0</verstretch> 
    712                 </sizepolicy> 
    713             </property> 
    714             <property name="font"> 
    715                 <font> 
    716                     <pointsize>9</pointsize> 
    717                 </font> 
    718             </property> 
    719             <property name="text"> 
    720                 <string></string> 
    721             </property> 
    722         </widget> 
    723         <widget class="QLabel"> 
    724             <property name="name"> 
    725                 <cstring>textLabel1_2_2_12_4_2</cstring> 
    726             </property> 
    727             <property name="geometry"> 
    728                 <rect> 
    729                     <x>50</x> 
    730                     <y>350</y> 
    731                     <width>37</width> 
    732                     <height>40</height> 
    733                 </rect> 
    734             </property> 
    735             <property name="font"> 
    736                 <font> 
    737                     <pointsize>9</pointsize> 
    738                 </font> 
    739             </property> 
    740             <property name="text"> 
    741                 <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
    742             </property> 
    743             <property name="alignment"> 
    744                 <set>WordBreak|AlignCenter</set> 
    745             </property> 
    746         </widget> 
    747         <widget class="QCheckBox"> 
    748             <property name="name"> 
    749                 <cstring>mix1ana1_mute_2_2_6</cstring> 
    750             </property> 
    751             <property name="geometry"> 
    752                 <rect> 
    753                     <x>60</x> 
    754                     <y>330</y> 
    755                     <width>20</width> 
    756                     <height>26</height> 
    757                 </rect> 
    758             </property> 
    759             <property name="sizePolicy"> 
    760                 <sizepolicy> 
    761                     <hsizetype>1</hsizetype> 
    762                     <vsizetype>0</vsizetype> 
    763                     <horstretch>0</horstretch> 
    764                     <verstretch>0</verstretch> 
    765                 </sizepolicy> 
    766             </property> 
    767             <property name="font"> 
    768                 <font> 
    769                     <pointsize>9</pointsize> 
    770                 </font> 
    771             </property> 
    772             <property name="text"> 
    773                 <string></string> 
    774             </property> 
    775         </widget> 
    776         <widget class="QLabel"> 
    777             <property name="name"> 
    778                 <cstring>textLabel1_2_2_12_4_3</cstring> 
    779             </property> 
    780             <property name="geometry"> 
    781                 <rect> 
    782                     <x>90</x> 
    783                     <y>350</y> 
    784                     <width>37</width> 
    785                     <height>40</height> 
    786                 </rect> 
    787             </property> 
    788             <property name="font"> 
    789                 <font> 
    790                     <pointsize>9</pointsize> 
    791                 </font> 
    792             </property> 
    793             <property name="text"> 
    794                 <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
    795             </property> 
    796             <property name="alignment"> 
    797                 <set>WordBreak|AlignCenter</set> 
    798             </property> 
    799         </widget> 
    800         <widget class="QCheckBox"> 
    801             <property name="name"> 
    802                 <cstring>mix1ana1_mute_2_2_7</cstring> 
    803             </property> 
    804             <property name="geometry"> 
    805                 <rect> 
    806                     <x>100</x> 
    807                     <y>330</y> 
    808                     <width>20</width> 
    809                     <height>26</height> 
    810                 </rect> 
    811             </property> 
    812             <property name="sizePolicy"> 
    813                 <sizepolicy> 
    814                     <hsizetype>1</hsizetype> 
    815                     <vsizetype>0</vsizetype> 
    816                     <horstretch>0</horstretch> 
    817                     <verstretch>0</verstretch> 
    818                 </sizepolicy> 
    819             </property> 
    820             <property name="font"> 
    821                 <font> 
    822                     <pointsize>9</pointsize> 
    823                 </font> 
    824             </property> 
    825             <property name="text"> 
    826                 <string></string> 
    827             </property> 
    828         </widget> 
    829         <widget class="QLabel"> 
    830             <property name="name"> 
    831                 <cstring>textLabel1_2_2_12_4_4</cstring> 
    832             </property> 
    833             <property name="geometry"> 
    834                 <rect> 
    835                     <x>130</x> 
    836                     <y>350</y> 
    837                     <width>37</width> 
    838                     <height>40</height> 
    839                 </rect> 
    840             </property> 
    841             <property name="font"> 
    842                 <font> 
    843                     <pointsize>9</pointsize> 
    844                 </font> 
    845             </property> 
    846             <property name="text"> 
    847                 <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
    848             </property> 
    849             <property name="alignment"> 
    850                 <set>WordBreak|AlignCenter</set> 
    851             </property> 
    852         </widget> 
    853         <widget class="QCheckBox"> 
    854             <property name="name"> 
    855                 <cstring>mix1ana1_mute_2_2_8</cstring> 
    856             </property> 
    857             <property name="geometry"> 
    858                 <rect> 
    859                     <x>140</x> 
    860                     <y>330</y> 
    861                     <width>20</width> 
    862                     <height>26</height> 
    863                 </rect> 
    864             </property> 
    865             <property name="sizePolicy"> 
    866                 <sizepolicy> 
    867                     <hsizetype>1</hsizetype> 
    868                     <vsizetype>0</vsizetype> 
    869                     <horstretch>0</horstretch> 
    870                     <verstretch>0</verstretch> 
    871                 </sizepolicy> 
    872             </property> 
    873             <property name="font"> 
    874                 <font> 
    875                     <pointsize>9</pointsize> 
    876                 </font> 
    877             </property> 
    878             <property name="text"> 
    879                 <string></string> 
    880             </property> 
    881         </widget> 
    882         <widget class="QCheckBox"> 
    883             <property name="name"> 
    884                 <cstring>mix1ana1_mute_2_2_5_2</cstring> 
    885             </property> 
    886             <property name="geometry"> 
    887                 <rect> 
    888                     <x>20</x> 
    889                     <y>260</y> 
    890                     <width>20</width> 
    891                     <height>26</height> 
    892                 </rect> 
    893             </property> 
    894             <property name="sizePolicy"> 
    895                 <sizepolicy> 
    896                     <hsizetype>1</hsizetype> 
    897                     <vsizetype>0</vsizetype> 
    898                     <horstretch>0</horstretch> 
    899                     <verstretch>0</verstretch> 
    900                 </sizepolicy> 
    901             </property> 
    902             <property name="font"> 
    903                 <font> 
    904                     <pointsize>9</pointsize> 
    905                 </font> 
    906             </property> 
    907             <property name="text"> 
    908                 <string></string> 
    909             </property> 
    910         </widget> 
    911         <widget class="QCheckBox"> 
    912             <property name="name"> 
    913                 <cstring>mix1ana1_mute_2_2_5_2_2</cstring> 
    914             </property> 
    915             <property name="geometry"> 
    916                 <rect> 
    917                     <x>60</x> 
    918                     <y>260</y> 
    919                     <width>20</width> 
    920                     <height>26</height> 
    921                 </rect> 
    922             </property> 
    923             <property name="sizePolicy"> 
    924                 <sizepolicy> 
    925                     <hsizetype>1</hsizetype> 
    926                     <vsizetype>0</vsizetype> 
    927                     <horstretch>0</horstretch> 
    928                     <verstretch>0</verstretch> 
    929                 </sizepolicy> 
    930             </property> 
    931             <property name="font"> 
    932                 <font> 
    933                     <pointsize>9</pointsize> 
    934                 </font> 
    935             </property> 
    936             <property name="text"> 
    937                 <string></string> 
    938             </property> 
    939         </widget> 
    940         <widget class="QCheckBox"> 
    941             <property name="name"> 
    942                 <cstring>mix1ana1_mute_2_2_5_2_3</cstring> 
    943             </property> 
    944             <property name="geometry"> 
    945                 <rect> 
    946                     <x>100</x> 
    947                     <y>260</y> 
    948                     <width>20</width> 
    949                     <height>26</height> 
    950                 </rect> 
    951             </property> 
    952             <property name="sizePolicy"> 
    953                 <sizepolicy> 
    954                     <hsizetype>1</hsizetype> 
    955                     <vsizetype>0</vsizetype> 
    956                     <horstretch>0</horstretch> 
    957                     <verstretch>0</verstretch> 
    958                 </sizepolicy> 
    959             </property> 
    960             <property name="font"> 
    961                 <font> 
    962                     <pointsize>9</pointsize> 
    963                 </font> 
    964             </property> 
    965             <property name="text"> 
    966                 <string></string> 
    967             </property> 
    968         </widget> 
    969         <widget class="QCheckBox"> 
    970             <property name="name"> 
    971                 <cstring>mix1ana1_mute_2_2_5_2_4</cstring> 
    972             </property> 
    973             <property name="geometry"> 
    974                 <rect> 
    975                     <x>140</x> 
    976                     <y>260</y> 
    977                     <width>20</width> 
    978                     <height>26</height> 
    979                 </rect> 
    980             </property> 
    981             <property name="sizePolicy"> 
    982                 <sizepolicy> 
    983                     <hsizetype>1</hsizetype> 
    984                     <vsizetype>0</vsizetype> 
    985                     <horstretch>0</horstretch> 
    986                     <verstretch>0</verstretch> 
    987                 </sizepolicy> 
    988             </property> 
    989             <property name="font"> 
    990                 <font> 
    991                     <pointsize>9</pointsize> 
    992                 </font> 
    993             </property> 
    994             <property name="text"> 
    995                 <string></string> 
    996             </property> 
    997         </widget> 
    998         <widget class="QLabel"> 
    999             <property name="name"> 
    1000                 <cstring>textLabel1_2_2_12_4_5</cstring> 
    1001             </property> 
    1002             <property name="geometry"> 
    1003                 <rect> 
    1004                     <x>10</x> 
    1005                     <y>280</y> 
    1006                     <width>37</width> 
    1007                     <height>40</height> 
    1008                 </rect> 
    1009             </property> 
    1010             <property name="font"> 
    1011                 <font> 
    1012                     <pointsize>9</pointsize> 
    1013                 </font> 
    1014             </property> 
    1015             <property name="text"> 
    1016                 <string>&lt;p align="center"&gt;-10&lt;br&gt;dBU&lt;/p&gt;</string> 
    1017             </property> 
    1018             <property name="alignment"> 
    1019                 <set>WordBreak|AlignCenter</set> 
    1020             </property> 
    1021         </widget> 
    1022         <widget class="QLabel"> 
    1023             <property name="name"> 
    1024                 <cstring>textLabel1_2_2_12_4_5_2</cstring> 
    1025             </property> 
    1026             <property name="geometry"> 
    1027                 <rect> 
    1028                     <x>50</x> 
    1029                     <y>280</y> 
    1030                     <width>37</width> 
    1031                     <height>40</height> 
    1032                 </rect> 
    1033             </property> 
    1034             <property name="font"> 
    1035                 <font> 
    1036                     <pointsize>9</pointsize> 
    1037                 </font> 
    1038             </property> 
    1039             <property name="text"> 
    1040                 <string>&lt;p align="center"&gt;-10&lt;br&gt;dBU&lt;/p&gt;</string> 
    1041             </property> 
    1042             <property name="alignment"> 
    1043                 <set>WordBreak|AlignCenter</set> 
    1044             </property> 
    1045         </widget> 
    1046         <widget class="QLabel"> 
    1047             <property name="name"> 
    1048                 <cstring>textLabel1_2_2_12_4_5_3</cstring> 
    1049             </property> 
    1050             <property name="geometry"> 
    1051                 <rect> 
    1052                     <x>90</x> 
    1053                     <y>280</y> 
    1054                     <width>37</width> 
    1055                     <height>40</height> 
    1056                 </rect> 
    1057             </property> 
    1058             <property name="font"> 
    1059                 <font> 
    1060                     <pointsize>9</pointsize> 
    1061                 </font> 
    1062             </property> 
    1063             <property name="text"> 
    1064                 <string>&lt;p align="center"&gt;-10&lt;br&gt;dBU&lt;/p&gt;</string> 
    1065             </property> 
    1066             <property name="alignment"> 
    1067                 <set>WordBreak|AlignCenter</set> 
    1068             </property> 
    1069         </widget> 
    1070         <widget class="QLabel"> 
    1071             <property name="name"> 
    1072                 <cstring>textLabel1_2_2_12_4_5_4</cstring> 
    1073             </property> 
    1074             <property name="geometry"> 
    1075                 <rect> 
    1076                     <x>130</x> 
    1077                     <y>280</y> 
    1078                     <width>37</width> 
    1079                     <height>40</height> 
    1080                 </rect> 
    1081             </property> 
    1082             <property name="font"> 
    1083                 <font> 
    1084                     <pointsize>9</pointsize> 
    1085                 </font> 
    1086             </property> 
    1087             <property name="text"> 
    1088                 <string>&lt;p align="center"&gt;-10&lt;br&gt;dBU&lt;/p&gt;</string> 
    1089             </property> 
    1090             <property name="alignment"> 
    1091                 <set>WordBreak|AlignCenter</set> 
    1092             </property> 
    1093         </widget> 
    1094         <widget class="QCheckBox"> 
    1095             <property name="name"> 
    1096                 <cstring>mix1ana1_mute_2_2</cstring> 
    1097             </property> 
    1098             <property name="geometry"> 
    1099                 <rect> 
    1100                     <x>20</x> 
    1101                     <y>180</y> 
    1102                     <width>20</width> 
    1103                     <height>26</height> 
    1104                 </rect> 
    1105             </property> 
    1106             <property name="sizePolicy"> 
    1107                 <sizepolicy> 
    1108                     <hsizetype>1</hsizetype> 
    1109                     <vsizetype>0</vsizetype> 
    1110                     <horstretch>0</horstretch> 
    1111                     <verstretch>0</verstretch> 
    1112                 </sizepolicy> 
    1113             </property> 
    1114             <property name="font"> 
    1115                 <font> 
    1116                     <pointsize>9</pointsize> 
    1117                 </font> 
    1118             </property> 
    1119             <property name="text"> 
    1120                 <string></string> 
    1121             </property> 
    1122         </widget> 
    1123         <widget class="QCheckBox"> 
    1124             <property name="name"> 
    1125                 <cstring>mix1ana1_mute_2_2_9</cstring> 
    1126             </property> 
    1127             <property name="geometry"> 
    1128                 <rect> 
    1129                     <x>20</x> 
    1130                     <y>400</y> 
    1131                     <width>20</width> 
    1132                     <height>26</height> 
    1133                 </rect> 
    1134             </property> 
    1135             <property name="sizePolicy"> 
    1136                 <sizepolicy> 
    1137                     <hsizetype>1</hsizetype> 
    1138                     <vsizetype>0</vsizetype> 
    1139                     <horstretch>0</horstretch> 
    1140                     <verstretch>0</verstretch> 
    1141                 </sizepolicy> 
    1142             </property> 
    1143             <property name="font"> 
    1144                 <font> 
    1145                     <pointsize>9</pointsize> 
    1146                 </font> 
    1147             </property> 
    1148             <property name="text"> 
    1149                 <string></string> 
    1150             </property> 
    1151         </widget> 
    1152         <widget class="QCheckBox"> 
    1153             <property name="name"> 
    1154                 <cstring>mix1ana1_mute_2_2_9_2</cstring> 
    1155             </property> 
    1156             <property name="geometry"> 
    1157                 <rect> 
    1158                     <x>60</x> 
    1159                     <y>400</y> 
    1160                     <width>20</width> 
    1161                     <height>26</height> 
    1162                 </rect> 
    1163             </property> 
    1164             <property name="sizePolicy"> 
    1165                 <sizepolicy> 
    1166                     <hsizetype>1</hsizetype> 
    1167                     <vsizetype>0</vsizetype> 
    1168                     <horstretch>0</horstretch> 
    1169                     <verstretch>0</verstretch> 
    1170                 </sizepolicy> 
    1171             </property> 
    1172             <property name="font"> 
    1173                 <font> 
    1174                     <pointsize>9</pointsize> 
    1175                 </font> 
    1176             </property> 
    1177             <property name="text"> 
    1178                 <string></string> 
    1179             </property> 
    1180         </widget> 
    1181         <widget class="QCheckBox"> 
    1182             <property name="name"> 
    1183                 <cstring>mix1ana1_mute_2_2_9_3</cstring> 
    1184             </property> 
    1185             <property name="geometry"> 
    1186                 <rect> 
    1187                     <x>100</x> 
    1188                     <y>400</y> 
    1189                     <width>20</width> 
    1190                     <height>26</height> 
    1191                 </rect> 
    1192             </property> 
    1193             <property name="sizePolicy"> 
    1194                 <sizepolicy> 
    1195                     <hsizetype>1</hsizetype> 
    1196                     <vsizetype>0</vsizetype> 
    1197                     <horstretch>0</horstretch> 
    1198                     <verstretch>0</verstretch> 
    1199                 </sizepolicy> 
    1200             </property> 
    1201             <property name="font"> 
    1202                 <font> 
    1203                     <pointsize>9</pointsize> 
    1204                 </font> 
    1205             </property> 
    1206             <property name="text"> 
    1207                 <string></string> 
    1208             </property> 
    1209         </widget> 
    1210         <widget class="QCheckBox"> 
    1211             <property name="name"> 
    1212                 <cstring>mix1ana1_mute_2_2_9_4</cstring> 
    1213             </property> 
    1214             <property name="geometry"> 
    1215                 <rect> 
    1216                     <x>140</x> 
    1217                     <y>400</y> 
    1218                     <width>20</width> 
    1219                     <height>26</height> 
    1220                 </rect> 
    1221             </property> 
    1222             <property name="sizePolicy"> 
    1223                 <sizepolicy> 
    1224                     <hsizetype>1</hsizetype> 
    1225                     <vsizetype>0</vsizetype> 
    1226                     <horstretch>0</horstretch> 
    1227                     <verstretch>0</verstretch> 
    1228                 </sizepolicy> 
    1229             </property> 
    1230             <property name="font"> 
    1231                 <font> 
    1232                     <pointsize>9</pointsize> 
    1233                 </font> 
    1234             </property> 
    1235             <property name="text"> 
    1236                 <string></string> 
    1237             </property> 
    1238         </widget> 
    1239         <widget class="QLabel"> 
    1240             <property name="name"> 
    1241                 <cstring>textLabel1_2_2_14</cstring> 
    1242             </property> 
    1243             <property name="geometry"> 
    1244                 <rect> 
    1245                     <x>10</x> 
    1246                     <y>200</y> 
    1247                     <width>30</width> 
    1248                     <height>22</height> 
    1249                 </rect> 
    1250             </property> 
    1251             <property name="font"> 
    1252                 <font> 
    1253                     <pointsize>9</pointsize> 
    1254                 </font> 
    1255             </property> 
    1256             <property name="text"> 
    1257                 <string>Pair</string> 
    1258             </property> 
    1259             <property name="alignment"> 
    1260                 <set>AlignCenter</set> 
    1261             </property> 
    1262         </widget> 
    1263         <widget class="QLabel"> 
    1264             <property name="name"> 
    1265                 <cstring>textLabel1_2_2_14_5</cstring> 
    1266             </property> 
    1267             <property name="geometry"> 
    1268                 <rect> 
    1269                     <x>10</x> 
    1270                     <y>420</y> 
    1271                     <width>30</width> 
    1272                     <height>22</height> 
    1273                 </rect> 
    1274             </property> 
    1275             <property name="font"> 
    1276                 <font> 
    1277                     <pointsize>9</pointsize> 
    1278                 </font> 
    1279             </property> 
    1280             <property name="text"> 
    1281                 <string>Pair</string> 
    1282             </property> 
    1283             <property name="alignment"> 
    1284                 <set>AlignCenter</set> 
    1285             </property> 
    1286         </widget> 
    1287         <widget class="QLabel"> 
    1288             <property name="name"> 
    1289                 <cstring>textLabel1_2_2_14_5_2</cstring> 
    1290             </property> 
    1291             <property name="geometry"> 
    1292                 <rect> 
    1293                     <x>50</x> 
    1294                     <y>420</y> 
    1295                     <width>30</width> 
    1296                     <height>22</height> 
    1297                 </rect> 
    1298             </property> 
    1299             <property name="font"> 
    1300                 <font> 
    1301                     <pointsize>9</pointsize> 
    1302                 </font> 
    1303             </property> 
    1304             <property name="text"> 
    1305                 <string>Pair</string> 
    1306             </property> 
    1307             <property name="alignment"> 
    1308                 <set>AlignCenter</set> 
    1309             </property> 
    1310         </widget> 
    1311         <widget class="QLabel"> 
    1312             <property name="name"> 
    1313                 <cstring>textLabel1_2_2_14_5_3</cstring> 
    1314             </property> 
    1315             <property name="geometry"> 
    1316                 <rect> 
    1317                     <x>90</x> 
    1318                     <y>420</y> 
    1319                     <width>30</width> 
    1320                     <height>22</height> 
    1321                 </rect> 
    1322             </property> 
    1323             <property name="font"> 
    1324                 <font> 
    1325                     <pointsize>9</pointsize> 
    1326                 </font> 
    1327             </property> 
    1328             <property name="text"> 
    1329                 <string>Pair</string> 
    1330             </property> 
    1331             <property name="alignment"> 
    1332                 <set>AlignCenter</set> 
    1333             </property> 
    1334         </widget> 
    1335         <widget class="QLabel"> 
    1336             <property name="name"> 
    1337                 <cstring>textLabel1_2_2_14_5_4</cstring> 
    1338             </property> 
    1339             <property name="geometry"> 
    1340                 <rect> 
    1341                     <x>130</x> 
    1342                     <y>420</y> 
    1343                     <width>30</width> 
    1344                     <height>22</height> 
    1345                 </rect> 
    1346             </property> 
    1347             <property name="font"> 
    1348                 <font> 
    1349                     <pointsize>9</pointsize> 
    1350                 </font> 
    1351             </property> 
    1352             <property name="text"> 
    1353                 <string>Pair</string> 
    1354             </property> 
    1355             <property name="alignment"> 
    1356                 <set>AlignCenter</set> 
    1357             </property> 
    1358         </widget> 
    1359         <widget class="QLabel"> 
    1360             <property name="name"> 
    1361                 <cstring>textLabel2_5_3</cstring> 
    1362             </property> 
    1363             <property name="geometry"> 
    1364                 <rect> 
    1365                     <x>10</x> 
    1366                     <y>440</y> 
    1367                     <width>30</width> 
    1368                     <height>22</height> 
    1369                 </rect> 
    1370             </property> 
    1371             <property name="text"> 
    1372                 <string>5</string> 
    1373             </property> 
    1374             <property name="alignment"> 
    1375                 <set>AlignCenter</set> 
    1376             </property> 
    1377         </widget> 
    1378         <widget class="QLabel"> 
    1379             <property name="name"> 
    1380                 <cstring>textLabel2_6_3</cstring> 
    1381             </property> 
    1382             <property name="geometry"> 
    1383                 <rect> 
    1384                     <x>50</x> 
    1385                     <y>440</y> 
    1386                     <width>30</width> 
    1387                     <height>22</height> 
    1388                 </rect> 
    1389             </property> 
    1390             <property name="text"> 
    1391                 <string>6</string> 
    1392             </property> 
    1393             <property name="alignment"> 
    1394                 <set>AlignCenter</set> 
    1395             </property> 
    1396         </widget> 
    1397         <widget class="QLabel"> 
    1398             <property name="name"> 
    1399                 <cstring>textLabel2_7_3</cstring> 
    1400             </property> 
    1401             <property name="geometry"> 
    1402                 <rect> 
    1403                     <x>90</x> 
    1404                     <y>440</y> 
    1405                     <width>30</width> 
    1406                     <height>22</height> 
    1407                 </rect> 
    1408             </property> 
    1409             <property name="text"> 
    1410                 <string>7</string> 
    1411             </property> 
    1412             <property name="alignment"> 
    1413                 <set>AlignCenter</set> 
    1414             </property> 
    1415         </widget> 
    1416         <widget class="QLabel"> 
    1417             <property name="name"> 
    1418                 <cstring>textLabel2_8_3</cstring> 
    1419             </property> 
    1420             <property name="geometry"> 
    1421                 <rect> 
    1422                     <x>130</x> 
    1423                     <y>440</y> 
    1424                     <width>30</width> 
    1425                     <height>22</height> 
    1426                 </rect> 
    1427             </property> 
    1428             <property name="text"> 
    1429                 <string>8</string> 
    1430             </property> 
    1431             <property name="alignment"> 
    1432                 <set>AlignCenter</set> 
    1433             </property> 
    1434         </widget> 
    1435         <widget class="Line"> 
    1436             <property name="name"> 
    1437                 <cstring>line1</cstring> 
    1438             </property> 
    1439             <property name="geometry"> 
    1440                 <rect> 
    1441                     <x>10</x> 
    1442                     <y>240</y> 
    1443                     <width>151</width> 
    1444                     <height>20</height> 
    1445                 </rect> 
    1446             </property> 
    1447             <property name="frameShape"> 
    1448                 <enum>HLine</enum> 
    1449             </property> 
    1450             <property name="frameShadow"> 
    1451                 <enum>Sunken</enum> 
    1452             </property> 
    1453             <property name="orientation"> 
    1454                 <enum>Horizontal</enum> 
    1455             </property> 
    1456         </widget> 
    1457         <widget class="Line"> 
    1458             <property name="name"> 
    1459                 <cstring>line1_2</cstring> 
    1460             </property> 
    1461             <property name="geometry"> 
    1462                 <rect> 
    1463                     <x>10</x> 
    1464                     <y>460</y> 
    1465                     <width>151</width> 
    1466                     <height>20</height> 
    1467                 </rect> 
    1468             </property> 
    1469             <property name="frameShape"> 
    1470                 <enum>HLine</enum> 
    1471             </property> 
    1472             <property name="frameShadow"> 
    1473                 <enum>Sunken</enum> 
    1474             </property> 
    1475             <property name="orientation"> 
    1476                 <enum>Horizontal</enum> 
    1477             </property> 
    1478         </widget> 
    1479         <widget class="QComboBox"> 
    1480             <item> 
    1481                 <property name="text"> 
    1482                     <string>Disabled</string> 
    1483                 </property> 
    1484             </item> 
    1485             <item> 
    1486                 <property name="text"> 
    1487                     <string>Toslink</string> 
    1488                 </property> 
    1489             </item> 
    1490             <item> 
    1491                 <property name="text"> 
    1492                     <string>ADAT</string> 
    1493                 </property> 
    1494             </item> 
    1495             <property name="name"> 
    1496                 <cstring>mix1_dest_2_2</cstring> 
    1497             </property> 
    1498             <property name="geometry"> 
    1499                 <rect> 
    1500                     <x>40</x> 
    1501                     <y>480</y> 
    1502                     <width>90</width> 
    1503                     <height>21</height> 
    1504                 </rect> 
    1505             </property> 
    1506             <property name="font"> 
    1507                 <font> 
    1508                     <pointsize>9</pointsize> 
    1509                 </font> 
    1510             </property> 
    1511         </widget> 
    1512         <widget class="QLabel"> 
    1513             <property name="name"> 
    1514                 <cstring>textLabel1_2_11_3_2_2</cstring> 
    1515             </property> 
    1516             <property name="geometry"> 
    1517                 <rect> 
    1518                     <x>40</x> 
    1519                     <y>500</y> 
    1520                     <width>87</width> 
    1521                     <height>22</height> 
    1522                 </rect> 
    1523             </property> 
    1524             <property name="font"> 
    1525                 <font> 
    1526                     <pointsize>9</pointsize> 
    1527                 </font> 
    1528             </property> 
    1529             <property name="text"> 
    1530                 <string>Optical in mode</string> 
    1531             </property> 
    1532             <property name="alignment"> 
    1533                 <set>AlignCenter</set> 
    1534             </property> 
    1535         </widget> 
    1536     </widget> 
    1537     <widget class="QGroupBox"> 
    1538         <property name="name"> 
    153938            <cstring>groupBox7</cstring> 
    154039        </property> 
     
    156968            <property name="text"> 
    157069                <string>Phones assign</string> 
     70            </property> 
     71            <property name="alignment"> 
     72                <set>AlignCenter</set> 
     73            </property> 
     74        </widget> 
     75        <widget class="QLabel"> 
     76            <property name="name"> 
     77                <cstring>textLabel1_2_11_3_2_2_2</cstring> 
     78            </property> 
     79            <property name="geometry"> 
     80                <rect> 
     81                    <x>10</x> 
     82                    <y>110</y> 
     83                    <width>94</width> 
     84                    <height>22</height> 
     85                </rect> 
     86            </property> 
     87            <property name="font"> 
     88                <font> 
     89                    <pointsize>9</pointsize> 
     90                </font> 
     91            </property> 
     92            <property name="text"> 
     93                <string>Optical out mode</string> 
    157194            </property> 
    157295            <property name="alignment"> 
     
    1669192            </item> 
    1670193            <property name="name"> 
    1671                 <cstring>mix1_dest_2_2_2</cstring> 
     194                <cstring>optical_out_mode</cstring> 
    1672195            </property> 
    1673196            <property name="geometry"> 
     
    1685208            </property> 
    1686209        </widget> 
     210    </widget> 
     211    <widget class="QGroupBox"> 
     212        <property name="name"> 
     213            <cstring>groupBox6</cstring> 
     214        </property> 
     215        <property name="geometry"> 
     216            <rect> 
     217                <x>10</x> 
     218                <y>0</y> 
     219                <width>170</width> 
     220                <height>530</height> 
     221            </rect> 
     222        </property> 
     223        <property name="title"> 
     224            <string>Input settings</string> 
     225        </property> 
    1687226        <widget class="QLabel"> 
    1688227            <property name="name"> 
    1689                 <cstring>textLabel1_2_11_3_2_2_2</cstring> 
     228                <cstring>textLabel1_2_2_13</cstring> 
    1690229            </property> 
    1691230            <property name="geometry"> 
    1692231                <rect> 
    1693232                    <x>10</x> 
    1694                     <y>110</y> 
    1695                     <width>94</width> 
    1696                     <height>22</height> 
     233                    <y>60</y> 
     234                    <width>31</width> 
     235                    <height>37</height> 
    1697236                </rect> 
    1698237            </property> 
     
    1703242            </property> 
    1704243            <property name="text"> 
    1705                 <string>Optical out mode</string> 
     244                <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
     245            </property> 
     246            <property name="alignment"> 
     247                <set>WordBreak|AlignCenter</set> 
     248            </property> 
     249        </widget> 
     250        <widget class="QLabel"> 
     251            <property name="name"> 
     252                <cstring>textLabel1_2_2_13_2</cstring> 
     253            </property> 
     254            <property name="geometry"> 
     255                <rect> 
     256                    <x>50</x> 
     257                    <y>60</y> 
     258                    <width>31</width> 
     259                    <height>37</height> 
     260                </rect> 
     261            </property> 
     262            <property name="font"> 
     263                <font> 
     264                    <pointsize>9</pointsize> 
     265                </font> 
     266            </property> 
     267            <property name="text"> 
     268                <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
     269            </property> 
     270            <property name="alignment"> 
     271                <set>WordBreak|AlignCenter</set> 
     272            </property> 
     273        </widget> 
     274        <widget class="QLabel"> 
     275            <property name="name"> 
     276                <cstring>textLabel1_2_2_13_3</cstring> 
     277            </property> 
     278            <property name="geometry"> 
     279                <rect> 
     280                    <x>90</x> 
     281                    <y>60</y> 
     282                    <width>31</width> 
     283                    <height>37</height> 
     284                </rect> 
     285            </property> 
     286            <property name="font"> 
     287                <font> 
     288                    <pointsize>9</pointsize> 
     289                </font> 
     290            </property> 
     291            <property name="text"> 
     292                <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
     293            </property> 
     294            <property name="alignment"> 
     295                <set>WordBreak|AlignCenter</set> 
     296            </property> 
     297        </widget> 
     298        <widget class="QLabel"> 
     299            <property name="name"> 
     300                <cstring>textLabel1_2_2_13_4</cstring> 
     301            </property> 
     302            <property name="geometry"> 
     303                <rect> 
     304                    <x>130</x> 
     305                    <y>60</y> 
     306                    <width>31</width> 
     307                    <height>37</height> 
     308                </rect> 
     309            </property> 
     310            <property name="font"> 
     311                <font> 
     312                    <pointsize>9</pointsize> 
     313                </font> 
     314            </property> 
     315            <property name="text"> 
     316                <string>&lt;p align="center"&gt;Trim&lt;br&gt;gain&lt;/p&gt;</string> 
     317            </property> 
     318            <property name="alignment"> 
     319                <set>WordBreak|AlignCenter</set> 
     320            </property> 
     321        </widget> 
     322        <widget class="QLabel"> 
     323            <property name="name"> 
     324                <cstring>textLabel1_2_2_12_2</cstring> 
     325            </property> 
     326            <property name="geometry"> 
     327                <rect> 
     328                    <x>50</x> 
     329                    <y>130</y> 
     330                    <width>37</width> 
     331                    <height>40</height> 
     332                </rect> 
     333            </property> 
     334            <property name="font"> 
     335                <font> 
     336                    <pointsize>9</pointsize> 
     337                </font> 
     338            </property> 
     339            <property name="text"> 
     340                <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
     341            </property> 
     342            <property name="alignment"> 
     343                <set>WordBreak|AlignCenter</set> 
     344            </property> 
     345        </widget> 
     346        <widget class="QLabel"> 
     347            <property name="name"> 
     348                <cstring>textLabel1_2_2_12_3</cstring> 
     349            </property> 
     350            <property name="geometry"> 
     351                <rect> 
     352                    <x>90</x> 
     353                    <y>130</y> 
     354                    <width>37</width> 
     355                    <height>40</height> 
     356                </rect> 
     357            </property> 
     358            <property name="font"> 
     359                <font> 
     360                    <pointsize>9</pointsize> 
     361                </font> 
     362            </property> 
     363            <property name="text"> 
     364                <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
     365            </property> 
     366            <property name="alignment"> 
     367                <set>WordBreak|AlignCenter</set> 
     368            </property> 
     369        </widget> 
     370        <widget class="QLabel"> 
     371            <property name="name"> 
     372                <cstring>textLabel1_2_2_12_3_2</cstring> 
     373            </property> 
     374            <property name="geometry"> 
     375                <rect> 
     376                    <x>130</x> 
     377                    <y>130</y> 
     378                    <width>37</width> 
     379                    <height>40</height> 
     380                </rect> 
     381            </property> 
     382            <property name="font"> 
     383                <font> 
     384                    <pointsize>9</pointsize> 
     385                </font> 
     386            </property> 
     387            <property name="text"> 
     388                <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
     389            </property> 
     390            <property name="alignment"> 
     391                <set>WordBreak|AlignCenter</set> 
     392            </property> 
     393        </widget> 
     394        <widget class="QCheckBox"> 
     395            <property name="name"> 
     396                <cstring>mix1ana1_mute_5</cstring> 
     397            </property> 
     398            <property name="geometry"> 
     399                <rect> 
     400                    <x>140</x> 
     401                    <y>110</y> 
     402                    <width>20</width> 
     403                    <height>26</height> 
     404                </rect> 
     405            </property> 
     406            <property name="sizePolicy"> 
     407                <sizepolicy> 
     408                    <hsizetype>1</hsizetype> 
     409                    <vsizetype>0</vsizetype> 
     410                    <horstretch>0</horstretch> 
     411                    <verstretch>0</verstretch> 
     412                </sizepolicy> 
     413            </property> 
     414            <property name="font"> 
     415                <font> 
     416                    <pointsize>9</pointsize> 
     417                </font> 
     418            </property> 
     419            <property name="text"> 
     420                <string></string> 
     421            </property> 
     422        </widget> 
     423        <widget class="QCheckBox"> 
     424            <property name="name"> 
     425                <cstring>mix1ana1_mute_4</cstring> 
     426            </property> 
     427            <property name="geometry"> 
     428                <rect> 
     429                    <x>100</x> 
     430                    <y>110</y> 
     431                    <width>20</width> 
     432                    <height>26</height> 
     433                </rect> 
     434            </property> 
     435            <property name="sizePolicy"> 
     436                <sizepolicy> 
     437                    <hsizetype>1</hsizetype> 
     438                    <vsizetype>0</vsizetype> 
     439                    <horstretch>0</horstretch> 
     440                    <verstretch>0</verstretch> 
     441                </sizepolicy> 
     442            </property> 
     443            <property name="font"> 
     444                <font> 
     445                    <pointsize>9</pointsize> 
     446                </font> 
     447            </property> 
     448            <property name="text"> 
     449                <string></string> 
     450            </property> 
     451        </widget> 
     452        <widget class="QCheckBox"> 
     453            <property name="name"> 
     454                <cstring>mix1ana1_mute_3</cstring> 
     455            </property> 
     456            <property name="geometry"> 
     457                <rect> 
     458                    <x>60</x> 
     459                    <y>110</y> 
     460                    <width>20</width> 
     461                    <height>26</height> 
     462                </rect> 
     463            </property> 
     464            <property name="sizePolicy"> 
     465                <sizepolicy> 
     466                    <hsizetype>1</hsizetype> 
     467                    <vsizetype>0</vsizetype> 
     468                    <horstretch>0</horstretch> 
     469                    <verstretch>0</verstretch> 
     470                </sizepolicy> 
     471            </property> 
     472            <property name="font"> 
     473                <font> 
     474                    <pointsize>9</pointsize> 
     475                </font> 
     476            </property> 
     477            <property name="text"> 
     478                <string></string> 
     479            </property> 
     480        </widget> 
     481        <widget class="QCheckBox"> 
     482            <property name="name"> 
     483                <cstring>mix1ana1_mute_2_2_2</cstring> 
     484            </property> 
     485            <property name="geometry"> 
     486                <rect> 
     487                    <x>60</x> 
     488                    <y>180</y> 
     489                    <width>20</width> 
     490                    <height>26</height> 
     491                </rect> 
     492            </property> 
     493            <property name="sizePolicy"> 
     494                <sizepolicy> 
     495                    <hsizetype>1</hsizetype> 
     496                    <vsizetype>0</vsizetype> 
     497                    <horstretch>0</horstretch> 
     498                    <verstretch>0</verstretch> 
     499                </sizepolicy> 
     500            </property> 
     501            <property name="font"> 
     502                <font> 
     503                    <pointsize>9</pointsize> 
     504                </font> 
     505            </property> 
     506            <property name="text"> 
     507                <string></string> 
     508            </property> 
     509        </widget> 
     510        <widget class="QCheckBox"> 
     511            <property name="name"> 
     512                <cstring>mix1ana1_mute_2_2_3</cstring> 
     513            </property> 
     514            <property name="geometry"> 
     515                <rect> 
     516                    <x>100</x> 
     517                    <y>180</y> 
     518                    <width>20</width> 
     519                    <height>26</height> 
     520                </rect> 
     521            </property> 
     522            <property name="sizePolicy"> 
     523                <sizepolicy> 
     524                    <hsizetype>1</hsizetype> 
     525                    <vsizetype>0</vsizetype> 
     526                    <horstretch>0</horstretch> 
     527                    <verstretch>0</verstretch> 
     528                </sizepolicy> 
     529            </property> 
     530            <property name="font"> 
     531                <font> 
     532                    <pointsize>9</pointsize> 
     533                </font> 
     534            </property> 
     535            <property name="text"> 
     536                <string></string> 
     537            </property> 
     538        </widget> 
     539        <widget class="QCheckBox"> 
     540            <property name="name"> 
     541                <cstring>mix1ana1_mute_2_2_4</cstring> 
     542            </property> 
     543            <property name="geometry"> 
     544                <rect> 
     545                    <x>140</x> 
     546                    <y>180</y> 
     547                    <width>20</width> 
     548                    <height>26</height> 
     549                </rect> 
     550            </property> 
     551            <property name="sizePolicy"> 
     552                <sizepolicy> 
     553                    <hsizetype>1</hsizetype> 
     554                    <vsizetype>0</vsizetype> 
     555                    <horstretch>0</horstretch> 
     556                    <verstretch>0</verstretch> 
     557                </sizepolicy> 
     558            </property> 
     559            <property name="font"> 
     560                <font> 
     561                    <pointsize>9</pointsize> 
     562                </font> 
     563            </property> 
     564            <property name="text"> 
     565                <string></string> 
     566            </property> 
     567        </widget> 
     568        <widget class="QLabel"> 
     569            <property name="name"> 
     570                <cstring>textLabel1_2_2_14_2</cstring> 
     571            </property> 
     572            <property name="geometry"> 
     573                <rect> 
     574                    <x>50</x> 
     575                    <y>200</y> 
     576                    <width>30</width> 
     577                    <height>22</height> 
     578                </rect> 
     579            </property> 
     580            <property name="font"> 
     581                <font> 
     582                    <pointsize>9</pointsize> 
     583                </font> 
     584            </property> 
     585            <property name="text"> 
     586                <string>Pair</string> 
    1706587            </property> 
    1707588            <property name="alignment"> 
    1708589                <set>AlignCenter</set> 
     590            </property> 
     591        </widget> 
     592        <widget class="QLabel"> 
     593            <property name="name"> 
     594                <cstring>textLabel1_2_2_14_3</cstring> 
     595            </property> 
     596            <property name="geometry"> 
     597                <rect> 
     598                    <x>90</x> 
     599                    <y>200</y> 
     600                    <width>30</width> 
     601                    <height>22</height> 
     602                </rect> 
     603            </property> 
     604            <property name="font"> 
     605                <font> 
     606                    <pointsize>9</pointsize> 
     607                </font> 
     608            </property> 
     609            <property name="text"> 
     610                <string>Pair</string> 
     611            </property> 
     612            <property name="alignment"> 
     613                <set>AlignCenter</set> 
     614            </property> 
     615        </widget> 
     616        <widget class="QLabel"> 
     617            <property name="name"> 
     618                <cstring>textLabel1_2_2_14_4</cstring> 
     619            </property> 
     620            <property name="geometry"> 
     621                <rect> 
     622                    <x>130</x> 
     623                    <y>200</y> 
     624                    <width>30</width> 
     625                    <height>22</height> 
     626                </rect> 
     627            </property> 
     628            <property name="font"> 
     629                <font> 
     630                    <pointsize>9</pointsize> 
     631                </font> 
     632            </property> 
     633            <property name="text"> 
     634                <string>Pair</string> 
     635            </property> 
     636            <property name="alignment"> 
     637                <set>AlignCenter</set> 
     638            </property> 
     639        </widget> 
     640        <widget class="QLabel"> 
     641            <property name="name"> 
     642                <cstring>textLabel2_11</cstring> 
     643            </property> 
     644            <property name="geometry"> 
     645                <rect> 
     646                    <x>10</x> 
     647                    <y>220</y> 
     648                    <width>30</width> 
     649                    <height>22</height> 
     650                </rect> 
     651            </property> 
     652            <property name="text"> 
     653                <string>1</string> 
     654            </property> 
     655            <property name="alignment"> 
     656                <set>AlignCenter</set> 
     657            </property> 
     658        </widget> 
     659        <widget class="QLabel"> 
     660            <property name="name"> 
     661                <cstring>textLabel2_2_4</cstring> 
     662            </property> 
     663            <property name="geometry"> 
     664                <rect> 
     665                    <x>50</x> 
     666                    <y>220</y> 
     667                    <width>30</width> 
     668                    <height>22</height> 
     669                </rect> 
     670            </property> 
     671            <property name="text"> 
     672                <string>2</string> 
     673            </property> 
     674            <property name="alignment"> 
     675                <set>AlignCenter</set> 
     676            </property> 
     677        </widget> 
     678        <widget class="QLabel"> 
     679            <property name="name"> 
     680                <cstring>textLabel2_3_3</cstring> 
     681            </property> 
     682            <property name="geometry"> 
     683                <rect> 
     684                    <x>90</x> 
     685                    <y>220</y> 
     686                    <width>30</width> 
     687                    <height>22</height> 
     688                </rect> 
     689            </property> 
     690            <property name="text"> 
     691                <string>3</string> 
     692            </property> 
     693            <property name="alignment"> 
     694                <set>AlignCenter</set> 
     695            </property> 
     696        </widget> 
     697        <widget class="QLabel"> 
     698            <property name="name"> 
     699                <cstring>textLabel2_4_3</cstring> 
     700            </property> 
     701            <property name="geometry"> 
     702                <rect> 
     703                    <x>130</x> 
     704                    <y>220</y> 
     705                    <width>30</width> 
     706                    <height>22</height> 
     707                </rect> 
     708            </property> 
     709            <property name="text"> 
     710                <string>4</string> 
     711            </property> 
     712            <property name="alignment"> 
     713                <set>AlignCenter</set> 
     714            </property> 
     715        </widget> 
     716        <widget class="QCheckBox"> 
     717            <property name="name"> 
     718                <cstring>mix1ana1_mute_2</cstring> 
     719            </property> 
     720            <property name="geometry"> 
     721                <rect> 
     722                    <x>20</x> 
     723                    <y>110</y> 
     724                    <width>20</width> 
     725                    <height>26</height> 
     726                </rect> 
     727            </property> 
     728            <property name="sizePolicy"> 
     729                <sizepolicy> 
     730                    <hsizetype>1</hsizetype> 
     731                    <vsizetype>0</vsizetype> 
     732                    <horstretch>0</horstretch> 
     733                    <verstretch>0</verstretch> 
     734                </sizepolicy> 
     735            </property> 
     736            <property name="font"> 
     737                <font> 
     738                    <pointsize>9</pointsize> 
     739                </font> 
     740            </property> 
     741            <property name="text"> 
     742                <string></string> 
     743            </property> 
     744        </widget> 
     745        <widget class="QLabel"> 
     746            <property name="name"> 
     747                <cstring>textLabel1_2_2_12</cstring> 
     748            </property> 
     749            <property name="geometry"> 
     750                <rect> 
     751                    <x>10</x> 
     752                    <y>130</y> 
     753                    <width>37</width> 
     754                    <height>40</height> 
     755                </rect> 
     756            </property> 
     757            <property name="font"> 
     758                <font> 
     759                    <pointsize>9</pointsize> 
     760                </font> 
     761            </property> 
     762            <property name="text"> 
     763                <string>&lt;p align="center"&gt;-20dB&lt;br&gt;pad&lt;/p&gt;</string> 
     764            </property> 
     765            <property name="alignment"> 
     766                <set>WordBreak|AlignCenter</set> 
     767            </property> 
     768        </widget> 
     769        <widget class="QLabel"> 
     770            <property name="name"> 
     771                <cstring>textLabel1_2_2_12_4</cstring> 
     772            </property> 
     773            <property name="geometry"> 
     774                <rect> 
     775                    <x>10</x> 
     776                    <y>350</y> 
     777                    <width>37</width> 
     778                    <height>40</height> 
     779                </rect> 
     780            </property> 
     781            <property name="font"> 
     782                <font> 
     783                    <pointsize>9</pointsize> 
     784                </font> 
     785            </property> 
     786            <property name="text"> 
     787                <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
     788            </property> 
     789            <property name="alignment"> 
     790                <set>WordBreak|AlignCenter</set> 
     791            </property> 
     792        </widget> 
     793        <widget class="QLabel"> 
     794            <property name="name"> 
     795                <cstring>textLabel1_2_2_12_4_2</cstring> 
     796            </property> 
     797            <property name="geometry"> 
     798                <rect> 
     799                    <x>50</x> 
     800                    <y>350</y> 
     801                    <width>37</width> 
     802                    <height>40</height> 
     803                </rect> 
     804            </property> 
     805            <property name="font"> 
     806                <font> 
     807                    <pointsize>9</pointsize> 
     808                </font> 
     809            </property> 
     810            <property name="text"> 
     811                <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
     812            </property> 
     813            <property name="alignment"> 
     814                <set>WordBreak|AlignCenter</set> 
     815            </property> 
     816        </widget> 
     817        <widget class="QLabel"> 
     818            <property name="name"> 
     819                <cstring>textLabel1_2_2_12_4_3</cstring> 
     820            </property> 
     821            <property name="geometry"> 
     822                <rect> 
     823                    <x>90</x> 
     824                    <y>350</y> 
     825                    <width>37</width> 
     826                    <height>40</height> 
     827                </rect> 
     828            </property> 
     829            <property name="font"> 
     830                <font> 
     831                    <pointsize>9</pointsize> 
     832                </font> 
     833            </property> 
     834            <property name="text"> 
     835                <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
     836            </property> 
     837            <property name="alignment"> 
     838                <set>WordBreak|AlignCenter</set> 
     839            </property> 
     840        </widget> 
     841        <widget class="QLabel"> 
     842            <property name="name"> 
     843                <cstring>textLabel1_2_2_12_4_4</cstring> 
     844            </property> 
     845            <property name="geometry"> 
     846                <rect> 
     847                    <x>130</x> 
     848                    <y>350</y> 
     849                    <width>37</width> 
     850                    <height>40</height> 
     851                </rect> 
     852            </property> 
     853            <property name="font"> 
     854                <font> 
     855                    <pointsize>9</pointsize> 
     856                </font> 
     857            </property> 
     858            <property name="text"> 
     859                <string>&lt;p align="center"&gt;+6dB&lt;br&gt;boost&lt;/p&gt;</string> 
     860            </property> 
     861            <property name="alignment"> 
     862                <set>WordBreak|AlignCenter</set> 
     863            </property> 
     864        </widget> 
     865        <widget class="QCheckBox"> 
     866            <property name="name"> 
     867                <cstring>mix1ana1_mute_2_2</cstring> 
     868            </property> 
     869            <property name="geometry"> 
     870                <rect> 
     871                    <x>20</x> 
     872                    <y>180</y> 
     873                    <width>20</width> 
     874                    <height>26</height> 
     875                </rect> 
     876            </property> 
     877            <property name="sizePolicy"> 
     878                <sizepolicy> 
     879                    <hsizetype>1</hsizetype> 
     880                    <vsizetype>0</vsizetype> 
     881                    <horstretch>0</horstretch> 
     882                    <verstretch>0</verstretch> 
     883                </sizepolicy> 
     884            </property> 
     885            <property name="font"> 
     886                <font> 
     887                    <pointsize>9</pointsize> 
     888                </font> 
     889            </property> 
     890            <property name="text"> 
     891                <string></string> 
     892            </property> 
     893        </widget> 
     894        <widget class="QCheckBox"> 
     895            <property name="name"> 
     896                <cstring>mix1ana1_mute_2_2_9</cstring> 
     897            </property> 
     898            <property name="geometry"> 
     899                <rect> 
     900                    <x>20</x> 
     901                    <y>400</y> 
     902                    <width>20</width> 
     903                    <height>26</height> 
     904                </rect> 
     905            </property> 
     906            <property name="sizePolicy"> 
     907                <sizepolicy> 
     908                    <hsizetype>1</hsizetype> 
     909                    <vsizetype>0</vsizetype> 
     910                    <horstretch>0</horstretch> 
     911                    <verstretch>0</verstretch> 
     912                </sizepolicy> 
     913            </property> 
     914            <property name="font"> 
     915                <font> 
     916                    <pointsize>9</pointsize> 
     917                </font> 
     918            </property> 
     919            <property name="text"> 
     920                <string></string> 
     921            </property> 
     922        </widget> 
     923        <widget class="QCheckBox"> 
     924            <property name="name"> 
     925                <cstring>mix1ana1_mute_2_2_9_2</cstring> 
     926            </property> 
     927            <property name="geometry"> 
     928                <rect> 
     929                    <x>60</x> 
     930                    <y>400</y> 
     931                    <width>20</width> 
     932                    <height>26</height> 
     933                </rect> 
     934            </property> 
     935            <property name="sizePolicy"> 
     936                <sizepolicy> 
     937                    <hsizetype>1</hsizetype> 
     938                    <vsizetype>0</vsizetype> 
     939                    <horstretch>0</horstretch> 
     940                    <verstretch>0</verstretch> 
     941                </sizepolicy> 
     942            </property> 
     943            <property name="font"> 
     944                <font> 
     945                    <pointsize>9</pointsize> 
     946                </font> 
     947            </property> 
     948            <property name="text"> 
     949                <string></string> 
     950            </property> 
     951        </widget> 
     952        <widget class="QCheckBox"> 
     953            <property name="name"> 
     954                <cstring>mix1ana1_mute_2_2_9_3</cstring> 
     955            </property> 
     956            <property name="geometry"> 
     957                <rect> 
     958                    <x>100</x> 
     959                    <y>400</y> 
     960                    <width>20</width> 
     961                    <height>26</height> 
     962                </rect> 
     963            </property> 
     964            <property name="sizePolicy"> 
     965                <sizepolicy> 
     966                    <hsizetype>1</hsizetype> 
     967                    <vsizetype>0</vsizetype> 
     968                    <horstretch>0</horstretch> 
     969                    <verstretch>0</verstretch> 
     970                </sizepolicy> 
     971            </property> 
     972            <property name="font"> 
     973                <font> 
     974                    <pointsize>9</pointsize> 
     975                </font> 
     976            </property> 
     977            <property name="text"> 
     978                <string></string> 
     979            </property> 
     980        </widget> 
     981        <widget class="QCheckBox"> 
     982            <property name="name"> 
     983                <cstring>mix1ana1_mute_2_2_9_4</cstring> 
     984            </property> 
     985            <property name="geometry"> 
     986                <rect> 
     987                    <x>140</x> 
     988                    <y>400</y> 
     989                    <width>20</width> 
     990                    <height>26</height> 
     991                </rect> 
     992            </property> 
     993            <property name="sizePolicy"> 
     994                <sizepolicy> 
     995                    <hsizetype>1</hsizetype> 
     996                    <vsizetype>0</vsizetype> 
     997                    <horstretch>0</horstretch> 
     998                    <verstretch>0</verstretch> 
     999                </sizepolicy> 
     1000            </property> 
     1001            <property name="font"> 
     1002                <font> 
     1003                    <pointsize>9</pointsize> 
     1004                </font> 
     1005            </property> 
     1006            <property name="text"> 
     1007                <string></string> 
     1008            </property> 
     1009        </widget> 
     1010        <widget class="QLabel"> 
     1011            <property name="name"> 
     1012                <cstring>textLabel1_2_2_14</cstring> 
     1013            </property> 
     1014            <property name="geometry"> 
     1015                <rect> 
     1016                    <x>10</x> 
     1017                    <y>200</y> 
     1018                    <width>30</width> 
     1019                    <height>22</height> 
     1020                </rect> 
     1021            </property> 
     1022            <property name="font"> 
     1023                <font> 
     1024                    <pointsize>9</pointsize> 
     1025                </font> 
     1026            </property> 
     1027            <property name="text"> 
     1028                <string>Pair</string> 
     1029            </property> 
     1030            <property name="alignment"> 
     1031                <set>AlignCenter</set> 
     1032            </property> 
     1033        </widget> 
     1034        <widget class="QLabel"> 
     1035            <property name="name"> 
     1036                <cstring>textLabel1_2_2_14_5</cstring> 
     1037            </property> 
     1038            <property name="geometry"> 
     1039                <rect> 
     1040                    <x>10</x> 
     1041                    <y>420</y> 
     1042                    <width>30</width> 
     1043                    <height>22</height> 
     1044                </rect> 
     1045            </property> 
     1046            <property name="font"> 
     1047                <font> 
     1048                    <pointsize>9</pointsize> 
     1049                </font> 
     1050            </property> 
     1051            <property name="text"> 
     1052                <string>Pair</string> 
     1053            </property> 
     1054            <property name="alignment"> 
     1055                <set>AlignCenter</set> 
     1056            </property> 
     1057        </widget> 
     1058        <widget class="QLabel"> 
     1059            <property name="name"> 
     1060                <cstring>textLabel1_2_2_14_5_2</cstring> 
     1061            </property> 
     1062            <property name="geometry"> 
     1063                <rect> 
     1064                    <x>50</x> 
     1065                    <y>420</y> 
     1066                    <width>30</width> 
     1067                    <height>22</height> 
     1068                </rect> 
     1069            </property> 
     1070            <property name="font"> 
     1071                <font> 
     1072                    <pointsize>9</pointsize> 
     1073                </font> 
     1074            </property> 
     1075            <property name="text"> 
     1076                <string>Pair</string> 
     1077            </property> 
     1078            <property name="alignment"> 
     1079                <set>AlignCenter</set> 
     1080            </property> 
     1081        </widget> 
     1082        <widget class="QLabel"> 
     1083            <property name="name"> 
     1084                <cstring>textLabel1_2_2_14_5_3</cstring> 
     1085            </property> 
     1086            <property name="geometry"> 
     1087                <rect> 
     1088                    <x>90</x> 
     1089                    <y>420</y> 
     1090                    <width>30</width> 
     1091                    <height>22</height> 
     1092                </rect> 
     1093            </property> 
     1094            <property name="font"> 
     1095                <font> 
     1096                    <pointsize>9</pointsize> 
     1097                </font> 
     1098            </property> 
     1099            <property name="text"> 
     1100                <string>Pair</string> 
     1101            </property> 
     1102            <property name="alignment"> 
     1103                <set>AlignCenter</set> 
     1104            </property> 
     1105        </widget> 
     1106        <widget class="QLabel"> 
     1107            <property name="name"> 
     1108                <cstring>textLabel1_2_2_14_5_4</cstring> 
     1109            </property> 
     1110            <property name="geometry"> 
     1111                <rect> 
     1112                    <x>130</x> 
     1113                    <y>420</y> 
     1114                    <width>30</width> 
     1115                    <height>22</height> 
     1116                </rect> 
     1117            </property> 
     1118            <property name="font"> 
     1119                <font> 
     1120                    <pointsize>9</pointsize> 
     1121                </font> 
     1122            </property> 
     1123            <property name="text"> 
     1124                <string>Pair</string> 
     1125            </property> 
     1126            <property name="alignment"> 
     1127                <set>AlignCenter</set> 
     1128            </property> 
     1129        </widget> 
     1130        <widget class="QLabel"> 
     1131            <property name="name"> 
     1132                <cstring>textLabel2_5_3</cstring> 
     1133            </property> 
     1134            <property name="geometry"> 
     1135                <rect> 
     1136                    <x>10</x> 
     1137                    <y>440</y> 
     1138                    <width>30</width> 
     1139                    <height>22</height> 
     1140                </rect> 
     1141            </property> 
     1142            <property name="text"> 
     1143                <string>5</string> 
     1144            </property> 
     1145            <property name="alignment"> 
     1146                <set>AlignCenter</set> 
     1147            </property> 
     1148        </widget> 
     1149        <widget class="QLabel"> 
     1150            <property name="name"> 
     1151                <cstring>textLabel2_6_3</cstring> 
     1152            </property> 
     1153            <property name="geometry"> 
     1154                <rect> 
     1155                    <x>50</x> 
     1156                    <y>440</y> 
     1157                    <width>30</width> 
     1158                    <height>22</height> 
     1159                </rect> 
     1160            </property> 
     1161            <property name="text"> 
     1162                <string>6</string> 
     1163            </property> 
     1164            <property name="alignment"> 
     1165                <set>AlignCenter</set> 
     1166            </property> 
     1167        </widget> 
     1168        <widget class="QLabel"> 
     1169            <property name="name"> 
     1170                <cstring>textLabel2_7_3</cstring> 
     1171            </property> 
     1172            <property name="geometry"> 
     1173                <rect> 
     1174                    <x>90</x> 
     1175                    <y>440</y> 
     1176                    <width>30</width> 
     1177                    <height>22</height> 
     1178                </rect> 
     1179            </property> 
     1180            <property name="text"> 
     1181                <string>7</string> 
     1182            </property> 
     1183            <property name="alignment"> 
     1184                <set>AlignCenter</set> 
     1185            </property> 
     1186        </widget> 
     1187        <widget class="QLabel"> 
     1188            <property name="name"> 
     1189                <cstring>textLabel2_8_3</cstring> 
     1190            </property> 
     1191            <property name="geometry"> 
     1192                <rect> 
     1193                    <x>130</x> 
     1194                    <y>440</y> 
     1195                    <width>30</width> 
     1196                    <height>22</height> 
     1197                </rect> 
     1198            </property> 
     1199            <property name="text"> 
     1200                <string>8</string> 
     1201            </property> 
     1202            <property name="alignment"> 
     1203                <set>AlignCenter</set> 
     1204            </property> 
     1205        </widget> 
     1206        <widget class="Line"> 
     1207            <property name="name"> 
     1208                <cstring>line1</cstring> 
     1209            </property> 
     1210            <property name="geometry"> 
     1211                <rect> 
     1212                    <x>10</x> 
     1213                    <y>240</y> 
     1214                    <width>151</width> 
     1215                    <height>20</height> 
     1216                </rect> 
     1217            </property> 
     1218            <property name="frameShape"> 
     1219                <enum>HLine</enum> 
     1220            </property> 
     1221            <property name="frameShadow"> 
     1222                <enum>Sunken</enum> 
     1223            </property> 
     1224            <property name="orientation"> 
     1225                <enum>Horizontal</enum> 
     1226            </property> 
     1227        </widget> 
     1228        <widget class="Line"> 
     1229            <property name="name"> 
     1230                <cstring>line1_2</cstring> 
     1231            </property> 
     1232            <property name="geometry"> 
     1233                <rect> 
     1234                    <x>10</x> 
     1235                    <y>460</y> 
     1236                    <width>151</width> 
     1237                    <height>20</height> 
     1238                </rect> 
     1239            </property> 
     1240            <property name="frameShape"> 
     1241                <enum>HLine</enum> 
     1242            </property> 
     1243            <property name="frameShadow"> 
     1244                <enum>Sunken</enum> 
     1245            </property> 
     1246            <property name="orientation"> 
     1247                <enum>Horizontal</enum> 
     1248            </property> 
     1249        </widget> 
     1250        <widget class="QCheckBox"> 
     1251            <property name="name"> 
     1252                <cstring>ana6_level</cstring> 
     1253            </property> 
     1254            <property name="geometry"> 
     1255                <rect> 
     1256                    <x>60</x> 
     1257                    <y>260</y> 
     1258                    <width>20</width> 
     1259                    <height>26</height> 
     1260                </rect> 
     1261            </property> 
     1262            <property name="sizePolicy"> 
     1263                <sizepolicy> 
     1264                    <hsizetype>1</hsizetype> 
     1265                    <vsizetype>0</vsizetype> 
     1266                    <horstretch>0</horstretch> 
     1267                    <verstretch>0</verstretch> 
     1268                </sizepolicy> 
     1269            </property> 
     1270            <property name="font"> 
     1271                <font> 
     1272                    <pointsize>9</pointsize> 
     1273                </font> 
     1274            </property> 
     1275            <property name="text"> 
     1276                <string></string> 
     1277            </property> 
     1278        </widget> 
     1279        <widget class="QCheckBox"> 
     1280            <property name="name"> 
     1281                <cstring>ana8_level</cstring> 
     1282            </property> 
     1283            <property name="geometry"> 
     1284                <rect> 
     1285                    <x>140</x> 
     1286                    <y>260</y> 
     1287                    <width>20</width> 
     1288                    <height>26</height> 
     1289                </rect> 
     1290            </property> 
     1291            <property name="sizePolicy"> 
     1292                <sizepolicy> 
     1293                    <hsizetype>1</hsizetype> 
     1294                    <vsizetype>0</vsizetype> 
     1295                    <horstretch>0</horstretch> 
     1296                    <verstretch>0</verstretch> 
     1297                </sizepolicy> 
     1298            </property> 
     1299            <property name="font"> 
     1300                <font> 
     1301                    <pointsize>9</pointsize> 
     1302                </font> 
     1303            </property> 
     1304            <property name="text"> 
     1305                <string></string> 
     1306            </property> 
     1307        </widget> 
     1308        <widget class="QLabel"> 
     1309            <property name="name"> 
     1310                <cstring>textLabel1_2_2_12_4_5</cstring> 
     1311            </property> 
     1312            <property name="geometry"> 
     1313                <rect> 
     1314                    <x>10</x> 
     1315                    <y>280</y> 
     1316                    <width>37</width> 
     1317                    <height>40</height> 
     1318                </rect> 
     1319            </property> 
     1320            <property name="font"> 
     1321                <font> 
     1322                    <pointsize>9</pointsize> 
     1323                </font> 
     1324            </property> 
     1325            <property name="text"> 
     1326                <string>&lt;p align="center"&gt;+4&lt;br&gt;dBU&lt;/p&gt;</string> 
     1327            </property> 
     1328            <property name="alignment"> 
     1329                <set>WordBreak|AlignCenter</set> 
     1330            </property> 
     1331        </widget> 
     1332        <widget class="QLabel"> 
     1333            <property name="name"> 
     1334                <cstring>textLabel1_2_2_12_4_5_2</cstring> 
     1335            </property> 
     1336            <property name="geometry"> 
     1337                <rect> 
     1338                    <x>50</x> 
     1339                    <y>280</y> 
     1340                    <width>37</width> 
     1341                    <height>40</height> 
     1342                </rect> 
     1343            </property> 
     1344            <property name="font"> 
     1345                <font> 
     1346                    <pointsize>9</pointsize> 
     1347                </font> 
     1348            </property> 
     1349            <property name="text"> 
     1350                <string>&lt;p align="center"&gt;+4&lt;br&gt;dBU&lt;/p&gt;</string> 
     1351            </property> 
     1352            <property name="alignment"> 
     1353                <set>WordBreak|AlignCenter</set> 
     1354            </property> 
     1355        </widget> 
     1356        <widget class="QCheckBox"> 
     1357            <property name="name"> 
     1358                <cstring>ana7_level</cstring> 
     1359            </property> 
     1360            <property name="geometry"> 
     1361                <rect> 
     1362                    <x>100</x> 
     1363                    <y>260</y> 
     1364                    <width>20</width> 
     1365                    <height>26</height> 
     1366                </rect> 
     1367            </property> 
     1368            <property name="sizePolicy"> 
     1369                <sizepolicy> 
     1370                    <hsizetype>1</hsizetype> 
     1371                    <vsizetype>0</vsizetype> 
     1372                    <horstretch>0</horstretch> 
     1373                    <verstretch>0</verstretch> 
     1374                </sizepolicy> 
     1375            </property> 
     1376            <property name="font"> 
     1377                <font> 
     1378                    <pointsize>9</pointsize> 
     1379                </font> 
     1380            </property> 
     1381            <property name="text"> 
     1382                <string></string> 
     1383            </property> 
     1384        </widget> 
     1385        <widget class="QLabel"> 
     1386            <property name="name"> 
     1387                <cstring>textLabel1_2_2_12_4_5_3</cstring> 
     1388            </property> 
     1389            <property name="geometry"> 
     1390                <rect> 
     1391                    <x>90</x> 
     1392                    <y>280</y> 
     1393                    <width>37</width> 
     1394                    <height>40</height> 
     1395                </rect> 
     1396            </property> 
     1397            <property name="font"> 
     1398                <font> 
     1399                    <pointsize>9</pointsize> 
     1400                </font> 
     1401            </property> 
     1402            <property name="text"> 
     1403                <string>&lt;p align="center"&gt;+4&lt;br&gt;dBU&lt;/p&gt;</string> 
     1404            </property> 
     1405            <property name="alignment"> 
     1406                <set>WordBreak|AlignCenter</set> 
     1407            </property> 
     1408        </widget> 
     1409        <widget class="QLabel"> 
     1410            <property name="name"> 
     1411                <cstring>textLabel1_2_2_12_4_5_4</cstring> 
     1412            </property> 
     1413            <property name="geometry"> 
     1414                <rect> 
     1415                    <x>130</x> 
     1416                    <y>280</y> 
     1417                    <width>37</width> 
     1418                    <height>40</height> 
     1419                </rect> 
     1420            </property> 
     1421            <property name="font"> 
     1422                <font> 
     1423                    <pointsize>9</pointsize> 
     1424                </font> 
     1425            </property> 
     1426            <property name="text"> 
     1427                <string>&lt;p align="center"&gt;+4&lt;br&gt;dBU&lt;/p&gt;</string> 
     1428            </property> 
     1429            <property name="alignment"> 
     1430                <set>WordBreak|AlignCenter</set> 
     1431            </property> 
     1432        </widget> 
     1433        <widget class="QComboBox"> 
     1434            <item> 
     1435                <property name="text"> 
     1436                    <string>Disabled</string> 
     1437                </property> 
     1438            </item> 
     1439            <item> 
     1440                <property name="text"> 
     1441                    <string>Toslink</string> 
     1442                </property> 
     1443            </item> 
     1444            <item> 
     1445                <property name="text"> 
     1446                    <string>ADAT</string> 
     1447                </property> 
     1448            </item> 
     1449            <property name="name"> 
     1450                <cstring>optical_in_mode</cstring> 
     1451            </property> 
     1452            <property name="geometry"> 
     1453                <rect> 
     1454                    <x>10</x> 
     1455                    <y>480</y> 
     1456                    <width>90</width> 
     1457                    <height>21</height> 
     1458                </rect> 
     1459            </property> 
     1460            <property name="font"> 
     1461                <font> 
     1462                    <pointsize>9</pointsize> 
     1463                </font> 
     1464            </property> 
     1465        </widget> 
     1466        <widget class="QLabel"> 
     1467            <property name="name"> 
     1468                <cstring>textLabel1_2_11_3_2_2</cstring> 
     1469            </property> 
     1470            <property name="geometry"> 
     1471                <rect> 
     1472                    <x>10</x> 
     1473                    <y>500</y> 
     1474                    <width>87</width> 
     1475                    <height>22</height> 
     1476                </rect> 
     1477            </property> 
     1478            <property name="font"> 
     1479                <font> 
     1480                    <pointsize>9</pointsize> 
     1481                </font> 
     1482            </property> 
     1483            <property name="text"> 
     1484                <string>Optical in mode</string> 
     1485            </property> 
     1486            <property name="alignment"> 
     1487                <set>AlignCenter</set> 
     1488            </property> 
     1489        </widget> 
     1490        <widget class="QCheckBox"> 
     1491            <property name="name"> 
     1492                <cstring>ana5_level</cstring> 
     1493            </property> 
     1494            <property name="geometry"> 
     1495                <rect> 
     1496                    <x>20</x> 
     1497                    <y>260</y> 
     1498                    <width>20</width> 
     1499                    <height>26</height> 
     1500                </rect> 
     1501            </property> 
     1502            <property name="sizePolicy"> 
     1503                <sizepolicy> 
     1504                    <hsizetype>1</hsizetype> 
     1505                    <vsizetype>0</vsizetype> 
     1506                    <horstretch>0</horstretch> 
     1507                    <verstretch>0</verstretch> 
     1508                </sizepolicy> 
     1509            </property> 
     1510            <property name="font"> 
     1511                <font> 
     1512                    <pointsize>9</pointsize> 
     1513                </font> 
     1514            </property> 
     1515            <property name="text"> 
     1516                <string></string> 
     1517            </property> 
     1518        </widget> 
     1519        <widget class="QCheckBox"> 
     1520            <property name="name"> 
     1521                <cstring>ana5_boost</cstring> 
     1522            </property> 
     1523            <property name="geometry"> 
     1524                <rect> 
     1525                    <x>20</x> 
     1526                    <y>330</y> 
     1527                    <width>20</width> 
     1528                    <height>26</height> 
     1529                </rect> 
     1530            </property> 
     1531            <property name="sizePolicy"> 
     1532                <sizepolicy> 
     1533                    <hsizetype>1</hsizetype> 
     1534                    <vsizetype>0</vsizetype> 
     1535                    <horstretch>0</horstretch> 
     1536                    <verstretch>0</verstretch> 
     1537                </sizepolicy> 
     1538            </property> 
     1539            <property name="font"> 
     1540                <font> 
     1541                    <pointsize>9</pointsize> 
     1542                </font> 
     1543            </property> 
     1544            <property name="text"> 
     1545                <string></string> 
     1546            </property> 
     1547        </widget> 
     1548        <widget class="QCheckBox"> 
     1549            <property name="name"> 
     1550                <cstring>ana6_boost</cstring> 
     1551            </property> 
     1552            <property name="geometry"> 
     1553                <rect> 
     1554                    <x>60</x> 
     1555                    <y>330</y> 
     1556                    <width>20</width> 
     1557                    <height>26</height> 
     1558                </rect> 
     1559            </property> 
     1560            <property name="sizePolicy"> 
     1561                <sizepolicy> 
     1562                    <hsizetype>1</hsizetype> 
     1563                    <vsizetype>0</vsizetype> 
     1564                    <horstretch>0</horstretch> 
     1565                    <verstretch>0</verstretch> 
     1566                </sizepolicy> 
     1567            </property> 
     1568            <property name="font"> 
     1569                <font> 
     1570                    <pointsize>9</pointsize> 
     1571                </font> 
     1572            </property> 
     1573            <property name="text"> 
     1574                <string></string> 
     1575            </property> 
     1576        </widget> 
     1577        <widget class="QCheckBox"> 
     1578            <property name="name"> 
     1579                <cstring>ana7_boost</cstring> 
     1580            </property> 
     1581            <property name="geometry"> 
     1582                <rect> 
     1583                    <x>100</x> 
     1584                    <y>330</y> 
     1585                    <width>20</width> 
     1586                    <height>26</height> 
     1587                </rect> 
     1588            </property> 
     1589            <property name="sizePolicy"> 
     1590                <sizepolicy> 
     1591                    <hsizetype>1</hsizetype> 
     1592                    <vsizetype>0</vsizetype> 
     1593                    <horstretch>0</horstretch> 
     1594                    <verstretch>0</verstretch> 
     1595                </sizepolicy> 
     1596            </property> 
     1597            <property name="font"> 
     1598                <font> 
     1599                    <pointsize>9</pointsize> 
     1600                </font> 
     1601            </property> 
     1602            <property name="text"> 
     1603                <string></string> 
     1604            </property> 
     1605        </widget> 
     1606        <widget class="QCheckBox"> 
     1607            <property name="name"> 
     1608                <cstring>ana8_boost</cstring> 
     1609            </property> 
     1610            <property name="geometry"> 
     1611                <rect> 
     1612                    <x>140</x> 
     1613                    <y>330</y> 
     1614                    <width>20</width> 
     1615                    <height>26</height> 
     1616                </rect> 
     1617            </property> 
     1618            <property name="sizePolicy"> 
     1619                <sizepolicy> 
     1620                    <hsizetype>1</hsizetype> 
     1621                    <vsizetype>0</vsizetype> 
     1622                    <horstretch>0</horstretch> 
     1623                    <verstretch>0</verstretch> 
     1624                </sizepolicy> 
     1625            </property> 
     1626            <property name="font"> 
     1627                <font> 
     1628                    <pointsize>9</pointsize> 
     1629                </font> 
     1630            </property> 
     1631            <property name="text"> 
     1632                <string></string> 
     1633            </property> 
     1634        </widget> 
     1635        <widget class="QDial"> 
     1636            <property name="name"> 
     1637                <cstring>ana1_trimgain</cstring> 
     1638            </property> 
     1639            <property name="geometry"> 
     1640                <rect> 
     1641                    <x>10</x> 
     1642                    <y>30</y> 
     1643                    <width>30</width> 
     1644                    <height>30</height> 
     1645                </rect> 
     1646            </property> 
     1647            <property name="minValue"> 
     1648                <number>0</number> 
     1649            </property> 
     1650            <property name="maxValue"> 
     1651                <number>53</number> 
     1652            </property> 
     1653        </widget> 
     1654        <widget class="QDial"> 
     1655            <property name="name"> 
     1656                <cstring>ana2_trimgain</cstring> 
     1657            </property> 
     1658            <property name="geometry"> 
     1659                <rect> 
     1660                    <x>50</x> 
     1661                    <y>30</y> 
     1662                    <width>30</width> 
     1663                    <height>30</height> 
     1664                </rect> 
     1665            </property> 
     1666            <property name="minValue"> 
     1667                <number>0</number> 
     1668            </property> 
     1669            <property name="maxValue"> 
     1670                <number>53</number> 
     1671            </property> 
     1672        </widget> 
     1673        <widget class="QDial"> 
     1674            <property name="name"> 
     1675                <cstring>ana3_trimgain</cstring> 
     1676            </property> 
     1677            <property name="geometry"> 
     1678                <rect> 
     1679                    <x>90</x> 
     1680                    <y>30</y> 
     1681                    <width>30</width> 
     1682                    <height>30</height> 
     1683                </rect> 
     1684            </property> 
     1685            <property name="minValue"> 
     1686                <number>0</number> 
     1687            </property> 
     1688            <property name="maxValue"> 
     1689                <number>53</number> 
     1690            </property> 
     1691        </widget> 
     1692        <widget class="QDial"> 
     1693            <property name="name"> 
     1694                <cstring>ana4_trimgain</cstring> 
     1695            </property> 
     1696            <property name="geometry"> 
     1697                <rect> 
     1698                    <x>130</x> 
     1699                    <y>30</y> 
     1700                    <width>30</width> 
     1701                    <height>30</height> 
     1702                </rect> 
     1703            </property> 
     1704            <property name="minValue"> 
     1705                <number>0</number> 
     1706            </property> 
     1707            <property name="maxValue"> 
     1708                <number>53</number> 
    17091709            </property> 
    17101710        </widget> 
     
    17291729                <string>Mix 1</string> 
    17301730            </attribute> 
    1731             <widget class="QGroupBox"> 
    1732                 <property name="name"> 
    1733                     <cstring>groupBox1_2</cstring> 
    1734                 </property> 
    1735                 <property name="geometry"> 
    1736                     <rect> 
    1737                         <x>10</x> 
    1738                         <y>330</y> 
    1739                         <width>330</width> 
    1740                         <height>310</height> 
    1741                     </rect> 
    1742                 </property> 
    1743                 <property name="title"> 
    1744                     <string>ADAT</string> 
    1745                 </property> 
    1746                 <widget class="QCheckBox"> 
    1747                     <property name="name"> 
    1748                         <cstring>checkBox1_2_2</cstring> 
    1749                     </property> 
    1750                     <property name="geometry"> 
    1751                         <rect> 
    1752                             <x>20</x> 
    1753                             <y>20</y> 
    1754                             <width>20</width> 
    1755                             <height>26</height> 
    1756                         </rect> 
    1757                     </property> 
    1758                     <property name="sizePolicy"> 
    1759                         <sizepolicy> 
    1760                             <hsizetype>1</hsizetype> 
    1761                             <vsizetype>0</vsizetype> 
    1762                             <horstretch>0</horstretch> 
    1763                             <verstretch>0</verstretch> 
    1764                         </sizepolicy> 
    1765                     </property> 
    1766                     <property name="font"> 
    1767                         <font> 
    1768                             <pointsize>9</pointsize> 
    1769                         </font> 
    1770                     </property> 
    1771                     <property name="text"> 
    1772                         <string></string> 
    1773                     </property> 
    1774                 </widget> 
    1775                 <widget class="QLabel"> 
    1776                     <property name="name"> 
    1777                         <cstring>textLabel2_9</cstring> 
    1778                     </property> 
    1779                     <property name="geometry"> 
    1780                         <rect> 
    1781                             <x>10</x> 
    1782                             <y>280</y> 
    1783                             <width>30</width> 
    1784                             <height>22</height> 
    1785                         </rect> 
    1786                     </property> 
    1787                     <property name="text"> 
    1788                         <string>1</string> 
    1789                     </property> 
    1790                     <property name="alignment"> 
    1791                         <set>AlignCenter</set> 
    1792                     </property> 
    1793                 </widget> 
    1794                 <widget class="QLabel"> 
    1795                     <property name="name"> 
    1796                         <cstring>textLabel1_2_10</cstring> 
    1797                     </property> 
    1798                     <property name="geometry"> 
    1799                         <rect> 
    1800                             <x>10</x> 
    1801                             <y>130</y> 
    1802                             <width>30</width> 
    1803                             <height>22</height> 
    1804                         </rect> 
    1805                     </property> 
    1806                     <property name="font"> 
    1807                         <font> 
    1808                             <pointsize>9</pointsize> 
    1809                         </font> 
    1810                     </property> 
    1811                     <property name="text"> 
    1812                         <string>Pan</string> 
    1813                     </property> 
    1814                     <property name="alignment"> 
    1815                         <set>AlignCenter</set> 
    1816                     </property> 
    1817                 </widget> 
    1818                 <widget class="QLabel"> 
    1819                     <property name="name"> 
    1820                         <cstring>textLabel1_2_3_2</cstring> 
    1821                     </property> 
    1822                     <property name="geometry"> 
    1823                         <rect> 
    1824                             <x>50</x> 
    1825                             <y>130</y> 
    1826                             <width>30</width> 
    1827                             <height>22</height> 
    1828                         </rect> 
    1829                     </property> 
    1830                     <property name="font"> 
    1831                         <font> 
    1832                             <pointsize>9</pointsize> 
    1833                         </font> 
    1834                     </property> 
    1835                     <property name="text"> 
    1836                         <string>Pan</string> 
    1837                     </property> 
    1838                     <property name="alignment"> 
    1839                         <set>AlignCenter</set> 
    1840                     </property> 
    1841                 </widget> 
    1842                 <widget class="QLabel"> 
    1843                     <property name="name"> 
    1844                         <cstring>textLabel1_2_4_2</cstring> 
    1845                     </property> 
    1846                     <property name="geometry"> 
    1847                         <rect> 
    1848                             <x>90</x> 
    1849                             <y>130</y> 
    1850                             <width>30</width> 
    1851                             <height>22</height> 
    1852                         </rect> 
    1853                     </property> 
    1854                     <property name="font"> 
    1855                         <font> 
    1856                             <pointsize>9</pointsize> 
    1857                         </font> 
    1858                     </property> 
    1859                     <property name="text"> 
    1860                         <string>Pan</string> 
    1861                     </property> 
    1862                     <property name="alignment"> 
    1863                         <set>AlignCenter</set> 
    1864                     </property> 
    1865                 </widget> 
    1866                 <widget class="QLabel"> 
    1867                     <property name="name"> 
    1868                         <cstring>textLabel1_2_5_2</cstring> 
    1869                     </property> 
    1870                     <property name="geometry"> 
    1871                         <rect> 
    1872                             <x>130</x> 
    1873                             <y>130</y> 
    1874                             <width>30</width> 
    1875                             <height>22</height> 
    1876                         </rect> 
    1877                     </property> 
    1878                     <property name="font"> 
    1879                         <font> 
    1880                             <pointsize>9</pointsize> 
    1881                         </font> 
    1882                     </property> 
    1883                     <property name="text"> 
    1884                         <string>Pan</string> 
    1885                     </property> 
    1886                     <property name="alignment"> 
    1887                         <set>AlignCenter</set> 
    1888                     </property> 
    1889                 </widget> 
    1890                 <widget class="QLabel"> 
    1891                     <property name="name"> 
    1892                         <cstring>textLabel1_2_6_2</cstring> 
    1893                     </property> 
    1894                     <property name="geometry"> 
    1895                         <rect> 
    1896                             <x>170</x> 
    1897                             <y>130</y> 
    1898                             <width>30</width> 
    1899                             <height>22</height> 
    1900                         </rect> 
    1901                     </property> 
    1902                     <property name="font"> 
    1903                         <font> 
    1904                             <pointsize>9</pointsize> 
    1905                         </font> 
    1906                     </property> 
    1907                     <property name="text"> 
    1908                         <string>Pan</string> 
    1909                     </property> 
    1910                     <property name="alignment"> 
    1911                         <set>AlignCenter</set> 
    1912                     </property> 
    1913                 </widget> 
    1914                 <widget class="QLabel"> 
    1915                     <property name="name"> 
    1916                         <cstring>textLabel1_2_7_2</cstring> 
    1917                     </property> 
    1918                     <property name="geometry"> 
    1919                         <rect> 
    1920                             <x>210</x> 
    1921                             <y>130</y> 
    1922                             <width>30</width> 
    1923                             <height>22</height> 
    1924                         </rect> 
    1925                     </property> 
    1926                     <property name="font"> 
    1927                         <font> 
    1928                             <pointsize>9</pointsize> 
    1929                         </font> 
    1930                     </property> 
    1931                     <property name="text"> 
    1932                         <string>Pan</string> 
    1933                     </property> 
    1934                     <property name="alignment"> 
    1935                         <set>AlignCenter</set> 
    1936                     </property> 
    1937                 </widget> 
    1938                 <widget class="QLabel"> 
    1939                     <property name="name"> 
    1940                         <cstring>textLabel1_2_8_2</cstring> 
    1941                     </property> 
    1942                     <property name="geometry"> 
    1943                         <rect> 
    1944                             <x>250</x> 
    1945                             <y>130</y> 
    1946                             <width>30</width> 
    1947                             <height>22</height> 
    1948                         </rect> 
    1949                     </property> 
    1950                     <property name="font"> 
    1951                         <font> 
    1952                             <pointsize>9</pointsize> 
    1953                         </font> 
    1954                     </property> 
    1955                     <property name="text"> 
    1956                         <string>Pan</string> 
    1957                     </property> 
    1958                     <property name="alignment"> 
    1959                         <set>AlignCenter</set> 
    1960                     </property> 
    1961                 </widget> 
    1962                 <widget class="QLabel"> 
    1963                     <property name="name"> 
    1964                         <cstring>textLabel1_2_9_2</cstring> 
    1965                     </property> 
    1966                     <property name="geometry"> 
    1967                         <rect> 
    1968                             <x>290</x> 
    1969                             <y>130</y> 
    1970                             <width>30</width> 
    1971                             <height>22</height> 
    1972                         </rect> 
    1973                     </property> 
    1974                     <property name="font"> 
    1975                         <font> 
    1976                             <pointsize>9</pointsize> 
    1977                         </font> 
    1978                     </property> 
    1979                     <property name="text"> 
    1980                         <string>Pan</string> 
    1981                     </property> 
    1982                     <property name="alignment"> 
    1983                         <set>AlignCenter</set> 
    1984                     </property> 
    1985                 </widget> 
    1986                 <widget class="QDial"> 
    1987                     <property name="name"> 
    1988                         <cstring>dial2_9</cstring> 
    1989                     </property> 
    1990                     <property name="geometry"> 
    1991                         <rect> 
    1992                             <x>10</x> 
    1993                             <y>100</y> 
    1994                             <width>30</width> 
    1995                             <height>30</height> 
    1996                         </rect> 
    1997                     </property> 
    1998                     <property name="minValue"> 
    1999                         <number>-64</number> 
    2000                     </property> 
    2001                     <property name="maxValue"> 
    2002                         <number>64</number> 
    2003                     </property> 
    2004                 </widget> 
    2005                 <widget class="QDial"> 
    2006                     <property name="name"> 
    2007                         <cstring>dial2_2_2</cstring> 
    2008                     </property> 
    2009                     <property name="geometry"> 
    2010                         <rect> 
    2011                             <x>50</x> 
    2012                             <y>100</y> 
    2013                             <width>30</width> 
    2014                             <height>30</height> 
    2015                         </rect> 
    2016                     </property> 
    2017                     <property name="minValue"> 
    2018                         <number>-64</number> 
    2019                     </property> 
    2020                     <property name="maxValue"> 
    2021                         <number>64</number> 
    2022                     </property> 
    2023                 </widget> 
    2024                 <widget class="QDial"> 
    2025                     <property name="name"> 
    2026                         <cstring>dial2_3_2</cstring> 
    2027                     </property> 
    2028                     <property name="geometry"> 
    2029                         <rect> 
    2030                             <x>90</x> 
    2031                             <y>100</y> 
    2032                             <width>30</width> 
    2033                             <height>30</height> 
    2034                         </rect> 
    2035                     </property> 
    2036                     <property name="minValue"> 
    2037                         <number>-64</number> 
    2038                     </property> 
    2039                     <property name="maxValue"> 
    2040                         <number>64</number> 
    2041                     </property> 
    2042                 </widget> 
    2043                 <widget class="QDial"> 
    2044                     <property name="name"> 
    2045                         <cstring>dial2_4_2</cstring> 
    2046                     </property> 
    2047                     <property name="geometry"> 
    2048                         <rect> 
    2049                             <x>130</x> 
    2050                             <y>100</y> 
    2051                             <width>30</width> 
    2052                             <height>30</height> 
    2053                         </rect> 
    2054                     </property> 
    2055                     <property name="minValue"> 
    2056                         <number>-64</number> 
    2057                     </property> 
    2058                     <property name="maxValue"> 
    2059                         <number>64</number> 
    2060                     </property> 
    2061                 </widget> 
    2062                 <widget class="QDial"> 
    2063                     <property name="name"> 
    2064                         <cstring>dial2_5_2</cstring> 
    2065                     </property> 
    2066                     <property name="geometry"> 
    2067                         <rect> 
    2068                             <x>170</x> 
    2069                             <y>100</y> 
    2070                             <width>30</width> 
    2071                             <height>30</height> 
    2072                         </rect> 
    2073                     </property> 
    2074                     <property name="minValue"> 
    2075                         <number>-64</number> 
    2076                     </property> 
    2077                     <property name="maxValue"> 
    2078                         <number>64</number> 
    2079                     </property> 
    2080                 </widget> 
    2081                 <widget class="QDial"> 
    2082                     <property name="name"> 
    2083                         <cstring>dial2_6_2</cstring> 
    2084                     </property> 
    2085                     <property name="geometry"> 
    2086                         <rect> 
    2087                             <x>210</x> 
    2088                             <y>100</y> 
    2089                             <width>30</width> 
    2090                             <height>30</height> 
    2091                         </rect> 
    2092                     </property> 
    2093                     <property name="minValue"> 
    2094                         <number>-64</number> 
    2095                     </property> 
    2096                     <property name="maxValue"> 
    2097                         <number>64</number> 
    2098                     </property> 
    2099                 </widget> 
    2100                 <widget class="QDial"> 
    2101                     <property name="name"> 
    2102                         <cstring>dial2_7_2</cstring> 
    2103                     </property> 
    2104                     <property name="geometry"> 
    2105                         <rect> 
    2106                             <x>250</x> 
    2107                             <y>100</y> 
    2108                             <width>30</width> 
    2109                             <height>30</height> 
    2110                         </rect> 
    2111                     </property> 
    2112                     <property name="minValue"> 
    2113                         <number>-64</number> 
    2114                     </property> 
    2115                     <property name="maxValue"> 
    2116                         <number>64</number> 
    2117                     </property> 
    2118                 </widget> 
    2119                 <widget class="QDial"> 
    2120                     <property name="name"> 
    2121                         <cstring>dial2_8_2</cstring> 
    2122                     </property> 
    2123                     <property name="geometry"> 
    2124                         <rect> 
    2125                             <x>290</x> 
    2126                             <y>100</y> 
    2127                             <width>30</width> 
    2128                             <height>30</height> 
    2129                         </rect> 
    2130                     </property> 
    2131                     <property name="minValue"> 
    2132                         <number>-64</number> 
    2133                     </property> 
    2134                     <property name="maxValue"> 
    2135                         <number>64</number> 
    2136                     </property> 
    2137                 </widget> 
    2138                 <widget class="QLabel"> 
    2139                     <property name="name"> 
    2140                         <cstring>textLabel1_2_2_10</cstring> 
    2141                     </property> 
    2142                     <property name="geometry"> 
    2143                         <rect> 
    2144                             <x>10</x> 
    2145                             <y>80</y> 
    2146                             <width>30</width> 
    2147                             <height>22</height> 
    2148                         </rect> 
    2149                     </property> 
    2150                     <property name="font"> 
    2151                         <font> 
    2152                             <pointsize>9</pointsize> 
    2153                         </font> 
    2154                     </property> 
    2155                     <property name="text"> 
    2156                         <string>Mute</string> 
    2157                     </property> 
    2158                     <property name="alignment"> 
    2159                         <set>AlignCenter</set> 
    2160                     </property> 
    2161                 </widget> 
    2162                 <widget class="QLabel"> 
    2163                     <property name="name"> 
    2164                         <cstring>textLabel1_2_2_3_2</cstring> 
    2165                     </property> 
    2166                     <property name="geometry"> 
    2167                         <rect> 
    2168                             <x>50</x> 
    2169                             <y>80</y> 
    2170                             <width>30</width> 
    2171                             <height>22</height> 
    2172                         </rect> 
    2173                     </property> 
    2174                     <property name="font"> 
    2175                         <font> 
    2176                             <pointsize>9</pointsize> 
    2177                         </font> 
    2178                     </property> 
    2179                     <property name="text"> 
    2180                         <string>Mute</string> 
    2181                     </property> 
    2182                     <property name="alignment"> 
    2183                         <set>AlignCenter</set> 
    2184                     </property> 
    2185                 </widget> 
    2186                 <widget class="QLabel"> 
    2187                     <property name="name"> 
    2188                         <cstring>textLabel1_2_2_4_2</cstring> 
    2189                     </property> 
    2190                     <property name="geometry"> 
    2191                         <rect> 
    2192                             <x>90</x> 
    2193                             <y>80</y> 
    2194                             <width>30</width> 
    2195                             <height>22</height> 
    2196                         </rect> 
    2197                     </property> 
    2198                     <property name="font"> 
    2199                         <font> 
    2200                             <pointsize>9</pointsize> 
    2201                         </font> 
    2202                     </property> 
    2203                     <property name="text"> 
    2204                         <string>Mute</string> 
    2205                     </property> 
    2206                     <property name="alignment"> 
    2207                         <set>AlignCenter</set> 
    2208                     </property> 
    2209                 </widget> 
    2210                 <widget class="QLabel"> 
    2211                     <property name="name"> 
    2212                         <cstring>textLabel1_2_2_5_2</cstring> 
    2213                     </property> 
    2214                     <property name="geometry"> 
    2215                         <rect> 
    2216                             <x>130</x> 
    2217                             <y>80</y> 
    2218                             <width>30</width> 
    2219                             <height>22</height> 
    2220                         </rect> 
    2221                     </property> 
    2222                     <property name="font"> 
    2223                         <font> 
    2224                             <pointsize>9</pointsize> 
    2225                         </font> 
    2226                     </property> 
    2227                     <property name="text"> 
    2228                         <string>Mute</string> 
    2229                     </property> 
    2230                     <property name="alignment"> 
    2231                         <set>AlignCenter</set> 
    2232                     </property> 
    2233                 </widget> 
    2234                 <widget class="QLabel"> 
    2235                     <property name="name"> 
    2236                         <cstring>textLabel1_2_2_6_2</cstring> 
    2237                     </property> 
    2238                     <property name="geometry"> 
    2239                         <rect> 
    2240                             <x>170</x> 
    2241                             <y>80</y> 
    2242                             <width>30</width> 
    2243                             <height>22</height> 
    2244                         </rect> 
    2245                     </property> 
    2246                     <property name="font"> 
    2247                         <font> 
    2248                             <pointsize>9</pointsize> 
    2249                         </font> 
    2250                     </property> 
    2251                     <property name="text"> 
    2252                         <string>Mute</string> 
    2253                     </property> 
    2254                     <property name="alignment"> 
    2255                         <set>AlignCenter</set> 
    2256                     </property> 
    2257                 </widget> 
    2258                 <widget class="QLabel"> 
    2259                     <property name="name"> 
    2260                         <cstring>textLabel1_2_2_7_2</cstring> 
    2261                     </property> 
    2262                     <property name="geometry"> 
    2263                         <rect> 
    2264                             <x>210</x> 
    2265                             <y>80</y> 
    2266                             <width>30</width> 
    2267                             <height>22</height> 
    2268                         </rect> 
    2269                     </property> 
    2270                     <property name="font"> 
    2271                         <font> 
    2272                             <pointsize>9</pointsize> 
    2273                         </font> 
    2274                     </property> 
    2275                     <property name="text"> 
    2276                         <string>Mute</string> 
    2277                     </property> 
    2278                     <property name="alignment"> 
    2279                         <set>AlignCenter</set> 
    2280                     </property> 
    2281                 </widget> 
    2282                 <widget class="QLabel"> 
    2283                     <property name="name"> 
    2284                         <cstring>textLabel1_2_2_8_2</cstring> 
    2285                     </property> 
    2286                     <property name="geometry"> 
    2287                         <rect> 
    2288                             <x>250</x> 
    2289                             <y>80</y> 
    2290                             <width>30</width> 
    2291                             <height>22</height> 
    2292                         </rect> 
    2293                     </property> 
    2294                     <property name="font"> 
    2295                         <font> 
    2296                             <pointsize>9</pointsize> 
    2297                         </font> 
    2298                     </property> 
    2299                     <property name="text"> 
    2300                         <string>Mute</string> 
    2301                     </property> 
    2302                     <property name="alignment"> 
    2303                         <set>AlignCenter</set> 
    2304                     </property> 
    2305                 </widget> 
    2306                 <widget class="QLabel"> 
    2307                     <property name="name"> 
    2308                         <cstring>textLabel1_2_2_9_2</cstring> 
    2309                     </property> 
    2310                     <property name="geometry"> 
    2311                         <rect> 
    2312                             <x>290</x> 
    2313                             <y>80</y> 
    2314                             <width>30</width> 
    2315                             <height>22</height> 
    2316                         </rect> 
    2317                     </property> 
    2318                     <property name="font"> 
    2319                         <font> 
    2320                             <pointsize>9</pointsize> 
    2321                         </font> 
    2322                     </property> 
    2323                     <property name="text"> 
    2324                         <string>Mute</string> 
    2325                     </property> 
    2326                     <property name="alignment"> 
    2327                         <set>AlignCenter</set> 
    2328                     </property> 
    2329                 </widget> 
    2330                 <widget class="QCheckBox"> 
    2331                     <property name="name"> 
    2332                         <cstring>checkBox1_17</cstring> 
    2333                     </property> 
    2334                     <property name="geometry"> 
    2335                         <rect> 
    2336                             <x>20</x> 
    2337                             <y>60</y> 
    2338                             <width>20</width> 
    2339                             <height>26</height> 
    2340                         </rect> 
    2341                     </property> 
    2342                     <property name="sizePolicy"> 
    2343                         <sizepolicy> 
    2344                             <hsizetype>1</hsizetype> 
    2345                             <vsizetype>0</vsizetype> 
    2346                             <horstretch>0</horstretch> 
    2347                             <verstretch>0</verstretch> 
    2348                         </sizepolicy> 
    2349                     </property> 
    2350                     <property name="font"> 
    2351                         <font> 
    2352                             <pointsize>9</pointsize> 
    2353                         </font> 
    2354                     </property> 
    2355                     <property name="text"> 
    2356                         <string></string> 
    2357                     </property> 
    2358                 </widget> 
    2359                 <widget class="QCheckBox"> 
    2360                     <property name="name"> 
    2361                         <cstring>checkBox1_3_2</cstring> 
    2362                     </property> 
    2363                     <property name="geometry"> 
    2364                         <rect> 
    2365                             <x>60</x> 
    2366                             <y>60</y> 
    2367                             <width>20</width> 
    2368                             <height>26</height> 
    2369                         </rect> 
    2370                     </property> 
    2371                     <property name="sizePolicy"> 
    2372                         <sizepolicy> 
    2373                             <hsizetype>1</hsizetype> 
    2374                             <vsizetype>0</vsizetype> 
    2375                             <horstretch>0</horstretch> 
    2376                             <verstretch>0</verstretch> 
    2377                         </sizepolicy> 
    2378                     </property> 
    2379                     <property name="font"> 
    2380                         <font> 
    2381                             <pointsize>9</pointsize> 
    2382                         </font> 
    2383                     </property> 
    2384                     <property name="text"> 
    2385                         <string></string> 
    2386                     </property> 
    2387                 </widget> 
    2388                 <widget class="QCheckBox"> 
    2389                     <property name="name"> 
    2390                         <cstring>checkBox1_4_2</cstring> 
    2391                     </property> 
    2392                     <property name="geometry"> 
    2393                         <rect> 
    2394                             <x>100</x> 
    2395                             <y>60</y> 
    2396                             <width>20</width> 
    2397                             <height>26</height> 
    2398                         </rect> 
    2399                     </property> 
    2400                     <property name="sizePolicy"> 
    2401                         <sizepolicy> 
    2402                             <hsizetype>1</hsizetype> 
    2403                             <vsizetype>0</vsizetype> 
    2404                             <horstretch>0</horstretch> 
    2405                             <verstretch>0</verstretch> 
    2406                         </sizepolicy> 
    2407                     </property> 
    2408                     <property name="font"> 
    2409                         <font> 
    2410                             <pointsize>9</pointsize> 
    2411                         </font> 
    2412                     </property> 
    2413                     <property name="text"> 
    2414                         <string></string> 
    2415                     </property> 
    2416                 </widget> 
    2417                 <widget class="QCheckBox"> 
    2418                     <property name="name"> 
    2419                         <cstring>checkBox1_5_2</cstring> 
    2420                     </property> 
    2421                     <property name="geometry"> 
    2422                         <rect> 
    2423                             <x>140</x> 
    2424                             <y>60</y> 
    2425                             <width>20</width> 
    2426                             <height>26</height> 
    2427                         </rect> 
    2428                     </property> 
    2429                     <property name="sizePolicy"> 
    2430                         <sizepolicy> 
    2431                             <hsizetype>1</hsizetype> 
    2432                             <vsizetype>0</vsizetype> 
    2433                             <horstretch>0</horstretch> 
    2434                             <verstretch>0</verstretch> 
    2435                         </sizepolicy> 
    2436                     </property> 
    2437                     <property name="font"> 
    2438                         <font> 
    2439                             <pointsize>9</pointsize> 
    2440                         </font> 
    2441                     </property> 
    2442                     <property name="text"> 
    2443                         <string></string> 
    2444                     </property> 
    2445                 </widget> 
    2446                 <widget class="QCheckBox"> 
    2447                     <property name="name"> 
    2448                         <cstring>checkBox1_6_2</cstring> 
    2449                     </property> 
    2450                     <property name="geometry"> 
    2451                         <rect> 
    2452                             <x>180</x> 
    2453                             <y>60</y> 
    2454                             <width>20</width> 
    2455                             <height>26</height> 
    2456                         </rect> 
    2457                     </property> 
    2458                     <property name="sizePolicy"> 
    2459                         <sizepolicy> 
    2460                             <hsizetype>1</hsizetype> 
    2461                             <vsizetype>0</vsizetype> 
    2462                             <horstretch>0</horstretch> 
    2463                             <verstretch>0</verstretch> 
    2464                         </sizepolicy> 
    2465                     </property> 
    2466                     <property name="font"> 
    2467                         <font> 
    2468                             <pointsize>9</pointsize> 
    2469                         </font> 
    2470                     </property> 
    2471                     <property name="text"> 
    2472                         <string></string> 
    2473                     </property> 
    2474                 </widget> 
    2475                 <widget class="QCheckBox"> 
    2476                     <property name="name"> 
    2477                         <cstring>checkBox1_7_2</cstring> 
    2478                     </property> 
    2479                     <property name="geometry"> 
    2480                         <rect> 
    2481                             <x>220</x> 
    2482                             <y>60</y> 
    2483                             <width>20</width> 
    2484                             <height>26</height> 
    2485                         </rect> 
    2486                     </property> 
    2487                     <property name="sizePolicy"> 
    2488                         <sizepolicy> 
    2489                             <hsizetype>1</hsizetype> 
    2490                             <vsizetype>0</vsizetype> 
    2491                             <horstretch>0</horstretch> 
    2492                             <verstretch>0</verstretch> 
    2493                         </sizepolicy> 
    2494                     </property> 
    2495                     <property name="font"> 
    2496                         <font> 
    2497                             <pointsize>9</pointsize> 
    2498                         </font> 
    2499                     </property> 
    2500                     <property name="text"> 
    2501                         <string></string> 
    2502                     </property> 
    2503                 </widget> 
    2504                 <widget class="QCheckBox"> 
    2505                     <property name="name"> 
    2506                         <cstring>checkBox1_8_2</cstring> 
    2507                     </property> 
    2508                     <property name="geometry"> 
    2509                         <rect> 
    2510                             <x>260</x> 
    2511                             <y>60</y> 
    2512                             <width>20</width> 
    2513                             <height>26</height> 
    2514                         </rect> 
    2515                     </property> 
    2516                     <property name="sizePolicy"> 
    2517                         <sizepolicy> 
    2518                             <hsizetype>1</hsizetype> 
    2519                             <vsizetype>0</vsizetype> 
    2520                             <horstretch>0</horstretch> 
    2521                             <verstretch>0</verstretch> 
    2522                         </sizepolicy> 
    2523                     </property> 
    2524                     <property name="font"> 
    2525                         <font> 
    2526                             <pointsize>9</pointsize> 
    2527                         </font> 
    2528                     </property> 
    2529                     <property name="text"> 
    2530                         <string></string> 
    2531                     </property> 
    2532                 </widget> 
    2533                 <widget class="QCheckBox"> 
    2534                     <property name="name"> 
    2535                         <cstring>checkBox1_9_2</cstring> 
    2536                     </property> 
    2537                     <property name="geometry"> 
    2538                         <rect> 
    2539                             <x>300</x> 
    2540                             <y>60</y> 
    2541                             <width>20</width> 
    2542                             <height>26</height> 
    2543                         </rect> 
    2544                     </property> 
    2545                     <property name="sizePolicy"> 
    2546                         <sizepolicy> 
    2547                             <hsizetype>1</hsizetype> 
    2548                             <vsizetype>0</vsizetype> 
    2549                             <horstretch>0</horstretch> 
    2550                             <verstretch>0</verstretch> 
    2551                         </sizepolicy> 
    2552                     </property> 
    2553                     <property name="font"> 
    2554                         <font> 
    2555                             <pointsize>9</pointsize> 
    2556                         </font> 
    2557                     </property> 
    2558                     <property name="text"> 
    2559                         <string></string> 
    2560                     </property> 
    2561                 </widget> 
    2562                 <widget class="QCheckBox"> 
    2563                     <property name="name"> 
    2564                         <cstring>checkBox1_10_2</cstring> 
    2565                     </property> 
    2566                     <property name="geometry"> 
    2567                         <rect> 
    2568                             <x>60</x> 
    2569                             <y>20</y> 
    2570                             <width>20</width> 
    2571                             <height>26</height> 
    2572                         </rect> 
    2573                     </property> 
    2574                     <property name="sizePolicy"> 
    2575                         <sizepolicy> 
    2576                             <hsizetype>1</hsizetype> 
    2577                             <vsizetype>0</vsizetype> 
    2578                             <horstretch>0</horstretch> 
    2579                             <verstretch>0</verstretch> 
    2580                         </sizepolicy> 
    2581                     </property> 
    2582                     <property name="font"> 
    2583                         <font> 
    2584                             <pointsize>9</pointsize> 
    2585                         </font> 
    2586                     </property> 
    2587                     <property name="text"> 
    2588                         <string></string> 
    2589                     </property> 
    2590                 </widget> 
    2591                 <widget class="QCheckBox"> 
    2592                     <property name="name"> 
    2593                         <cstring>checkBox1_11_2</cstring> 
    2594                     </property> 
    2595                     <property name="geometry"> 
    2596                         <rect> 
    2597                             <x>100</x> 
    2598                             <y>20</y> 
    2599                             <width>20</width> 
    2600                             <height>26</height> 
    2601                         </rect> 
    2602                     </property> 
    2603                     <property name="sizePolicy"> 
    2604                         <sizepolicy> 
    2605                             <hsizetype>1</hsizetype> 
    2606                             <vsizetype>0</vsizetype> 
    2607                             <horstretch>0</horstretch> 
    2608                             <verstretch>0</verstretch> 
    2609                         </sizepolicy> 
    2610                     </property> 
    2611                     <property name="font"> 
    2612                         <font> 
    2613                             <pointsize>9</pointsize> 
    2614                         </font> 
    2615                     </property> 
    2616                     <property name="text"> 
    2617                         <string></string> 
    2618                     </property> 
    2619                 </widget> 
    2620                 <widget class="QCheckBox"> 
    2621                     <property name="name"> 
    2622                         <cstring>checkBox1_12_2</cstring> 
    2623                     </property> 
    2624                     <property name="geometry"> 
    2625                         <rect> 
    2626                             <x>140</x> 
    2627                             <y>20</y> 
    2628                             <width>20</width> 
    2629                             <height>26</height> 
    2630                         </rect> 
    2631                     </property> 
    2632                     <property name="sizePolicy"> 
    2633                         <sizepolicy> 
    2634                             <hsizetype>1</hsizetype> 
    2635                             <vsizetype>0</vsizetype> 
    2636                             <horstretch>0</horstretch> 
    2637                             <verstretch>0</verstretch> 
    2638                         </sizepolicy> 
    2639                     </property> 
    2640                     <property name="font"> 
    2641                         <font> 
    2642                             <pointsize>9</pointsize> 
    2643                         </font> 
    2644                     </property> 
    2645                     <property name="text"> 
    2646                         <string></string> 
    2647                     </property> 
    2648                 </widget> 
    2649                 <widget class="QCheckBox"> 
    2650                     <property name="name"> 
    2651                         <cstring>checkBox1_13_2</cstring> 
    2652                     </property> 
    2653                     <property name="geometry"> 
    2654                         <rect> 
    2655                             <x>180</x> 
    2656                             <y>20</y> 
    2657                             <width>20</width> 
    2658                             <height>26</height> 
    2659                         </rect> 
    2660                     </property> 
    2661                     <property name="sizePolicy"> 
    2662                         <sizepolicy> 
    2663                             <hsizetype>1</hsizetype> 
    2664                             <vsizetype>0</vsizetype> 
    2665                             <horstretch>0</horstretch> 
    2666                             <verstretch>0</verstretch> 
    2667                         </sizepolicy> 
    2668                     </property> 
    2669                     <property name="font"> 
    2670                         <font> 
    2671                             <pointsize>9</pointsize> 
    2672                         </font> 
    2673                     </property> 
    2674                     <property name="text"> 
    2675                         <string></string> 
    2676                     </property> 
    2677                 </widget> 
    2678                 <widget class="QCheckBox"> 
    2679                     <property name="name"> 
    2680                         <cstring>checkBox1_14_2</cstring> 
    2681                     </property> 
    2682                     <property name="geometry"> 
    2683                         <rect> 
    2684                             <x>220</x> 
    2685                             <y>20</y> 
    2686                             <width>20</width> 
    2687                             <height>26</height> 
    2688                         </rect> 
    2689                     </property> 
    2690                     <property name="sizePolicy"> 
    2691                         <sizepolicy> 
    2692                             <hsizetype>1</hsizetype> 
    2693                             <vsizetype>0</vsizetype> 
    2694                             <horstretch>0</horstretch> 
    2695                             <verstretch>0</verstretch> 
    2696                         </sizepolicy> 
    2697                     </property> 
    2698                     <property name="font"> 
    2699                         <font> 
    2700                             <pointsize>9</pointsize> 
    2701                         </font> 
    2702                     </property> 
    2703                     <property name="text"> 
    2704                         <string></string> 
    2705                     </property> 
    2706                 </widget> 
    2707                 <widget class="QCheckBox"> 
    2708                     <property name="name"> 
    2709                         <cstring>checkBox1_15_2</cstring> 
    2710                     </property> 
    2711                     <property name="geometry"> 
    2712                         <rect> 
    2713                             <x>260</x> 
    2714                             <y>20</y> 
    2715                             <width>20</width> 
    2716                             <height>26</height> 
    2717                         </rect> 
    2718                     </property> 
    2719                     <property name="sizePolicy"> 
    2720                         <sizepolicy> 
    2721                             <hsizetype>1</hsizetype> 
    2722                             <vsizetype>0</vsizetype> 
    2723                             <horstretch>0</horstretch> 
    2724                             <verstretch>0</verstretch> 
    2725                         </sizepolicy> 
    2726                     </property> 
    2727                     <property name="font"> 
    2728                         <font> 
    2729                             <pointsize>9</pointsize> 
    2730                         </font> 
    2731                     </property> 
    2732                     <property name="text"> 
    2733                         <string></string> 
    2734                     </property> 
    2735                 </widget> 
    2736                 <widget class="QCheckBox"> 
    2737                     <property name="name"> 
    2738                         <cstring>checkBox1_16_2</cstring> 
    2739                     </property> 
    2740                     <property name="geometry"> 
    2741                         <rect> 
    2742                             <x>300</x> 
    2743                             <y>20</y> 
    2744                             <width>20</width> 
    2745                             <height>26</height> 
    2746                         </rect> 
    2747                     </property> 
    2748                     <property name="sizePolicy"> 
    2749                         <sizepolicy> 
    2750                             <hsizetype>1</hsizetype> 
    2751                             <vsizetype>0</vsizetype> 
    2752                             <horstretch>0</horstretch> 
    2753                             <verstretch>0</verstretch> 
    2754                         </sizepolicy> 
    2755                     </property> 
    2756                     <property name="font"> 
    2757                         <font> 
    2758                             <pointsize>9</pointsize> 
    2759                         </font> 
    2760                     </property> 
    2761                     <property name="text"> 
    2762                         <string></string> 
    2763                     </property> 
    2764                 </widget> 
    2765                 <widget class="QLabel"> 
    2766                     <property name="name"> 
    2767                         <cstring>textLabel1_2_2_2_9</cstring> 
    2768                     </property> 
    2769                     <property name="geometry"> 
    2770                         <rect> 
    2771                             <x>10</x> 
    2772                             <y>40</y> 
    2773                             <width>30</width> 
    2774                             <height>22</height> 
    2775                         </rect> 
    2776                     </property> 
    2777                     <property name="font"> 
    2778                         <font> 
    2779                             <pointsize>9</pointsize> 
    2780                         </font> 
    2781                     </property> 
    2782                     <property name="text"> 
    2783                         <string>Solo</string> 
    2784                     </property> 
    2785                     <property name="alignment"> 
    2786                         <set>AlignCenter</set> 
    2787                     </property> 
    2788                 </widget> 
    2789                 <widget class="QLabel"> 
    2790                     <property name="name"> 
    2791                         <cstring>textLabel1_2_2_2_2_2</cstring> 
    2792                     </property> 
    2793                     <property name="geometry"> 
    2794                         <rect> 
    2795                             <x>50</x> 
    2796                             <y>40</y> 
    2797                             <width>30</width> 
    2798                             <height>22</height> 
    2799                         </rect> 
    2800                     </property> 
    2801                     <property name="font"> 
    2802                         <font> 
    2803                             <pointsize>9</pointsize> 
    2804                         </font> 
    2805                     </property> 
    2806                     <property name="text"> 
    2807                         <string>Solo</string> 
    2808                     </property> 
    2809                     <property name="alignment"> 
    2810                         <set>AlignCenter</set> 
    2811                     </property> 
    2812                 </widget> 
    2813                 <widget class="QLabel"> 
    2814                     <property name="name"> 
    2815                         <cstring>textLabel1_2_2_2_3_2</cstring> 
    2816                     </property> 
    2817                     <property name="geometry"> 
    2818                         <rect> 
    2819                             <x>90</x> 
    2820                             <y>40</y> 
    2821                             <width>30</width> 
    2822                             <height>22</height> 
    2823                         </rect> 
    2824                     </property> 
    2825                     <property name="font"> 
    2826                         <font> 
    2827                             <pointsize>9</pointsize> 
    2828                         </font> 
    2829                     </property> 
    2830                     <property name="text"> 
    2831                         <string>Solo</string> 
    2832                     </property> 
    2833                     <property name="alignment"> 
    2834                         <set>AlignCenter</set> 
    2835                     </property> 
    2836                 </widget> 
    2837                 <widget class="QLabel"> 
    2838                     <property name="name"> 
    2839                         <cstring>textLabel1_2_2_2_4_2</cstring> 
    2840                     </property> 
    2841                     <property name="geometry"> 
    2842                         <rect> 
    2843                             <x>130</x> 
    2844                             <y>40</y> 
    2845                             <width>30</width> 
    2846                             <height>22</height> 
    2847                         </rect> 
    2848                     </property> 
    2849                     <property name="font"> 
    2850                         <font> 
    2851                             <pointsize>9</pointsize> 
    2852                         </font> 
    2853                     </property> 
    2854                     <property name="text"> 
    2855                         <string>Solo</string> 
    2856                     </property> 
    2857                     <property name="alignment"> 
    2858                         <set>AlignCenter</set> 
    2859                     </property> 
    2860                 </widget> 
    2861                 <widget class="QLabel"> 
    2862                     <property name="name"> 
    2863                         <cstring>textLabel1_2_2_2_5_2</cstring> 
    2864                     </property> 
    2865                     <property name="geometry"> 
    2866                         <rect> 
    2867                             <x>170</x> 
    2868                             <y>40</y> 
    2869                             <width>30</width> 
    2870                             <height>22</height> 
    2871                         </rect> 
    2872                     </property> 
    2873                     <property name="font"> 
    2874                         <font> 
    2875                             <pointsize>9</pointsize> 
    2876                         </font> 
    2877                     </property> 
    2878                     <property name="text"> 
    2879                         <string>Solo</string> 
    2880                     </property> 
    2881                     <property name="alignment"> 
    2882                         <set>AlignCenter</set> 
    2883                     </property> 
    2884                 </widget> 
    2885                 <widget class="QLabel"> 
    2886                     <property name="name"> 
    2887                         <cstring>textLabel1_2_2_2_6_2</cstring> 
    2888                     </property> 
    2889                     <property name="geometry"> 
    2890                         <rect> 
    2891                             <x>210</x> 
    2892                             <y>40</y> 
    2893                             <width>30</width> 
    2894                             <height>22</height> 
    2895                         </rect> 
    2896                     </property> 
    2897                     <property name="font"> 
    2898                         <font> 
    2899                             <pointsize>9</pointsize> 
    2900                         </font> 
    2901                     </property> 
    2902                     <property name="text"> 
    2903                         <string>Solo</string> 
    2904                     </property> 
    2905                     <property name="alignment"> 
    2906                         <set>AlignCenter</set> 
    2907                     </property> 
    2908                 </widget> 
    2909                 <widget class="QLabel"> 
    2910                     <property name="name"> 
    2911                         <cstring>textLabel1_2_2_2_7_2</cstring> 
    2912                     </property> 
    2913                     <property name="geometry"> 
    2914                         <rect> 
    2915                             <x>250</x> 
    2916                             <y>40</y> 
    2917                             <width>30</width> 
    2918                             <height>22</height> 
    2919                         </rect> 
    2920                     </property> 
    2921                     <property name="font"> 
    2922                         <font> 
    2923                             <pointsize>9</pointsize> 
    2924                         </font> 
    2925                     </property> 
    2926                     <property name="text"> 
    2927                         <string>Solo</string> 
    2928                     </property> 
    2929                     <property name="alignment"> 
    2930                         <set>AlignCenter</set> 
    2931                     </property> 
    2932                 </widget> 
    2933                 <widget class="QLabel"> 
    2934                     <property name="name"> 
    2935                         <cstring>textLabel1_2_2_2_8_2</cstring> 
    2936                     </property> 
    2937                     <property name="geometry"> 
    2938                         <rect> 
    2939                             <x>290</x> 
    2940                             <y>40</y> 
    2941                             <width>30</width> 
    2942                             <height>22</height> 
    2943                         </rect> 
    2944                     </property> 
    2945                     <property name="font"> 
    2946                         <font> 
    2947                             <pointsize>9</pointsize> 
    2948                         </font> 
    2949                     </property> 
    2950                     <property name="text"> 
    2951                         <string>Solo</string> 
    2952                     </property> 
    2953                     <property name="alignment"> 
    2954                         <set>AlignCenter</set> 
    2955                     </property> 
    2956                 </widget> 
    2957                 <widget class="QLabel"> 
    2958                     <property name="name"> 
    2959                         <cstring>textLabel2_2_2</cstring> 
    2960                     </property> 
    2961                     <property name="geometry"> 
    2962                         <rect> 
    2963                             <x>50</x> 
    2964                             <y>280</y> 
    2965                             <width>30</width> 
    2966                             <height>22</height> 
    2967                         </rect> 
    2968                     </property> 
    2969                     <property name="text"> 
    2970                         <string>2</string> 
    2971                     </property> 
    2972                     <property name="alignment"> 
    2973                         <set>AlignCenter</set> 
    2974                     </property> 
    2975                 </widget> 
    2976                 <widget class="QLabel"> 
    2977                     <property name="name"> 
    2978                         <cstring>textLabel2_3_2</cstring> 
    2979                     </property> 
    2980                     <property name="geometry"> 
    2981                         <rect> 
    2982                             <x>90</x> 
    2983                             <y>280</y> 
    2984                             <width>30</width> 
    2985                             <height>22</height> 
    2986                         </rect> 
    2987                     </property> 
    2988                     <property name="text"> 
    2989                         <string>3</string> 
    2990                     </property> 
    2991                     <property name="alignment"> 
    2992                         <set>AlignCenter</set> 
    2993                     </property> 
    2994                 </widget> 
    2995                 <widget class="QLabel"> 
    2996                     <property name="name"> 
    2997                         <cstring>textLabel2_4_2</cstring> 
    2998                     </property> 
    2999                     <property name="geometry"> 
    3000                         <rect> 
    3001                             <x>130</x> 
    3002                             <y>280</y> 
    3003                             <width>30</width> 
    3004                             <height>22</height> 
    3005                         </rect> 
    3006                     </property> 
    3007                     <property name="text"> 
    3008                         <string>4</string> 
    3009                     </property> 
    3010                     <property name="alignment"> 
    3011                         <set>AlignCenter</set> 
    3012                     </property> 
    3013                 </widget> 
    3014                 <widget class="QLabel"> 
    3015                     <property name="name"> 
    3016                         <cstring>textLabel2_5_2</cstring> 
    3017                     </property> 
    3018                     <property name="geometry"> 
    3019                         <rect> 
    3020                             <x>170</x> 
    3021                             <y>280</y> 
    3022                             <width>30</width> 
    3023                             <height>22</height> 
    3024                         </rect> 
    3025                     </property> 
    3026                     <property name="text"> 
    3027                         <string>5</string> 
    3028                     </property> 
    3029                     <property name="alignment"> 
    3030                         <set>AlignCenter</set> 
    3031                     </property> 
    3032                 </widget> 
    3033                 <widget class="QLabel"> 
    3034                     <property name="name"> 
    3035                         <cstring>textLabel2_7_2</cstring> 
    3036                     </property> 
    3037                     <property name="geometry"> 
    3038                         <rect> 
    3039                             <x>250</x> 
    3040                             <y>280</y> 
    3041                             <width>30</width> 
    3042                             <height>22</height> 
    3043                         </rect> 
    3044                     </property> 
    3045                     <property name="text"> 
    3046                         <string>7</string> 
    3047                     </property> 
    3048                     <property name="alignment"> 
    3049                         <set>AlignCenter</set> 
    3050                     </property> 
    3051                 </widget> 
    3052                 <widget class="QLabel"> 
    3053                     <property name="name"> 
    3054                         <cstring>textLabel2_8_2</cstring> 
    3055                     </property> 
    3056                     <property name="geometry"> 
    3057                         <rect> 
    3058                             <x>290</x> 
    3059                             <y>280</y> 
    3060                             <width>30</width> 
    3061                             <height>22</height> 
    3062                         </rect> 
    3063                     </property> 
    3064                     <property name="text"> 
    3065                         <string>8</string> 
    3066                     </property> 
    3067                     <property name="alignment"> 
    3068                         <set>AlignCenter</set> 
    3069                     </property> 
    3070                 </widget> 
    3071                 <widget class="QLabel"> 
    3072                     <property name="name"> 
    3073                         <cstring>textLabel2_6_2</cstring> 
    3074                     </property> 
    3075                     <property name="geometry"> 
    3076                         <rect> 
    3077                             <x>210</x> 
    3078                             <y>280</y> 
    3079                             <width>30</width> 
    3080                             <height>22</height> 
    3081                         </rect> 
    3082                     </property> 
    3083                     <property name="text"> 
    3084                         <string>6</string> 
    3085                     </property> 
    3086                     <property name="alignment"> 
    3087                         <set>AlignCenter</set> 
    3088                     </property> 
    3089                 </widget> 
    3090                 <widget class="QSlider"> 
    3091                     <property name="name"> 
    3092                         <cstring>sldFB1_9</cstring> 
    3093                     </property> 
    3094                     <property name="geometry"> 
    3095                         <rect> 
    3096                             <x>10</x> 
    3097                             <y>160</y> 
    3098                             <width>30</width> 
    3099                             <height>120</height> 
    3100                         </rect> 
    3101                     </property> 
    3102                     <property name="minValue"> 
    3103                         <number>0</number> 
    3104                     </property> 
    3105                     <property name="maxValue"> 
    3106                         <number>128</number> 
    3107                     </property> 
    3108                     <property name="lineStep"> 
    3109                         <number>1</number> 
    3110                     </property> 
    3111                     <property name="pageStep"> 
    3112                         <number>10</number> 
    3113                     </property> 
    3114                     <property name="value"> 
    3115                         <number>128</number> 
    3116                     </property> 
    3117                     <property name="orientation"> 
    3118                         <enum>Vertical</enum> 
    3119                     </property> 
    3120                     <property name="tickmarks"> 
    3121                         <enum>Both</enum> 
    3122                     </property> 
    3123                     <property name="tickInterval"> 
    3124                         <number>10</number> 
    3125                     </property> 
    3126                 </widget> 
    3127                 <widget class="QSlider"> 
    3128                     <property name="name"> 
    3129                         <cstring>sldFB1_2_2</cstring> 
    3130                     </property> 
    3131                     <property name="geometry"> 
    3132                         <rect> 
    3133                             <x>50</x> 
    3134                             <y>160</y> 
    3135                             <width>30</width> 
    3136                             <height>120</height> 
    3137                         </rect> 
    3138                     </property> 
    3139                     <property name="minValue"> 
    3140                         <number>0</number> 
    3141                     </property> 
    3142                     <property name="maxValue"> 
    3143                         <number>128</number> 
    3144                     </property> 
    3145                     <property name="lineStep"> 
    3146                         <number>1</number> 
    3147                     </property> 
    3148                     <property name="pageStep"> 
    3149                         <number>10</number> 
    3150                     </property> 
    3151                     <property name="value"> 
    3152                         <number>128</number> 
    3153                     </property> 
    3154                     <property name="orientation"> 
    3155                         <enum>Vertical</enum> 
    3156                     </property> 
    3157                     <property name="tickmarks"> 
    3158                         <enum>Both</enum> 
    3159                     </property> 
    3160                     <property name="tickInterval"> 
    3161                         <number>10</number> 
    3162                     </property> 
    3163                 </widget> 
    3164                 <widget class="QSlider"> 
    3165                     <property name="name"> 
    3166                         <cstring>sldFB1_3_2</cstring> 
    3167                     </property> 
    3168                     <property name="geometry"> 
    3169                         <rect> 
    3170                             <x>90</x> 
    3171                             <y>160</y> 
    3172                             <width>30</width> 
    3173                             <height>120</height> 
    3174                         </rect> 
    3175                     </property> 
    3176                     <property name="minValue"> 
    3177                         <number>0</number> 
    3178                     </property> 
    3179                     <property name="maxValue"> 
    3180                         <number>128</number> 
    3181                     </property> 
    3182                     <property name="lineStep"> 
    3183                         <number>1</number> 
    3184                     </property> 
    3185                     <property name="pageStep"> 
    3186                         <number>10</number> 
    3187                     </property> 
    3188                     <property name="value"> 
    3189                         <number>128</number> 
    3190                     </property> 
    3191                     <property name="orientation"> 
    3192                         <enum>Vertical</enum> 
    3193                     </property> 
    3194                     <property name="tickmarks"> 
    3195                         <enum>Both</enum> 
    3196                     </property> 
    3197                     <property name="tickInterval"> 
    3198                         <number>10</number> 
    3199                     </property> 
    3200                 </widget> 
    3201                 <widget class="QSlider"> 
    3202                     <property name="name"> 
    3203                         <cstring>sldFB1_4_2</cstring> 
    3204                     </property> 
    3205                     <property name="geometry"> 
    3206                         <rect> 
    3207                             <x>130</x> 
    3208                             <y>160</y> 
    3209                             <width>30</width> 
    3210                             <height>120</height> 
    3211                         </rect> 
    3212                     </property> 
    3213                     <property name="minValue"> 
    3214                         <number>0</number> 
    3215                     </property> 
    3216                     <property name="maxValue"> 
    3217                         <number>128</number> 
    3218                     </property> 
    3219                     <property name="lineStep"> 
    3220                         <number>1</number> 
    3221                     </property> 
    3222                     <property name="pageStep"> 
    3223                         <number>10</number> 
    3224                     </property> 
    3225                     <property name="value"> 
    3226                         <number>128</number> 
    3227                     </property> 
    3228                     <property name="orientation"> 
    3229                         <enum>Vertical</enum> 
    3230                     </property> 
    3231                     <property name="tickmarks"> 
    3232                         <enum>Both</enum> 
    3233                     </property> 
    3234                     <property name="tickInterval"> 
    3235                         <number>10</number> 
    3236                     </property> 
    3237                 </widget> 
    3238                 <widget class="QSlider"> 
    3239                     <property name="name"> 
    3240                         <cstring>sldFB1_5_2</cstring> 
    3241                     </property> 
    3242                     <property name="geometry"> 
    3243                         <rect> 
    3244                             <x>170</x> 
    3245                             <y>160</y> 
    3246                             <width>30</width> 
    3247                             <height>120</height> 
    3248                         </rect> 
    3249                     </property> 
    3250                     <property name="minValue"> 
    3251                         <number>0</number> 
    3252                     </property> 
    3253                     <property name="maxValue"> 
    3254                         <number>128</number> 
    3255                     </property> 
    3256                     <property name="lineStep"> 
    3257                         <number>1</number> 
    3258                     </property> 
    3259                     <property name="pageStep"> 
    3260                         <number>10</number> 
    3261                     </property> 
    3262                     <property name="value"> 
    3263                         <number>128</number> 
    3264                     </property> 
    3265                     <property name="orientation"> 
    3266                         <enum>Vertical</enum> 
    3267                     </property> 
    3268                     <property name="tickmarks"> 
    3269                         <enum>Both</enum> 
    3270                     </property> 
    3271                     <property name="tickInterval"> 
    3272                         <number>10</number> 
    3273                     </property> 
    3274                 </widget> 
    3275                 <widget class="QSlider"> 
    3276                     <property name="name"> 
    3277                         <cstring>sldFB1_6_2</cstring> 
    3278                     </property> 
    3279                     <property name="geometry"> 
    3280                         <rect> 
    3281                             <x>210</x> 
    3282                             <y>160</y> 
    3283                             <width>30</width> 
    3284                             <height>120</height> 
    3285                         </rect> 
    3286                     </property> 
    3287                     <property name="minValue"> 
    3288                         <number>0</number> 
    3289                     </property> 
    3290                     <property name="maxValue"> 
    3291                         <number>128</number> 
    3292                     </property> 
    3293                     <property name="lineStep"> 
    3294                         <number>1</number> 
    3295                     </property> 
    3296                     <property name="pageStep"> 
    3297                         <number>10</number> 
    3298                     </property> 
    3299                     <property name="value"> 
    3300                         <number>128</number> 
    3301                     </property> 
    3302                     <property name="orientation"> 
    3303                         <enum>Vertical</enum> 
    3304                     </property> 
    3305                     <property name="tickmarks"> 
    3306                         <enum>Both</enum> 
    3307                     </property> 
    3308                     <property name="tickInterval"> 
    3309                         <number>10</number> 
    3310                     </property> 
    3311                 </widget> 
    3312                 <widget class="QSlider"> 
    3313                     <property name="name"> 
    3314                         <cstring>sldFB1_7_2</cstring> 
    3315                     </property> 
    3316                     <property name="geometry"> 
    3317                         <rect> 
    3318                             <x>250</x> 
    3319                             <y>160</y> 
    3320                             <width>30</width> 
    3321                             <height>120</height> 
    3322                         </rect> 
    3323                     </property> 
    3324                     <property name="minValue"> 
    3325                         <number>0</number> 
    3326                     </property> 
    3327                     <property name="maxValue"> 
    3328                         <number>128</number> 
    3329                     </property> 
    3330                     <property name="lineStep"> 
    3331                         <number>1</number> 
    3332                     </property> 
    3333                     <property name="pageStep"> 
    3334                         <number>10</number> 
    3335                     </property> 
    3336                     <property name="value"> 
    3337                         <number>128</number> 
    3338                     </property> 
    3339                     <property name="orientation"> 
    3340                         <enum>Vertical</enum> 
    3341                     </property> 
    3342                     <property name="tickmarks"> 
    3343                         <enum>Both</enum> 
    3344                     </property> 
    3345                     <property name="tickInterval"> 
    3346                         <number>10</number> 
    3347                     </property> 
    3348                 </widget> 
    3349                 <widget class="QSlider"> 
    3350                     <property name="name"> 
    3351                         <cstring>sldFB1_8_2</cstring> 
    3352                     </property> 
    3353                     <property name="geometry"> 
    3354                         <rect> 
    3355                             <x>290</x> 
    3356                             <y>160</y> 
    3357                             <width>30</width> 
    3358                             <height>120</height> 
    3359                         </rect> 
    3360                     </property> 
    3361                     <property name="minValue"> 
    3362                         <number>0</number> 
    3363                     </property> 
    3364                     <property name="maxValue"> 
    3365                         <number>128</number> 
    3366                     </property> 
    3367                     <property name="lineStep"> 
    3368                         <number>1</number> 
    3369                     </property> 
    3370                     <property name="pageStep"> 
    3371                         <number>10</number> 
    3372                     </property> 
    3373                     <property name="value"> 
    3374                         <number>128</number> 
    3375                     </property> 
    3376                     <property name="orientation"> 
    3377                         <enum>Vertical</enum> 
    3378                     </property> 
    3379                     <property name="tickmarks"> 
    3380                         <enum>Both</enum> 
    3381                     </property> 
    3382                     <property name="tickInterval"> 
    3383                         <number>10</number> 
    3384                     </property> 
    3385                 </widget> 
    3386             </widget> 
    33871731            <widget class="QGroupBox"> 
    33881732                <property name="name"> 
     
    39522296                    </property> 
    39532297                </widget> 
     2298                <widget class="QLabel"> 
     2299                    <property name="name"> 
     2300                        <cstring>textLabel1_2_2</cstring> 
     2301                    </property> 
     2302                    <property name="geometry"> 
     2303                        <rect> 
     2304                            <x>10</x> 
     2305                            <y>80</y> 
     2306                            <width>30</width> 
     2307                            <height>22</height> 
     2308                        </rect> 
     2309                    </property> 
     2310                    <property name="font"> 
     2311                        <font> 
     2312                            <pointsize>9</pointsize> 
     2313                        </font> 
     2314                    </property> 
     2315                    <property name="text"> 
     2316                        <string>Mute</string> 
     2317                    </property> 
     2318                    <property name="alignment"> 
     2319                        <set>AlignCenter</set> 
     2320                    </property> 
     2321                </widget> 
     2322                <widget class="QLabel"> 
     2323                    <property name="name"> 
     2324                        <cstring>textLabel2</cstring> 
     2325                    </property> 
     2326                    <property name="geometry"> 
     2327                        <rect> 
     2328                            <x>10</x> 
     2329                            <y>280</y> 
     2330                            <width>30</width> 
     2331                            <height>22</height> 
     2332                        </rect> 
     2333                    </property> 
     2334                    <property name="text"> 
     2335                        <string>1</string> 
     2336                    </property> 
     2337                    <property name="alignment"> 
     2338                        <set>AlignCenter</set> 
     2339                    </property> 
     2340                </widget> 
     2341                <widget class="QLabel"> 
     2342                    <property name="name"> 
     2343                        <cstring>textLabel2_2</cstring> 
     2344                    </property> 
     2345                    <property name="geometry"> 
     2346                        <rect> 
     2347                            <x>50</x> 
     2348                            <y>280</y> 
     2349                            <width>30</width> 
     2350                            <height>22</height> 
     2351                        </rect> 
     2352                    </property> 
     2353                    <property name="text"> 
     2354                        <string>2</string> 
     2355                    </property> 
     2356                    <property name="alignment"> 
     2357                        <set>AlignCenter</set> 
     2358                    </property> 
     2359                </widget> 
     2360                <widget class="QLabel"> 
     2361                    <property name="name"> 
     2362                        <cstring>textLabel2_3</cstring> 
     2363                    </property> 
     2364                    <property name="geometry"> 
     2365                        <rect> 
     2366                            <x>90</x> 
     2367                            <y>280</y> 
     2368                            <width>30</width> 
     2369                            <height>22</height> 
     2370                        </rect> 
     2371                    </property> 
     2372                    <property name="text"> 
     2373                        <string>3</string> 
     2374                    </property> 
     2375                    <property name="alignment"> 
     2376                        <set>AlignCenter</set> 
     2377                    </property> 
     2378                </widget> 
     2379                <widget class="QLabel"> 
     2380                    <property name="name"> 
     2381                        <cstring>textLabel2_4</cstring> 
     2382                    </property> 
     2383                    <property name="geometry"> 
     2384                        <rect> 
     2385                            <x>130</x> 
     2386                            <y>280</y> 
     2387                            <width>30</width> 
     2388                            <height>22</height> 
     2389                        </rect> 
     2390                    </property> 
     2391                    <property name="text"> 
     2392                        <string>4</string> 
     2393                    </property> 
     2394                    <property name="alignment"> 
     2395                        <set>AlignCenter</set> 
     2396                    </property> 
     2397                </widget> 
     2398                <widget class="QLabel"> 
     2399                    <property name="name"> 
     2400                        <cstring>textLabel2_5</cstring> 
     2401                    </property> 
     2402                    <property name="geometry"> 
     2403                        <rect> 
     2404                            <x>170</x> 
     2405                            <y>280</y> 
     2406                            <width>30</width> 
     2407                            <height>22</height> 
     2408                        </rect> 
     2409                    </property> 
     2410                    <property name="text"> 
     2411                        <string>5</string> 
     2412                    </property> 
     2413                    <property name="alignment"> 
     2414                        <set>AlignCenter</set> 
     2415                    </property> 
     2416                </widget> 
     2417                <widget class="QLabel"> 
     2418                    <property name="name"> 
     2419                        <cstring>textLabel2_6</cstring> 
     2420                    </property> 
     2421                    <property name="geometry"> 
     2422                        <rect> 
     2423                            <x>210</x> 
     2424                            <y>280</y> 
     2425                            <width>30</width> 
     2426                            <height>22</height> 
     2427                        </rect> 
     2428                    </property> 
     2429                    <property name="text"> 
     2430                        <string>6</string> 
     2431                    </property> 
     2432                    <property name="alignment"> 
     2433                        <set>AlignCenter</set> 
     2434                    </property> 
     2435                </widget> 
     2436                <widget class="QLabel"> 
     2437                    <property name="name"> 
     2438                        <cstring>textLabel2_7</cstring> 
     2439                    </property> 
     2440                    <property name="geometry"> 
     2441                        <rect> 
     2442                            <x>250</x> 
     2443                            <y>280</y> 
     2444                            <width>30</width> 
     2445                            <height>22</height> 
     2446                        </rect> 
     2447                    </property> 
     2448                    <property name="text"> 
     2449                        <string>7</string> 
     2450                    </property> 
     2451                    <property name="alignment"> 
     2452                        <set>AlignCenter</set> 
     2453                    </property> 
     2454                </widget> 
     2455                <widget class="QLabel"> 
     2456                    <property name="name"> 
     2457                        <cstring>textLabel2_8</cstring> 
     2458                    </property> 
     2459                    <property name="geometry"> 
     2460                        <rect> 
     2461                            <x>290</x> 
     2462                            <y>280</y> 
     2463                            <width>30</width> 
     2464                            <height>22</height> 
     2465                        </rect> 
     2466                    </property> 
     2467                    <property name="text"> 
     2468                        <string>8</string> 
     2469                    </property> 
     2470                    <property name="alignment"> 
     2471                        <set>AlignCenter</set> 
     2472                    </property> 
     2473                </widget> 
    39542474                <widget class="QSlider"> 
    39552475                    <property name="name"> 
     
    42112731                    </property> 
    42122732                </widget> 
     2733                <widget class="QSlider"> 
     2734                    <property name="name"> 
     2735                        <cstring>mix1ana8_fader</cstring> 
     2736                    </property> 
     2737                    <property name="geometry"> 
     2738                        <rect> 
     2739                            <x>290</x> 
     2740                            <y>160</y> 
     2741                            <width>30</width> 
     2742                            <height>120</height> 
     2743                        </rect> 
     2744                    </property> 
     2745                    <property name="minValue"> 
     2746                        <number>0</number> 
     2747                    </property> 
     2748                    <property name="maxValue"> 
     2749                        <number>128</number> 
     2750                    </property> 
     2751                    <property name="lineStep"> 
     2752                        <number>1</number> 
     2753                    </property> 
     2754                    <property name="pageStep"> 
     2755                        <number>10</number> 
     2756                    </property> 
     2757                    <property name="value"> 
     2758                        <number>128</number> 
     2759                    </property> 
     2760                    <property name="orientation"> 
     2761                        <enum>Vertical</enum> 
     2762                    </property> 
     2763                    <property name="tickmarks"> 
     2764                        <enum>Both</enum> 
     2765                    </property> 
     2766                    <property name="tickInterval"> 
     2767                        <number>10</number> 
     2768                    </property> 
     2769                </widget> 
     2770                <widget class="QDial"> 
     2771                    <property name="name"> 
     2772                        <cstring>mix1ana1_pan</cstring> 
     2773                    </property> 
     2774                    <property name="geometry"> 
     2775                        <rect> 
     2776                            <x>10</x> 
     2777                            <y>100</y> 
     2778                            <width>30</width> 
     2779                            <height>30</height> 
     2780                        </rect> 
     2781                    </property> 
     2782                    <property name="minValue"> 
     2783                        <number>-64</number> 
     2784                    </property> 
     2785                    <property name="maxValue"> 
     2786                        <number>64</number> 
     2787                    </property> 
     2788                </widget> 
    42132789                <widget class="QDial"> 
    42142790                    <property name="name"> 
     
    43462922                <widget class="QCheckBox"> 
    43472923                    <property name="name"> 
    4348                         <cstring>mix1ana2_mute</cstring> 
    4349                     </property> 
    4350                     <property name="geometry"> 
    4351                         <rect> 
    4352                             <x>60</x> 
     2924                        <cstring>mix1ana1_mute</cstring> 
     2925                    </property> 
     2926                    <property name="geometry"> 
     2927                        <rect> 
     2928                            <x>20</x> 
    43532929                            <y>60</y> 
    43542930                            <width>20</width> 
     
    43752951                <widget class="QCheckBox"> 
    43762952                    <property name="name"> 
    4377                         <cstring>mix1ana3_mute</cstring> 
    4378                     </property> 
    4379                     <property name="geometry"> 
    4380                         <rect> 
    4381                             <x>100</x> 
     2953                        <cstring>mix1ana2_mute</cstring> 
     2954                    </property> 
     2955                    <property name="geometry"> 
     2956                        <rect> 
     2957                            <x>60</x> 
    43822958                            <y>60</y> 
    43832959                            <width>20</width> 
     
    44042980                <widget class="QCheckBox"> 
    44052981                    <property name="name"> 
    4406                         <cstring>mix1ana4_mute</cstring> 
    4407                     </property> 
    4408                     <property name="geometry"> 
    4409                         <rect> 
    4410                             <x>140</x> 
     2982                        <cstring>mix1ana3_mute</cstring> 
     2983                    </property> 
     2984                    <property name="geometry"> 
     2985                        <rect> 
     2986                            <x>100</x> 
    44112987                            <y>60</y> 
    44122988                            <width>20</width> 
     
    44333009                <widget class="QCheckBox"> 
    44343010                    <property name="name"> 
    4435                         <cstring>mix1ana5_mute</cstring> 
    4436                     </property> 
    4437                     <property name="geometry"> 
    4438                         <rect> 
    4439                             <x>180</x> 
     3011                        <cstring>mix1ana4_mute</cstring> 
     3012                    </property> 
     3013                    <property name="geometry"> 
     3014                        <rect> 
     3015                            <x>140</x> 
    44403016                            <y>60</y> 
    44413017                            <width>20</width> 
     
    44623038                <widget class="QCheckBox"> 
    44633039                    <property name="name"> 
    4464                         <cstring>mix1ana6_mute</cstring> 
    4465                     </property> 
    4466                     <property name="geometry"> 
    4467                         <rect> 
    4468                             <x>220</x> 
     3040                        <cstring>mix1ana5_mute</cstring> 
     3041                    </property> 
     3042                    <property name="geometry"> 
     3043                        <rect> 
     3044                            <x>180</x> 
    44693045                            <y>60</y> 
    44703046                            <width>20</width> 
     
    44913067                <widget class="QCheckBox"> 
    44923068                    <property name="name"> 
    4493                         <cstring>mix1ana7_mute</cstring> 
    4494                     </property> 
    4495                     <property name="geometry"> 
    4496                         <rect> 
    4497                             <x>260</x> 
     3069                        <cstring>mix1ana6_mute</cstring> 
     3070                    </property> 
     3071                    <property name="geometry"> 
     3072                        <rect> 
     3073                            <x>220</x> 
    44983074                            <y>60</y> 
    44993075                            <width>20</width> 
     
    45203096                <widget class="QCheckBox"> 
    45213097                    <property name="name"> 
    4522                         <cstring>mix1ana8_mute</cstring> 
    4523                     </property> 
    4524                     <property name="geometry"> 
    4525                         <rect> 
    4526                             <x>300</x> 
     3098                        <cstring>mix1ana7_mute</cstring> 
     3099                    </property> 
     3100                    <property name="geometry"> 
     3101                        <rect> 
     3102                            <x>260</x> 
    45273103                            <y>60</y> 
    45283104                            <width>20</width> 
     
    45493125                <widget class="QCheckBox"> 
    45503126                    <property name="name"> 
    4551                         <cstring>mix1ana1_solo</cstring> 
    4552                     </property> 
    4553                     <property name="geometry"> 
    4554                         <rect> 
    4555                             <x>20</x> 
    4556                             <y>20</y> 
     3127                        <cstring>mix1ana8_mute</cstring> 
     3128                    </property> 
     3129                    <property name="geometry"> 
     3130                        <rect> 
     3131                            <x>300</x> 
     3132                            <y>60</y> 
    45573133                            <width>20</width> 
    45583134                            <height>26</height> 
     
    45783154                <widget class="QCheckBox"> 
    45793155                    <property name="name"> 
    4580                         <cstring>mix1ana2_solo</cstring> 
    4581                     </property> 
    4582                     <property name="geometry"> 
    4583                         <rect> 
    4584                             <x>60</x> 
     3156                        <cstring>mix1ana1_solo</cstring> 
     3157                    </property> 
     3158                    <property name="geometry"> 
     3159                        <rect> 
     3160                            <x>20</x> 
    45853161                            <y>20</y> 
    45863162                            <width>20</width> 
     
    46073183                <widget class="QCheckBox"> 
    46083184                    <property name="name"> 
    4609                         <cstring>mix1ana3_solo</cstring> 
    4610                     </property> 
    4611                     <property name="geometry"> 
    4612                         <rect> 
    4613                             <x>100</x> 
     3185                        <cstring>mix1ana2_solo</cstring> 
     3186                    </property> 
     3187                    <property name="geometry"> 
     3188                        <rect> 
     3189                            <x>60</x> 
    46143190                            <y>20</y> 
    46153191                            <width>20</width> 
     
    46363212                <widget class="QCheckBox"> 
    46373213                    <property name="name"> 
    4638                         <cstring>mix1ana4_solo</cstring> 
    4639                     </property> 
    4640                     <property name="geometry"> 
    4641                         <rect> 
    4642                             <x>140</x> 
     3214                        <cstring>mix1ana3_solo</cstring> 
     3215                    </property> 
     3216                    <property name="geometry"> 
     3217                        <rect> 
     3218                            <x>100</x> 
    46433219                            <y>20</y> 
    46443220                            <width>20</width> 
     
    46653241                <widget class="QCheckBox"> 
    46663242                    <property name="name"> 
    4667                         <cstring>mix1ana5_solo</cstring> 
    4668                     </property> 
    4669                     <property name="geometry"> 
    4670                         <rect> 
    4671                             <x>180</x> 
     3243                        <cstring>mix1ana4_solo</cstring> 
     3244                    </property> 
     3245                    <property name="geometry"> 
     3246                        <rect> 
     3247                            <x>140</x> 
    46723248                            <y>20</y> 
    46733249                            <width>20</width> 
     
    46943270                <widget class="QCheckBox"> 
    46953271                    <property name="name"> 
    4696                         <cstring>mix1ana6_solo</cstring> 
    4697                     </property> 
    4698                     <property name="geometry"> 
    4699                         <rect> 
    4700                             <x>220</x> 
     3272                        <cstring>mix1ana5_solo</cstring> 
     3273                    </property> 
     3274                    <property name="geometry"> 
     3275                        <rect> 
     3276                            <x>180</x> 
    47013277                            <y>20</y> 
    47023278                            <width>20</width> 
     
    47233299                <widget class="QCheckBox"> 
    47243300                    <property name="name"> 
    4725                         <cstring>mix1ana7_solo</cstring> 
    4726                     </property> 
    4727                     <property name="geometry"> 
    4728                         <rect> 
    4729                             <x>260</x> 
     3301                        <cstring>mix1ana6_solo</cstring> 
     3302                    </property> 
     3303                    <property name="geometry"> 
     3304                        <rect> 
     3305                            <x>220</x> 
    47303306                            <y>20</y> 
    47313307                            <width>20</width> 
     
    47523328                <widget class="QCheckBox"> 
    47533329                    <property name="name"> 
    4754                         <cstring>mix1ana8_solo</cstring> 
    4755                     </property> 
    4756                     <property name="geometry"> 
    4757                         <rect> 
    4758                             <x>300</x> 
     3330                        <cstring>mix1ana7_solo</cstring> 
     3331                    </property> 
     3332                    <property name="geometry"> 
     3333                        <rect> 
     3334                            <x>260</x> 
    47593335                            <y>20</y> 
    47603336                            <width>20</width> 
     
    47793355                    </property> 
    47803356                </widget> 
    4781                 <widget class="QSlider"> 
    4782                     <property name="name"> 
    4783                         <cstring>mix1ana8_fader</cstring> 
    4784                     </property> 
    4785                     <property name="geometry"> 
    4786                         <rect> 
    4787                             <x>290</x> 
    4788                             <y>160</y> 
    4789                             <width>30</width> 
    4790                             <height>120</height> 
    4791                         </rect> 
    4792                     </property> 
    4793                     <property name="minValue"> 
    4794                         <number>0</number> 
    4795                     </property> 
    4796                     <property name="maxValue"> 
    4797                         <number>128</number> 
    4798                     </property> 
    4799                     <property name="lineStep"> 
    4800                         <number>1</number> 
    4801                     </property> 
    4802                     <property name="pageStep"> 
    4803                         <number>10</number> 
    4804                     </property> 
    4805                     <property name="value"> 
    4806                         <number>128</number> 
    4807                     </property> 
    4808                     <property name="orientation"> 
    4809                         <enum>Vertical</enum> 
    4810                     </property> 
    4811                     <property name="tickmarks"> 
    4812                         <enum>Both</enum> 
    4813                     </property> 
    4814                     <property name="tickInterval"> 
    4815                         <number>10</number> 
    4816                     </property> 
    4817                 </widget> 
    48183357                <widget class="QCheckBox"> 
    48193358                    <property name="name"> 
    4820                         <cstring>mix1ana1_mute</cstring> 
    4821                     </property> 
    4822                     <property name="geometry"> 
    4823                         <rect> 
    4824                             <x>20</x> 
    4825                             <y>60</y> 
     3359                        <cstring>mix1ana8_solo</cstring> 
     3360                    </property> 
     3361                    <property name="geometry"> 
     3362                        <rect> 
     3363                            <x>300</x> 
     3364                            <y>20</y> 
    48263365                            <width>20</width> 
    48273366                            <height>26</height> 
     
    48433382                    <property name="text"> 
    48443383                        <string></string> 
    4845                     </property> 
    4846                 </widget> 
    4847                 <widget class="QDial"> 
    4848                     <property name="name"> 
    4849                         <cstring>mix1ana1_pan</cstring> 
    4850                     </property> 
    4851                     <property name="geometry"> 
    4852                         <rect> 
    4853                             <x>10</x> 
    4854                             <y>100</y> 
    4855                             <width>30</width> 
    4856                             <height>30</height> 
    4857                         </rect> 
    4858                     </property> 
    4859                     <property name="minValue"> 
    4860                         <number>-64</number> 
    4861                     </property> 
    4862                     <property name="maxValue"> 
    4863                         <number>64</number> 
    4864                     </property> 
    4865                 </widget> 
    4866                 <widget class="QLabel"> 
    4867                     <property name="name"> 
    4868                         <cstring>textLabel1_2_2</cstring> 
    4869                     </property> 
    4870                     <property name="geometry"> 
    4871                         <rect> 
    4872                             <x>10</x> 
    4873                             <y>80</y> 
    4874                             <width>30</width> 
    4875                             <height>22</height> 
    4876                         </rect> 
    4877                     </property> 
    4878                     <property name="font"> 
    4879                         <font> 
    4880                             <pointsize>9</pointsize> 
    4881                         </font> 
    4882                     </property> 
    4883                     <property name="text"> 
    4884                         <string>Mute</string> 
    4885                     </property> 
    4886                     <property name="alignment"> 
    4887                         <set>AlignCenter</set> 
    4888                     </property> 
    4889                 </widget> 
    4890                 <widget class="QLabel"> 
    4891                     <property name="name"> 
    4892                         <cstring>textLabel2</cstring> 
    4893                     </property> 
    4894                     <property name="geometry"> 
    4895                         <rect> 
    4896                             <x>10</x> 
    4897                             <y>280</y> 
    4898                             <width>30</width> 
    4899                             <height>22</height> 
    4900                         </rect> 
    4901                     </property> 
    4902                     <property name="text"> 
    4903                         <string>1</string> 
    4904                     </property> 
    4905                     <property name="alignment"> 
    4906                         <set>AlignCenter</set> 
    4907                     </property> 
    4908                 </widget> 
    4909                 <widget class="QLabel"> 
    4910                     <property name="name"> 
    4911                         <cstring>textLabel2_2</cstring> 
    4912                     </property> 
    4913                     <property name="geometry"> 
    4914                         <rect> 
    4915                             <x>50</x> 
    4916                             <y>280</y> 
    4917                             <width>30</width> 
    4918                             <height>22</height> 
    4919                         </rect> 
    4920                     </property> 
    4921                     <property name="text"> 
    4922                         <string>2</string> 
    4923                     </property> 
    4924                     <property name="alignment"> 
    4925                         <set>AlignCenter</set> 
    4926                     </property> 
    4927                 </widget> 
    4928                 <widget class="QLabel"> 
    4929                     <property name="name"> 
    4930                         <cstring>textLabel2_3</cstring> 
    4931                     </property> 
    4932                     <property name="geometry"> 
    4933                         <rect> 
    4934                             <x>90</x> 
    4935                             <y>280</y> 
    4936                             <width>30</width> 
    4937                             <height>22</height> 
    4938                         </rect> 
    4939                     </property> 
    4940                     <property name="text"> 
    4941                         <string>3</string> 
    4942                     </property> 
    4943                     <property name="alignment"> 
    4944                         <set>AlignCenter</set> 
    4945                     </property> 
    4946                 </widget> 
    4947                 <widget class="QLabel"> 
    4948                     <property name="name"> 
    4949                         <cstring>textLabel2_4</cstring> 
    4950                     </property> 
    4951                     <property name="geometry"> 
    4952                         <rect> 
    4953                             <x>130</x> 
    4954                             <y>280</y> 
    4955                             <width>30</width> 
    4956                             <height>22</height> 
    4957                         </rect> 
    4958                     </property> 
    4959                     <property name="text"> 
    4960                         <string>4</string> 
    4961                     </property> 
    4962                     <property name="alignment"> 
    4963                         <set>AlignCenter</set> 
    4964                     </property> 
    4965                 </widget> 
    4966                 <widget class="QLabel"> 
    4967                     <property name="name"> 
    4968                         <cstring>textLabel2_5</cstring> 
    4969                     </property> 
    4970                     <property name="geometry"> 
    4971                         <rect> 
    4972                             <x>170</x> 
    4973                             <y>280</y> 
    4974                             <width>30</width> 
    4975                             <height>22</height> 
    4976                         </rect> 
    4977                     </property> 
    4978                     <property name="text"> 
    4979                         <string>5</string> 
    4980                     </property> 
    4981                     <property name="alignment"> 
    4982                         <set>AlignCenter</set> 
    4983                     </property> 
    4984                 </widget> 
    4985                 <widget class="QLabel"> 
    4986                     <property name="name"> 
    4987                         <cstring>textLabel2_6</cstring> 
    4988                     </property> 
    4989                     <property name="geometry"> 
    4990                         <rect> 
    4991                             <x>210</x> 
    4992                             <y>280</y> 
    4993                             <width>30</width> 
    4994                             <height>22</height> 
    4995                         </rect> 
    4996                     </property> 
    4997                     <property name="text"> 
    4998                         <string>6</string> 
    4999                     </property> 
    5000                     <property name="alignment"> 
    5001                         <set>AlignCenter</set> 
    5002                     </property> 
    5003                 </widget> 
    5004                 <widget class="QLabel"> 
    5005                     <property name="name"> 
    5006                         <cstring>textLabel2_7</cstring> 
    5007                     </property> 
    5008                     <property name="geometry"> 
    5009                         <rect> 
    5010                             <x>250</x> 
    5011                             <y>280</y> 
    5012                             <width>30</width> 
    5013                             <height>22</height> 
    5014                         </rect> 
    5015                     </property> 
    5016                     <property name="text"> 
    5017                         <string>7</string> 
    5018                     </property> 
    5019                     <property name="alignment"> 
    5020                         <set>AlignCenter</set> 
    5021                     </property> 
    5022                 </widget> 
    5023                 <widget class="QLabel"> 
    5024                     <property name="name"> 
    5025                         <cstring>textLabel2_8</cstring> 
    5026                     </property> 
    5027                     <property name="geometry"> 
    5028                         <rect> 
    5029                             <x>290</x> 
    5030                             <y>280</y> 
    5031                             <width>30</width> 
    5032                             <height>22</height> 
    5033                         </rect> 
    5034                     </property> 
    5035                     <property name="text"> 
    5036                         <string>8</string> 
    5037                     </property> 
    5038                     <property name="alignment"> 
    5039                         <set>AlignCenter</set> 
    5040                     </property> 
    5041                 </widget> 
    5042             </widget> 
    5043             <widget class="QGroupBox"> 
    5044                 <property name="name"> 
    5045                     <cstring>groupBox1_3</cstring> 
    5046                 </property> 
    5047                 <property name="geometry"> 
    5048                     <rect> 
    5049                         <x>360</x> 
    5050                         <y>0</y> 
    5051                         <width>100</width> 
    5052                         <height>310</height> 
    5053                     </rect> 
    5054                 </property> 
    5055                 <property name="title"> 
    5056                     <string>AES/EBU</string> 
    5057                 </property> 
    5058                 <widget class="QCheckBox"> 
    5059                     <property name="name"> 
    5060                         <cstring>checkBox1_2_3</cstring> 
    5061                     </property> 
    5062                     <property name="geometry"> 
    5063                         <rect> 
    5064                             <x>20</x> 
    5065                             <y>20</y> 
    5066                             <width>20</width> 
    5067                             <height>26</height> 
    5068                         </rect> 
    5069                     </property> 
    5070                     <property name="sizePolicy"> 
    5071                         <sizepolicy> 
    5072                             <hsizetype>1</hsizetype> 
    5073                             <vsizetype>0</vsizetype> 
    5074                             <horstretch>0</horstretch> 
    5075                             <verstretch>0</verstretch> 
    5076                         </sizepolicy> 
    5077                     </property> 
    5078                     <property name="font"> 
    5079                         <font> 
    5080                             <pointsize>9</pointsize> 
    5081                         </font> 
    5082                     </property> 
    5083                     <property name="text"> 
    5084                         <string></string> 
    5085                     </property> 
    5086                 </widget> 
    5087                 <widget class="QLabel"> 
    5088                     <property name="name"> 
    5089                         <cstring>textLabel1_2_11</cstring> 
    5090                     </property> 
    5091                     <property name="geometry"> 
    5092                         <rect> 
    5093                             <x>10</x> 
    5094                             <y>130</y> 
    5095                             <width>30</width> 
    5096                             <height>22</height> 
    5097                         </rect> 
    5098                     </property> 
    5099                     <property name="font"> 
    5100                         <font> 
    5101                             <pointsize>9</pointsize> 
    5102                         </font> 
    5103                     </property> 
    5104                     <property name="text"> 
    5105                         <string>Pan</string> 
    5106                     </property> 
    5107                     <property name="alignment"> 
    5108                         <set>AlignCenter</set> 
    5109                     </property> 
    5110                 </widget> 
    5111                 <widget class="QLabel"> 
    5112                     <property name="name"> 
    5113                         <cstring>textLabel1_2_3_3</cstring> 
    5114                     </property> 
    5115                     <property name="geometry"> 
    5116                         <rect> 
    5117                             <x>50</x> 
    5118                             <y>130</y> 
    5119                             <width>30</width> 
    5120                             <height>22</height> 
    5121                         </rect> 
    5122                     </property> 
    5123                     <property name="font"> 
    5124                         <font> 
    5125                             <pointsize>9</pointsize> 
    5126                         </font> 
    5127                     </property> 
    5128                     <property name="text"> 
    5129                         <string>Pan</string> 
    5130                     </property> 
    5131                     <property name="alignment"> 
    5132                         <set>AlignCenter</set> 
    5133                     </property> 
    5134                 </widget> 
    5135                 <widget class="QDial"> 
    5136                     <property name="name"> 
    5137                         <cstring>dial2_10</cstring> 
    5138                     </property> 
    5139                     <property name="geometry"> 
    5140                         <rect> 
    5141                             <x>10</x> 
    5142                             <y>100</y> 
    5143                             <width>30</width> 
    5144                             <height>30</height> 
    5145                         </rect> 
    5146                     </property> 
    5147                     <property name="minValue"> 
    5148                         <number>-64</number> 
    5149                     </property> 
    5150                     <property name="maxValue"> 
    5151                         <number>64</number> 
    5152                     </property> 
    5153                 </widget> 
    5154                 <widget class="QDial"> 
    5155                     <property name="name"> 
    5156                         <cstring>dial2_2_3</cstring> 
    5157                     </property> 
    5158                     <property name="geometry"> 
    5159                         <rect> 
    5160                             <x>50</x> 
    5161                             <y>100</y> 
    5162                             <width>30</width> 
    5163                             <height>30</height> 
    5164                         </rect> 
    5165                     </property> 
    5166                     <property name="minValue"> 
    5167                         <number>-64</number> 
    5168                     </property> 
    5169                     <property name="maxValue"> 
    5170                         <number>64</number> 
    5171                     </property> 
    5172                 </widget> 
    5173                 <widget class="QLabel"> 
    5174                     <property name="name"> 
    5175                         <cstring>textLabel1_2_2_11</cstring> 
    5176                     </property> 
    5177                     <property name="geometry"> 
    5178                         <rect> 
    5179                             <x>10</x> 
    5180                             <y>80</y> 
    5181                             <width>30</width> 
    5182                             <height>22</height> 
    5183                         </rect> 
    5184                     </property> 
    5185                     <property name="font"> 
    5186                         <font> 
    5187                             <pointsize>9</pointsize> 
    5188                         </font> 
    5189                     </property> 
    5190                     <property name="text"> 
    5191                         <string>Mute</string> 
    5192                     </property> 
    5193                     <property name="alignment"> 
    5194                         <set>AlignCenter</set> 
    5195                     </property> 
    5196                 </widget> 
    5197                 <widget class="QCheckBox"> 
    5198                     <property name="name"> 
    5199                         <cstring>checkBox1_18</cstring> 
    5200                     </property> 
    5201                     <property name="geometry"> 
    5202                         <rect> 
    5203                             <x>20</x> 
    5204                             <y>60</y> 
    5205                             <width>20</width> 
    5206                             <height>26</height> 
    5207                         </rect> 
    5208                     </property> 
    5209                     <property name="sizePolicy"> 
    5210                         <sizepolicy> 
    5211                             <hsizetype>1</hsizetype> 
    5212                             <vsizetype>0</vsizetype> 
    5213                             <horstretch>0</horstretch> 
    5214                             <verstretch>0</verstretch> 
    5215                         </sizepolicy> 
    5216                     </property> 
    5217                     <property name="font"> 
    5218                         <font> 
    5219                             <pointsize>9</pointsize> 
    5220                         </font> 
    5221                     </property> 
    5222                     <property name="text"> 
    5223                         <string></string> 
    5224                     </property> 
    5225                 </widget> 
    5226                 <widget class="QCheckBox"> 
    5227                     <property name="name"> 
    5228                         <cstring>checkBox1_3_3</cstring> 
    5229                     </property> 
    5230                     <property name="geometry"> 
    5231                         <rect> 
    5232                             <x>60</x> 
    5233                             <y>60</y> 
    5234                             <width>20</width> 
    5235                             <height>26</height> 
    5236                         </rect> 
    5237                     </property> 
    5238                     <property name="sizePolicy"> 
    5239                         <sizepolicy> 
    5240                             <hsizetype>1</hsizetype> 
    5241                             <vsizetype>0</vsizetype> 
    5242                             <horstretch>0</horstretch> 
    5243                             <verstretch>0</verstretch> 
    5244                         </sizepolicy> 
    5245                     </property> 
    5246                     <property name="font"> 
    5247                         <font> 
    5248                             <pointsize>9</pointsize> 
    5249                         </font> 
    5250                     </property> 
    5251                     <property name="text"> 
    5252                         <string></string> 
    5253                     </property> 
    5254                 </widget> 
    5255                 <widget class="QCheckBox"> 
    5256                     <property name="name"> 
    5257                         <cstring>checkBox1_10_3</cstring> 
    5258                     </property> 
    5259                     <property name="geometry"> 
    5260                         <rect> 
    5261                             <x>60</x> 
    5262                             <y>20</y> 
    5263                             <width>20</width> 
    5264                             <height>26</height> 
    5265                         </rect> 
    5266                     </property> 
    5267                     <property name="sizePolicy"> 
    5268                         <sizepolicy> 
    5269                             <hsizetype>1</hsizetype> 
    5270                             <vsizetype>0</vsizetype> 
    5271                             <horstretch>0</horstretch> 
    5272                             <verstretch>0</verstretch> 
    5273                         </sizepolicy> 
    5274                     </property> 
    5275                     <property name="font"> 
    5276                         <font> 
    5277                             <pointsize>9</pointsize> 
    5278                         </font> 
    5279                     </property> 
    5280                     <property name="text"> 
    5281                         <string></string> 
    5282                     </property> 
    5283                 </widget> 
    5284                 <widget class="QLabel"> 
    5285                     <property name="name"> 
    5286                         <cstring>textLabel1_2_2_2_10</cstring> 
    5287                     </property> 
    5288                     <property name="geometry"> 
    5289                         <rect> 
    5290                             <x>10</x> 
    5291                             <y>40</y> 
    5292                             <width>30</width> 
    5293                             <height>22</height> 
    5294                         </rect> 
    5295                     </property> 
    5296                     <property name="font"> 
    5297                         <font> 
    5298                             <pointsize>9</pointsize> 
    5299                         </font> 
    5300                     </property> 
    5301                     <property name="text"> 
    5302                         <string>Solo</string> 
    5303                     </property> 
    5304                     <property name="alignment"> 
    5305                         <set>AlignCenter</set> 
    5306                     </property> 
    5307                 </widget> 
    5308                 <widget class="QLabel"> 
    5309                     <property name="name"> 
    5310                         <cstring>textLabel1_2_2_2_2_3</cstring> 
    5311                     </property> 
    5312                     <property name="geometry"> 
    5313                         <rect> 
    5314                             <x>50</x> 
    5315                             <y>40</y> 
    5316                             <width>30</width> 
    5317                             <height>22</height> 
    5318                         </rect> 
    5319                     </property> 
    5320                     <property name="font"> 
    5321                         <font> 
    5322                             <pointsize>9</pointsize> 
    5323                         </font> 
    5324                     </property> 
    5325                     <property name="text"> 
    5326                         <string>Solo</string> 
    5327                     </property> 
    5328                     <property name="alignment"> 
    5329                         <set>AlignCenter</set> 
    5330                     </property> 
    5331                 </widget> 
    5332                 <widget class="QLabel"> 
    5333                     <property name="name"> 
    5334                         <cstring>textLabel1_2_2_3_3</cstring> 
    5335                     </property> 
    5336                     <property name="geometry"> 
    5337                         <rect> 
    5338                             <x>50</x> 
    5339                             <y>80</y> 
    5340                             <width>30</width> 
    5341                             <height>22</height> 
    5342                         </rect> 
    5343                     </property> 
    5344                     <property name="font"> 
    5345                         <font> 
    5346                             <pointsize>9</pointsize> 
    5347                         </font> 
    5348                     </property> 
    5349                     <property name="text"> 
    5350                         <string>Mute</string> 
    5351                     </property> 
    5352                     <property name="alignment"> 
    5353                         <set>AlignCenter</set> 
    5354                     </property> 
    5355                 </widget> 
    5356                 <widget class="QLabel"> 
    5357                     <property name="name"> 
    5358                         <cstring>textLabel2_10</cstring> 
    5359                     </property> 
    5360                     <property name="geometry"> 
    5361                         <rect> 
    5362                             <x>10</x> 
    5363                             <y>280</y> 
    5364                             <width>30</width> 
    5365                             <height>22</height> 
    5366                         </rect> 
    5367                     </property> 
    5368                     <property name="text"> 
    5369                         <string>1</string> 
    5370                     </property> 
    5371                     <property name="alignment"> 
    5372                         <set>AlignCenter</set> 
    5373                     </property> 
    5374                 </widget> 
    5375                 <widget class="QSlider"> 
    5376                     <property name="name"> 
    5377                         <cstring>sldFB1_10</cstring> 
    5378                     </property> 
    5379                     <property name="geometry"> 
    5380                         <rect> 
    5381                             <x>10</x> 
    5382                             <y>160</y> 
    5383                             <width>30</width> 
    5384                             <height>120</height> 
    5385                         </rect> 
    5386                     </property> 
    5387                     <property name="minValue"> 
    5388                         <number>0</number> 
    5389                     </property> 
    5390                     <property name="maxValue"> 
    5391                         <number>128</number> 
    5392                     </property> 
    5393                     <property name="lineStep"> 
    5394                         <number>1</number> 
    5395                     </property> 
    5396                     <property name="pageStep"> 
    5397                         <number>10</number> 
    5398                     </property> 
    5399                     <property name="value"> 
    5400                         <number>128</number> 
    5401                     </property> 
    5402                     <property name="orientation"> 
    5403                         <enum>Vertical</enum> 
    5404                     </property> 
    5405                     <property name="tickmarks"> 
    5406                         <enum>Both</enum> 
    5407                     </property> 
    5408                     <property name="tickInterval"> 
    5409                         <number>10</number> 
    5410                     </property> 
    5411                 </widget> 
    5412                 <widget class="QSlider"> 
    5413                     <property name="name"> 
    5414                         <cstring>sldFB1_2_3</cstring> 
    5415                     </property> 
    5416                     <property name="geometry"> 
    5417                         <rect> 
    5418                             <x>50</x> 
    5419                             <y>160</y> 
    5420                             <width>30</width> 
    5421                             <height>120</height> 
    5422                         </rect> 
    5423                     </property> 
    5424                     <property name="minValue"> 
    5425                         <number>0</number> 
    5426                     </property> 
    5427                     <property name="maxValue"> 
    5428                         <number>128</number> 
    5429                     </property> 
    5430                     <property name="lineStep"> 
    5431                         <number>1</number> 
    5432                     </property> 
    5433                     <property name="pageStep"> 
    5434                         <number>10</number> 
    5435                     </property> 
    5436                     <property name="value"> 
    5437                         <number>128</number> 
    5438                     </property> 
    5439                     <property name="orientation"> 
    5440                         <enum>Vertical</enum> 
    5441                     </property> 
    5442                     <property name="tickmarks"> 
    5443                         <enum>Both</enum> 
    5444                     </property> 
    5445                     <property name="tickInterval"> 
    5446                         <number>10</number> 
    5447                     </property> 
    5448                 </widget> 
    5449                 <widget class="QLabel"> 
    5450                     <property name="name"> 
    5451                         <cstring>textLabel2_2_3</cstring> 
    5452                     </property> 
    5453                     <property name="geometry"> 
    5454                         <rect> 
    5455                             <x>50</x> 
    5456                             <y>280</y> 
    5457                             <width>30</width> 
    5458                             <height>22</height> 
    5459                         </rect> 
    5460                     </property> 
    5461                     <property name="text"> 
    5462                         <string>2</string> 
    5463                     </property> 
    5464                     <property name="alignment"> 
    5465                         <set>AlignCenter</set> 
    54663384                    </property> 
    54673385                </widget> 
     
    54823400                    <string>Output</string> 
    54833401                </property> 
     3402                <widget class="QLabel"> 
     3403                    <property name="name"> 
     3404                        <cstring>textLabel1_2_2_11_3</cstring> 
     3405                    </property> 
     3406                    <property name="geometry"> 
     3407                        <rect> 
     3408                            <x>40</x> 
     3409                            <y>80</y> 
     3410                            <width>30</width> 
     3411                            <height>22</height> 
     3412                        </rect> 
     3413                    </property> 
     3414                    <property name="font"> 
     3415                        <font> 
     3416                            <pointsize>9</pointsize> 
     3417                        </font> 
     3418                    </property> 
     3419                    <property name="text"> 
     3420                        <string>Mute</string> 
     3421                    </property> 
     3422                    <property name="alignment"> 
     3423                        <set>AlignCenter</set> 
     3424                    </property> 
     3425                </widget> 
     3426                <widget class="QLabel"> 
     3427                    <property name="name"> 
     3428                        <cstring>textLabel2_2_3_3</cstring> 
     3429                    </property> 
     3430                    <property name="geometry"> 
     3431                        <rect> 
     3432                            <x>20</x> 
     3433                            <y>280</y> 
     3434                            <width>79</width> 
     3435                            <height>22</height> 
     3436                        </rect> 
     3437                    </property> 
     3438                    <property name="text"> 
     3439                        <string>Mix output</string> 
     3440                    </property> 
     3441                    <property name="alignment"> 
     3442                        <set>AlignCenter</set> 
     3443                    </property> 
     3444                </widget> 
     3445                <widget class="QLabel"> 
     3446                    <property name="name"> 
     3447                        <cstring>textLabel1_2_11_3</cstring> 
     3448                    </property> 
     3449                    <property name="geometry"> 
     3450                        <rect> 
     3451                            <x>20</x> 
     3452                            <y>130</y> 
     3453                            <width>64</width> 
     3454                            <height>22</height> 
     3455                        </rect> 
     3456                    </property> 
     3457                    <property name="font"> 
     3458                        <font> 
     3459                            <pointsize>9</pointsize> 
     3460                        </font> 
     3461                    </property> 
     3462                    <property name="text"> 
     3463                        <string>Destination</string> 
     3464                    </property> 
     3465                    <property name="alignment"> 
     3466                        <set>AlignCenter</set> 
     3467                    </property> 
     3468                </widget> 
    54843469                <widget class="QSlider"> 
    54853470                    <property name="name"> 
     
    55483533                    </property> 
    55493534                </widget> 
    5550                 <widget class="QLabel"> 
    5551                     <property name="name"> 
    5552                         <cstring>textLabel1_2_2_11_3</cstring> 
    5553                     </property> 
    5554                     <property name="geometry"> 
    5555                         <rect> 
    5556                             <x>40</x> 
    5557                             <y>80</y> 
    5558                             <width>30</width> 
    5559                             <height>22</height> 
    5560                         </rect> 
    5561                     </property> 
    5562                     <property name="font"> 
    5563                         <font> 
    5564                             <pointsize>9</pointsize> 
    5565                         </font> 
    5566                     </property> 
    5567                     <property name="text"> 
    5568                         <string>Mute</string> 
    5569                     </property> 
    5570                     <property name="alignment"> 
    5571                         <set>AlignCenter</set> 
    5572                     </property> 
    5573                 </widget> 
    5574                 <widget class="QLabel"> 
    5575                     <property name="name"> 
    5576                         <cstring>textLabel2_2_3_3</cstring> 
    5577                     </property> 
    5578                     <property name="geometry"> 
    5579                         <rect> 
    5580                             <x>20</x> 
    5581                             <y>280</y> 
    5582                             <width>79</width> 
    5583                             <height>22</height> 
    5584                         </rect> 
    5585                     </property> 
    5586                     <property name="text"> 
    5587                         <string>Mix output</string> 
    5588                     </property> 
    5589                     <property name="alignment"> 
    5590                         <set>AlignCenter</set> 
    5591                     </property> 
    5592                 </widget> 
    55933535                <widget class="QComboBox"> 
    55943536                    <item> 
     
    56693611                    </property> 
    56703612                </widget> 
    5671                 <widget class="QLabel"> 
    5672                     <property name="name"> 
    5673                         <cstring>textLabel1_2_11_3</cstring> 
    5674                     </property> 
    5675                     <property name="geometry"> 
    5676                         <rect> 
    5677                             <x>20</x> 
    5678                             <y>130</y> 
    5679                             <width>64</width> 
    5680                             <height>22</height> 
    5681                         </rect> 
    5682                     </property> 
    5683                     <property name="font"> 
    5684                         <font> 
    5685                             <pointsize>9</pointsize> 
    5686                         </font> 
    5687                     </property> 
    5688                     <property name="text"> 
    5689                         <string>Destination</string> 
    5690                     </property> 
    5691                     <property name="alignment"> 
    5692                         <set>AlignCenter</set> 
    5693                     </property> 
    5694                 </widget> 
    56953613            </widget> 
    56963614            <widget class="QGroupBox"> 
    56973615                <property name="name"> 
    5698                     <cstring>groupBox1_3_2</cstring> 
     3616                    <cstring>mix1_spdif_group</cstring> 
    56993617                </property> 
    57003618                <property name="geometry"> 
     
    61204038                </widget> 
    61214039            </widget> 
     4040            <widget class="QGroupBox"> 
     4041                <property name="name"> 
     4042                    <cstring>mix1_aes_group</cstring> 
     4043                </property> 
     4044                <property name="geometry"> 
     4045                    <rect> 
     4046                        <x>360</x> 
     4047                        <y>0</y> 
     4048                        <width>100</width> 
     4049                        <height>310</height> 
     4050                    </rect> 
     4051                </property> 
     4052                <property name="title"> 
     4053                    <string>AES/EBU</string> 
     4054                </property> 
     4055                <widget class="QCheckBox"> 
     4056                    <property name="name"> 
     4057                        <cstring>checkBox1_2_3</cstring> 
     4058                    </property> 
     4059                    <property name="geometry"> 
     4060                        <rect> 
     4061                            <x>20</x> 
     4062                            <y>20</y> 
     4063                            <width>20</width> 
     4064                            <height>26</height> 
     4065                        </rect> 
     4066                    </property> 
     4067                    <property name="sizePolicy"> 
     4068                        <sizepolicy> 
     4069                            <hsizetype>1</hsizetype> 
     4070                            <vsizetype>0</vsizetype> 
     4071                            <horstretch>0</horstretch> 
     4072                            <verstretch>0</verstretch> 
     4073                        </sizepolicy> 
     4074                    </property> 
     4075                    <property name="font"> 
     4076                        <font> 
     4077                            <pointsize>9</pointsize> 
     4078                        </font> 
     4079                    </property> 
     4080                    <property name="text"> 
     4081                        <string></string> 
     4082                    </property> 
     4083                </widget> 
     4084                <widget class="QLabel"> 
     4085                    <property name="name"> 
     4086                        <cstring>textLabel1_2_11</cstring> 
     4087                    </property> 
     4088                    <property name="geometry"> 
     4089                        <rect> 
     4090                            <x>10</x> 
     4091                            <y>130</y> 
     4092                            <width>30</width> 
     4093                            <height>22</height> 
     4094                        </rect> 
     4095                    </property> 
     4096                    <property name="font"> 
     4097                        <font> 
     4098                            <pointsize>9</pointsize> 
     4099                        </font> 
     4100                    </property> 
     4101                    <property name="text"> 
     4102                        <string>Pan</string> 
     4103                    </property> 
     4104                    <property name="alignment"> 
     4105                        <set>AlignCenter</set> 
     4106                    </property> 
     4107                </widget> 
     4108                <widget class="QLabel"> 
     4109                    <property name="name"> 
     4110                        <cstring>textLabel1_2_3_3</cstring> 
     4111                    </property> 
     4112                    <property name="geometry"> 
     4113                        <rect> 
     4114                            <x>50</x> 
     4115                            <y>130</y> 
     4116                            <width>30</width> 
     4117                            <height>22</height> 
     4118                        </rect> 
     4119                    </property> 
     4120                    <property name="font"> 
     4121                        <font> 
     4122                            <pointsize>9</pointsize> 
     4123                        </font> 
     4124                    </property> 
     4125                    <property name="text"> 
     4126                        <string>Pan</string> 
     4127                    </property> 
     4128                    <property name="alignment"> 
     4129                        <set>AlignCenter</set> 
     4130                    </property> 
     4131                </widget> 
     4132                <widget class="QDial"> 
     4133                    <property name="name"> 
     4134                        <cstring>dial2_10</cstring> 
     4135                    </property> 
     4136                    <property name="geometry"> 
     4137                        <rect> 
     4138                            <x>10</x> 
     4139                            <y>100</y> 
     4140                            <width>30</width> 
     4141                            <height>30</height> 
     4142                        </rect> 
     4143                    </property> 
     4144                    <property name="minValue"> 
     4145                        <number>-64</number> 
     4146                    </property> 
     4147                    <property name="maxValue"> 
     4148                        <number>64</number> 
     4149                    </property> 
     4150                </widget> 
     4151                <widget class="QLabel"> 
     4152                    <property name="name"> 
     4153                        <cstring>textLabel1_2_2_11</cstring> 
     4154                    </property> 
     4155                    <property name="geometry"> 
     4156                        <rect> 
     4157                            <x>10</x> 
     4158                            <y>80</y> 
     4159                            <width>30</width> 
     4160                            <height>22</height> 
     4161                        </rect> 
     4162                    </property> 
     4163                    <property name="font"> 
     4164                        <font> 
     4165                            <pointsize>9</pointsize> 
     4166                        </font> 
     4167                    </property> 
     4168                    <property name="text"> 
     4169                        <string>Mute</string> 
     4170                    </property> 
     4171                    <property name="alignment"> 
     4172                        <set>AlignCenter</set> 
     4173                    </property> 
     4174                </widget> 
     4175                <widget class="QCheckBox"> 
     4176                    <property name="name"> 
     4177                        <cstring>checkBox1_18</cstring> 
     4178                    </property> 
     4179                    <property name="geometry"> 
     4180                        <rect> 
     4181                            <x>20</x> 
     4182                            <y>60</y> 
     4183                            <width>20</width> 
     4184                            <height>26</height> 
     4185                        </rect> 
     4186                    </property> 
     4187                    <property name="sizePolicy"> 
     4188                        <sizepolicy> 
     4189                            <hsizetype>1</hsizetype> 
     4190                            <vsizetype>0</vsizetype> 
     4191                            <horstretch>0</horstretch> 
     4192                            <verstretch>0</verstretch> 
     4193                        </sizepolicy> 
     4194                    </property> 
     4195                    <property name="font"> 
     4196                        <font> 
     4197                            <pointsize>9</pointsize> 
     4198                        </font> 
     4199                    </property> 
     4200                    <property name="text"> 
     4201                        <string></string> 
     4202                    </property> 
     4203                </widget> 
     4204                <widget class="QCheckBox"> 
     4205                    <property name="name"> 
     4206                        <cstring>checkBox1_3_3</cstring> 
     4207                    </property> 
     4208                    <property name="geometry"> 
     4209                        <rect> 
     4210                            <x>60</x> 
     4211                            <y>60</y> 
     4212                            <width>20</width> 
     4213                            <height>26</height> 
     4214                        </rect> 
     4215                    </property> 
     4216                    <property name="sizePolicy"> 
     4217                        <sizepolicy> 
     4218                            <hsizetype>1</hsizetype> 
     4219                            <vsizetype>0</vsizetype> 
     4220                            <horstretch>0</horstretch> 
     4221                            <verstretch>0</verstretch> 
     4222                        </sizepolicy> 
     4223                    </property> 
     4224                    <property name="font"> 
     4225                        <font> 
     4226                            <pointsize>9</pointsize> 
     4227                        </font> 
     4228                    </property> 
     4229                    <property name="text"> 
     4230                        <string></string> 
     4231                    </property> 
     4232                </widget> 
     4233                <widget class="QCheckBox"> 
     4234                    <property name="name"> 
     4235                        <cstring>checkBox1_10_3</cstring> 
     4236                    </property> 
     4237                    <property name="geometry"> 
     4238                        <rect> 
     4239                            <x>60</x> 
     4240                            <y>20</y> 
     4241                            <width>20</width> 
     4242                            <height>26</height> 
     4243                        </rect> 
     4244                    </property> 
     4245                    <property name="sizePolicy"> 
     4246                        <sizepolicy> 
     4247                            <hsizetype>1</hsizetype> 
     4248                            <vsizetype>0</vsizetype> 
     4249                            <horstretch>0</horstretch> 
     4250                            <verstretch>0</verstretch> 
     4251                        </sizepolicy> 
     4252                    </property> 
     4253                    <property name="font"> 
     4254                        <font> 
     4255                            <pointsize>9</pointsize> 
     4256                        </font> 
     4257                    </property> 
     4258                    <property name="text"> 
     4259                        <string></string> 
     4260                    </property> 
     4261                </widget> 
     4262                <widget class="QLabel"> 
     4263                    <property name="name"> 
     4264                        <cstring>textLabel1_2_2_2_10</cstring> 
     4265                    </property> 
     4266                    <property name="geometry"> 
     4267                        <rect> 
     4268                            <x>10</x> 
     4269                            <y>40</y> 
     4270                            <width>30</width> 
     4271                            <height>22</height> 
     4272                        </rect> 
     4273                    </property> 
     4274                    <property name="font"> 
     4275                        <font> 
     4276                            <pointsize>9</pointsize> 
     4277                        </font> 
     4278                    </property> 
     4279                    <property name="text"> 
     4280                        <string>Solo</string> 
     4281                    </property> 
     4282                    <property name="alignment"> 
     4283                        <set>AlignCenter</set> 
     4284                    </property> 
     4285                </widget> 
     4286                <widget class="QLabel"> 
     4287                    <property name="name"> 
     4288                        <cstring>textLabel1_2_2_2_2_3</cstring> 
     4289                    </property> 
     4290                    <property name="geometry"> 
     4291                        <rect> 
     4292                            <x>50</x> 
     4293                            <y>40</y> 
     4294                            <width>30</width> 
     4295                            <height>22</height> 
     4296                        </rect> 
     4297                    </property> 
     4298                    <property name="font"> 
     4299                        <font> 
     4300                            <pointsize>9</pointsize> 
     4301                        </font> 
     4302                    </property> 
     4303                    <property name="text"> 
     4304                        <string>Solo</string> 
     4305                    </property> 
     4306                    <property name="alignment"> 
     4307                        <set>AlignCenter</set> 
     4308                    </property> 
     4309                </widget> 
     4310                <widget class="QLabel"> 
     4311                    <property name="name"> 
     4312                        <cstring>textLabel1_2_2_3_3</cstring> 
     4313                    </property> 
     4314                    <property name="geometry"> 
     4315                        <rect> 
     4316                            <x>50</x> 
     4317                            <y>80</y> 
     4318                            <width>30</width> 
     4319                            <height>22</height> 
     4320                        </rect> 
     4321                    </property> 
     4322                    <property name="font"> 
     4323                        <font> 
     4324                            <pointsize>9</pointsize> 
     4325                        </font> 
     4326                    </property> 
     4327                    <property name="text"> 
     4328                        <string>Mute</string> 
     4329                    </property> 
     4330                    <property name="alignment"> 
     4331                        <set>AlignCenter</set> 
     4332                    </property> 
     4333                </widget> 
     4334                <widget class="QLabel"> 
     4335                    <property name="name"> 
     4336                        <cstring>textLabel2_10</cstring> 
     4337                    </property> 
     4338                    <property name="geometry"> 
     4339                        <rect> 
     4340                            <x>10</x> 
     4341                            <y>280</y> 
     4342                            <width>30</width> 
     4343                            <height>22</height> 
     4344                        </rect> 
     4345                    </property> 
     4346                    <property name="text"> 
     4347                        <string>1</string> 
     4348                    </property> 
     4349                    <property name="alignment"> 
     4350                        <set>AlignCenter</set> 
     4351                    </property> 
     4352                </widget> 
     4353                <widget class="QSlider"> 
     4354                    <property name="name"> 
     4355                        <cstring>sldFB1_10</cstring> 
     4356                    </property> 
     4357                    <property name="geometry"> 
     4358                        <rect> 
     4359                            <x>10</x> 
     4360                            <y>160</y> 
     4361                            <width>30</width> 
     4362                            <height>120</height> 
     4363                        </rect> 
     4364                    </property> 
     4365                    <property name="minValue"> 
     4366                        <number>0</number> 
     4367                    </property> 
     4368                    <property name="maxValue"> 
     4369                        <number>128</number> 
     4370                    </property> 
     4371                    <property name="lineStep"> 
     4372                        <number>1</number> 
     4373                    </property> 
     4374                    <property name="pageStep"> 
     4375                        <number>10</number> 
     4376                    </property> 
     4377                    <property name="value"> 
     4378                        <number>128</number> 
     4379                    </property> 
     4380                    <property name="orientation"> 
     4381                        <enum>Vertical</enum> 
     4382                    </property> 
     4383                    <property name="tickmarks"> 
     4384                        <enum>Both</enum> 
     4385                    </property> 
     4386                    <property name="tickInterval"> 
     4387                        <number>10</number> 
     4388                    </property> 
     4389                </widget> 
     4390                <widget class="QSlider"> 
     4391                    <property name="name"> 
     4392                        <cstring>sldFB1_2_3</cstring> 
     4393                    </property> 
     4394                    <property name="geometry"> 
     4395                        <rect> 
     4396                            <x>50</x> 
     4397                            <y>160</y> 
     4398                            <width>30</width> 
     4399                            <height>120</height> 
     4400                        </rect> 
     4401                    </property> 
     4402                    <property name="minValue"> 
     4403                        <number>0</number> 
     4404                    </property> 
     4405                    <property name="maxValue"> 
     4406                        <number>128</number> 
     4407                    </property> 
     4408                    <property name="lineStep"> 
     4409                        <number>1</number> 
     4410                    </property> 
     4411                    <property name="pageStep"> 
     4412                        <number>10</number> 
     4413                    </property> 
     4414                    <property name="value"> 
     4415                        <number>128</number> 
     4416                    </property> 
     4417                    <property name="orientation"> 
     4418                        <enum>Vertical</enum> 
     4419                    </property> 
     4420                    <property name="tickmarks"> 
     4421                        <enum>Both</enum> 
     4422                    </property> 
     4423                    <property name="tickInterval"> 
     4424                        <number>10</number> 
     4425                    </property> 
     4426                </widget> 
     4427                <widget class="QLabel"> 
     4428                    <property name="name"> 
     4429                        <cstring>textLabel2_2_3</cstring> 
     4430                    </property> 
     4431                    <property name="geometry"> 
     4432                        <rect> 
     4433                            <x>50</x> 
     4434                            <y>280</y> 
     4435                            <width>30</width> 
     4436                            <height>22</height> 
     4437                        </rect> 
     4438                    </property> 
     4439                    <property name="text"> 
     4440                        <string>2</string> 
     4441                    </property> 
     4442                    <property name="alignment"> 
     4443                        <set>AlignCenter</set> 
     4444                    </property> 
     4445                </widget> 
     4446                <widget class="QDial"> 
     4447                    <property name="name"> 
     4448                        <cstring>dial2_2_3</cstring> 
     4449                    </property> 
     4450                    <property name="geometry"> 
     4451                        <rect> 
     4452                            <x>50</x> 
     4453                            <y>100</y> 
     4454                            <width>30</width> 
     4455                            <height>30</height> 
     4456                        </rect> 
     4457                    </property> 
     4458                    <property name="minValue"> 
     4459                        <number>-64</number> 
     4460                    </property> 
     4461                    <property name="maxValue"> 
     4462                        <number>64</number> 
     4463                    </property> 
     4464                </widget> 
     4465            </widget> 
     4466            <widget class="QGroupBox"> 
     4467                <property name="name"> 
     4468                    <cstring>mix1_adat_group</cstring> 
     4469                </property> 
     4470                <property name="geometry"> 
     4471                    <rect> 
     4472                        <x>10</x> 
     4473                        <y>330</y> 
     4474                        <width>330</width> 
     4475                        <height>310</height> 
     4476                    </rect> 
     4477                </property> 
     4478                <property name="title"> 
     4479                    <string>ADAT</string> 
     4480                </property> 
     4481                <widget class="QCheckBox"> 
     4482                    <property name="name"> 
     4483                        <cstring>checkBox1_2_2</cstring> 
     4484                    </property> 
     4485                    <property name="geometry"> 
     4486                        <rect> 
     4487                            <x>20</x> 
     4488                            <y>20</y> 
     4489                            <width>20</width> 
     4490                            <height>26</height> 
     4491                        </rect> 
     4492                    </property> 
     4493                    <property name="sizePolicy"> 
     4494                        <sizepolicy> 
     4495                            <hsizetype>1</hsizetype> 
     4496                            <vsizetype>0</vsizetype> 
     4497                            <horstretch>0</horstretch> 
     4498                            <verstretch>0</verstretch> 
     4499                        </sizepolicy> 
     4500                    </property> 
     4501                    <property name="font"> 
     4502                        <font> 
     4503                            <pointsize>9</pointsize> 
     4504                        </font> 
     4505                    </property> 
     4506                    <property name="text"> 
     4507                        <string></string> 
     4508                    </property> 
     4509                </widget> 
     4510                <widget class="QLabel"> 
     4511                    <property name="name"> 
     4512                        <cstring>textLabel2_9</cstring> 
     4513                    </property> 
     4514                    <property name="geometry"> 
     4515                        <rect> 
     4516                            <x>10</x> 
     4517                            <y>280</y> 
     4518                            <width>30</width> 
     4519                            <height>22</height> 
     4520                        </rect> 
     4521                    </property> 
     4522                    <property name="text"> 
     4523                        <string>1</string> 
     4524                    </property> 
     4525                    <property name="alignment"> 
     4526                        <set>AlignCenter</set> 
     4527                    </property> 
     4528                </widget> 
     4529                <widget class="QLabel"> 
     4530                    <property name="name"> 
     4531                        <cstring>textLabel1_2_10</cstring> 
     4532                    </property> 
     4533                    <property name="geometry"> 
     4534                        <rect> 
     4535                            <x>10</x> 
     4536                            <y>130</y> 
     4537                            <width>30</width> 
     4538                            <height>22</height> 
     4539                        </rect> 
     4540                    </property> 
     4541                    <property name="font"> 
     4542                        <font> 
     4543                            <pointsize>9</pointsize> 
     4544                        </font> 
     4545                    </property> 
     4546                    <property name="text"> 
     4547                        <string>Pan</string> 
     4548                    </property> 
     4549                    <property name="alignment"> 
     4550                        <set>AlignCenter</set> 
     4551                    </property> 
     4552                </widget> 
     4553                <widget class="QLabel"> 
     4554                    <property name="name"> 
     4555                        <cstring>textLabel1_2_3_2</cstring> 
     4556                    </property> 
     4557                    <property name="geometry"> 
     4558                        <rect> 
     4559                            <x>50</x> 
     4560                            <y>130</y> 
     4561                            <width>30</width> 
     4562                            <height>22</height> 
     4563                        </rect> 
     4564                    </property> 
     4565                    <property name="font"> 
     4566                        <font> 
     4567                            <pointsize>9</pointsize> 
     4568                        </font> 
     4569                    </property> 
     4570                    <property name="text"> 
     4571                        <string>Pan</string> 
     4572                    </property> 
     4573                    <property name="alignment"> 
     4574                        <set>AlignCenter</set> 
     4575                    </property> 
     4576                </widget> 
     4577                <widget class="QLabel"> 
     4578                    <property name="name"> 
     4579                        <cstring>textLabel1_2_4_2</cstring> 
     4580                    </property> 
     4581                    <property name="geometry"> 
     4582                        <rect> 
     4583                            <x>90</x> 
     4584                            <y>130</y> 
     4585                            <width>30</width> 
     4586                            <height>22</height> 
     4587                        </rect> 
     4588                    </property> 
     4589                    <property name="font"> 
     4590                        <font> 
     4591                            <pointsize>9</pointsize> 
     4592                        </font> 
     4593                    </property> 
     4594                    <property name="text"> 
     4595                        <string>Pan</string> 
     4596                    </property> 
     4597                    <property name="alignment"> 
     4598                        <set>AlignCenter</set> 
     4599                    </property> 
     4600                </widget> 
     4601                <widget class="QLabel"> 
     4602                    <property name="name"> 
     4603                        <cstring>textLabel1_2_5_2</cstring> 
     4604                    </property> 
     4605                    <property name="geometry"> 
     4606                        <rect> 
     4607                            <x>130</x> 
     4608                            <y>130</y> 
     4609                            <width>30</width> 
     4610                            <height>22</height> 
     4611                        </rect> 
     4612                    </property> 
     4613                    <property name="font"> 
     4614                        <font> 
     4615                            <pointsize>9</pointsize> 
     4616                        </font> 
     4617                    </property> 
     4618                    <property name="text"> 
     4619                        <string>Pan</string> 
     4620                    </property> 
     4621                    <property name="alignment"> 
     4622                        <set>AlignCenter</set> 
     4623                    </property> 
     4624                </widget> 
     4625                <widget class="QDial"> 
     4626                    <property name="name"> 
     4627                        <cstring>dial2_9</cstring> 
     4628                    </property> 
     4629                    <property name="geometry"> 
     4630                        <rect> 
     4631                            <x>10</x> 
     4632                            <y>100</y> 
     4633                            <width>30</width> 
     4634                            <height>30</height> 
     4635                        </rect> 
     4636                    </property> 
     4637                    <property name="minValue"> 
     4638                        <number>-64</number> 
     4639                    </property> 
     4640                    <property name="maxValue"> 
     4641                        <number>64</number> 
     4642                    </property> 
     4643                </widget> 
     4644                <widget class="QDial"> 
     4645                    <property name="name"> 
     4646                        <cstring>dial2_2_2</cstring> 
     4647                    </property> 
     4648                    <property name="geometry"> 
     4649                        <rect> 
     4650                            <x>50</x> 
     4651                            <y>100</y> 
     4652                            <width>30</width> 
     4653                            <height>30</height> 
     4654                        </rect> 
     4655                    </property> 
     4656                    <property name="minValue"> 
     4657                        <number>-64</number> 
     4658                    </property> 
     4659                    <property name="maxValue"> 
     4660                        <number>64</number> 
     4661                    </property> 
     4662                </widget> 
     4663                <widget class="QDial"> 
     4664                    <property name="name"> 
     4665                        <cstring>dial2_3_2</cstring> 
     4666                    </property> 
     4667                    <property name="geometry"> 
     4668                        <rect> 
     4669                            <x>90</x> 
     4670                            <y>100</y> 
     4671                            <width>30</width> 
     4672                            <height>30</height> 
     4673                        </rect> 
     4674                    </property> 
     4675                    <property name="minValue"> 
     4676                        <number>-64</number> 
     4677                    </property> 
     4678                    <property name="maxValue"> 
     4679                        <number>64</number> 
     4680                    </property> 
     4681                </widget> 
     4682                <widget class="QDial"> 
     4683                    <property name="name"> 
     4684                        <cstring>dial2_4_2</cstring> 
     4685                    </property> 
     4686                    <property name="geometry"> 
     4687                        <rect> 
     4688                            <x>130</x> 
     4689                            <y>100</y> 
     4690                            <width>30</width> 
     4691                            <height>30</height> 
     4692                        </rect> 
     4693                    </property> 
     4694                    <property name="minValue"> 
     4695                        <number>-64</number> 
     4696                    </property> 
     4697                    <property name="maxValue"> 
     4698                        <number>64</number> 
     4699                    </property> 
     4700                </widget> 
     4701                <widget class="QLabel"> 
     4702                    <property name="name"> 
     4703                        <cstring>textLabel1_2_2_10</cstring> 
     4704                    </property> 
     4705                    <property name="geometry"> 
     4706                        <rect> 
     4707                            <x>10</x> 
     4708                            <y>80</y> 
     4709                            <width>30</width> 
     4710                            <height>22</height> 
     4711                        </rect> 
     4712                    </property> 
     4713                    <property name="font"> 
     4714                        <font> 
     4715                            <pointsize>9</pointsize> 
     4716                        </font> 
     4717                    </property> 
     4718                    <property name="text"> 
     4719                        <string>Mute</string> 
     4720                    </property> 
     4721                    <property name="alignment"> 
     4722                        <set>AlignCenter</set> 
     4723                    </property> 
     4724                </widget> 
     4725                <widget class="QLabel"> 
     4726                    <property name="name"> 
     4727                        <cstring>textLabel1_2_2_3_2</cstring> 
     4728                    </property> 
     4729                    <property name="geometry"> 
     4730                        <rect> 
     4731                            <x>50</x> 
     4732                            <y>80</y> 
     4733                            <width>30</width> 
     4734                            <height>22</height> 
     4735                        </rect> 
     4736                    </property> 
     4737                    <property name="font"> 
     4738                        <font> 
     4739                            <pointsize>9</pointsize> 
     4740                        </font> 
     4741                    </property> 
     4742                    <property name="text"> 
     4743                        <string>Mute</string> 
     4744                    </property> 
     4745                    <property name="alignment"> 
     4746                        <set>AlignCenter</set> 
     4747                    </property> 
     4748                </widget> 
     4749                <widget class="QLabel"> 
     4750                    <property name="name"> 
     4751                        <cstring>textLabel1_2_2_4_2</cstring> 
     4752                    </property> 
     4753                    <property name="geometry"> 
     4754                        <rect> 
     4755                            <x>90</x> 
     4756                            <y>80</y> 
     4757                            <width>30</width> 
     4758                            <height>22</height> 
     4759                        </rect> 
     4760                    </property> 
     4761                    <property name="font"> 
     4762                        <font> 
     4763                            <pointsize>9</pointsize> 
     4764                        </font> 
     4765                    </property> 
     4766                    <property name="text"> 
     4767                        <string>Mute</string> 
     4768                    </property> 
     4769                    <property name="alignment"> 
     4770                        <set>AlignCenter</set> 
     4771                    </property> 
     4772                </widget> 
     4773                <widget class="QLabel"> 
     4774                    <property name="name"> 
     4775                        <cstring>textLabel1_2_2_5_2</cstring> 
     4776                    </property> 
     4777                    <property name="geometry"> 
     4778                        <rect> 
     4779                            <x>130</x> 
     4780                            <y>80</y> 
     4781                            <width>30</width> 
     4782                            <height>22</height> 
     4783                        </rect> 
     4784                    </property> 
     4785                    <property name="font"> 
     4786                        <font> 
     4787                            <pointsize>9</pointsize> 
     4788                        </font> 
     4789                    </property> 
     4790                    <property name="text"> 
     4791                        <string>Mute</string> 
     4792                    </property> 
     4793                    <property name="alignment"> 
     4794                        <set>AlignCenter</set> 
     4795                    </property> 
     4796                </widget> 
     4797                <widget class="QCheckBox"> 
     4798                    <property name="name"> 
     4799                        <cstring>checkBox1_17</cstring> 
     4800                    </property> 
     4801                    <property name="geometry"> 
     4802                        <rect> 
     4803                            <x>20</x> 
     4804                            <y>60</y> 
     4805                            <width>20</width> 
     4806                            <height>26</height> 
     4807                        </rect> 
     4808                    </property> 
     4809                    <property name="sizePolicy"> 
     4810                        <sizepolicy> 
     4811                            <hsizetype>1</hsizetype> 
     4812                            <vsizetype>0</vsizetype> 
     4813                            <horstretch>0</horstretch> 
     4814                            <verstretch>0</verstretch> 
     4815                        </sizepolicy> 
     4816                    </property> 
     4817                    <property name="font"> 
     4818                        <font> 
     4819                            <pointsize>9</pointsize> 
     4820                        </font> 
     4821                    </property> 
     4822                    <property name="text"> 
     4823                        <string></string> 
     4824                    </property> 
     4825                </widget> 
     4826                <widget class="QCheckBox"> 
     4827                    <property name="name"> 
     4828                        <cstring>checkBox1_3_2</cstring> 
     4829                    </property> 
     4830                    <property name="geometry"> 
     4831                        <rect> 
     4832                            <x>60</x> 
     4833                            <y>60</y> 
     4834                            <width>20</width> 
     4835                            <height>26</height> 
     4836                        </rect> 
     4837                    </property> 
     4838                    <property name="sizePolicy"> 
     4839                        <sizepolicy> 
     4840                            <hsizetype>1</hsizetype> 
     4841                            <vsizetype>0</vsizetype> 
     4842                            <horstretch>0</horstretch> 
     4843                            <verstretch>0</verstretch> 
     4844                        </sizepolicy> 
     4845                    </property> 
     4846                    <property name="font"> 
     4847                        <font> 
     4848                            <pointsize>9</pointsize> 
     4849                        </font> 
     4850                    </property> 
     4851                    <property name="text"> 
     4852                        <string></string> 
     4853                    </property> 
     4854                </widget> 
     4855                <widget class="QCheckBox"> 
     4856                    <property name="name"> 
     4857                        <cstring>checkBox1_4_2</cstring> 
     4858                    </property> 
     4859                    <property name="geometry"> 
     4860                        <rect> 
     4861                            <x>100</x> 
     4862                            <y>60</y> 
     4863                            <width>20</width> 
     4864                            <height>26</height> 
     4865                        </rect> 
     4866                    </property> 
     4867                    <property name="sizePolicy"> 
     4868                        <sizepolicy> 
     4869                            <hsizetype>1</hsizetype> 
     4870                            <vsizetype>0</vsizetype> 
     4871                            <horstretch>0</horstretch> 
     4872                            <verstretch>0</verstretch> 
     4873                        </sizepolicy> 
     4874                    </property> 
     4875                    <property name="font"> 
     4876                        <font> 
     4877                            <pointsize>9</pointsize> 
     4878                        </font> 
     4879                    </property> 
     4880                    <property name="text"> 
     4881                        <string></string> 
     4882                    </property> 
     4883                </widget> 
     4884                <widget class="QCheckBox"> 
     4885                    <property name="name"> 
     4886                        <cstring>checkBox1_5_2</cstring> 
     4887                    </property> 
     4888                    <property name="geometry"> 
     4889                        <rect> 
     4890                            <x>140</x> 
     4891                            <y>60</y> 
     4892                            <width>20</width> 
     4893                            <height>26</height> 
     4894                        </rect> 
     4895                    </property> 
     4896                    <property name="sizePolicy"> 
     4897                        <sizepolicy> 
     4898                            <hsizetype>1</hsizetype> 
     4899                            <vsizetype>0</vsizetype> 
     4900                            <horstretch>0</horstretch> 
     4901                            <verstretch>0</verstretch> 
     4902                        </sizepolicy> 
     4903                    </property> 
     4904                    <property name="font"> 
     4905                        <font> 
     4906                            <pointsize>9</pointsize> 
     4907                        </font> 
     4908                    </property> 
     4909                    <property name="text"> 
     4910                        <string></string> 
     4911                    </property> 
     4912                </widget> 
     4913                <widget class="QCheckBox"> 
     4914                    <property name="name"> 
     4915                        <cstring>checkBox1_10_2</cstring> 
     4916                    </property> 
     4917                    <property name="geometry"> 
     4918                        <rect> 
     4919                            <x>60</x> 
     4920                            <y>20</y> 
     4921                            <width>20</width> 
     4922                            <height>26</height> 
     4923                        </rect> 
     4924                    </property> 
     4925                    <property name="sizePolicy"> 
     4926                        <sizepolicy> 
     4927                            <hsizetype>1</hsizetype> 
     4928                            <vsizetype>0</vsizetype> 
     4929                            <horstretch>0</horstretch> 
     4930                            <verstretch>0</verstretch> 
     4931                        </sizepolicy> 
     4932                    </property> 
     4933                    <property name="font"> 
     4934                        <font> 
     4935                            <pointsize>9</pointsize> 
     4936                        </font> 
     4937                    </property> 
     4938                    <property name="text"> 
     4939                        <string></string> 
     4940                    </property> 
     4941                </widget> 
     4942                <widget class="QCheckBox"> 
     4943                    <property name="name"> 
     4944                        <cstring>checkBox1_11_2</cstring> 
     4945                    </property> 
     4946                    <property name="geometry"> 
     4947                        <rect> 
     4948                            <x>100</x> 
     4949                            <y>20</y> 
     4950                            <width>20</width> 
     4951                            <height>26</height> 
     4952                        </rect> 
     4953                    </property> 
     4954                    <property name="sizePolicy"> 
     4955                        <sizepolicy> 
     4956                            <hsizetype>1</hsizetype> 
     4957                            <vsizetype>0</vsizetype> 
     4958                            <horstretch>0</horstretch> 
     4959                            <verstretch>0</verstretch> 
     4960                        </sizepolicy> 
     4961                    </property> 
     4962                    <property name="font"> 
     4963                        <font> 
     4964                            <pointsize>9</pointsize> 
     4965                        </font> 
     4966                    </property> 
     4967                    <property name="text"> 
     4968                        <string></string> 
     4969                    </property> 
     4970                </widget> 
     4971                <widget class="QCheckBox"> 
     4972                    <property name="name"> 
     4973                        <cstring>checkBox1_12_2</cstring> 
     4974                    </property> 
     4975                    <property name="geometry"> 
     4976                        <rect> 
     4977                            <x>140</x> 
     4978                            <y>20</y> 
     4979                            <width>20</width> 
     4980                            <height>26</height> 
     4981                        </rect> 
     4982                    </property> 
     4983                    <property name="sizePolicy"> 
     4984                        <sizepolicy> 
     4985                            <hsizetype>1</hsizetype> 
     4986                            <vsizetype>0</vsizetype> 
     4987                            <horstretch>0</horstretch> 
     4988                            <verstretch>0</verstretch> 
     4989                        </sizepolicy> 
     4990                    </property> 
     4991                    <property name="font"> 
     4992                        <font> 
     4993                            <pointsize>9</pointsize> 
     4994                        </font> 
     4995                    </property> 
     4996                    <property name="text"> 
     4997                        <string></string> 
     4998                    </property> 
     4999                </widget> 
     5000                <widget class="QLabel"> 
     5001                    <property name="name"> 
     5002                        <cstring>textLabel1_2_2_2_9</cstring> 
     5003                    </property> 
     5004                    <property name="geometry"> 
     5005                        <rect> 
     5006                            <x>10</x> 
     5007                            <y>40</y> 
     5008                            <width>30</width> 
     5009                            <height>22</height> 
     5010                        </rect> 
     5011                    </property> 
     5012                    <property name="font"> 
     5013                        <font> 
     5014                            <pointsize>9</pointsize> 
     5015                        </font> 
     5016                    </property> 
     5017                    <property name="text"> 
     5018                        <string>Solo</string> 
     5019                    </property> 
     5020                    <property name="alignment"> 
     5021                        <set>AlignCenter</set> 
     5022                    </property> 
     5023                </widget> 
     5024                <widget class="QLabel"> 
     5025                    <property name="name"> 
     5026                        <cstring>textLabel1_2_2_2_2_2</cstring> 
     5027                    </property> 
     5028                    <property name="geometry"> 
     5029                        <rect> 
     5030                            <x>50</x> 
     5031                            <y>40</y> 
     5032                            <width>30</width> 
     5033                            <height>22</height> 
     5034                        </rect> 
     5035                    </property> 
     5036                    <property name="font"> 
     5037                        <font> 
     5038                            <pointsize>9</pointsize> 
     5039                        </font> 
     5040                    </property> 
     5041                    <property name="text"> 
     5042                        <string>Solo</string> 
     5043                    </property> 
     5044                    <property name="alignment"> 
     5045                        <set>AlignCenter</set> 
     5046                    </property> 
     5047                </widget> 
     5048                <widget class="QLabel"> 
     5049                    <property name="name"> 
     5050                        <cstring>textLabel1_2_2_2_3_2</cstring> 
     5051                    </property> 
     5052                    <property name="geometry"> 
     5053                        <rect> 
     5054                            <x>90</x> 
     5055                            <y>40</y> 
     5056                            <width>30</width> 
     5057                            <height>22</height> 
     5058                        </rect> 
     5059                    </property> 
     5060                    <property name="font"> 
     5061                        <font> 
     5062                            <pointsize>9</pointsize> 
     5063                        </font> 
     5064                    </property> 
     5065                    <property name="text"> 
     5066                        <string>Solo</string> 
     5067                    </property> 
     5068                    <property name="alignment"> 
     5069                        <set>AlignCenter</set> 
     5070                    </property> 
     5071                </widget> 
     5072                <widget class="QLabel"> 
     5073                    <property name="name"> 
     5074                        <cstring>textLabel1_2_2_2_4_2</cstring> 
     5075                    </property> 
     5076                    <property name="geometry"> 
     5077                        <rect> 
     5078                            <x>130</x> 
     5079                            <y>40</y> 
     5080                            <width>30</width> 
     5081                            <height>22</height> 
     5082                        </rect> 
     5083                    </property> 
     5084                    <property name="font"> 
     5085                        <font> 
     5086                            <pointsize>9</pointsize> 
     5087                        </font> 
     5088                    </property> 
     5089                    <property name="text"> 
     5090                        <string>Solo</string> 
     5091                    </property> 
     5092                    <property name="alignment"> 
     5093                        <set>AlignCenter</set> 
     5094                    </property> 
     5095                </widget> 
     5096                <widget class="QLabel"> 
     5097                    <property name="name"> 
     5098                        <cstring>textLabel2_2_2</cstring> 
     5099                    </property> 
     5100                    <property name="geometry"> 
     5101                        <rect> 
     5102                            <x>50</x> 
     5103                            <y>280</y> 
     5104                            <width>30</width> 
     5105                            <height>22</height> 
     5106                        </rect> 
     5107                    </property> 
     5108                    <property name="text"> 
     5109                        <string>2</string> 
     5110                    </property> 
     5111                    <property name="alignment"> 
     5112                        <set>AlignCenter</set> 
     5113                    </property> 
     5114                </widget> 
     5115                <widget class="QLabel"> 
     5116                    <property name="name"> 
     5117                        <cstring>textLabel2_3_2</cstring> 
     5118                    </property> 
     5119                    <property name="geometry"> 
     5120                        <rect> 
     5121                            <x>90</x> 
     5122                            <y>280</y> 
     5123                            <width>30</width> 
     5124                            <height>22</height> 
     5125                        </rect> 
     5126                    </property> 
     5127                    <property name="text"> 
     5128                        <string>3</string> 
     5129                    </property> 
     5130                    <property name="alignment"> 
     5131                        <set>AlignCenter</set> 
     5132                    </property> 
     5133                </widget> 
     5134                <widget class="QLabel"> 
     5135                    <property name="name"> 
     5136                        <cstring>textLabel2_4_2</cstring> 
     5137                    </property> 
     5138                    <property name="geometry"> 
     5139                        <rect> 
     5140                            <x>130</x> 
     5141                            <y>280</y> 
     5142                            <width>30</width> 
     5143                            <height>22</height> 
     5144                        </rect> 
     5145                    </property> 
     5146                    <property name="text"> 
     5147                        <string>4</string> 
     5148                    </property> 
     5149                    <property name="alignment"> 
     5150                        <set>AlignCenter</set> 
     5151                    </property> 
     5152                </widget> 
     5153                <widget class="QSlider"> 
     5154                    <property name="name"> 
     5155                        <cstring>sldFB1_2_2</cstring> 
     5156                    </property> 
     5157                    <property name="geometry"> 
     5158                        <rect> 
     5159                            <x>50</x> 
     5160                            <y>160</y> 
     5161                            <width>30</width> 
     5162                            <height>120</height> 
     5163                        </rect> 
     5164                    </property> 
     5165                    <property name="minValue"> 
     5166                        <number>0</number> 
     5167                    </property> 
     5168                    <property name="maxValue"> 
     5169                        <number>128</number> 
     5170                    </property> 
     5171                    <property name="lineStep"> 
     5172                        <number>1</number> 
     5173                    </property> 
     5174                    <property name="pageStep"> 
     5175                        <number>10</number> 
     5176                    </property> 
     5177                    <property name="value"> 
     5178                        <number>128</number> 
     5179                    </property> 
     5180                    <property name="orientation"> 
     5181                        <enum>Vertical</enum> 
     5182                    </property> 
     5183                    <property name="tickmarks"> 
     5184                        <enum>Both</enum> 
     5185                    </property> 
     5186                    <property name="tickInterval"> 
     5187                        <number>10</number> 
     5188                    </property> 
     5189                </widget> 
     5190                <widget class="QSlider"> 
     5191                    <property name="name"> 
     5192                        <cstring>sldFB1_3_2</cstring> 
     5193                    </property> 
     5194                    <property name="geometry"> 
     5195                        <rect> 
     5196                            <x>90</x> 
     5197                            <y>160</y> 
     5198                            <width>30</width> 
     5199                            <height>120</height> 
     5200                        </rect> 
     5201                    </property> 
     5202                    <property name="minValue"> 
     5203                        <number>0</number> 
     5204                    </property> 
     5205                    <property name="maxValue"> 
     5206                        <number>128</number> 
     5207                    </property> 
     5208                    <property name="lineStep"> 
     5209                        <number>1</number> 
     5210                    </property> 
     5211                    <property name="pageStep"> 
     5212                        <number>10</number> 
     5213                    </property> 
     5214                    <property name="value"> 
     5215                        <number>128</number> 
     5216                    </property> 
     5217                    <property name="orientation"> 
     5218                        <enum>Vertical</enum> 
     5219                    </property> 
     5220                    <property name="tickmarks"> 
     5221                        <enum>Both</enum> 
     5222                    </property> 
     5223                    <property name="tickInterval"> 
     5224                        <number>10</number> 
     5225                    </property> 
     5226                </widget> 
     5227                <widget class="QSlider"> 
     5228                    <property name="name"> 
     5229                        <cstring>sldFB1_4_2</cstring> 
     5230                    </property> 
     5231                    <property name="geometry"> 
     5232                        <rect> 
     5233                            <x>130</x> 
     5234                            <y>160</y> 
     5235                            <width>30</width> 
     5236                            <height>120</height> 
     5237                        </rect> 
     5238                    </property> 
     5239                    <property name="minValue"> 
     5240                        <number>0</number> 
     5241                    </property> 
     5242                    <property name="maxValue"> 
     5243                        <number>128</number> 
     5244                    </property> 
     5245                    <property name="lineStep"> 
     5246                        <number>1</number> 
     5247                    </property> 
     5248                    <property name="pageStep"> 
     5249                        <number>10</number> 
     5250                    </property> 
     5251                    <property name="value"> 
     5252                        <number>128</number> 
     5253                    </property> 
     5254                    <property name="orientation"> 
     5255                        <enum>Vertical</enum> 
     5256                    </property> 
     5257                    <property name="tickmarks"> 
     5258                        <enum>Both</enum> 
     5259                    </property> 
     5260                    <property name="tickInterval"> 
     5261                        <number>10</number> 
     5262                    </property> 
     5263                </widget> 
     5264                <widget class="QSlider"> 
     5265                    <property name="name"> 
     5266                        <cstring>sldFB1_9</cstring> 
     5267                    </property> 
     5268                    <property name="geometry"> 
     5269                        <rect> 
     5270                            <x>10</x> 
     5271                            <y>160</y> 
     5272                            <width>30</width> 
     5273                            <height>120</height> 
     5274                        </rect> 
     5275                    </property> 
     5276                    <property name="minValue"> 
     5277                        <number>0</number> 
     5278                    </property> 
     5279                    <property name="maxValue"> 
     5280                        <number>128</number> 
     5281                    </property> 
     5282                    <property name="lineStep"> 
     5283                        <number>1</number> 
     5284                    </property> 
     5285                    <property name="pageStep"> 
     5286                        <number>10</number> 
     5287                    </property> 
     5288                    <property name="value"> 
     5289                        <number>128</number> 
     5290                    </property> 
     5291                    <property name="orientation"> 
     5292                        <enum>Vertical</enum> 
     5293                    </property> 
     5294                    <property name="tickmarks"> 
     5295                        <enum>Both</enum> 
     5296                    </property> 
     5297                    <property name="tickInterval"> 
     5298                        <number>10</number> 
     5299                    </property> 
     5300                </widget> 
     5301                <widget class="QGroupBox"> 
     5302                    <property name="name"> 
     5303                        <cstring>mix1_adat58_group</cstring> 
     5304                    </property> 
     5305                    <property name="geometry"> 
     5306                        <rect> 
     5307                            <x>168</x> 
     5308                            <y>18</y> 
     5309                            <width>150</width> 
     5310                            <height>280</height> 
     5311                        </rect> 
     5312                    </property> 
     5313                    <property name="frameShape"> 
     5314                        <enum>NoFrame</enum> 
     5315                    </property> 
     5316                    <property name="title"> 
     5317                        <string></string> 
     5318                    </property> 
     5319                    <widget class="QLabel"> 
     5320                        <property name="name"> 
     5321                            <cstring>textLabel1_2_9_2</cstring> 
     5322                        </property> 
     5323                        <property name="geometry"> 
     5324                            <rect> 
     5325                                <x>122</x> 
     5326                                <y>112</y> 
     5327                                <width>30</width> 
     5328                                <height>22</height> 
     5329                            </rect> 
     5330                        </property> 
     5331                        <property name="font"> 
     5332                            <font> 
     5333                                <pointsize>9</pointsize> 
     5334                            </font> 
     5335                        </property> 
     5336                        <property name="text"> 
     5337                            <string>Pan</string> 
     5338                        </property> 
     5339                        <property name="alignment"> 
     5340                            <set>AlignCenter</set> 
     5341                        </property> 
     5342                    </widget> 
     5343                    <widget class="QDial"> 
     5344                        <property name="name"> 
     5345                            <cstring>dial2_8_2</cstring> 
     5346                        </property> 
     5347                        <property name="geometry"> 
     5348                            <rect> 
     5349                                <x>122</x> 
     5350                                <y>82</y> 
     5351                                <width>30</width> 
     5352                                <height>30</height> 
     5353                            </rect> 
     5354                        </property> 
     5355                        <property name="minValue"> 
     5356                            <number>-64</number> 
     5357                        </property> 
     5358                        <property name="maxValue"> 
     5359                            <number>64</number> 
     5360                        </property> 
     5361                    </widget> 
     5362                    <widget class="QLabel"> 
     5363                        <property name="name"> 
     5364                            <cstring>textLabel1_2_2_9_2</cstring> 
     5365                        </property> 
     5366                        <property name="geometry"> 
     5367                            <rect> 
     5368                                <x>122</x> 
     5369                                <y>62</y> 
     5370                                <width>30</width> 
     5371                                <height>22</height> 
     5372                            </rect> 
     5373                        </property> 
     5374                        <property name="font"> 
     5375                            <font> 
     5376                                <pointsize>9</pointsize> 
     5377                            </font> 
     5378                        </property> 
     5379                        <property name="text"> 
     5380                            <string>Mute</string> 
     5381                        </property> 
     5382                        <property name="alignment"> 
     5383                            <set>AlignCenter</set> 
     5384                        </property> 
     5385                    </widget> 
     5386                    <widget class="QCheckBox"> 
     5387                        <property name="name"> 
     5388                            <cstring>checkBox1_9_2</cstring> 
     5389                        </property> 
     5390                        <property name="geometry"> 
     5391                            <rect> 
     5392                                <x>132</x> 
     5393                                <y>42</y> 
     5394                                <width>20</width> 
     5395                                <height>26</height> 
     5396                            </rect> 
     5397                        </property> 
     5398                        <property name="sizePolicy"> 
     5399                            <sizepolicy> 
     5400                                <hsizetype>1</hsizetype> 
     5401                                <vsizetype>0</vsizetype> 
     5402                                <horstretch>0</horstretch> 
     5403                                <verstretch>0</verstretch> 
     5404                            </sizepolicy> 
     5405                        </property> 
     5406                        <property name="font"> 
     5407                            <font> 
     5408                                <pointsize>9</pointsize> 
     5409                            </font> 
     5410                        </property> 
     5411                        <property name="text"> 
     5412                            <string></string> 
     5413                        </property> 
     5414                    </widget> 
     5415                    <widget class="QCheckBox"> 
     5416                        <property name="name"> 
     5417                            <cstring>checkBox1_16_2</cstring> 
     5418                        </property> 
     5419                        <property name="geometry"> 
     5420                            <rect> 
     5421                                <x>132</x> 
     5422                                <y>2</y> 
     5423                                <width>20</width> 
     5424                                <height>26</height> 
     5425                            </rect> 
     5426                        </property> 
     5427                        <property name="sizePolicy"> 
     5428                            <sizepolicy> 
     5429                                <hsizetype>1</hsizetype> 
     5430                                <vsizetype>0</vsizetype> 
     5431                                <horstretch>0</horstretch> 
     5432                                <verstretch>0</verstretch> 
     5433                            </sizepolicy> 
     5434                        </property> 
     5435                        <property name="font"> 
     5436                            <font> 
     5437                                <pointsize>9</pointsize> 
     5438                            </font> 
     5439                        </property> 
     5440                        <property name="text"> 
     5441                            <string></string> 
     5442                        </property> 
     5443                    </widget> 
     5444                    <widget class="QLabel"> 
     5445                        <property name="name"> 
     5446                            <cstring>textLabel1_2_2_2_8_2</cstring> 
     5447                        </property> 
     5448                        <property name="geometry"> 
     5449                            <rect> 
     5450                                <x>122</x> 
     5451                                <y>22</y> 
     5452                                <width>30</width> 
     5453                                <height>22</height> 
     5454                            </rect> 
     5455                        </property> 
     5456                        <property name="font"> 
     5457                            <font> 
     5458                                <pointsize>9</pointsize> 
     5459                            </font> 
     5460                        </property> 
     5461                        <property name="text"> 
     5462                            <string>Solo</string> 
     5463                        </property> 
     5464                        <property name="alignment"> 
     5465                            <set>AlignCenter</set> 
     5466                        </property> 
     5467                    </widget> 
     5468                    <widget class="QLabel"> 
     5469                        <property name="name"> 
     5470                            <cstring>textLabel2_8_2</cstring> 
     5471                        </property> 
     5472                        <property name="geometry"> 
     5473                            <rect> 
     5474                                <x>122</x> 
     5475                                <y>262</y> 
     5476                                <width>30</width> 
     5477                                <height>22</height> 
     5478                            </rect> 
     5479                        </property> 
     5480                        <property name="text"> 
     5481                            <string>8</string> 
     5482                        </property> 
     5483                        <property name="alignment"> 
     5484                            <set>AlignCenter</set> 
     5485                        </property> 
     5486                    </widget> 
     5487                    <widget class="QSlider"> 
     5488                        <property name="name"> 
     5489                            <cstring>sldFB1_8_2</cstring> 
     5490                        </property> 
     5491                        <property name="geometry"> 
     5492                            <rect> 
     5493                                <x>122</x> 
     5494                                <y>142</y> 
     5495                                <width>30</width> 
     5496                                <height>120</height> 
     5497                            </rect> 
     5498                        </property> 
     5499                        <property name="minValue"> 
     5500                            <number>0</number> 
     5501                        </property> 
     5502                        <property name="maxValue"> 
     5503                            <number>128</number> 
     5504                        </property> 
     5505                        <property name="lineStep"> 
     5506                            <number>1</number> 
     5507                        </property> 
     5508                        <property name="pageStep"> 
     5509                            <number>10</number> 
     5510                        </property> 
     5511                        <property name="value"> 
     5512                            <number>128</number> 
     5513                        </property> 
     5514                        <property name="orientation"> 
     5515                            <enum>Vertical</enum> 
     5516                        </property> 
     5517                        <property name="tickmarks"> 
     5518                            <enum>Both</enum> 
     5519                        </property> 
     5520                        <property name="tickInterval"> 
     5521                            <number>10</number> 
     5522                        </property> 
     5523                    </widget> 
     5524                    <widget class="QLabel"> 
     5525                        <property name="name"> 
     5526                            <cstring>textLabel2_5_2</cstring> 
     5527                        </property> 
     5528                        <property name="geometry"> 
     5529                            <rect> 
     5530                                <x>2</x> 
     5531                                <y>262</y> 
     5532                                <width>30</width> 
     5533                                <height>22</height> 
     5534                            </rect> 
     5535                        </property> 
     5536                        <property name="text"> 
     5537                            <string>5</string> 
     5538                        </property> 
     5539                        <property name="alignment"> 
     5540                            <set>AlignCenter</set> 
     5541                        </property> 
     5542                    </widget> 
     5543                    <widget class="QLabel"> 
     5544                        <property name="name"> 
     5545                            <cstring>textLabel2_7_2</cstring> 
     5546                        </property> 
     5547                        <property name="geometry"> 
     5548                            <rect> 
     5549                                <x>82</x> 
     5550                                <y>262</y> 
     5551                                <width>30</width> 
     5552                                <height>22</height> 
     5553                            </rect> 
     5554                        </property> 
     5555                        <property name="text"> 
     5556                            <string>7</string> 
     5557                        </property> 
     5558                        <property name="alignment"> 
     5559                            <set>AlignCenter</set> 
     5560                        </property> 
     5561                    </widget> 
     5562                    <widget class="QLabel"> 
     5563                        <property name="name"> 
     5564                            <cstring>textLabel2_6_2</cstring> 
     5565                        </property> 
     5566                        <property name="geometry"> 
     5567                            <rect> 
     5568                                <x>42</x> 
     5569                                <y>262</y> 
     5570                                <width>30</width> 
     5571                                <height>22</height> 
     5572                            </rect> 
     5573                        </property> 
     5574                        <property name="text"> 
     5575                            <string>6</string> 
     5576                        </property> 
     5577                        <property name="alignment"> 
     5578                            <set>AlignCenter</set> 
     5579                        </property> 
     5580                    </widget> 
     5581                    <widget class="QSlider"> 
     5582                        <property name="name"> 
     5583                            <cstring>sldFB1_5_2</cstring> 
     5584                        </property> 
     5585                        <property name="geometry"> 
     5586                            <rect> 
     5587                                <x>2</x> 
     5588                                <y>142</y> 
     5589                                <width>30</width> 
     5590                                <height>120</height> 
     5591                            </rect> 
     5592                        </property> 
     5593                        <property name="minValue"> 
     5594                            <number>0</number> 
     5595                        </property> 
     5596                        <property name="maxValue"> 
     5597                            <number>128</number> 
     5598                        </property> 
     5599                        <property name="lineStep"> 
     5600                            <number>1</number> 
     5601                        </property> 
     5602                        <property name="pageStep"> 
     5603                            <number>10</number> 
     5604                        </property> 
     5605                        <property name="value"> 
     5606                            <number>128</number> 
     5607                        </property> 
     5608                        <property name="orientation"> 
     5609                            <enum>Vertical</enum> 
     5610                        </property> 
     5611                        <property name="tickmarks"> 
     5612                            <enum>Both</enum> 
     5613                        </property> 
     5614                        <property name="tickInterval"> 
     5615                            <number>10</number> 
     5616                        </property> 
     5617                    </widget> 
     5618                    <widget class="QSlider"> 
     5619                        <property name="name"> 
     5620                            <cstring>sldFB1_6_2</cstring> 
     5621                        </property> 
     5622                        <property name="geometry"> 
     5623                            <rect> 
     5624                                <x>42</x> 
     5625                                <y>142</y> 
     5626                                <width>30</width> 
     5627                                <height>120</height> 
     5628                            </rect> 
     5629                        </property> 
     5630                        <property name="minValue"> 
     5631                            <number>0</number> 
     5632                        </property> 
     5633                        <property name="maxValue"> 
     5634                            <number>128</number> 
     5635                        </property> 
     5636                        <property name="lineStep"> 
     5637                            <number>1</number> 
     5638                        </property> 
     5639                        <property name="pageStep"> 
     5640                            <number>10</number> 
     5641                        </property> 
     5642                        <property name="value"> 
     5643                            <number>128</number> 
     5644                        </property> 
     5645                        <property name="orientation"> 
     5646                            <enum>Vertical</enum> 
     5647                        </property> 
     5648                        <property name="tickmarks"> 
     5649                            <enum>Both</enum> 
     5650                        </property> 
     5651                        <property name="tickInterval"> 
     5652                            <number>10</number> 
     5653                        </property> 
     5654                    </widget> 
     5655                    <widget class="QSlider"> 
     5656                        <property name="name"> 
     5657                            <cstring>sldFB1_7_2</cstring> 
     5658                        </property> 
     5659                        <property name="geometry"> 
     5660                            <rect> 
     5661                                <x>82</x> 
     5662                                <y>142</y> 
     5663                                <width>30</width> 
     5664                                <height>120</height> 
     5665                            </rect> 
     5666                        </property> 
     5667                        <property name="minValue"> 
     5668                            <number>0</number> 
     5669                        </property> 
     5670                        <property name="maxValue"> 
     5671                            <number>128</number> 
     5672                        </property> 
     5673                        <property name="lineStep"> 
     5674                            <number>1</number> 
     5675                        </property> 
     5676                        <property name="pageStep"> 
     5677                            <number>10</number> 
     5678                        </property> 
     5679                        <property name="value"> 
     5680                            <number>128</number> 
     5681                        </property> 
     5682                        <property name="orientation"> 
     5683                            <enum>Vertical</enum> 
     5684                        </property> 
     5685                        <property name="tickmarks"> 
     5686                            <enum>Both</enum> 
     5687                        </property> 
     5688                        <property name="tickInterval"> 
     5689                            <number>10</number> 
     5690                        </property> 
     5691                    </widget> 
     5692                    <widget class="QLabel"> 
     5693                        <property name="name"> 
     5694                            <cstring>textLabel1_2_6_2</cstring> 
     5695                        </property> 
     5696                        <property name="geometry"> 
     5697                            <rect> 
     5698                                <x>2</x> 
     5699                                <y>112</y> 
     5700                                <width>30</width> 
     5701                                <height>22</height> 
     5702                            </rect> 
     5703                        </property> 
     5704                        <property name="font"> 
     5705                            <font> 
     5706                                <pointsize>9</pointsize> 
     5707                            </font> 
     5708                        </property> 
     5709                        <property name="text"> 
     5710                            <string>Pan</string> 
     5711                        </property> 
     5712                        <property name="alignment"> 
     5713                            <set>AlignCenter</set> 
     5714                        </property> 
     5715                    </widget> 
     5716                    <widget class="QLabel"> 
     5717                        <property name="name"> 
     5718                            <cstring>textLabel1_2_7_2</cstring> 
     5719                        </property> 
     5720                        <property name="geometry"> 
     5721                            <rect> 
     5722                                <x>42</x> 
     5723                                <y>112</y> 
     5724                                <width>30</width> 
     5725                                <height>22</height> 
     5726                            </rect> 
     5727                        </property> 
     5728                        <property name="font"> 
     5729                            <font> 
     5730                                <pointsize>9</pointsize> 
     5731                            </font> 
     5732                        </property> 
     5733                        <property name="text"> 
     5734                            <string>Pan</string> 
     5735                        </property> 
     5736                        <property name="alignment"> 
     5737                            <set>AlignCenter</set> 
     5738                        </property> 
     5739                    </widget> 
     5740                    <widget class="QLabel"> 
     5741                        <property name="name"> 
     5742                            <cstring>textLabel1_2_8_2</cstring> 
     5743                        </property> 
     5744                        <property name="geometry"> 
     5745                            <rect> 
     5746                                <x>82</x> 
     5747                                <y>112</y> 
     5748                                <width>30</width> 
     5749                                <height>22</height> 
     5750                            </rect> 
     5751                        </property> 
     5752                        <property name="font"> 
     5753                            <font> 
     5754                                <pointsize>9</pointsize> 
     5755                            </font> 
     5756                        </property> 
     5757                        <property name="text"> 
     5758                            <string>Pan</string> 
     5759                        </property> 
     5760                        <property name="alignment"> 
     5761                            <set>AlignCenter</set> 
     5762                        </property> 
     5763                    </widget> 
     5764                    <widget class="QDial"> 
     5765                        <property name="name"> 
     5766                            <cstring>dial2_5_2</cstring> 
     5767                        </property> 
     5768                        <property name="geometry"> 
     5769                            <rect> 
     5770                                <x>2</x> 
     5771                                <y>82</y> 
     5772                                <width>30</width> 
     5773                                <height>30</height> 
     5774                            </rect> 
     5775                        </property> 
     5776                        <property name="minValue"> 
     5777                            <number>-64</number> 
     5778                        </property> 
     5779                        <property name="maxValue"> 
     5780                            <number>64</number> 
     5781                        </property> 
     5782                    </widget> 
     5783                    <widget class="QDial"> 
     5784                        <property name="name"> 
     5785                            <cstring>dial2_6_2</cstring> 
     5786                        </property> 
     5787                        <property name="geometry"> 
     5788                            <rect> 
     5789                                <x>42</x> 
     5790                                <y>82</y> 
     5791                                <width>30</width> 
     5792                                <height>30</height> 
     5793                            </rect> 
     5794                        </property> 
     5795                        <property name="minValue"> 
     5796                            <number>-64</number> 
     5797                        </property> 
     5798                        <property name="maxValue"> 
     5799                            <number>64</number> 
     5800                        </property> 
     5801                    </widget> 
     5802                    <widget class="QDial"> 
     5803                        <property name="name"> 
     5804                            <cstring>dial2_7_2</cstring> 
     5805                        </property> 
     5806                        <property name="geometry"> 
     5807                            <rect> 
     5808                                <x>82</x> 
     5809                                <y>82</y> 
     5810                                <width>30</width> 
     5811                                <height>30</height> 
     5812                            </rect> 
     5813                        </property> 
     5814                        <property name="minValue"> 
     5815                            <number>-64</number> 
     5816                        </property> 
     5817                        <property name="maxValue"> 
     5818                            <number>64</number> 
     5819                        </property> 
     5820                    </widget> 
     5821                    <widget class="QLabel"> 
     5822                        <property name="name"> 
     5823                            <cstring>textLabel1_2_2_6_2</cstring> 
     5824                        </property> 
     5825                        <property name="geometry"> 
     5826                            <rect> 
     5827                                <x>2</x> 
     5828                                <y>62</y> 
     5829                                <width>30</width> 
     5830                                <height>22</height> 
     5831                            </rect> 
     5832                        </property> 
     5833                        <property name="font"> 
     5834                            <font> 
     5835                                <pointsize>9</pointsize> 
     5836                            </font> 
     5837                        </property> 
     5838                        <property name="text"> 
     5839                            <string>Mute</string> 
     5840                        </property> 
     5841                        <property name="alignment"> 
     5842                            <set>AlignCenter</set> 
     5843                        </property> 
     5844                    </widget> 
     5845                    <widget class="QLabel"> 
     5846                        <property name="name"> 
     5847                            <cstring>textLabel1_2_2_7_2</cstring> 
     5848                        </property> 
     5849                        <property name="geometry"> 
     5850                            <rect> 
     5851                                <x>42</x> 
     5852                                <y>62</y> 
     5853                                <width>30</width> 
     5854                                <height>22</height> 
     5855                            </rect> 
     5856                        </property> 
     5857                        <property name="font"> 
     5858                            <font> 
     5859                                <pointsize>9</pointsize> 
     5860                            </font> 
     5861                        </property> 
     5862                        <property name="text"> 
     5863                            <string>Mute</string> 
     5864                        </property> 
     5865                        <property name="alignment"> 
     5866                            <set>AlignCenter</set> 
     5867                        </property> 
     5868                    </widget> 
     5869                    <widget class="QLabel"> 
     5870                        <property name="name"> 
     5871                            <cstring>textLabel1_2_2_8_2</cstring> 
     5872                        </property> 
     5873                        <property name="geometry"> 
     5874                            <rect> 
     5875                                <x>82</x> 
     5876                                <y>62</y> 
     5877                                <width>30</width> 
     5878                                <height>22</height> 
     5879                            </rect> 
     5880                        </property> 
     5881                        <property name="font"> 
     5882                            <font> 
     5883                                <pointsize>9</pointsize> 
     5884                            </font> 
     5885                        </property> 
     5886                        <property name="text"> 
     5887                            <string>Mute</string> 
     5888                        </property> 
     5889                        <property name="alignment"> 
     5890                            <set>AlignCenter</set> 
     5891                        </property> 
     5892                    </widget> 
     5893                    <widget class="QCheckBox"> 
     5894                        <property name="name"> 
     5895                            <cstring>checkBox1_6_2</cstring> 
     5896                        </property> 
     5897                        <property name="geometry"> 
     5898                            <rect> 
     5899                                <x>12</x> 
     5900                                <y>42</y> 
     5901                                <width>20</width> 
     5902                                <height>26</height> 
     5903                            </rect> 
     5904                        </property> 
     5905                        <property name="sizePolicy"> 
     5906                            <sizepolicy> 
     5907                                <hsizetype>1</hsizetype> 
     5908                                <vsizetype>0</vsizetype> 
     5909                                <horstretch>0</horstretch> 
     5910                                <verstretch>0</verstretch> 
     5911                            </sizepolicy> 
     5912                        </property> 
     5913                        <property name="font"> 
     5914                            <font> 
     5915                                <pointsize>9</pointsize> 
     5916                            </font> 
     5917                        </property> 
     5918                        <property name="text"> 
     5919                            <string></string> 
     5920                        </property> 
     5921                    </widget> 
     5922                    <widget class="QCheckBox"> 
     5923                        <property name="name"> 
     5924                            <cstring>checkBox1_7_2</cstring> 
     5925                        </property> 
     5926                        <property name="geometry"> 
     5927                            <rect> 
     5928                                <x>52</x> 
     5929                                <y>42</y> 
     5930                                <width>20</width> 
     5931                                <height>26</height> 
     5932                            </rect> 
     5933                        </property> 
     5934                        <property name="sizePolicy"> 
     5935                            <sizepolicy> 
     5936                                <hsizetype>1</hsizetype> 
     5937                                <vsizetype>0</vsizetype> 
     5938                                <horstretch>0</horstretch> 
     5939                                <verstretch>0</verstretch> 
     5940                            </sizepolicy> 
     5941                        </property> 
     5942                        <property name="font"> 
     5943                            <font> 
     5944                                <pointsize>9</pointsize> 
     5945                            </font> 
     5946                        </property> 
     5947                        <property name="text"> 
     5948                            <string></string> 
     5949                        </property> 
     5950                    </widget> 
     5951                    <widget class="QCheckBox"> 
     5952                        <property name="name"> 
     5953                            <cstring>checkBox1_8_2</cstring> 
     5954                        </property> 
     5955                        <property name="geometry"> 
     5956                            <rect> 
     5957                                <x>92</x> 
     5958                                <y>42</y> 
     5959                                <width>20</width> 
     5960                                <height>26</height> 
     5961                            </rect> 
     5962                        </property> 
     5963                        <property name="sizePolicy"> 
     5964                            <sizepolicy> 
     5965                                <hsizetype>1</hsizetype> 
     5966                                <vsizetype>0</vsizetype> 
     5967                                <horstretch>0</horstretch> 
     5968                                <verstretch>0</verstretch> 
     5969                            </sizepolicy> 
     5970                        </property> 
     5971                        <property name="font"> 
     5972                            <font> 
     5973                                <pointsize>9</pointsize> 
     5974                            </font> 
     5975                        </property> 
     5976                        <property name="text"> 
     5977                            <string></string> 
     5978                        </property> 
     5979                    </widget> 
     5980                    <widget class="QCheckBox"> 
     5981                        <property name="name"> 
     5982                            <cstring>checkBox1_13_2</cstring> 
     5983                        </property> 
     5984                        <property name="geometry"> 
     5985                            <rect> 
     5986                                <x>12</x> 
     5987                                <y>2</y> 
     5988                                <width>20</width> 
     5989                                <height>26</height> 
     5990                            </rect> 
     5991                        </property> 
     5992                        <property name="sizePolicy"> 
     5993                            <sizepolicy> 
     5994                                <hsizetype>1</hsizetype> 
     5995                                <vsizetype>0</vsizetype> 
     5996                                <horstretch>0</horstretch> 
     5997                                <verstretch>0</verstretch> 
     5998                            </sizepolicy> 
     5999                        </property> 
     6000                        <property name="font"> 
     6001                            <font> 
     6002                                <pointsize>9</pointsize> 
     6003                            </font> 
     6004                        </property> 
     6005                        <property name="text"> 
     6006                            <string></string> 
     6007                        </property> 
     6008                    </widget> 
     6009                    <widget class="QCheckBox"> 
     6010                        <property name="name"> 
     6011                            <cstring>checkBox1_14_2</cstring> 
     6012                        </property> 
     6013                        <property name="geometry"> 
     6014                            <rect> 
     6015                                <x>52</x> 
     6016                                <y>2</y> 
     6017                                <width>20</width> 
     6018                                <height>26</height> 
     6019                            </rect> 
     6020                        </property> 
     6021                        <property name="sizePolicy"> 
     6022                            <sizepolicy> 
     6023                                <hsizetype>1</hsizetype> 
     6024                                <vsizetype>0</vsizetype> 
     6025                                <horstretch>0</horstretch> 
     6026                                <verstretch>0</verstretch> 
     6027                            </sizepolicy> 
     6028                        </property> 
     6029                        <property name="font"> 
     6030                            <font> 
     6031                                <pointsize>9</pointsize> 
     6032                            </font> 
     6033                        </property> 
     6034                        <property name="text"> 
     6035                            <string></string> 
     6036                        </property> 
     6037                    </widget> 
     6038                    <widget class="QCheckBox"> 
     6039                        <property name="name"> 
     6040                            <cstring>checkBox1_15_2</cstring> 
     6041                        </property> 
     6042                        <property name="geometry"> 
     6043                            <rect> 
     6044                                <x>92</x> 
     6045                                <y>2</y> 
     6046                                <width>20</width> 
     6047                                <height>26</height> 
     6048                            </rect> 
     6049                        </property> 
     6050                        <property name="sizePolicy"> 
     6051                            <sizepolicy> 
     6052                                <hsizetype>1</hsizetype> 
     6053                                <vsizetype>0</vsizetype> 
     6054                                <horstretch>0</horstretch> 
     6055                                <verstretch>0</verstretch> 
     6056                            </sizepolicy> 
     6057                        </property> 
     6058                        <property name="font"> 
     6059                            <font> 
     6060                                <pointsize>9</pointsize> 
     6061                            </font> 
     6062                        </property> 
     6063                        <property name="text"> 
     6064                            <string></string> 
     6065                        </property> 
     6066                    </widget> 
     6067                    <widget class="QLabel"> 
     6068                        <property name="name"> 
     6069                            <cstring>textLabel1_2_2_2_5_2</cstring> 
     6070                        </property> 
     6071                        <property name="geometry"> 
     6072                            <rect> 
     6073                                <x>2</x> 
     6074                                <y>22</y> 
     6075                                <width>30</width> 
     6076                                <height>22</height> 
     6077                            </rect> 
     6078                        </property> 
     6079                        <property name="font"> 
     6080                            <font> 
     6081                                <pointsize>9</pointsize> 
     6082                            </font> 
     6083                        </property> 
     6084                        <property name="text"> 
     6085                            <string>Solo</string> 
     6086                        </property> 
     6087                        <property name="alignment"> 
     6088                            <set>AlignCenter</set> 
     6089                        </property> 
     6090                    </widget> 
     6091                    <widget class="QLabel"> 
     6092                        <property name="name"> 
     6093                            <cstring>textLabel1_2_2_2_6_2</cstring> 
     6094                        </property> 
     6095                        <property name="geometry"> 
     6096                            <rect> 
     6097                                <x>42</x> 
     6098                                <y>22</y> 
     6099                                <width>30</width> 
     6100                                <height>22</height> 
     6101                            </rect> 
     6102                        </property> 
     6103                        <property name="font"> 
     6104                            <font> 
     6105                                <pointsize>9</pointsize> 
     6106                            </font> 
     6107                        </property> 
     6108                        <property name="text"> 
     6109                            <string>Solo</string> 
     6110                        </property> 
     6111                        <property name="alignment"> 
     6112                            <set>AlignCenter</set> 
     6113                        </property> 
     6114                    </widget> 
     6115                    <widget class="QLabel"> 
     6116                        <property name="name"> 
     6117                            <cstring>textLabel1_2_2_2_7_2</cstring> 
     6118                        </property> 
     6119                        <property name="geometry"> 
     6120                            <rect> 
     6121                                <x>82</x> 
     6122                                <y>22</y> 
     6123                                <width>30</width> 
     6124                                <height>22</height> 
     6125                            </rect> 
     6126                        </property> 
     6127                        <property name="font"> 
     6128                            <font> 
     6129                                <pointsize>9</pointsize> 
     6130                            </font> 
     6131                        </property> 
     6132                        <property name="text"> 
     6133                            <string>Solo</string> 
     6134                        </property> 
     6135                        <property name="alignment"> 
     6136                            <set>AlignCenter</set> 
     6137                        </property> 
     6138                    </widget> 
     6139                </widget> 
     6140            </widget> 
    61226141        </widget> 
    61236142        <widget class="QWidget"> 
     
    61476166    </widget> 
    61486167</widget> 
    6149 <connections> 
    6150     <connection> 
    6151         <sender>mix1ana1_fader</sender> 
    6152         <signal>valueChanged(int)</signal> 
    6153         <receiver>MotuMixerUI</receiver> 
    6154         <slot>set_mix1ana1_fader(int)</slot> 
    6155     </connection> 
    6156     <connection> 
    6157         <sender>mix1ana2_fader</sender> 
    6158         <signal>valueChanged(int)</signal> 
    6159         <receiver>MotuMixerUI</receiver> 
    6160         <slot>set_mix1ana2_fader(int)</slot> 
    6161     </connection> 
    6162     <connection> 
    6163         <sender>mix1ana3_fader</sender> 
    6164         <signal>valueChanged(int)</signal> 
    6165         <receiver>MotuMixerUI</receiver> 
    6166         <slot>set_mix1ana3_fader(int)</slot> 
    6167     </connection> 
    6168     <connection> 
    6169         <sender>mix1ana4_fader</sender> 
    6170         <signal>valueChanged(int)</signal> 
    6171         <receiver>MotuMixerUI</receiver> 
    6172         <slot>set_mix1ana4_fader(int)</slot> 
    6173     </connection> 
    6174     <connection> 
    6175         <sender>mix1ana5_fader</sender> 
    6176         <signal>valueChanged(int)</signal> 
    6177         <receiver>MotuMixerUI</receiver> 
    6178         <slot>set_mix1ana5_fader(int)</slot> 
    6179     </connection> 
    6180     <connection> 
    6181         <sender>mix1ana6_fader</sender> 
    6182         <signal>valueChanged(int)</signal> 
    6183         <receiver>MotuMixerUI</receiver> 
    6184         <slot>set_mix1ana6_fader(int)</slot> 
    6185     </connection> 
    6186     <connection> 
    6187         <sender>mix1ana7_fader</sender> 
    6188         <signal>valueChanged(int)</signal> 
    6189         <receiver>MotuMixerUI</receiver> 
    6190         <slot>set_mix1ana7_fader(int)</slot> 
    6191     </connection> 
    6192     <connection> 
    6193         <sender>mix1ana8_fader</sender> 
    6194         <signal>valueChanged(int)</signal> 
    6195         <receiver>MotuMixerUI</receiver> 
    6196         <slot>set_mix1ana8_fader(int)</slot> 
    6197     </connection> 
    6198     <connection> 
    6199         <sender>mix1ana1_pan</sender> 
    6200         <signal>valueChanged(int)</signal> 
    6201         <receiver>MotuMixerUI</receiver> 
    6202         <slot>set_mix1ana1_pan(int)</slot> 
    6203     </connection> 
    6204     <connection> 
    6205         <sender>mix1ana2_pan</sender> 
    6206         <signal>valueChanged(int)</signal> 
    6207         <receiver>MotuMixerUI</receiver> 
    6208         <slot>set_mix1ana2_pan(int)</slot> 
    6209     </connection> 
    6210     <connection> 
    6211         <sender>mix1ana3_pan</sender> 
    6212         <signal>valueChanged(int)</signal> 
    6213         <receiver>MotuMixerUI</receiver> 
    6214         <slot>set_mix1ana3_pan(int)</slot> 
    6215     </connection> 
    6216     <connection> 
    6217         <sender>mix1ana4_pan</sender> 
    6218         <signal>valueChanged(int)</signal> 
    6219         <receiver>MotuMixerUI</receiver> 
    6220         <slot>set_mix1ana4_pan(int)</slot> 
    6221     </connection> 
    6222     <connection> 
    6223         <sender>mix1ana5_pan</sender> 
    6224         <signal>valueChanged(int)</signal> 
    6225         <receiver>MotuMixerUI</receiver> 
    6226         <slot>set_mix1ana5_pan(int)</slot> 
    6227     </connection> 
    6228     <connection> 
    6229         <sender>mix1ana6_pan</sender> 
    6230         <signal>valueChanged(int)</signal> 
    6231         <receiver>MotuMixerUI</receiver> 
    6232         <slot>set_mix1ana6_pan(int)</slot> 
    6233     </connection> 
    6234     <connection> 
    6235         <sender>mix1ana7_pan</sender> 
    6236         <signal>valueChanged(int)</signal> 
    6237         <receiver>MotuMixerUI</receiver> 
    6238         <slot>set_mix1ana7_pan(int)</slot> 
    6239     </connection> 
    6240     <connection> 
    6241         <sender>mix1ana8_pan</sender> 
    6242         <signal>valueChanged(int)</signal> 
    6243         <receiver>MotuMixerUI</receiver> 
    6244         <slot>set_mix1ana8_pan(int)</slot> 
    6245     </connection> 
    6246     <connection> 
    6247         <sender>mix1ana1_mute</sender> 
    6248         <signal>toggled(bool)</signal> 
    6249         <receiver>MotuMixerUI</receiver> 
    6250         <slot>set_mix1ana1_mute(bool)</slot> 
    6251     </connection> 
    6252     <connection> 
    6253         <sender>mix1ana2_mute</sender> 
    6254         <signal>toggled(bool)</signal> 
    6255         <receiver>MotuMixerUI</receiver> 
    6256         <slot>set_mix1ana2_mute(bool)</slot> 
    6257     </connection> 
    6258     <connection> 
    6259         <sender>mix1ana3_mute</sender> 
    6260         <signal>toggled(bool)</signal> 
    6261         <receiver>MotuMixerUI</receiver> 
    6262         <slot>set_mix1ana3_mute(bool)</slot> 
    6263     </connection> 
    6264     <connection> 
    6265         <sender>mix1ana4_mute</sender> 
    6266         <signal>toggled(bool)</signal> 
    6267         <receiver>MotuMixerUI</receiver> 
    6268         <slot>set_mix1ana4_mute(bool)</slot> 
    6269     </connection> 
    6270     <connection> 
    6271         <sender>mix1ana5_mute</sender> 
    6272         <signal>toggled(bool)</signal> 
    6273         <receiver>MotuMixerUI</receiver> 
    6274         <slot>set_mix1ana5_mute(bool)</slot> 
    6275     </connection> 
    6276     <connection> 
    6277         <sender>mix1ana6_mute</sender> 
    6278         <signal>toggled(bool)</signal> 
    6279         <receiver>MotuMixerUI</receiver> 
    6280         <slot>set_mix1ana6_mute(bool)</slot> 
    6281     </connection> 
    6282     <connection> 
    6283         <sender>mix1ana7_mute</sender> 
    6284         <signal>toggled(bool)</signal> 
    6285         <receiver>MotuMixerUI</receiver> 
    6286         <slot>set_mix1ana7_mute(bool)</slot> 
    6287     </connection> 
    6288     <connection> 
    6289         <sender>mix1ana8_mute</sender> 
    6290         <signal>toggled(bool)</signal> 
    6291         <receiver>MotuMixerUI</receiver> 
    6292         <slot>set_mix1ana8_mute(bool)</slot> 
    6293     </connection> 
    6294     <connection> 
    6295         <sender>mix1ana1_solo</sender> 
    6296         <signal>toggled(bool)</signal> 
    6297         <receiver>MotuMixerUI</receiver> 
    6298         <slot>set_mix1ana1_solo(bool)</slot> 
    6299     </connection> 
    6300     <connection> 
    6301         <sender>mix1ana2_solo</sender> 
    6302         <signal>toggled(bool)</signal> 
    6303         <receiver>MotuMixerUI</receiver> 
    6304         <slot>set_mix1ana2_solo(bool)</slot> 
    6305     </connection> 
    6306     <connection> 
    6307         <sender>mix1ana3_solo</sender> 
    6308         <signal>toggled(bool)</signal> 
    6309         <receiver>MotuMixerUI</receiver> 
    6310         <slot>set_mix1ana3_solo(bool)</slot> 
    6311     </connection> 
    6312     <connection> 
    6313         <sender>mix1ana4_solo</sender> 
    6314         <signal>toggled(bool)</signal> 
    6315         <receiver>MotuMixerUI</receiver> 
    6316         <slot>set_mix1ana4_solo(bool)</slot> 
    6317     </connection> 
    6318     <connection> 
    6319         <sender>mix1ana5_solo</sender> 
    6320         <signal>toggled(bool)</signal> 
    6321         <receiver>MotuMixerUI</receiver> 
    6322         <slot>set_mix1ana5_solo(bool)</slot> 
    6323     </connection> 
    6324     <connection> 
    6325         <sender>mix1ana6_solo</sender> 
    6326         <signal>toggled(bool)</signal> 
    6327         <receiver>MotuMixerUI</receiver> 
    6328         <slot>set_mix1ana6_solo(bool)</slot> 
    6329     </connection> 
    6330     <connection> 
    6331         <sender>mix1ana7_solo</sender> 
    6332         <signal>toggled(bool)</signal> 
    6333         <receiver>MotuMixerUI</receiver> 
    6334         <slot>set_mix1ana7_solo(bool)</slot> 
    6335     </connection> 
    6336     <connection> 
    6337         <sender>mix1ana8_solo</sender> 
    6338         <signal>toggled(bool)</signal> 
    6339         <receiver>MotuMixerUI</receiver> 
    6340         <slot>set_mix1ana8_solo(bool)</slot> 
    6341     </connection> 
    6342     <connection> 
    6343         <sender>mix1_fader</sender> 
    6344         <signal>valueChanged(int)</signal> 
    6345         <receiver>MotuMixerUI</receiver> 
    6346         <slot>set_mix1_fader(int)</slot> 
    6347     </connection> 
    6348     <connection> 
    6349         <sender>mix1_mute</sender> 
    6350         <signal>toggled(bool)</signal> 
    6351         <receiver>MotuMixerUI</receiver> 
    6352         <slot>set_mix1_mute(bool)</slot> 
    6353     </connection> 
    6354     <connection> 
    6355         <sender>mix1_dest</sender> 
    6356         <signal>highlighted(int)</signal> 
    6357         <receiver>MotuMixerUI</receiver> 
    6358         <slot>set_mix1_dest(int)</slot> 
    6359     </connection> 
    6360 </connections> 
    63616168<includes> 
    63626169    <include location="local" impldecl="in implementation">mixer_motu.ui.h</include> 
     
    63646171<slots> 
    63656172    <slot>init()</slot> 
    6366     <slot>set_mix1ana1_fader( int )</slot> 
    6367     <slot>set_mix1ana2_fader( int )</slot> 
    6368     <slot>set_mix1ana3_fader( int )</slot> 
    6369     <slot>set_mix1ana4_fader( int )</slot> 
    6370     <slot>set_mix1ana5_fader( int )</slot> 
    6371     <slot>set_mix1ana6_fader( int )</slot> 
    6372     <slot>set_mix1ana7_fader( int )</slot> 
    6373     <slot>set_mix1ana8_fader( int )</slot> 
    6374     <slot>set_mix1_ana1_pan( int )</slot> 
    6375     <slot>set_mix1ana1_pan( int )</slot> 
    6376     <slot>set_mix1ana2_pan( int )</slot> 
    6377     <slot>set_mix1ana3_pan( int )</slot> 
    6378     <slot>set_mix1ana4_pan( int )</slot> 
    6379     <slot>set_mix1ana5_pan( int )</slot> 
    6380     <slot>set_mix1ana6_pan( int )</slot> 
    6381     <slot>set_mix1ana7_pan( int )</slot> 
    6382     <slot>set_mix1ana8_pan( int )</slot> 
    6383     <slot>set_mix1ana1_mute( bool )</slot> 
    6384     <slot>set_mix1ana2_mute( bool )</slot> 
    6385     <slot>set_mix1ana3_mute( bool )</slot> 
    6386     <slot>set_mix1ana4_mute( bool )</slot> 
    6387     <slot>set_mix1ana5_mute( bool )</slot> 
    6388     <slot>set_mix1ana6_mute( bool )</slot> 
    6389     <slot>set_mix1ana7_mute( bool )</slot> 
    6390     <slot>set_mix1ana8_mute( bool )</slot> 
    6391     <slot>set_mix1ana1_solo( bool )</slot> 
    6392     <slot>set_mix1ana2_solo( bool )</slot> 
    6393     <slot>set_mix1ana3_solo( bool )</slot> 
    6394     <slot>set_mix1ana4_solo( bool )</slot> 
    6395     <slot>set_mix1ana5_solo( bool )</slot> 
    6396     <slot>set_mix1ana6_solo( bool )</slot> 
    6397     <slot>set_mix1ana7_solo( bool )</slot> 
    6398     <slot>set_mix1ana8_solo( bool )</slot> 
    6399     <slot>set_mix1_fader( int )</slot> 
    6400     <slot>set_mix1_mute( bool )</slot> 
    6401     <slot>set_mix1_dest( int )</slot> 
    64026173</slots> 
    64036174<layoutdefaults spacing="6" margin="11"/>