root/trunk/libffado/support/mixer/mixer_mackie_generic.ui

Revision 837, 5.8 kB (checked in by ppalmers, 16 years ago)

add generic mackie mixer control

Line 
1 <!DOCTYPE UI><UI version="3.3" stdsetdef="1">
2 <class>MackieGenericControlUI</class>
3 <comment>Copyright (C) 2005-2007 by Pieter Palmers
4        
5         This file is part of FFADO
6         FFADO = Free Firewire (pro-)audio drivers for linux
7        
8         FFADO is based upon FreeBoB.
9        
10         This program is free software: you can redistribute it and/or modify
11         it under the terms of the GNU General Public License as published by
12         the Free Software Foundation, either version 3 of the License, or
13         (at your option) any later version.
14        
15         This program is distributed in the hope that it will be useful,
16         but WITHOUT ANY WARRANTY; without even the implied warranty of
17         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18         GNU General Public License for more details.
19 </comment>
20 <widget class="QDialog">
21     <property name="name">
22         <cstring>MackieGenericControlUI</cstring>
23     </property>
24     <property name="geometry">
25         <rect>
26             <x>0</x>
27             <y>0</y>
28             <width>220</width>
29             <height>271</height>
30         </rect>
31     </property>
32     <property name="caption">
33         <string>Mackie Generic Control</string>
34     </property>
35     <widget class="QGroupBox">
36         <property name="name">
37             <cstring>groupBox1</cstring>
38         </property>
39         <property name="geometry">
40             <rect>
41                 <x>10</x>
42                 <y>80</y>
43                 <width>200</width>
44                 <height>181</height>
45             </rect>
46         </property>
47         <property name="title">
48             <string>Hardware Mixer</string>
49         </property>
50         <widget class="QLabel">
51             <property name="name">
52                 <cstring>textLabel2</cstring>
53             </property>
54             <property name="geometry">
55                 <rect>
56                     <x>50</x>
57                     <y>20</y>
58                     <width>31</width>
59                     <height>21</height>
60                 </rect>
61             </property>
62             <property name="text">
63                 <string>FB1</string>
64             </property>
65         </widget>
66         <widget class="QLabel">
67             <property name="name">
68                 <cstring>textLabel2_2</cstring>
69             </property>
70             <property name="geometry">
71                 <rect>
72                     <x>120</x>
73                     <y>20</y>
74                     <width>31</width>
75                     <height>21</height>
76                 </rect>
77             </property>
78             <property name="text">
79                 <string>FB2</string>
80             </property>
81         </widget>
82         <widget class="QSlider">
83             <property name="name">
84                 <cstring>sldFB1</cstring>
85             </property>
86             <property name="geometry">
87                 <rect>
88                     <x>50</x>
89                     <y>50</y>
90                     <width>24</width>
91                     <height>120</height>
92                 </rect>
93             </property>
94             <property name="minValue">
95                 <number>0</number>
96             </property>
97             <property name="maxValue">
98                 <number>32767</number>
99             </property>
100             <property name="lineStep">
101                 <number>10000</number>
102             </property>
103             <property name="pageStep">
104                 <number>1000</number>
105             </property>
106             <property name="orientation">
107                 <enum>Vertical</enum>
108             </property>
109             <property name="tickmarks">
110                 <enum>Both</enum>
111             </property>
112             <property name="tickInterval">
113                 <number>10000</number>
114             </property>
115         </widget>
116         <widget class="QSlider">
117             <property name="name">
118                 <cstring>sldFB2</cstring>
119             </property>
120             <property name="geometry">
121                 <rect>
122                     <x>120</x>
123                     <y>50</y>
124                     <width>24</width>
125                     <height>120</height>
126                 </rect>
127             </property>
128             <property name="minValue">
129                 <number>0</number>
130             </property>
131             <property name="maxValue">
132                 <number>32767</number>
133             </property>
134             <property name="lineStep">
135                 <number>10000</number>
136             </property>
137             <property name="pageStep">
138                 <number>1000</number>
139             </property>
140             <property name="orientation">
141                 <enum>Vertical</enum>
142             </property>
143             <property name="tickmarks">
144                 <enum>Both</enum>
145             </property>
146             <property name="tickInterval">
147                 <number>10000</number>
148             </property>
149         </widget>
150     </widget>
151     <widget class="QLabel">
152         <property name="name">
153             <cstring>textLabel1</cstring>
154         </property>
155         <property name="geometry">
156             <rect>
157                 <x>10</x>
158                 <y>10</y>
159                 <width>210</width>
160                 <height>60</height>
161             </rect>
162         </property>
163         <property name="text">
164             <string>NOTE: Mixer config is not documented for Mackie devices.</string>
165         </property>
166         <property name="alignment">
167             <set>WordBreak|AlignVCenter</set>
168         </property>
169     </widget>
170 </widget>
171 <connections>
172     <connection>
173         <sender>sldFB1</sender>
174         <signal>valueChanged(int)</signal>
175         <receiver>MackieGenericControlUI</receiver>
176         <slot>setFB1(int)</slot>
177     </connection>
178     <connection>
179         <sender>sldFB2</sender>
180         <signal>valueChanged(int)</signal>
181         <receiver>MackieGenericControlUI</receiver>
182         <slot>setFB2(int)</slot>
183     </connection>
184 </connections>
185 <slots>
186     <slot>setFB2(int)</slot>
187     <slot>setFB1(int)</slot>
188     <slot>init()</slot>
189 </slots>
190 <layoutdefaults spacing="6" margin="11"/>
191 </UI>
Note: See TracBrowser for help on using the browser.