Changeset 1125
- Timestamp:
- 05/05/08 16:04:08 (13 years ago)
- Files:
-
- trunk/libffado/src/motu/motu_avdevice.cpp (modified) (10 diffs)
- trunk/libffado/src/motu/motu_avdevice.h (modified) (2 diffs)
- trunk/libffado/support/mixer/mixer_motu.ui (modified) (85 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/motu/motu_avdevice.cpp
r1121 r1125 673 673 674 674 bool 675 MotuDevice::set SamplingFrequency( int samplingFrequency)675 MotuDevice::setClockCtrlRegister(signed int samplingFrequency, unsigned int clock_source) 676 676 { 677 677 /* 678 * Set the MOTU device's samplerate. 678 * Set the MOTU device's samplerate and/or clock source via the clock 679 * control register. If samplingFrequency <= 0 it remains unchanged. If 680 * clock_source is MOTU_CLKSRC_UNCHANGED the clock source remains unchanged. 679 681 */ 680 682 char *src_name; 681 quadlet_t q, new_rate=0 ;683 quadlet_t q, new_rate=0xffffffff; 682 684 int i, supported=true, cancel_adat=false; 685 quadlet_t reg; 686 687 /* Don't touch anything if there's nothing to do */ 688 if (samplingFrequency<=0 && clock_source==MOTU_CLKSRC_NONE) 689 return true; 683 690 684 691 if ( samplingFrequency > DevicesProperty[m_motu_model-1].MaxSampleRate ) 685 692 return false; 686 693 694 reg = ReadRegister(MOTU_REG_CLK_CTRL); 695 687 696 switch ( samplingFrequency ) { 688 case 22050: 689 case 24000: 690 case 32000: 691 supported=false; 697 case -1: 692 698 break; 693 699 case 44100: … … 714 720 supported=false; 715 721 } 722 723 // Sanity check the clock source 724 if ((clock_source>7 || clock_source==6) && clock_source!=MOTU_CLKSRC_UNCHANGED) 725 supported = false; 716 726 717 727 // Update the clock control register. FIXME: while this is now rather … … 719 729 // a little more than we do. 720 730 if (supported) { 721 quadlet_t value=ReadRegister(MOTU_REG_CLK_CTRL);722 731 723 732 // If optical port must be disabled (because a 4x sample rate has … … 729 738 } 730 739 731 value &= ~(MOTU_RATE_BASE_MASK|MOTU_RATE_MULTIPLIER_MASK); 732 value |= new_rate; 740 // Set up new frequency if requested 741 if (new_rate != 0xffffffff) { 742 reg &= ~(MOTU_RATE_BASE_MASK|MOTU_RATE_MULTIPLIER_MASK); 743 reg |= new_rate; 744 } 745 746 // Set up new clock source if required 747 if (clock_source != MOTU_CLKSRC_UNCHANGED) { 748 reg &= ~MOTU_CLKSRC_MASK; 749 reg |= (clock_source & MOTU_CLKSRC_MASK); 750 } 733 751 734 752 // In other OSes bit 26 of MOTU_REG_CLK_CTRL always seems … … 740 758 // part of the mystery. 741 759 // value |= 0x04000000; 742 if (WriteRegister(MOTU_REG_CLK_CTRL, value) == 0) {760 if (WriteRegister(MOTU_REG_CLK_CTRL, reg) == 0) { 743 761 supported=true; 744 762 } else { … … 748 766 // textual name of the current clock source be sent to the 749 767 // clock source name registers. 750 switch ( value& MOTU_CLKSRC_MASK) {768 switch (reg & MOTU_CLKSRC_MASK) { 751 769 case MOTU_CLKSRC_INTERNAL: 752 770 src_name = "Internal "; … … 756 774 break; 757 775 case MOTU_CLKSRC_SPDIF_TOSLINK: 758 if (getOpticalMode(MOTU_DIR_IN) 776 if (getOpticalMode(MOTU_DIR_IN) == MOTU_OPTICAL_MODE_TOSLINK) 759 777 src_name = "TOSLink "; 760 778 else … … 785 803 } 786 804 805 bool 806 MotuDevice::setSamplingFrequency( int samplingFrequency ) 807 { 808 /* 809 * Set the MOTU device's samplerate. 810 */ 811 return setClockCtrlRegister(samplingFrequency, MOTU_CLKSRC_UNCHANGED); 812 } 813 814 FFADODevice::ClockSource 815 MotuDevice::clockIdToClockSource(unsigned int id) { 816 ClockSource s; 817 s.id = id; 818 819 // Assume a clock source is valid/active unless otherwise overridden. 820 s.valid = true; 821 s.locked = true; 822 s.active = true; 823 824 switch (id) { 825 case MOTU_CLKSRC_INTERNAL: 826 s.type = eCT_Internal; 827 s.description = "Internal sync"; 828 break; 829 case MOTU_CLKSRC_ADAT_OPTICAL: 830 s.type = eCT_ADAT; 831 s.description = "ADAT optical"; 832 break; 833 case MOTU_CLKSRC_SPDIF_TOSLINK: 834 s.type = eCT_SPDIF; 835 s.description = "SPDIF/Toslink"; 836 break; 837 case MOTU_CLKSRC_SMTPE: 838 s.type = eCT_Internal; 839 s.description = "SMPTE"; 840 // Since we don't currently know how to deal with SMPTE on these devices 841 // make sure the SMPTE clock source is disabled. 842 s.valid = false; 843 s.active = false; 844 s.locked = false; 845 break; 846 case MOTU_CLKSRC_WORDCLOCK: 847 s.type = eCT_WordClock; 848 s.description = "Wordclock"; 849 break; 850 case MOTU_CLKSRC_ADAT_9PIN: 851 s.type = eCT_ADAT; 852 s.description = "ADAT 9-pin"; 853 break; 854 case MOTU_CLKSRC_AES_EBU: 855 s.type = eCT_AES; 856 s.description = "AES/EBU"; 857 break; 858 default: 859 s.type = eCT_Invalid; 860 } 861 862 s.slipping = false; 863 return s; 864 } 865 787 866 FFADODevice::ClockSourceVector 788 867 MotuDevice::getSupportedClockSources() { 789 868 FFADODevice::ClockSourceVector r; 869 ClockSource s; 870 871 /* Form a list of clocks supported by MOTU interfaces */ 872 s = clockIdToClockSource(MOTU_CLKSRC_INTERNAL); 873 r.push_back(s); 874 s = clockIdToClockSource(MOTU_CLKSRC_ADAT_OPTICAL); 875 r.push_back(s); 876 s = clockIdToClockSource(MOTU_CLKSRC_SPDIF_TOSLINK); 877 r.push_back(s); 878 s = clockIdToClockSource(MOTU_CLKSRC_SMTPE); 879 r.push_back(s); 880 s = clockIdToClockSource(MOTU_CLKSRC_WORDCLOCK); 881 r.push_back(s); 882 s = clockIdToClockSource(MOTU_CLKSRC_ADAT_9PIN); 883 r.push_back(s); 884 s = clockIdToClockSource(MOTU_CLKSRC_AES_EBU); 885 r.push_back(s); 886 790 887 return r; 791 888 } … … 793 890 bool 794 891 MotuDevice::setActiveClockSource(ClockSource s) { 795 return false; 892 debugOutput(DEBUG_LEVEL_VERBOSE, "setting clock source to id: %d\n",s.id); 893 894 // FIXME: this could do with some error checking 895 return setClockCtrlRegister(-1, s.id); 796 896 } 797 897 … … 799 899 MotuDevice::getActiveClockSource() { 800 900 ClockSource s; 901 quadlet_t clock_id = ReadRegister(MOTU_REG_CLK_CTRL) & MOTU_CLKSRC_MASK; 902 s = clockIdToClockSource(clock_id); 903 s.active = true; 801 904 return s; 802 905 } trunk/libffado/src/motu/motu_avdevice.h
r1056 r1125 61 61 #define MOTU_CLKSRC_ADAT_9PIN 5 62 62 #define MOTU_CLKSRC_AES_EBU 7 63 #define MOTU_CLKSRC_NONE 0xffff 64 #define MOTU_CLKSRC_UNCHANGED MOTU_CLKSRC_NONE 63 65 64 66 #define MOTU_DIR_IN 1 … … 156 158 virtual void showDevice(); 157 159 160 bool setClockCtrlRegister(signed int samplingFrequency, unsigned int clock_source); 158 161 virtual bool setSamplingFrequency( int samplingFrequency ); 159 162 virtual int getSamplingFrequency( ); 160 163 164 FFADODevice::ClockSource clockIdToClockSource(unsigned int id); 161 165 virtual ClockSourceVector getSupportedClockSources(); 162 166 virtual bool setActiveClockSource(ClockSource); trunk/libffado/support/mixer/mixer_motu.ui
r1105 r1125 26 26 <rect> 27 27 <x>0</x> 28 <y> 2</y>28 <y>0</y> 29 29 <width>800</width> 30 30 <height>750</height> … … 77 77 <widget class="QLabel"> 78 78 <property name="name"> 79 <cstring>textLabel1_2_2_13_2</cstring> 80 </property> 81 <property name="geometry"> 82 <rect> 83 <x>50</x> 84 <y>60</y> 85 <width>31</width> 86 <height>37</height> 87 </rect> 88 </property> 89 <property name="font"> 90 <font> 91 </font> 92 </property> 93 <property name="text"> 94 <string><p align="center"><qt><small>Trim<br>gain</small></qt></p></string> 95 </property> 96 <property name="alignment"> 97 <set>WordBreak|AlignCenter</set> 98 </property> 99 </widget> 100 <widget class="QLabel"> 101 <property name="name"> 102 <cstring>textLabel1_2_2_13_3</cstring> 103 </property> 104 <property name="geometry"> 105 <rect> 106 <x>90</x> 107 <y>60</y> 108 <width>31</width> 109 <height>37</height> 110 </rect> 111 </property> 112 <property name="font"> 113 <font> 114 </font> 115 </property> 116 <property name="text"> 117 <string><p align="center"><qt><small>Trim<br>gain</small></qt></p></string> 118 </property> 119 <property name="alignment"> 120 <set>WordBreak|AlignCenter</set> 121 </property> 122 </widget> 123 <widget class="QLabel"> 124 <property name="name"> 125 <cstring>textLabel1_2_2_13_4</cstring> 126 </property> 127 <property name="geometry"> 128 <rect> 129 <x>130</x> 130 <y>60</y> 131 <width>31</width> 132 <height>37</height> 133 </rect> 134 </property> 135 <property name="font"> 136 <font> 137 </font> 138 </property> 139 <property name="text"> 140 <string><p align="center"><qt><small>Trim<br>gain</small></qt></p></string> 141 </property> 142 <property name="alignment"> 143 <set>WordBreak|AlignCenter</set> 144 </property> 145 </widget> 146 <widget class="QLabel"> 147 <property name="name"> 148 <cstring>textLabel1_2_2_12_2</cstring> 149 </property> 150 <property name="geometry"> 151 <rect> 152 <x>50</x> 153 <y>130</y> 154 <width>37</width> 155 <height>40</height> 156 </rect> 157 </property> 158 <property name="font"> 159 <font> 160 </font> 161 </property> 162 <property name="text"> 163 <string><p align="center"><qt><small>-20dB<br>pad</small></qt></p></string> 164 </property> 165 <property name="alignment"> 166 <set>WordBreak|AlignCenter</set> 167 </property> 168 </widget> 169 <widget class="QLabel"> 170 <property name="name"> 171 <cstring>textLabel1_2_2_12_3</cstring> 172 </property> 173 <property name="geometry"> 174 <rect> 175 <x>90</x> 176 <y>130</y> 177 <width>37</width> 178 <height>40</height> 179 </rect> 180 </property> 181 <property name="font"> 182 <font> 183 </font> 184 </property> 185 <property name="text"> 186 <string><p align="center"><qt><small>-20dB<br>pad</small></qt></p></string> 187 </property> 188 <property name="alignment"> 189 <set>WordBreak|AlignCenter</set> 190 </property> 191 </widget> 192 <widget class="QLabel"> 193 <property name="name"> 194 <cstring>textLabel1_2_2_12_3_2</cstring> 195 </property> 196 <property name="geometry"> 197 <rect> 198 <x>130</x> 199 <y>130</y> 200 <width>37</width> 201 <height>40</height> 202 </rect> 203 </property> 204 <property name="font"> 205 <font> 206 </font> 207 </property> 208 <property name="text"> 209 <string><p align="center"><qt><small>-20dB<br>pad</small></qt></p></string> 210 </property> 211 <property name="alignment"> 212 <set>WordBreak|AlignCenter</set> 213 </property> 214 </widget> 215 <widget class="QDial"> 216 <property name="name"> 217 <cstring>ana3_trimgain</cstring> 218 </property> 219 <property name="geometry"> 220 <rect> 221 <x>90</x> 222 <y>30</y> 223 <width>30</width> 224 <height>30</height> 225 </rect> 226 </property> 227 <property name="minValue"> 228 <number>0</number> 229 </property> 230 <property name="maxValue"> 231 <number>53</number> 232 </property> 233 </widget> 234 <widget class="QDial"> 235 <property name="name"> 236 <cstring>ana4_trimgain</cstring> 237 </property> 238 <property name="geometry"> 239 <rect> 240 <x>130</x> 241 <y>30</y> 242 <width>30</width> 243 <height>30</height> 244 </rect> 245 </property> 246 <property name="minValue"> 247 <number>0</number> 248 </property> 249 <property name="maxValue"> 250 <number>53</number> 251 </property> 252 </widget> 253 <widget class="QDial"> 254 <property name="name"> 255 <cstring>ana1_trimgain</cstring> 256 </property> 257 <property name="geometry"> 258 <rect> 259 <x>10</x> 260 <y>30</y> 261 <width>30</width> 262 <height>30</height> 263 </rect> 264 </property> 265 <property name="minValue"> 266 <number>0</number> 267 </property> 268 <property name="maxValue"> 269 <number>53</number> 270 </property> 271 </widget> 272 <widget class="QDial"> 273 <property name="name"> 274 <cstring>ana2_trimgain</cstring> 275 </property> 276 <property name="geometry"> 277 <rect> 278 <x>50</x> 279 <y>30</y> 280 <width>30</width> 281 <height>30</height> 282 </rect> 283 </property> 284 <property name="minValue"> 285 <number>0</number> 286 </property> 287 <property name="maxValue"> 288 <number>53</number> 289 </property> 290 </widget> 291 <widget class="QCheckBox"> 292 <property name="name"> 293 <cstring>ana1_pad</cstring> 294 </property> 295 <property name="geometry"> 296 <rect> 297 <x>20</x> 298 <y>110</y> 299 <width>20</width> 300 <height>26</height> 301 </rect> 302 </property> 303 <property name="sizePolicy"> 304 <sizepolicy> 305 <hsizetype>1</hsizetype> 306 <vsizetype>0</vsizetype> 307 <horstretch>0</horstretch> 308 <verstretch>0</verstretch> 309 </sizepolicy> 310 </property> 311 <property name="font"> 312 <font> 313 </font> 314 </property> 315 <property name="text"> 316 <string></string> 317 </property> 318 </widget> 319 <widget class="QCheckBox"> 320 <property name="name"> 321 <cstring>ana2_pad</cstring> 322 </property> 323 <property name="geometry"> 324 <rect> 325 <x>60</x> 326 <y>110</y> 327 <width>20</width> 328 <height>26</height> 329 </rect> 330 </property> 331 <property name="sizePolicy"> 332 <sizepolicy> 333 <hsizetype>1</hsizetype> 334 <vsizetype>0</vsizetype> 335 <horstretch>0</horstretch> 336 <verstretch>0</verstretch> 337 </sizepolicy> 338 </property> 339 <property name="font"> 340 <font> 341 </font> 342 </property> 343 <property name="text"> 344 <string></string> 345 </property> 346 </widget> 347 <widget class="QCheckBox"> 348 <property name="name"> 349 <cstring>ana3_pad</cstring> 350 </property> 351 <property name="geometry"> 352 <rect> 353 <x>100</x> 354 <y>110</y> 355 <width>20</width> 356 <height>26</height> 357 </rect> 358 </property> 359 <property name="sizePolicy"> 360 <sizepolicy> 361 <hsizetype>1</hsizetype> 362 <vsizetype>0</vsizetype> 363 <horstretch>0</horstretch> 364 <verstretch>0</verstretch> 365 </sizepolicy> 366 </property> 367 <property name="font"> 368 <font> 369 </font> 370 </property> 371 <property name="text"> 372 <string></string> 373 </property> 374 </widget> 375 <widget class="QCheckBox"> 376 <property name="name"> 377 <cstring>ana4_pad</cstring> 378 </property> 379 <property name="geometry"> 380 <rect> 381 <x>140</x> 382 <y>110</y> 383 <width>20</width> 384 <height>26</height> 385 </rect> 386 </property> 387 <property name="sizePolicy"> 388 <sizepolicy> 389 <hsizetype>1</hsizetype> 390 <vsizetype>0</vsizetype> 391 <horstretch>0</horstretch> 392 <verstretch>0</verstretch> 393 </sizepolicy> 394 </property> 395 <property name="font"> 396 <font> 397 </font> 398 </property> 399 <property name="text"> 400 <string></string> 401 </property> 402 </widget> 403 <widget class="QLabel"> 404 <property name="name"> 405 <cstring>textLabel2_11</cstring> 406 </property> 407 <property name="geometry"> 408 <rect> 409 <x>10</x> 410 <y>180</y> 411 <width>30</width> 412 <height>22</height> 413 </rect> 414 </property> 415 <property name="text"> 416 <string>1</string> 417 </property> 418 <property name="alignment"> 419 <set>AlignCenter</set> 420 </property> 421 </widget> 422 <widget class="QLabel"> 423 <property name="name"> 424 <cstring>textLabel2_2_4</cstring> 425 </property> 426 <property name="geometry"> 427 <rect> 428 <x>50</x> 429 <y>180</y> 430 <width>30</width> 431 <height>22</height> 432 </rect> 433 </property> 434 <property name="text"> 435 <string>2</string> 436 </property> 437 <property name="alignment"> 438 <set>AlignCenter</set> 439 </property> 440 </widget> 441 <widget class="QLabel"> 442 <property name="name"> 443 <cstring>textLabel2_3_3</cstring> 444 </property> 445 <property name="geometry"> 446 <rect> 447 <x>90</x> 448 <y>180</y> 449 <width>30</width> 450 <height>22</height> 451 </rect> 452 </property> 453 <property name="text"> 454 <string>3</string> 455 </property> 456 <property name="alignment"> 457 <set>AlignCenter</set> 458 </property> 459 </widget> 460 <widget class="QLabel"> 461 <property name="name"> 462 <cstring>textLabel2_4_3</cstring> 463 </property> 464 <property name="geometry"> 465 <rect> 466 <x>130</x> 467 <y>180</y> 468 <width>30</width> 469 <height>22</height> 470 </rect> 471 </property> 472 <property name="text"> 473 <string>4</string> 474 </property> 475 <property name="alignment"> 476 <set>AlignCenter</set> 477 </property> 478 </widget> 479 <widget class="Line"> 480 <property name="name"> 481 <cstring>line1</cstring> 482 </property> 483 <property name="geometry"> 484 <rect> 485 <x>10</x> 486 <y>200</y> 487 <width>151</width> 488 <height>20</height> 489 </rect> 490 </property> 491 <property name="frameShape"> 492 <enum>HLine</enum> 493 </property> 494 <property name="frameShadow"> 495 <enum>Sunken</enum> 496 </property> 497 <property name="orientation"> 498 <enum>Horizontal</enum> 499 </property> 500 </widget> 501 <widget class="QCheckBox"> 502 <property name="name"> 503 <cstring>ana5_level</cstring> 504 </property> 505 <property name="geometry"> 506 <rect> 507 <x>20</x> 508 <y>220</y> 509 <width>20</width> 510 <height>26</height> 511 </rect> 512 </property> 513 <property name="sizePolicy"> 514 <sizepolicy> 515 <hsizetype>1</hsizetype> 516 <vsizetype>0</vsizetype> 517 <horstretch>0</horstretch> 518 <verstretch>0</verstretch> 519 </sizepolicy> 520 </property> 521 <property name="font"> 522 <font> 523 </font> 524 </property> 525 <property name="text"> 526 <string></string> 527 </property> 528 </widget> 529 <widget class="QCheckBox"> 530 <property name="name"> 531 <cstring>ana6_level</cstring> 532 </property> 533 <property name="geometry"> 534 <rect> 535 <x>60</x> 536 <y>220</y> 537 <width>20</width> 538 <height>26</height> 539 </rect> 540 </property> 541 <property name="sizePolicy"> 542 <sizepolicy> 543 <hsizetype>1</hsizetype> 544 <vsizetype>0</vsizetype> 545 <horstretch>0</horstretch> 546 <verstretch>0</verstretch> 547 </sizepolicy> 548 </property> 549 <property name="font"> 550 <font> 551 </font> 552 </property> 553 <property name="text"> 554 <string></string> 555 </property> 556 </widget> 557 <widget class="QCheckBox"> 558 <property name="name"> 559 <cstring>ana7_level</cstring> 560 </property> 561 <property name="geometry"> 562 <rect> 563 <x>100</x> 564 <y>220</y> 565 <width>20</width> 566 <height>26</height> 567 </rect> 568 </property> 569 <property name="sizePolicy"> 570 <sizepolicy> 571 <hsizetype>1</hsizetype> 572 <vsizetype>0</vsizetype> 573 <horstretch>0</horstretch> 574 <verstretch>0</verstretch> 575 </sizepolicy> 576 </property> 577 <property name="font"> 578 <font> 579 </font> 580 </property> 581 <property name="text"> 582 <string></string> 583 </property> 584 </widget> 585 <widget class="QCheckBox"> 586 <property name="name"> 587 <cstring>ana8_level</cstring> 588 </property> 589 <property name="geometry"> 590 <rect> 591 <x>140</x> 592 <y>220</y> 593 <width>20</width> 594 <height>26</height> 595 </rect> 596 </property> 597 <property name="sizePolicy"> 598 <sizepolicy> 599 <hsizetype>1</hsizetype> 600 <vsizetype>0</vsizetype> 601 <horstretch>0</horstretch> 602 <verstretch>0</verstretch> 603 </sizepolicy> 604 </property> 605 <property name="font"> 606 <font> 607 </font> 608 </property> 609 <property name="text"> 610 <string></string> 611 </property> 612 </widget> 613 <widget class="QLabel"> 614 <property name="name"> 615 <cstring>textLabel1_2_2_12_4_5_2</cstring> 616 </property> 617 <property name="geometry"> 618 <rect> 619 <x>50</x> 620 <y>240</y> 621 <width>37</width> 622 <height>40</height> 623 </rect> 624 </property> 625 <property name="font"> 626 <font> 627 </font> 628 </property> 629 <property name="text"> 630 <string><p align="center"><qt><small>+4<br>dBU</small></qt></p></string> 631 </property> 632 <property name="alignment"> 633 <set>WordBreak|AlignCenter</set> 634 </property> 635 </widget> 636 <widget class="QLabel"> 637 <property name="name"> 638 <cstring>textLabel1_2_2_12_4_5_3</cstring> 639 </property> 640 <property name="geometry"> 641 <rect> 642 <x>90</x> 643 <y>240</y> 644 <width>37</width> 645 <height>40</height> 646 </rect> 647 </property> 648 <property name="font"> 649 <font> 650 </font> 651 </property> 652 <property name="text"> 653 <string><p align="center"><qt><small>+4<br>dBU</small></qt></p></string> 654 </property> 655 <property name="alignment"> 656 <set>WordBreak|AlignCenter</set> 657 </property> 658 </widget> 659 <widget class="QLabel"> 660 <property name="name"> 661 <cstring>textLabel1_2_2_12_4_5_4</cstring> 662 </property> 663 <property name="geometry"> 664 <rect> 665 <x>130</x> 666 <y>240</y> 667 <width>37</width> 668 <height>40</height> 669 </rect> 670 </property> 671 <property name="font"> 672 <font> 673 </font> 674 </property> 675 <property name="text"> 676 <string><p align="center"><qt><small>+4<br>dBU</small></qt></p></string> 677 </property> 678 <property name="alignment"> 679 <set>WordBreak|AlignCenter</set> 680 </property> 681 </widget> 682 <widget class="QCheckBox"> 683 <property name="name"> 684 <cstring>ana5_boost</cstring> 685 </property> 686 <property name="geometry"> 687 <rect> 688 <x>20</x> 689 <y>290</y> 690 <width>20</width> 691 <height>26</height> 692 </rect> 693 </property> 694 <property name="sizePolicy"> 695 <sizepolicy> 696 <hsizetype>1</hsizetype> 697 <vsizetype>0</vsizetype> 698 <horstretch>0</horstretch> 699 <verstretch>0</verstretch> 700 </sizepolicy> 701 </property> 702 <property name="font"> 703 <font> 704 </font> 705 </property> 706 <property name="text"> 707 <string></string> 708 </property> 709 </widget> 710 <widget class="QCheckBox"> 711 <property name="name"> 712 <cstring>ana6_boost</cstring> 713 </property> 714 <property name="geometry"> 715 <rect> 716 <x>60</x> 717 <y>290</y> 718 <width>20</width> 719 <height>26</height> 720 </rect> 721 </property> 722 <property name="sizePolicy"> 723 <sizepolicy> 724 <hsizetype>1</hsizetype> 725 <vsizetype>0</vsizetype> 726 <horstretch>0</horstretch> 727 <verstretch>0</verstretch> 728 </sizepolicy> 729 </property> 730 <property name="font"> 731 <font> 732 </font> 733 </property> 734 <property name="text"> 735 <string></string> 736 </property> 737 </widget> 738 <widget class="QCheckBox"> 739 <property name="name"> 740 <cstring>ana7_boost</cstring> 741 </property> 742 <property name="geometry"> 743 <rect> 744 <x>100</x> 745 <y>290</y> 746 <width>20</width> 747 <height>26</height> 748 </rect> 749 </property> 750 <property name="sizePolicy"> 751 <sizepolicy> 752 <hsizetype>1</hsizetype> 753 <vsizetype>0</vsizetype> 754 <horstretch>0</horstretch> 755 <verstretch>0</verstretch> 756 </sizepolicy> 757 </property> 758 <property name="font"> 759 <font> 760 </font> 761 </property> 762 <property name="text"> 763 <string></string> 764 </property> 765 </widget> 766 <widget class="QCheckBox"> 767 <property name="name"> 768 <cstring>ana8_boost</cstring> 769 </property> 770 <property name="geometry"> 771 <rect> 772 <x>140</x> 773 <y>290</y> 774 <width>20</width> 775 <height>26</height> 776 </rect> 777 </property> 778 <property name="sizePolicy"> 779 <sizepolicy> 780 <hsizetype>1</hsizetype> 781 <vsizetype>0</vsizetype> 782 <horstretch>0</horstretch> 783 <verstretch>0</verstretch> 784 </sizepolicy> 785 </property> 786 <property name="font"> 787 <font> 788 </font> 789 </property> 790 <property name="text"> 791 <string></string> 792 </property> 793 </widget> 794 <widget class="QLabel"> 795 <property name="name"> 796 <cstring>textLabel1_2_2_12_4_2</cstring> 797 </property> 798 <property name="geometry"> 799 <rect> 800 <x>50</x> 801 <y>310</y> 802 <width>37</width> 803 <height>40</height> 804 </rect> 805 </property> 806 <property name="font"> 807 <font> 808 </font> 809 </property> 810 <property name="text"> 811 <string><p align="center"><qt><small>+6dB<br>boost</small></qt></p></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>310</y> 825 <width>37</width> 826 <height>40</height> 827 </rect> 828 </property> 829 <property name="font"> 830 <font> 831 </font> 832 </property> 833 <property name="text"> 834 <string><p align="center"><qt><small>+6dB<br>boost</small></qt></p></string> 835 </property> 836 <property name="alignment"> 837 <set>WordBreak|AlignCenter</set> 838 </property> 839 </widget> 840 <widget class="QLabel"> 841 <property name="name"> 842 <cstring>textLabel1_2_2_12_4_4</cstring> 843 </property> 844 <property name="geometry"> 845 <rect> 846 <x>130</x> 847 <y>310</y> 848 <width>37</width> 849 <height>40</height> 850 </rect> 851 </property> 852 <property name="font"> 853 <font> 854 </font> 855 </property> 856 <property name="text"> 857 <string><p align="center"><qt><small>+6dB<br>boost</small></qt></p></string> 858 </property> 859 <property name="alignment"> 860 <set>WordBreak|AlignCenter</set> 861 </property> 862 </widget> 863 <widget class="QLabel"> 864 <property name="name"> 865 <cstring>textLabel2_7_3</cstring> 866 </property> 867 <property name="geometry"> 868 <rect> 869 <x>90</x> 870 <y>360</y> 871 <width>30</width> 872 <height>22</height> 873 </rect> 874 </property> 875 <property name="text"> 876 <string>7</string> 877 </property> 878 <property name="alignment"> 879 <set>AlignCenter</set> 880 </property> 881 </widget> 882 <widget class="QLabel"> 883 <property name="name"> 884 <cstring>textLabel2_8_3</cstring> 885 </property> 886 <property name="geometry"> 887 <rect> 888 <x>130</x> 889 <y>360</y> 890 <width>30</width> 891 <height>22</height> 892 </rect> 893 </property> 894 <property name="text"> 895 <string>8</string> 896 </property> 897 <property name="alignment"> 898 <set>AlignCenter</set> 899 </property> 900 </widget> 901 <widget class="QLabel"> 902 <property name="name"> 903 <cstring>textLabel2_6_3</cstring> 904 </property> 905 <property name="geometry"> 906 <rect> 907 <x>50</x> 908 <y>360</y> 909 <width>30</width> 910 <height>22</height> 911 </rect> 912 </property> 913 <property name="text"> 914 <string>6</string> 915 </property> 916 <property name="alignment"> 917 <set>AlignCenter</set> 918 </property> 919 </widget> 920 <widget class="QLabel"> 921 <property name="name"> 922 <cstring>textLabel2_5_3</cstring> 923 </property> 924 <property name="geometry"> 925 <rect> 926 <x>10</x> 927 <y>360</y> 928 <width>30</width> 929 <height>22</height> 930 </rect> 931 </property> 932 <property name="text"> 933 <string>5</string> 934 </property> 935 <property name="alignment"> 936 <set>AlignCenter</set> 937 </property> 938 </widget> 939 <widget class="Line"> 940 <property name="name"> 941 <cstring>line1_2</cstring> 942 </property> 943 <property name="geometry"> 944 <rect> 945 <x>10</x> 946 <y>380</y> 947 <width>151</width> 948 <height>20</height> 949 </rect> 950 </property> 951 <property name="frameShape"> 952 <enum>HLine</enum> 953 </property> 954 <property name="frameShadow"> 955 <enum>Sunken</enum> 956 </property> 957 <property name="orientation"> 958 <enum>Horizontal</enum> 959 </property> 960 </widget> 961 <widget class="QLabel"> 962 <property name="name"> 79 963 <cstring>textLabel1_2_2_13</cstring> 80 964 </property> … … 92 976 </property> 93 977 <property name="text"> 94 <string><p align="center"> Trim<br>gain</p></string>978 <string><p align="center"><qt><small>Trim<br>gain</small></qt></p></string> 95 979 </property> 96 980 <property name="alignment"> … … 100 984 <widget class="QLabel"> 101 985 <property name="name"> 102 <cstring>textLabel1_2_ 2_13_2</cstring>986 <cstring>textLabel1_2_11_3_2_2</cstring> 103 987 </property> 104 988 <property name="geometry"> 105 989 <rect> 106 <x> 50</x>107 <y> 60</y>108 <width> 31</width>109 <height> 37</height>990 <x>10</x> 991 <y>430</y> 992 <width>100</width> 993 <height>22</height> 110 994 </rect> 111 995 </property> … … 115 999 </property> 116 1000 <property name="text"> 117 <string><p align="center">Trim<br>gain</p></string> 118 </property> 119 <property name="alignment"> 120 <set>WordBreak|AlignCenter</set> 121 </property> 122 </widget> 123 <widget class="QLabel"> 124 <property name="name"> 125 <cstring>textLabel1_2_2_13_3</cstring> 126 </property> 127 <property name="geometry"> 128 <rect> 129 <x>90</x> 130 <y>60</y> 131 <width>31</width> 132 <height>37</height> 133 </rect> 134 </property> 135 <property name="font"> 136 <font> 137 </font> 138 </property> 139 <property name="text"> 140 <string><p align="center">Trim<br>gain</p></string> 141 </property> 142 <property name="alignment"> 143 <set>WordBreak|AlignCenter</set> 144 </property> 145 </widget> 146 <widget class="QLabel"> 147 <property name="name"> 148 <cstring>textLabel1_2_2_13_4</cstring> 149 </property> 150 <property name="geometry"> 151 <rect> 152 <x>130</x> 153 <y>60</y> 154 <width>31</width> 155 <height>37</height> 156 </rect> 157 </property> 158 <property name="font"> 159 <font> 160 </font> 161 </property> 162 <property name="text"> 163 <string><p align="center">Trim<br>gain</p></string> 164 </property> 165 <property name="alignment"> 166 <set>WordBreak|AlignCenter</set> 167 </property> 168 </widget> 169 <widget class="QLabel"> 170 <property name="name"> 171 <cstring>textLabel1_2_2_12_2</cstring> 172 </property> 173 <property name="geometry"> 174 <rect> 175 <x>50</x> 176 <y>130</y> 177 <width>37</width> 178 <height>40</height> 179 </rect> 180 </property> 181 <property name="font"> 182 <font> 183 </font> 184 </property> 185 <property name="text"> 186 <string><p align="center">-20dB<br>pad</p></string> 187 </property> 188 <property name="alignment"> 189 <set>WordBreak|AlignCenter</set> 190 </property> 191 </widget> 192 <widget class="QLabel"> 193 <property name="name"> 194 <cstring>textLabel1_2_2_12_3</cstring> 195 </property> 196 <property name="geometry"> 197 <rect> 198 <x>90</x> 199 <y>130</y> 200 <width>37</width> 201 <height>40</height> 202 </rect> 203 </property> 204 <property name="font"> 205 <font> 206 </font> 207 </property> 208 <property name="text"> 209 <string><p align="center">-20dB<br>pad</p></string> 210 </property> 211 <property name="alignment"> 212 <set>WordBreak|AlignCenter</set> 213 </property> 214 </widget> 215 <widget class="QLabel"> 216 <property name="name"> 217 <cstring>textLabel1_2_2_12_3_2</cstring> 218 </property> 219 <property name="geometry"> 220 <rect> 221 <x>130</x> 222 <y>130</y> 223 <width>37</width> 224 <height>40</height> 225 </rect> 226 </property> 227 <property name="font"> 228 <font> 229 </font> 230 </property> 231 <property name="text"> 232 <string><p align="center">-20dB<br>pad</p></string> 1001 <string><qt><small>Optical in mode</small></qt></string> 233 1002 </property> 234 1003 <property name="alignment"> … … 253 1022 </property> 254 1023 <property name="text"> 255 <string><p align="center"> -20dB<br>pad</p></string>1024 <string><p align="center"><qt><small>-20dB<br>pad</small></qt></p></string> 256 1025 </property> 257 1026 <property name="alignment"> 258 1027 <set>WordBreak|AlignCenter</set> 259 </property>260 </widget>261 <widget class="QDial">262 <property name="name">263 <cstring>ana3_trimgain</cstring>264 </property>265 <property name="geometry">266 <rect>267 <x>90</x>268 <y>30</y>269 <width>30</width>270 <height>30</height>271 </rect>272 </property>273 <property name="minValue">274 <number>0</number>275 </property>276 <property name="maxValue">277 <number>53</number>278 </property>279 </widget>280 <widget class="QDial">281 <property name="name">282 <cstring>ana4_trimgain</cstring>283 </property>284 <property name="geometry">285 <rect>286 <x>130</x>287 <y>30</y>288 <width>30</width>289 <height>30</height>290 </rect>291 </property>292 <property name="minValue">293 <number>0</number>294 </property>295 <property name="maxValue">296 <number>53</number>297 </property>298 </widget>299 <widget class="QDial">300 <property name="name">301 <cstring>ana1_trimgain</cstring>302 </property>303 <property name="geometry">304 <rect>305 <x>10</x>306 <y>30</y>307 <width>30</width>308 <height>30</height>309 </rect>310 </property>311 <property name="minValue">312 <number>0</number>313 </property>314 <property name="maxValue">315 <number>53</number>316 </property>317 </widget>318 <widget class="QDial">319 <property name="name">320 <cstring>ana2_trimgain</cstring>321 </property>322 <property name="geometry">323 <rect>324 <x>50</x>325 <y>30</y>326 <width>30</width>327 <height>30</height>328 </rect>329 </property>330 <property name="minValue">331 <number>0</number>332 </property>333 <property name="maxValue">334 <number>53</number>335 </property>336 </widget>337 <widget class="QCheckBox">338 <property name="name">339 <cstring>ana1_pad</cstring>340 </property>341 <property name="geometry">342 <rect>343 <x>20</x>344 <y>110</y>345 <width>20</width>346 <height>26</height>347 </rect>348 </property>349 <property name="sizePolicy">350 <sizepolicy>351 <hsizetype>1</hsizetype>352 <vsizetype>0</vsizetype>353 <horstretch>0</horstretch>354 <verstretch>0</verstretch>355 </sizepolicy>356 </property>357 <property name="font">358 <font>359 </font>360 </property>361 <property name="text">362 <string></string>363 </property>364 </widget>365 <widget class="QCheckBox">366 <property name="name">367 <cstring>ana2_pad</cstring>368 </property>369 <property name="geometry">370 <rect>371 <x>60</x>372 <y>110</y>373 <width>20</width>374 <height>26</height>375 </rect>376 </property>377 <property name="sizePolicy">378 <sizepolicy>379 <hsizetype>1</hsizetype>380 <vsizetype>0</vsizetype>381 <horstretch>0</horstretch>382 <verstretch>0</verstretch>383 </sizepolicy>384 </property>385 <property name="font">386 <font>387 </font>388 </property>389 <property name="text">390 <string></string>391 </property>392 </widget>393 <widget class="QCheckBox">394 <property name="name">395 <cstring>ana3_pad</cstring>396 </property>397 <property name="geometry">398 <rect>399 <x>100</x>400 <y>110</y>401 <width>20</width>402 <height>26</height>403 </rect>404 </property>405 <property name="sizePolicy">406 <sizepolicy>407 <hsizetype>1</hsizetype>408 <vsizetype>0</vsizetype>409 <horstretch>0</horstretch>410 <verstretch>0</verstretch>411 </sizepolicy>412 </property>413 <property name="font">414 <font>415 </font>416 </property>417 <property name="text">418 <string></string>419 </property>420 </widget>421 <widget class="QCheckBox">422 <property name="name">423 <cstring>ana4_pad</cstring>424 </property>425 <property name="geometry">426 <rect>427 <x>140</x>428 <y>110</y>429 <width>20</width>430 <height>26</height>431 </rect>432 </property>433 <property name="sizePolicy">434 <sizepolicy>435 <hsizetype>1</hsizetype>436 <vsizetype>0</vsizetype>437 <horstretch>0</horstretch>438 <verstretch>0</verstretch>439 </sizepolicy>440 </property>441 <property name="font">442 <font>443 </font>444 </property>445 <property name="text">446 <string></string>447 </property>448 </widget>449 <widget class="QLabel">450 <property name="name">451 <cstring>textLabel2_11</cstring>452 </property>453 <property name="geometry">454 <rect>455 <x>10</x>456 <y>180</y>457 <width>30</width>458 <height>22</height>459 </rect>460 </property>461 <property name="text">462 <string>1</string>463 </property>464 <property name="alignment">465 <set>AlignCenter</set>466 </property>467 </widget>468 <widget class="QLabel">469 <property name="name">470 <cstring>textLabel2_2_4</cstring>471 </property>472 <property name="geometry">473 <rect>474 <x>50</x>475 <y>180</y>476 <width>30</width>477 <height>22</height>478 </rect>479 </property>480 <property name="text">481 <string>2</string>482 </property>483 <property name="alignment">484 <set>AlignCenter</set>485 </property>486 </widget>487 <widget class="QLabel">488 <property name="name">489 <cstring>textLabel2_3_3</cstring>490 </property>491 <property name="geometry">492 <rect>493 <x>90</x>494 <y>180</y>495 <width>30</width>496 <height>22</height>497 </rect>498 </property>499 <property name="text">500 <string>3</string>501 </property>502 <property name="alignment">503 <set>AlignCenter</set>504 </property>505 </widget>506 <widget class="QLabel">507 <property name="name">508 <cstring>textLabel2_4_3</cstring>509 </property>510 <property name="geometry">511 <rect>512 <x>130</x>513 <y>180</y>514 <width>30</width>515 <height>22</height>516 </rect>517 </property>518 <property name="text">519 <string>4</string>520 </property>521 <property name="alignment">522 <set>AlignCenter</set>523 </property>524 </widget>525 <widget class="Line">526 <property name="name">527 <cstring>line1</cstring>528 </property>529 <property name="geometry">530 <rect>531 <x>10</x>532 <y>200</y>533 <width>151</width>534 <height>20</height>535 </rect>536 </property>537 <property name="frameShape">538 <enum>HLine</enum>539 </property>540 <property name="frameShadow">541 <enum>Sunken</enum>542 </property>543 <property name="orientation">544 <enum>Horizontal</enum>545 </property>546 </widget>547 <widget class="QCheckBox">548 <property name="name">549 <cstring>ana5_level</cstring>550 </property>551 <property name="geometry">552 <rect>553 <x>20</x>554 <y>220</y>555 <width>20</width>556 <height>26</height>557 </rect>558 </property>559 <property name="sizePolicy">560 <sizepolicy>561 <hsizetype>1</hsizetype>562 <vsizetype>0</vsizetype>563 <horstretch>0</horstretch>564 <verstretch>0</verstretch>565 </sizepolicy>566 </property>567 <property name="font">568 <font>569 </font>570 </property>571 <property name="text">572 <string></string>573 </property>574 </widget>575 <widget class="QCheckBox">576 <property name="name">577 <cstring>ana6_level</cstring>578 </property>579 <property name="geometry">580 <rect>581 <x>60</x>582 <y>220</y>583 <width>20</width>584 <height>26</height>585 </rect>586 </property>587 <property name="sizePolicy">588 <sizepolicy>589 <hsizetype>1</hsizetype>590 <vsizetype>0</vsizetype>591 <horstretch>0</horstretch>592 <verstretch>0</verstretch>593 </sizepolicy>594 </property>595 <property name="font">596 <font>597 </font>598 </property>599 <property name="text">600 <string></string>601 </property>602 </widget>603 <widget class="QCheckBox">604 <property name="name">605 <cstring>ana7_level</cstring>606 </property>607 <property name="geometry">608 <rect>609 <x>100</x>610 <y>220</y>611 <width>20</width>612 <height>26</height>613 </rect>614 </property>615 <property name="sizePolicy">616 <sizepolicy>617 <hsizetype>1</hsizetype>618 <vsizetype>0</vsizetype>619 <horstretch>0</horstretch>620 <verstretch>0</verstretch>621 </sizepolicy>622 </property>623 <property name="font">624 <font>625 </font>626 </property>627 <property name="text">628 <string></string>629 </property>630 </widget>631 <widget class="QCheckBox">632 <property name="name">633 <cstring>ana8_level</cstring>634 </property>635 <property name="geometry">636 <rect>637 <x>140</x>638 <y>220</y>639 <width>20</width>640 <height>26</height>641 </rect>642 </property>643 <property name="sizePolicy">644 <sizepolicy>645 <hsizetype>1</hsizetype>646 <vsizetype>0</vsizetype>647 <horstretch>0</horstretch>648 <verstretch>0</verstretch>649 </sizepolicy>650 </property>651 <property name="font">652 <font>653 </font>654 </property>655 <property name="text">656 <string></string>657 1028 </property> 658 1029 </widget> … … 674 1045 </property> 675 1046 <property name="text"> 676 <string><p align="center"> +4<br>dBU</p></string>1047 <string><p align="center"><qt><small>+4<br>dBU</small></qt></p></string> 677 1048 </property> 678 1049 <property name="alignment"> 679 1050 <set>WordBreak|AlignCenter</set> 680 </property>681 </widget>682 <widget class="QLabel">683 <property name="name">684 <cstring>textLabel1_2_2_12_4_5_2</cstring>685 </property>686 <property name="geometry">687 <rect>688 <x>50</x>689 <y>240</y>690 <width>37</width>691 <height>40</height>692 </rect>693 </property>694 <property name="font">695 <font>696 </font>697 </property>698 <property name="text">699 <string><p align="center">+4<br>dBU</p></string>700 </property>701 <property name="alignment">702 <set>WordBreak|AlignCenter</set>703 </property>704 </widget>705 <widget class="QLabel">706 <property name="name">707 <cstring>textLabel1_2_2_12_4_5_3</cstring>708 </property>709 <property name="geometry">710 <rect>711 <x>90</x>712 <y>240</y>713 <width>37</width>714 <height>40</height>715 </rect>716 </property>717 <property name="font">718 <font>719 </font>720 </property>721 <property name="text">722 <string><p align="center">+4<br>dBU</p></string>723 </property>724 <property name="alignment">725 <set>WordBreak|AlignCenter</set>726 </property>727 </widget>728 <widget class="QLabel">729 <property name="name">730 <cstring>textLabel1_2_2_12_4_5_4</cstring>731 </property>732 <property name="geometry">733 <rect>734 <x>130</x>735 <y>240</y>736 <width>37</width>737 <height>40</height>738 </rect>739 </property>740 <property name="font">741 <font>742 </font>743 </property>744 <property name="text">745 <string><p align="center">+4<br>dBU</p></string>746 </property>747 <property name="alignment">748 <set>WordBreak|AlignCenter</set>749 </property>750 </widget>751 <widget class="QCheckBox">752 <property name="name">753 <cstring>ana5_boost</cstring>754 </property>755 <property name="geometry">756 <rect>757 <x>20</x>758 <y>290</y>759 <width>20</width>760 <height>26</height>761 </rect>762 </property>763 <property name="sizePolicy">764 <sizepolicy>765 <hsizetype>1</hsizetype>766 <vsizetype>0</vsizetype>767 <horstretch>0</horstretch>768 <verstretch>0</verstretch>769 </sizepolicy>770 </property>771 <property name="font">772 <font>773 </font>774 </property>775 <property name="text">776 <string></string>777 </property>778 </widget>779 <widget class="QCheckBox">780 <property name="name">781 <cstring>ana6_boost</cstring>782 </property>783 <property name="geometry">784 <rect>785 <x>60</x>786 <y>290</y>787 <width>20</width>788 <height>26</height>789 </rect>790 </property>791 <property name="sizePolicy">792 <sizepolicy>793 <hsizetype>1</hsizetype>794 <vsizetype>0</vsizetype>795 <horstretch>0</horstretch>796 <verstretch>0</verstretch>797 </sizepolicy>798 </property>799 <property name="font">800 <font>801 </font>802 </property>803 <property name="text">804 <string></string>805 </property>806 </widget>807 <widget class="QCheckBox">808 <property name="name">809 <cstring>ana7_boost</cstring>810 </property>811 <property name="geometry">812 <rect>813 <x>100</x>814 <y>290</y>815 <width>20</width>816 <height>26</height>817 </rect>818 </property>819 <property name="sizePolicy">820 <sizepolicy>821 <hsizetype>1</hsizetype>822 <vsizetype>0</vsizetype>823 <horstretch>0</horstretch>824 <verstretch>0</verstretch>825 </sizepolicy>826 </property>827 <property name="font">828 <font>829 </font>830 </property>831 <property name="text">832 <string></string>833 </property>834 </widget>835 <widget class="QCheckBox">836 <property name="name">837 <cstring>ana8_boost</cstring>838 </property>839 <property name="geometry">840 <rect>841 <x>140</x>842 <y>290</y>843 <width>20</width>844 <height>26</height>845 </rect>846 </property>847 <property name="sizePolicy">848 <sizepolicy>849 <hsizetype>1</hsizetype>850 <vsizetype>0</vsizetype>851 <horstretch>0</horstretch>852 <verstretch>0</verstretch>853 </sizepolicy>854 </property>855 <property name="font">856 <font>857 </font>858 </property>859 <property name="text">860 <string></string>861 1051 </property> 862 1052 </widget> … … 878 1068 </property> 879 1069 <property name="text"> 880 <string><p align="center"> +6dB<br>boost</p></string>1070 <string><p align="center"><qt><small>+6dB<br>boost</small></qt></p></string> 881 1071 </property> 882 1072 <property name="alignment"> 883 1073 <set>WordBreak|AlignCenter</set> 884 </property>885 </widget>886 <widget class="QLabel">887 <property name="name">888 <cstring>textLabel1_2_2_12_4_2</cstring>889 </property>890 <property name="geometry">891 <rect>892 <x>50</x>893 <y>310</y>894 <width>37</width>895 <height>40</height>896 </rect>897 </property>898 <property name="font">899 <font>900 </font>901 </property>902 <property name="text">903 <string><p align="center">+6dB<br>boost</p></string>904 </property>905 <property name="alignment">906 <set>WordBreak|AlignCenter</set>907 </property>908 </widget>909 <widget class="QLabel">910 <property name="name">911 <cstring>textLabel1_2_2_12_4_3</cstring>912 </property>913 <property name="geometry">914 <rect>915 <x>90</x>916 <y>310</y>917 <width>37</width>918 <height>40</height>919 </rect>920 </property>921 <property name="font">922 <font>923 </font>924 </property>925 <property name="text">926 <string><p align="center">+6dB<br>boost</p></string>927 </property>928 <property name="alignment">929 <set>WordBreak|AlignCenter</set>930 </property>931 </widget>932 <widget class="QLabel">933 <property name="name">934 <cstring>textLabel1_2_2_12_4_4</cstring>935 </property>936 <property name="geometry">937 <rect>938 <x>130</x>939 <y>310</y>940 <width>37</width>941 <height>40</height>942 </rect>943 </property>944 <property name="font">945 <font>946 </font>947 </property>948 <property name="text">949 <string><p align="center">+6dB<br>boost</p></string>950 </property>951 <property name="alignment">952 <set>WordBreak|AlignCenter</set>953 </property>954 </widget>955 <widget class="QLabel">956 <property name="name">957 <cstring>textLabel2_7_3</cstring>958 </property>959 <property name="geometry">960 <rect>961 <x>90</x>962 <y>360</y>963 <width>30</width>964 <height>22</height>965 </rect>966 </property>967 <property name="text">968 <string>7</string>969 </property>970 <property name="alignment">971 <set>AlignCenter</set>972 </property>973 </widget>974 <widget class="QLabel">975 <property name="name">976 <cstring>textLabel2_8_3</cstring>977 </property>978 <property name="geometry">979 <rect>980 <x>130</x>981 <y>360</y>982 <width>30</width>983 <height>22</height>984 </rect>985 </property>986 <property name="text">987 <string>8</string>988 </property>989 <property name="alignment">990 <set>AlignCenter</set>991 </property>992 </widget>993 <widget class="QLabel">994 <property name="name">995 <cstring>textLabel2_6_3</cstring>996 </property>997 <property name="geometry">998 <rect>999 <x>50</x>1000 <y>360</y>1001 <width>30</width>1002 <height>22</height>1003 </rect>1004 </property>1005 <property name="text">1006 <string>6</string>1007 </property>1008 <property name="alignment">1009 <set>AlignCenter</set>1010 </property>1011 </widget>1012 <widget class="QLabel">1013 <property name="name">1014 <cstring>textLabel2_5_3</cstring>1015 </property>1016 <property name="geometry">1017 <rect>1018 <x>10</x>1019 <y>360</y>1020 <width>30</width>1021 <height>22</height>1022 </rect>1023 </property>1024 <property name="text">1025 <string>5</string>1026 </property>1027 <property name="alignment">1028 <set>AlignCenter</set>1029 </property>1030 </widget>1031 <widget class="Line">1032 <property name="name">1033 <cstring>line1_2</cstring>1034 </property>1035 <property name="geometry">1036 <rect>1037 <x>10</x>1038 <y>380</y>1039 <width>151</width>1040 <height>20</height>1041 </rect>1042 </property>1043 <property name="frameShape">1044 <enum>HLine</enum>1045 </property>1046 <property name="frameShadow">1047 <enum>Sunken</enum>1048 </property>1049 <property name="orientation">1050 <enum>Horizontal</enum>1051 1074 </property> 1052 1075 </widget> … … 1080 1103 <property name="font"> 1081 1104 <font> 1105 <pointsize>9</pointsize> 1082 1106 </font> 1083 </property>1084 </widget>1085 <widget class="QLabel">1086 <property name="name">1087 <cstring>textLabel1_2_11_3_2_2</cstring>1088 </property>1089 <property name="geometry">1090 <rect>1091 <x>10</x>1092 <y>430</y>1093 <width>87</width>1094 <height>22</height>1095 </rect>1096 </property>1097 <property name="font">1098 <font>1099 </font>1100 </property>1101 <property name="text">1102 <string>Optical in mode</string>1103 </property>1104 <property name="alignment">1105 <set>AlignCenter</set>1106 1107 </property> 1107 1108 </widget> … … 1130 1131 <x>10</x> 1131 1132 <y>50</y> 1132 <width> 83</width>1133 <width>90</width> 1133 1134 <height>22</height> 1134 1135 </rect> … … 1139 1140 </property> 1140 1141 <property name="text"> 1141 <string> Phones assign</string>1142 <string><qt><small>Phones assign</small></qt></string> 1142 1143 </property> 1143 1144 <property name="alignment"> 1144 <set> AlignCenter</set>1145 <set>WordBreak|AlignCenter</set> 1145 1146 </property> 1146 1147 </widget> … … 1153 1154 <x>10</x> 1154 1155 <y>110</y> 1155 <width> 94</width>1156 <width>100</width> 1156 1157 <height>22</height> 1157 1158 </rect> … … 1162 1163 </property> 1163 1164 <property name="text"> 1164 <string> Optical out mode</string>1165 <string><qt><small>Optical out mode</small><qt></string> 1165 1166 </property> 1166 1167 <property name="alignment"> 1167 <set> AlignCenter</set>1168 <set>WordBreak|AlignCenter</set> 1168 1169 </property> 1169 1170 </widget> … … 1242 1243 <property name="font"> 1243 1244 <font> 1245 <pointsize>9</pointsize> 1244 1246 </font> 1245 1247 </property> … … 1274 1276 <property name="font"> 1275 1277 <font> 1278 <pointsize>9</pointsize> 1276 1279 </font> 1277 1280 </property> … … 1312 1315 <string>Output</string> 1313 1316 </property> 1314 <widget class="QLabel">1315 <property name="name">1316 <cstring>textLabel1_2_2_11_3</cstring>1317 </property>1318 <property name="geometry">1319 <rect>1320 <x>40</x>1321 <y>80</y>1322 <width>30</width>1323 <height>22</height>1324 </rect>1325 </property>1326 <property name="font">1327 <font>1328 </font>1329 </property>1330 <property name="text">1331 <string>Mute</string>1332 </property>1333 <property name="alignment">1334 <set>AlignCenter</set>1335 </property>1336 </widget>1337 <widget class="QLabel">1338 <property name="name">1339 <cstring>textLabel2_2_3_3</cstring>1340 </property>1341 <property name="geometry">1342 <rect>1343 <x>20</x>1344 <y>280</y>1345 <width>79</width>1346 <height>22</height>1347 </rect>1348 </property>1349 <property name="text">1350 <string>Mix output</string>1351 </property>1352 <property name="alignment">1353 <set>AlignCenter</set>1354 </property>1355 </widget>1356 <widget class="QLabel">1357 <property name="name">1358 <cstring>textLabel1_2_11_3</cstring>1359 </property>1360 <property name="geometry">1361 <rect>1362 <x>20</x>1363 <y>130</y>1364 <width>64</width>1365 <height>22</height>1366 </rect>1367 </property>1368 <property name="font">1369 <font>1370 </font>1371 </property>1372 <property name="text">1373 <string>Destination</string>1374 </property>1375 <property name="alignment">1376 <set>AlignCenter</set>1377 </property>1378 </widget>1379 1317 <widget class="QSlider"> 1380 1318 <property name="name"> … … 1442 1380 </property> 1443 1381 </widget> 1382 <widget class="QLabel"> 1383 <property name="name"> 1384 <cstring>textLabel1_2_2_11_3</cstring> 1385 </property> 1386 <property name="geometry"> 1387 <rect> 1388 <x>40</x> 1389 <y>80</y> 1390 <width>30</width> 1391 <height>22</height> 1392 </rect> 1393 </property> 1394 <property name="font"> 1395 <font> 1396 </font> 1397 </property> 1398 <property name="text"> 1399 <string><qt><small>Mute</small></qt></string> 1400 </property> 1401 <property name="alignment"> 1402 <set>WordBreak|AlignCenter</set> 1403 </property> 1404 </widget> 1405 <widget class="QLabel"> 1406 <property name="name"> 1407 <cstring>textLabel1_2_11_3</cstring> 1408 </property> 1409 <property name="geometry"> 1410 <rect> 1411 <x>20</x> 1412 <y>130</y> 1413 <width>64</width> 1414 <height>22</height> 1415 </rect> 1416 </property> 1417 <property name="font"> 1418 <font> 1419 </font> 1420 </property> 1421 <property name="text"> 1422 <string><qt><small>Destination</small></qt></string> 1423 </property> 1424 <property name="alignment"> 1425 <set>WordBreak|AlignCenter</set> 1426 </property> 1427 </widget> 1428 <widget class="QLabel"> 1429 <property name="name"> 1430 <cstring>textLabel2_2_3_3</cstring> 1431 </property> 1432 <property name="geometry"> 1433 <rect> 1434 <x>20</x> 1435 <y>280</y> 1436 <width>79</width> 1437 <height>22</height> 1438 </rect> 1439 </property> 1440 <property name="text"> 1441 <string>Mix output</string> 1442 </property> 1443 <property name="alignment"> 1444 <set>AlignCenter</set> 1445 </property> 1446 </widget> 1444 1447 <widget class="QComboBox"> 1445 1448 <item> … … 1516 1519 <property name="font"> 1517 1520 <font> 1521 <pointsize>9</pointsize> 1518 1522 </font> 1519 1523 </property> … … 1552 1556 </property> 1553 1557 <property name="text"> 1554 <string> Pan</string>1558 <string><qt><small>Pan</small></qt></string> 1555 1559 </property> 1556 1560 <property name="alignment"> … … 1575 1579 </property> 1576 1580 <property name="text"> 1577 <string> Pan</string>1581 <string><qt><small>Pan</small></qt></string> 1578 1582 </property> 1579 1583 <property name="alignment"> … … 1598 1602 </property> 1599 1603 <property name="text"> 1600 <string> Pan</string>1604 <string><qt><small>Pan</small></qt></string> 1601 1605 </property> 1602 1606 <property name="alignment"> … … 1621 1625 </property> 1622 1626 <property name="text"> 1623 <string> Pan</string>1627 <string><qt><small>Pan</small></qt></string> 1624 1628 </property> 1625 1629 <property name="alignment"> … … 1644 1648 </property> 1645 1649 <property name="text"> 1646 <string> Pan</string>1650 <string><qt><small>Pan</small></qt></string> 1647 1651 </property> 1648 1652 <property name="alignment"> … … 1667 1671 </property> 1668 1672 <property name="text"> 1669 <string> Pan</string>1673 <string><qt><small>Pan</small></qt></string> 1670 1674 </property> 1671 1675 <property name="alignment"> … … 1690 1694 </property> 1691 1695 <property name="text"> 1692 <string> Pan</string>1696 <string><qt><small>Pan</small></qt></string> 1693 1697 </property> 1694 1698 <property name="alignment"> … … 1713 1717 </property> 1714 1718 <property name="text"> 1715 <string> Mute</string>1719 <string><qt><small>Mute</small></qt></string> 1716 1720 </property> 1717 1721 <property name="alignment"> … … 1736 1740 </property> 1737 1741 <property name="text"> 1738 <string> Mute</string>1742 <string><qt><small>Mute</small></qt></string> 1739 1743 </property> 1740 1744 <property name="alignment"> … … 1759 1763 </property> 1760 1764 <property name="text"> 1761 <string> Mute</string>1765 <string><qt><small>Mute</small></qt></string> 1762 1766 </property> 1763 1767 <property name="alignment"> … … 1782 1786 </property> 1783 1787 <property name="text"> 1784 <string> Mute</string>1788 <string><qt><small>Mute</small></qt></string> 1785 1789 </property> 1786 1790 <property name="alignment"> … … 1805 1809 </property> 1806 1810 <property name="text"> 1807 <string> Mute</string>1811 <string><qt><small>Mute</small></qt></string> 1808 1812 </property> 1809 1813 <property name="alignment"> … … 1828 1832 </property> 1829 1833 <property name="text"> 1830 <string> Mute</string>1834 <string><qt><small>Mute</small></qt></string> 1831 1835 </property> 1832 1836 <property name="alignment"> … … 1851 1855 </property> 1852 1856 <property name="text"> 1853 <string>Mute</string> 1854 </property> 1855 <property name="alignment"> 1856 <set>AlignCenter</set> 1857 </property> 1858 </widget> 1859 <widget class="QLabel"> 1860 <property name="name"> 1861 <cstring>textLabel1_2_2_2</cstring> 1862 </property> 1863 <property name="geometry"> 1864 <rect> 1865 <x>10</x> 1866 <y>40</y> 1867 <width>30</width> 1868 <height>22</height> 1869 </rect> 1870 </property> 1871 <property name="font"> 1872 <font> 1873 </font> 1874 </property> 1875 <property name="text"> 1876 <string>Solo</string> 1877 </property> 1878 <property name="alignment"> 1879 <set>AlignCenter</set> 1880 </property> 1881 </widget> 1882 <widget class="QLabel"> 1883 <property name="name"> 1884 <cstring>textLabel1_2_2_2_2</cstring> 1885 </property> 1886 <property name="geometry"> 1887 <rect> 1888 <x>50</x> 1889 <y>40</y> 1890 <width>30</width> 1891 <height>22</height> 1892 </rect> 1893 </property> 1894 <property name="font"> 1895 <font> 1896 </font> 1897 </property> 1898 <property name="text"> 1899 <string>Solo</string> 1857 <string><qt><small>Mute</small></qt></string> 1900 1858 </property> 1901 1859 <property name="alignment"> … … 1920 1878 </property> 1921 1879 <property name="text"> 1922 <string> Solo</string>1880 <string><qt><small>Solo</small></qt></string> 1923 1881 </property> 1924 1882 <property name="alignment"> … … 1943 1901 </property> 1944 1902 <property name="text"> 1945 <string> Solo</string>1903 <string><qt><small>Solo</small></qt></string> 1946 1904 </property> 1947 1905 <property name="alignment"> … … 1966 1924 </property> 1967 1925 <property name="text"> 1968 <string> Solo</string>1926 <string><qt><small>Solo</small></qt></string> 1969 1927 </property> 1970 1928 <property name="alignment"> … … 1989 1947 </property> 1990 1948 <property name="text"> 1991 <string> Solo</string>1949 <string><qt><small>Solo</small></qt></string> 1992 1950 </property> 1993 1951 <property name="alignment"> … … 2012 1970 </property> 2013 1971 <property name="text"> 2014 <string> Solo</string>1972 <string><qt><small>Solo</small></qt></string> 2015 1973 </property> 2016 1974 <property name="alignment"> … … 2035 1993 </property> 2036 1994 <property name="text"> 2037 <string>Solo</string> 2038 </property> 2039 <property name="alignment"> 2040 <set>AlignCenter</set> 2041 </property> 2042 </widget> 2043 <widget class="QLabel"> 2044 <property name="name"> 2045 <cstring>textLabel1_2_2</cstring> 2046 </property> 2047 <property name="geometry"> 2048 <rect> 2049 <x>10</x> 2050 <y>80</y> 2051 <width>30</width> 2052 <height>22</height> 2053 </rect> 2054 </property> 2055 <property name="font"> 2056 <font> 2057 </font> 2058 </property> 2059 <property name="text"> 2060 <string>Mute</string> 1995 <string><qt><small>Solo</small></qt></string> 2061 1996 </property> 2062 1997 <property name="alignment"> … … 3037 2972 </property> 3038 2973 </widget> 3039 <widget class="QLabel">3040 <property name="name">3041 <cstring>textLabel1_2</cstring>3042 </property>3043 <property name="geometry">3044 <rect>3045 <x>10</x>3046 <y>130</y>3047 <width>30</width>3048 <height>22</height>3049 </rect>3050 </property>3051 <property name="font">3052 <font>3053 </font>3054 </property>3055 <property name="text">3056 <string>Pan</string>3057 </property>3058 <property name="alignment">3059 <set>AlignCenter</set>3060 </property>3061 </widget>3062 2974 <widget class="QSlider"> 3063 2975 <property name="name"> … … 3152 3064 </property> 3153 3065 <property name="text"> 3154 <string> Pair</string>3066 <string><qt><small>Pair</small></qt></string> 3155 3067 </property> 3156 3068 <property name="alignment"> … … 3175 3087 </property> 3176 3088 <property name="text"> 3177 <string> Pair</string>3089 <string><qt><small>Pair</small></qt></string> 3178 3090 </property> 3179 3091 <property name="alignment"> … … 3198 3110 </property> 3199 3111 <property name="text"> 3200 <string>Pair</string> 3201 </property> 3202 <property name="alignment"> 3203 <set>AlignCenter</set> 3204 </property> 3205 </widget> 3206 <widget class="QLabel"> 3207 <property name="name"> 3208 <cstring>textLabel1_2_2_14</cstring> 3209 </property> 3210 <property name="geometry"> 3211 <rect> 3212 <x>30</x> 3213 <y>310</y> 3214 <width>30</width> 3215 <height>22</height> 3216 </rect> 3217 </property> 3218 <property name="font"> 3219 <font> 3220 </font> 3221 </property> 3222 <property name="text"> 3223 <string>Pair</string> 3112 <string><qt><small>Pair</small></qt></string> 3224 3113 </property> 3225 3114 <property name="alignment"> … … 3337 3226 <property name="text"> 3338 3227 <string></string> 3228 </property> 3229 </widget> 3230 <widget class="QLabel"> 3231 <property name="name"> 3232 <cstring>textLabel1_2_2_2</cstring> 3233 </property> 3234 <property name="geometry"> 3235 <rect> 3236 <x>10</x> 3237 <y>40</y> 3238 <width>30</width> 3239 <height>22</height> 3240 </rect> 3241 </property> 3242 <property name="font"> 3243 <font> 3244 </font> 3245 </property> 3246 <property name="text"> 3247 <string><qt><small>Solo</small></qt></string> 3248 </property> 3249 <property name="alignment"> 3250 <set>WordBreak|AlignCenter</set> 3251 </property> 3252 </widget> 3253 <widget class="QLabel"> 3254 <property name="name"> 3255 <cstring>textLabel1_2_2_2_2</cstring> 3256 </property> 3257 <property name="geometry"> 3258 <rect> 3259 <x>50</x> 3260 <y>40</y> 3261 <width>30</width> 3262 <height>22</height> 3263 </rect> 3264 </property> 3265 <property name="font"> 3266 <font> 3267 </font> 3268 </property> 3269 <property name="text"> 3270 <string><qt><small>Solo</small></qt></string> 3271 </property> 3272 <property name="alignment"> 3273 <set>AlignCenter</set> 3274 </property> 3275 </widget> 3276 <widget class="QLabel"> 3277 <property name="name"> 3278 <cstring>textLabel1_2_2</cstring> 3279 </property> 3280 <property name="geometry"> 3281 <rect> 3282 <x>10</x> 3283 <y>80</y> 3284 <width>30</width> 3285 <height>22</height> 3286 </rect> 3287 </property> 3288 <property name="font"> 3289 <font> 3290 </font> 3291 </property> 3292 <property name="text"> 3293 <string><qt><small>Mute</small></qt></string> 3294 </property> 3295 <property name="alignment"> 3296 <set>WordBreak|AlignCenter</set> 3297 </property> 3298 </widget> 3299 <widget class="QLabel"> 3300 <property name="name"> 3301 <cstring>textLabel1_2</cstring> 3302 </property> 3303 <property name="geometry"> 3304 <rect> 3305 <x>10</x> 3306 <y>130</y> 3307 <width>30</width> 3308 <height>22</height> 3309 </rect> 3310 </property> 3311 <property name="font"> 3312 <font> 3313 </font> 3314 </property> 3315 <property name="text"> 3316 <string><qt><small>Pan</small></qt></string> 3317 </property> 3318 <property name="alignment"> 3319 <set>WordBreak|AlignCenter</set> 3320 </property> 3321 </widget> 3322 <widget class="QLabel"> 3323 <property name="name"> 3324 <cstring>textLabel1_2_2_14</cstring> 3325 </property> 3326 <property name="geometry"> 3327 <rect> 3328 <x>30</x> 3329 <y>310</y> 3330 <width>30</width> 3331 <height>22</height> 3332 </rect> 3333 </property> 3334 <property name="font"> 3335 <font> 3336 </font> 3337 </property> 3338 <property name="text"> 3339 <string><qt><small>Pair</small></qt></string> 3340 </property> 3341 <property name="alignment"> 3342 <set>WordBreak|AlignCenter</set> 3339 3343 </property> 3340 3344 </widget> … … 3400 3404 </property> 3401 3405 <property name="text"> 3402 <string> Pan</string>3406 <string><qt><small>Pan</small></qt></string> 3403 3407 </property> 3404 3408 <property name="alignment"> … … 3423 3427 </property> 3424 3428 <property name="text"> 3425 <string> Pan</string>3429 <string><qt><small>Pan</small></qt></string> 3426 3430 </property> 3427 3431 <property name="alignment"> … … 3465 3469 </property> 3466 3470 <property name="text"> 3467 <string> Mute</string>3471 <string><qt><small>Mute</small></qt></string> 3468 3472 </property> 3469 3473 <property name="alignment"> … … 3572 3576 </property> 3573 3577 <property name="text"> 3574 <string> Solo</string>3578 <string><qt><small>Solo</small></qt></string> 3575 3579 </property> 3576 3580 <property name="alignment"> … … 3595 3599 </property> 3596 3600 <property name="text"> 3597 <string> Solo</string>3601 <string><qt><small>Solo</small></qt></string> 3598 3602 </property> 3599 3603 <property name="alignment"> … … 3618 3622 </property> 3619 3623 <property name="text"> 3620 <string> Mute</string>3624 <string><qt><small>Mute</small></qt></string> 3621 3625 </property> 3622 3626 <property name="alignment"> … … 3772 3776 </property> 3773 3777 <property name="text"> 3774 <string> Pair</string>3778 <string><qt><small>Pair</small></qt></string> 3775 3779 </property> 3776 3780 <property name="alignment"> … … 3867 3871 </property> 3868 3872 <property name="text"> 3869 <string> Pan</string>3873 <string><qt><small>Pan</small></qt></string> 3870 3874 </property> 3871 3875 <property name="alignment"> … … 3890 3894 </property> 3891 3895 <property name="text"> 3892 <string> Pan</string>3896 <string><qt><small>Pan</small></qt></string> 3893 3897 </property> 3894 3898 <property name="alignment"> … … 3951 3955 </property> 3952 3956 <property name="text"> 3953 <string> Mute</string>3957 <string><qt><small>Mute</small></qt></string> 3954 3958 </property> 3955 3959 <property name="alignment"> … … 4058 4062 </property> 4059 4063 <property name="text"> 4060 <string> Solo</string>4064 <string><qt><small>Solo</small></qt></string> 4061 4065 </property> 4062 4066 <property name="alignment"> … … 4081 4085 </property> 4082 4086 <property name="text"> 4083 <string> Solo</string>4087 <string><qt><small>Solo</small></qt></string> 4084 4088 </property> 4085 4089 <property name="alignment"> … … 4197 4201 </property> 4198 4202 <property name="text"> 4199 <string> Mute</string>4203 <string><qt><small>Mute</small></qt></string> 4200 4204 </property> 4201 4205 <property name="alignment"> … … 4239 4243 </property> 4240 4244 <property name="text"> 4241 <string> Pair</string>4245 <string><qt><small>Pair</small></qt></string> 4242 4246 </property> 4243 4247 <property name="alignment"> … … 4353 4357 </property> 4354 4358 <property name="text"> 4355 <string> Pan</string>4359 <string><qt><small>Pan</small></qt></string> 4356 4360 </property> 4357 4361 <property name="alignment"> … … 4376 4380 </property> 4377 4381 <property name="text"> 4378 <string> Pan</string>4382 <string><qt><small>Pan</small></qt></string> 4379 4383 </property> 4380 4384 <property name="alignment"> … … 4399 4403 </property> 4400 4404 <property name="text"> 4401 <string> Pan</string>4405 <string><qt><small>Pan</small></qt></string> 4402 4406 </property> 4403 4407 <property name="alignment"> … … 4422 4426 </property> 4423 4427 <property name="text"> 4424 <string> Pan</string>4428 <string><qt><small>Pan</small></qt></string> 4425 4429 </property> 4426 4430 <property name="alignment"> … … 4521 4525 </property> 4522 4526 <property name="text"> 4523 <string> Mute</string>4527 <string><qt><small>Mute</small></qt></string> 4524 4528 </property> 4525 4529 <property name="alignment"> … … 4544 4548 </property> 4545 4549 <property name="text"> 4546 <string> Mute</string>4550 <string><qt><small>Mute</small></qt></string> 4547 4551 </property> 4548 4552 <property name="alignment"> … … 4567 4571 </property> 4568 4572 <property name="text"> 4569 <string> Mute</string>4573 <string><qt><small>Mute</small></qt></string> 4570 4574 </property> 4571 4575 <property name="alignment"> … … 4590 4594 </property> 4591 4595 <property name="text"> 4592 <string> Mute</string>4596 <string><qt><small>Mute</small></qt></string> 4593 4597 </property> 4594 4598 <property name="alignment"> … … 4809 4813 </property> 4810 4814 <property name="text"> 4811 <string> Solo</string>4815 <string><qt><small>Solo</small></qt></string> 4812 4816 </property> 4813 4817 <property name="alignment"> … … 4832 4836 </property> 4833 4837 <property name="text"> 4834 <string> Solo</string>4838 <string><qt><small>Solo</small></qt></string> 4835 4839 </property> 4836 4840 <property name="alignment"> … … 4855 4859 </property> 4856 4860 <property name="text"> 4857 <string> Solo</string>4861 <string><qt><small>Solo</small></qt></string> 4858 4862 </property> 4859 4863 <property name="alignment"> … … 4878 4882 </property> 4879 4883 <property name="text"> 4880 <string> Solo</string>4884 <string><qt><small>Solo</small></qt></string> 4881 4885 </property> 4882 4886 <property name="alignment"> … … 5124 5128 </property> 5125 5129 <property name="text"> 5126 <string> Pan</string>5130 <string><qt><small>Pan</small></qt></string> 5127 5131 </property> 5128 5132 <property name="alignment"> … … 5166 5170 </property> 5167 5171 <property name="text"> 5168 <string> Mute</string>5172 <string><qt><small>Mute</small></qt></string> 5169 5173 </property> 5170 5174 <property name="alignment"> … … 5245 5249 </property> 5246 5250 <property name="text"> 5247 <string> Solo</string>5251 <string><qt><small>Solo</small></qt></string> 5248 5252 </property> 5249 5253 <property name="alignment"> … … 5492 5496 </property> 5493 5497 <property name="text"> 5494 <string> Pan</string>5498 <string><qt><small>Pan</small></qt></string> 5495 5499 </property> 5496 5500 <property name="alignment"> … … 5515 5519 </property> 5516 5520 <property name="text"> 5517 <string> Pan</string>5521 <string><qt><small>Pan</small></qt></string> 5518 5522 </property> 5519 5523 <property name="alignment"> … … 5538 5542 </property> 5539 5543 <property name="text"> 5540 <string> Pan</string>5544 <string><qt><small>Pan</small></qt></string> 5541 5545 </property> 5542 5546 <property name="alignment"> … … 5618 5622 </property> 5619 5623 <property name="text"> 5620 <string> Mute</string>5624 <string><qt><small>Mute</small></qt></string> 5621 5625 </property> 5622 5626 <property name="alignment"> … … 5641 5645 </property> 5642 5646 <property name="text"> 5643 <string> Mute</string>5647 <string><qt><small>Mute</small></qt></string> 5644 5648 </property> 5645 5649 <property name="alignment"> … … 5664 5668 </property> 5665 5669 <property name="text"> 5666 <string> Mute</string>5670 <string><qt><small>Mute</small></qt></string> 5667 5671 </property> 5668 5672 <property name="alignment"> … … 5855 5859 </property> 5856 5860 <property name="text"> 5857 <string> Solo</string>5861 <string><qt><small>Solo</small></qt></string> 5858 5862 </property> 5859 5863 <property name="alignment"> … … 5878 5882 </property> 5879 5883 <property name="text"> 5880 <string> Solo</string>5884 <string><qt><small>Solo</small></qt></string> 5881 5885 </property> 5882 5886 <property name="alignment"> … … 5901 5905 </property> 5902 5906 <property name="text"> 5903 <string> Solo</string>5907 <string><qt><small>Solo</small></qt></string> 5904 5908 </property> 5905 5909 <property name="alignment"> … … 5924 5928 </property> 5925 5929 <property name="text"> 5926 <string> Pair</string>5930 <string><qt><small>Pair</small></qt></string> 5927 5931 </property> 5928 5932 <property name="alignment"> … … 5947 5951 </property> 5948 5952 <property name="text"> 5949 <string> Pair</string>5953 <string><qt><small>Pair</small></qt></string> 5950 5954 </property> 5951 5955 <property name="alignment"> … … 6027 6031 </property> 6028 6032 <property name="text"> 6029 <string> Pair</string>6033 <string><qt><small>Pair</small></qt></string> 6030 6034 </property> 6031 6035 <property name="alignment"> … … 6050 6054 </property> 6051 6055 <property name="text"> 6052 <string> Pair</string>6056 <string><qt><small>Pair</small></qt></string> 6053 6057 </property> 6054 6058 <property name="alignment">