Changeset 1364
- Timestamp:
- 10/20/08 13:28:21 (12 years ago)
- Files:
-
- branches/libffado-2.0/SConstruct (modified) (2 diffs)
- branches/libffado-2.0/support/mixer-qt4/ffado_panelmanager.py (modified) (3 diffs)
- branches/libffado-2.0/support/mixer-qt4/mixer_bcoaudio5.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_bcoaudio5.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_dummy.py (modified) (1 diff)
- branches/libffado-2.0/support/mixer-qt4/mixer_edirolfa101.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_edirolfa101.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_edirolfa66.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_edirolfa66.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_mackie_onyxmixer.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_mackie_onyxmixer.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_motu.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_motu.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_phase24.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_phase24.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_phase88.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_phase88.ui (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_quatafire.py (added)
- branches/libffado-2.0/support/mixer-qt4/mixer_quatafire.ui (added)
- branches/libffado-2.0/support/mixer-qt4/SConscript (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libffado-2.0/SConstruct
r1335 r1364 289 289 # PyQT checks 290 290 build_mixer = False 291 if conf.CheckForApp( "which pyuic " ) and conf.CheckForPyModule( 'dbus' ) and conf.CheckForPyModule( 'qt' ):292 env['PYUIC '] = True291 if conf.CheckForApp( "which pyuic4" ) and conf.CheckForPyModule( 'dbus' ) and conf.CheckForPyModule( 'PyQt4' ): 292 env['PYUIC4'] = True 293 293 build_mixer = True 294 294 … … 300 300 this is needed to add the fancy entry to your menu. But the mixer will be installed, you can start it by executing "ffadomixer". 301 301 """ 302 elif conf.CheckForApp( "which pyuic 4" ) and conf.CheckForPyModule( 'dbus' ) and conf.CheckForPyModule( 'PyQt4' ):303 env['PYUIC 4'] = True302 elif conf.CheckForApp( "which pyuic" ) and conf.CheckForPyModule( 'dbus' ) and conf.CheckForPyModule( 'qt' ): 303 env['PYUIC'] = True 304 304 build_mixer = True 305 305 branches/libffado-2.0/support/mixer-qt4/ffado_panelmanager.py
r1298 r1364 32 32 from ffado_registration import * 33 33 34 #from mixer_phase88 import *35 #from mixer_phase24 import *34 from mixer_phase88 import * 35 from mixer_phase24 import * 36 36 from mixer_saffire import SaffireMixer 37 37 from mixer_saffirepro import SaffireProMixer 38 38 from mixer_audiofire import AudioFireMixer 39 #from mixer_bcoaudio5 import * 40 #from mixer_edirolfa66 import * 41 #from mixer_mackie_generic import * 42 #from mixer_quatafire import * 43 #from mixer_motu import * 39 from mixer_bcoaudio5 import * 40 from mixer_edirolfa66 import * 41 from mixer_edirolfa101 import * 42 from mixer_mackie_onyxmixer import * 43 from mixer_quatafire import * 44 from mixer_motu import * 44 45 from mixer_dummy import * 45 46 from mixer_global import GlobalMixer … … 55 56 56 57 SupportedDevices=[ 57 #[(0x000aac, 0x00000003),'Phase88Control'],58 #[(0x000aac, 0x00000004),'Phase24Control'],59 #[(0x000aac, 0x00000007),'Phase24Control'],58 [(0x000aac, 0x00000003),'Phase88Control'], 59 [(0x000aac, 0x00000004),'Phase24Control'], 60 [(0x000aac, 0x00000007),'Phase24Control'], 60 61 [(0x00130e, 0x00000003),'SaffireProMixer'], 61 62 [(0x00130e, 0x00000006),'SaffireProMixer'], … … 65 66 [(0x001486, 0x00000af8),'AudioFireMixer'], 66 67 [(0x001486, 0x0000af12),'AudioFireMixer'], 67 #[(0x0007f5, 0x00010049),'BCoAudio5Control'], 68 #[(0x0040AB, 0x00010049),'EdirolFa66Control'], 69 #[(0x00000f, 0x00010067),'MackieGenericControl'], 70 #[(0x000f1b, 0x00010064),'QuataFireMixer'], 71 #[(0x0001f2, 0x00000000),'MotuMixer'], 68 [(0x0007f5, 0x00010049),'BCoAudio5Control'], 69 [(0x0040AB, 0x00010049),'EdirolFa66Control'], 70 [(0x0040AB, 0x00010048),'EdirolFa101Control'], 71 [(0x00000f, 0x00010067),'MackieOnyxMixer'], 72 [(0x000f1b, 0x00010064),'QuataFireMixer'], 73 [(0x0001f2, 0x00000000),'MotuMixer'], 72 74 ] 73 75 branches/libffado-2.0/support/mixer-qt4/mixer_dummy.py
r1298 r1364 30 30 self.setupUi(self) 31 31 32 def init(self):33 print "Init Dummy mixer window"34 35 32 def initValues(self): 36 33 pass branches/libffado-2.0/support/mixer-qt4/SConscript
r1309 r1364 30 30 e = env.Clone() 31 31 e['MIXERGUIS'] = [ 32 #'phase24', 'phase88', 32 'phase24', 33 'phase88', 33 34 'saffire_mono', 'saffire_stereo', 34 35 'saffirepro_large', 'saffirepro_small', 35 36 'saffirele_large', 'saffirele_small', 36 37 'audiofire_strip', 'audiofire_settings', 37 #'bcoaudio5', 'edirolfa66', 38 #'mackie_generic', 'quatafire', 'motu', 38 'bcoaudio5', 39 'edirolfa101', 'edirolfa66', 40 'quatafire', 41 'mackie_onyxmixer', 42 'motu', 39 43 'global', 'dummy' 40 44 ] 41 45 e['MIXERAPPS'] = [ 42 #'phase24', 'phase88', 46 'phase24', 47 'phase88', 43 48 'saffire', 44 49 'saffirepro', 45 50 'audiofire', 46 #'bcoaudio5', 'edirolfa66', 47 #'mackie_generic', 'quatafire', 'motu', 51 'bcoaudio5', 52 'edirolfa101', 'edirolfa66', 53 'quatafire', 54 'mackie_onyxmixer', 55 'motu', 48 56 'global', 'dummy' 49 57 ]