Restore the old rcc-based resource generation system.
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 30 Sep 2010 14:10:59 +0000 (14:10 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 30 Sep 2010 14:10:59 +0000 (14:10 +0000)
(the pyrcc4-based one seems to not work properly on Windows)

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4385 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/bertos.py

index ebc91357e285490eee381e3bbb32392ea182c2cb..a404cb23556fa35c9abbe00c9737eeaf467fde7a 100755 (executable)
@@ -119,10 +119,21 @@ def main():
     app.settings = QSettings("Develer", "Bertos Configurator")
     # Development utility lines, to be removed for production
     datadir = DATA_DIR
-    qrc, bertos_rc = os.path.join(datadir, 'bertos.qrc'), os.path.join(datadir, 'bertos_rc.py')
-    if not (hasattr(sys, "frozen") and sys.frozen) and newer(qrc, bertos_rc):
-        os.system("pyrcc4 \"%s\" -o \"%s\"" %(qrc, bertos_rc))
-    import bertos_rc
+
+    # Something seems to not work, on Windows, using pyrcc4 with BeRTOS Wizard
+    # resources. So I'm restoring the old rcc-based resource generation
+    # system.
+    #
+    # qrc, bertos_rc = os.path.join(datadir, 'bertos.qrc'), os.path.join(datadir, 'bertos_rc.py')
+    # if not (hasattr(sys, "frozen") and sys.frozen) and newer(qrc, bertos_rc):
+    #     os.system("pyrcc4 \"%s\" -o \"%s\"" %(qrc, bertos_rc))
+    # import bertos_rc
+
+    qrc, rcc = os.path.join(datadir, 'bertos.qrc'), os.path.join(datadir, 'bertos.rcc') 
+    if not (hasattr(sys, "frozen") and sys.frozen) and newer(qrc, rcc): 
+        os.system("rcc -binary \"%s\" -o \"%s\"" %(qrc, rcc)) 
+    QResource.registerResource(rcc) 
+    
     if len(sys.argv) == 3 and sys.argv[1] == "--edit":
         editProject(os.path.abspath(sys.argv[2]))
     else: