Update of /cvsroot/quickrip/quickrip/qt
In directory sc8-pr-cvs1:/tmp/cvs-serv15185/qt
Modified Files:
qtgui.py qtmain.py
Log Message:
Renamed files.
Index: qtgui.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/qt/qtgui.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** qtgui.py 5 Aug 2003 17:50:37 -0000 1.1
--- qtgui.py 7 Aug 2003 13:55:56 -0000 1.2
***************
*** 1,514 ****
! #!/usr/bin/env python
! """
! gui.py - GUI specific functions for QuickRip
- copyright: (C) 2003, Tom Chance
- license: GNU General Public License (GPL) (see LICENSE file)
- web: http://quickrip.sf.net
- email: tom...@gm...
- """
[...2150 lines suppressed...]
! def renameTrack(self):
! print "MainWindow.renameTrack(): Not implemented yet"
!
! def openSettingsDialogue(self):
! print "MainWindow.openSettingsDialogue(): Not implemented yet"
!
! def browseHD(self):
! print "MainWindow.browseHD(): Not implemented yet"
!
! def newBitrate(self):
! print "MainWindow.newBitrate(): Not implemented yet"
!
! def newFileSize(self):
! print "MainWindow.newFileSize(): Not implemented yet"
!
! def newAudioBitrate(self):
! print "MainWindow.newAudioBitrate(): Not implemented yet"
!
! def openRipDialogue(self):
! print "MainWindow.openRipDialogue(): Not implemented yet"
Index: qtmain.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/qt/qtmain.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** qtmain.py 5 Aug 2003 17:50:37 -0000 1.1
--- qtmain.py 7 Aug 2003 13:55:56 -0000 1.2
***************
*** 1,1665 ****
! # -*- coding: utf-8 -*-
!
! # Form implementation generated from reading ui file 'guimain.ui'
! #
! # Created: jeu jui 31 14:08:59 2003
! # by: The PyQt User Interface Compiler (pyuic) 3.6
! #
! # WARNING! All changes made in this file will be lost!
!
!
[...2150 lines suppressed...]
! self.parser.set('paths', 'tcprobe', self.config['tcprobe'])
! self.parser.set('paths', 'dvd_device', self.config['dvd_device'])
! self.parser.set('paths', 'outputdir', self.config['outputdir'])
! self.parser.set('mencoder', 'deinterlacing', self.config['deinterlacing'])
! self.parser.set('mencoder', 'aspectratio', self.config['aspectratio'])
! self.parser.set('mencoder', 'passes', self.config['passes'])
! self.parser.set('mencoder', 'pdamode', self.config['pdamode'])
! self.parser.set('mencoder', 'videocodec', self.config['videocodec'])
! self.parser.write(open(self.configfile, 'w'))
! def main():
! print "%s v%s, %s\n" % (__app__, __version__, __copyright__)
! app = QApplication(sys.argv)
! QObject.connect(app, SIGNAL('lastWindowClosed()'),
! app, SLOT('quit()'))
! win = GUI(app)
! app.setMainWidget(win)
! win.show()
! app.exec_loop()
|