diff --git a/qt/me/profile.py b/qt/me/profile.py deleted file mode 100644 index 5bbcb00c..00000000 --- a/qt/me/profile.py +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import cProfile -import pstats - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication - -if sys.platform == 'win32': - from app_win import DupeGuru -else: - from app import DupeGuru - -if __name__ == "__main__": - app = QApplication(sys.argv) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName('dupeGuru Music Edition') - dgapp = DupeGuru() - cProfile.run('app.exec_()', '/tmp/prof') - p = pstats.Stats('/tmp/prof') - p.sort_stats('time').print_stats() \ No newline at end of file diff --git a/qt/me/start.py b/qt/me/start.py deleted file mode 100644 index acec0245..00000000 --- a/qt/me/start.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import sip -sip.setapi('QVariant', 1) - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication, QIcon, QPixmap - -from ..base import dg_rc -from .app import DupeGuru - -if sys.platform == 'win32': - import base.cxfreeze_fix - -if __name__ == "__main__": - app = QApplication(sys.argv) - app.setWindowIcon(QIcon(QPixmap(":/logo_me"))) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName(DupeGuru.NAME) - QCoreApplication.setApplicationVersion(DupeGuru.VERSION) - dgapp = DupeGuru() - sys.exit(app.exec_()) diff --git a/qt/pe/profile.py b/qt/pe/profile.py deleted file mode 100644 index 2d1836de..00000000 --- a/qt/pe/profile.py +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import cProfile -import pstats - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication - -if sys.platform == 'win32': - from app_win import DupeGuru -else: - from app import DupeGuru - -if __name__ == "__main__": - app = QApplication(sys.argv) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName('dupeGuru Picture Edition') - dgapp = DupeGuru() - cProfile.run('app.exec_()', '/tmp/prof') - p = pstats.Stats('/tmp/prof') - p.sort_stats('time').print_stats() \ No newline at end of file diff --git a/qt/pe/start.py b/qt/pe/start.py deleted file mode 100644 index ee48d19c..00000000 --- a/qt/pe/start.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import sip -sip.setapi('QVariant', 1) - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication, QIcon, QPixmap - -from ..base import dg_rc -from .app import DupeGuru - -if sys.platform == 'win32': - import base.cxfreeze_fix - -if __name__ == "__main__": - app = QApplication(sys.argv) - app.setWindowIcon(QIcon(QPixmap(":/logo_pe"))) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName(DupeGuru.NAME) - QCoreApplication.setApplicationVersion(DupeGuru.VERSION) - dgapp = DupeGuru() - sys.exit(app.exec_()) diff --git a/qt/se/profile.py b/qt/se/profile.py deleted file mode 100644 index b142c4fa..00000000 --- a/qt/se/profile.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import cProfile -import pstats - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication - -if sys.platform == 'win32': - from app_win import DupeGuru -else: - from app import DupeGuru - -if __name__ == "__main__": - app = QApplication(sys.argv) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName('dupeGuru') - dgapp = DupeGuru() - cProfile.run('app.exec_()', '/tmp/prof') - p = pstats.Stats('/tmp/prof') - p.sort_stats('time').print_stats() \ No newline at end of file diff --git a/qt/se/start.py b/qt/se/start.py deleted file mode 100644 index d5420b53..00000000 --- a/qt/se/start.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) -# -# This software is licensed under the "BSD" License as described in the "LICENSE" file, -# which should be included with this package. The terms are also available at -# http://www.hardcoded.net/licenses/bsd_license - -import sys -import os.path -import sip -sip.setapi('QVariant', 1) - -from PyQt4.QtCore import QCoreApplication -from PyQt4.QtGui import QApplication, QIcon, QPixmap - -from ..base import dg_rc -from .app import DupeGuru - -if sys.platform == 'win32': - import base.cxfreeze_fix - -if __name__ == "__main__": - app = QApplication(sys.argv) - app.setWindowIcon(QIcon(QPixmap(":/logo_se"))) - QCoreApplication.setOrganizationName('Hardcoded Software') - QCoreApplication.setApplicationName(DupeGuru.NAME) - QCoreApplication.setApplicationVersion(DupeGuru.VERSION) - dgapp = DupeGuru() - sys.exit(app.exec_()) diff --git a/run_template_qt.py b/run_template_qt.py index 24a0aece..20c78f77 100644 --- a/run_template_qt.py +++ b/run_template_qt.py @@ -1,15 +1,28 @@ #!/usr/bin/env python3 +# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) +# +# This software is licensed under the "BSD" License as described in the "LICENSE" file, +# which should be included with this package. The terms are also available at +# http://www.hardcoded.net/licenses/bsd_license import sys -import os -import os.path as op -import subprocess +import sip +sip.setapi('QVariant', 1) -def main(): - scriptpath = op.abspath(__file__) - scriptfolder = op.dirname(scriptpath) - os.environ['PYTHONPATH'] = scriptfolder - subprocess.Popen([sys.executable, '-m', 'qt.{{edition}}.start'], env=os.environ) +from PyQt4.QtCore import QCoreApplication +from PyQt4.QtGui import QApplication, QIcon, QPixmap -if __name__ == '__main__': - sys.exit(main()) +from qt.base import dg_rc +from qt.{{edition}}.app import DupeGuru + +if sys.platform == 'win32': + import base.cxfreeze_fix + +if __name__ == "__main__": + app = QApplication(sys.argv) + app.setWindowIcon(QIcon(QPixmap(":/{0}".format(DupeGuru.LOGO_NAME)))) + QCoreApplication.setOrganizationName('Hardcoded Software') + QCoreApplication.setApplicationName(DupeGuru.NAME) + QCoreApplication.setApplicationVersion(DupeGuru.VERSION) + dgapp = DupeGuru() + sys.exit(app.exec_())