root/branches/libffado-2.0/support/mixer-qt4/ffado-mixer.in

Revision 1460, 6.3 kB (checked in by ppalmers, 15 years ago)

fix parser hex thingie

  • Property svn:executable set to *
Line 
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2005-2008 by Pieter Palmers
4 #               2007-2008 by Arnold Krille
5 #
6 # This file is part of FFADO
7 # FFADO = Free Firewire (pro-)audio drivers for linux
8 #
9 # FFADO is based upon FreeBoB.
10 #
11 # This program is free software: you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 3 of the License, or
14 # (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 #
24
25 #
26 # QT 4 version
27 #
28
29 import sys
30
31 # Add the path of the installed ffado-mixer-modules
32 sys.path.append( "$PYTHONDIR" )
33
34 from ffadomixer_config import * #POLL_SLEEP_TIME_MSEC, FFADO_DBUS_SERVER, FFADO_DBUS_BASEPATH
35
36 import os
37 import time
38
39 from PyQt4.QtCore import SIGNAL, SLOT, QObject, QTimer, Qt
40 from PyQt4.QtGui import * #QApplication, QMessageBox, QIcon
41
42 from ffado_dbus_util import *
43
44 from ffado_panelmanager import PanelManager
45
46 """Just a small helper to ask the retry-question without a blocking messagebox"""
47 class StartDialog(QWidget):
48     def __init__(self, parent):
49         QWidget.__init__(self, parent)
50         self.setObjectName("Restart Dialog")
51         self.label = QLabel("Somehow the connection to the dbus-service of FFADO couldn't be established.\nShall we take another try?",self)
52         self.button = QPushButton("Retry", self)
53         self.layout = QGridLayout(self)
54         self.layout.addWidget(self.label, 0, 0, Qt.AlignCenter)
55         self.layout.addWidget(self.button, 1, 0, Qt.AlignCenter)
56
57
58 class FFADOWindow(QMainWindow):
59     def __init__(self, parent):
60         QMainWindow.__init__(self, parent)
61
62         self.manager = PanelManager(self)
63
64         filemenu = self.menuBar().addMenu("File")
65         quitaction = QAction("Quit", self)
66         quitaction.setShortcut(self.tr("Ctrl+q"))
67         self.connect(quitaction, SIGNAL("triggered()"), self, SLOT("close()"))
68         filemenu.addAction(quitaction)
69
70         editmenu = self.menuBar().addMenu("Edit")
71         self.updateaction = QAction("Update Mixer Panels", self)
72         self.updateaction.setEnabled(False)
73         self.connect(self.updateaction, SIGNAL("triggered()"), self.manager.updatePanels)
74         editmenu.addAction(self.updateaction)
75
76         helpmenu = self.menuBar().addMenu( "Help" )
77         aboutaction = QAction( "About FFADO", self )
78         self.connect( aboutaction, SIGNAL( "triggered()" ), self.aboutFFADO )
79         helpmenu.addAction( aboutaction )
80         aboutqtaction = QAction( "About Qt", self )
81         self.connect( aboutqtaction, SIGNAL( "triggered()" ), qApp, SLOT( "aboutQt()" ) )
82         helpmenu.addAction( aboutqtaction )
83
84         self.statusBar().showMessage( "Initializing...", 5000 )
85
86         QTimer.singleShot( 1, self.connectToDBUS )
87
88     def connectToDBUS(self):
89         try:
90             self.setupDeviceManager()
91         except dbus.DBusException, ex:
92             log.error("")
93             log.error("")
94             log.error("===========================================================")
95             log.error("ERROR: Could not communicate with the FFADO DBus service...")
96             log.error("===========================================================")
97             log.error("")
98             log.error("")
99             if not hasattr(self,"retry"):
100                 self.retry = StartDialog(self)
101                 self.setCentralWidget(self.retry)
102                 self.connect(self.retry.button, SIGNAL("clicked()"), self.tryStartDBUSServer)
103             self.retry.setEnabled(True)
104
105     def tryStartDBUSServer(self):
106         try:
107             self.setupDeviceManager()
108         except dbus.DBusException, ex:
109             self.retry.setEnabled(False)
110             os.spawnlp( os.P_NOWAIT, "ffado-dbus-server" )
111             QTimer.singleShot(2000, self.connectToDBUS)
112
113     def setupDeviceManager(self):
114         devmgr = DeviceManagerInterface(FFADO_DBUS_SERVER, FFADO_DBUS_BASEPATH)
115         nbDevices = devmgr.getNbDevices()
116         self.manager.setManager(devmgr)
117         self.setCentralWidget(self.manager)
118         self.updateaction.setEnabled(True)
119
120     def aboutFFADO(self):
121         QMessageBox.about( self, "About FFADO", """
122 <h1>ffado.org</h1>
123
124 <p>FFADO is the new approach to have firewire audio on linux.</p>
125
126 <p>&copy; 2006-2008 by the FFADO developers<br />ffado is licensed under the GPLv3, for the full license text see <a href="http://www.gnu.org/licenses/">www.gnu.org/licenses</a> or the LICENSE.* files shipped with ffado.</p>
127
128 <p>FFADO developers are:<ul>
129 <li>Pieter Palmers
130 <li>Daniel Wagner
131 <li>Jonathan Woithe
132 <li>Arnold Krille
133 </ul>
134 """ )
135
136
137 if __name__ == "__main__":
138     #set up logging
139     import logging
140     logging.basicConfig()
141
142     if DEBUG:
143         debug_level = logging.DEBUG
144     else:
145         debug_level = logging.INFO
146
147     logging.getLogger('main').setLevel(debug_level)
148     logging.getLogger('dbus').setLevel(debug_level)
149     logging.getLogger('registration').setLevel(debug_level)
150     logging.getLogger('panelmanager').setLevel(debug_level)
151     logging.getLogger('configparser').setLevel(debug_level)
152
153     logging.getLogger('global').setLevel(debug_level)
154
155     logging.getLogger('audiofire').setLevel(debug_level)
156     logging.getLogger('bridgeco').setLevel(debug_level)
157     logging.getLogger('edirolfa101').setLevel(debug_level)
158     logging.getLogger('edirolfa66').setLevel(debug_level)
159     logging.getLogger('motu').setLevel(debug_level)
160     logging.getLogger('phase24').setLevel(debug_level)
161     logging.getLogger('phase88').setLevel(debug_level)
162     logging.getLogger('quatafire').setLevel(debug_level)
163     logging.getLogger('saffirebase').setLevel(debug_level)
164     logging.getLogger('saffire').setLevel(debug_level)
165     logging.getLogger('saffirepro').setLevel(debug_level)
166
167     log = logging.getLogger('main')
168
169     app = QApplication(sys.argv)
170     app.setWindowIcon( QIcon( SHAREDIR + "/icons/hi64-apps-ffado.png" ) )
171
172
173     mainwindow = FFADOWindow(None)
174
175
176     # rock & roll
177     mainwindow.show()
178     QObject.connect(app,SIGNAL("lastWindowClosed()"),app,SLOT("quit()"))
179     app.exec_()
180
181 #
182 # vim: ts=4 sw=4 et
Note: See TracBrowser for help on using the browser.