-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scripts/mkuidefaults.py: switch to PyQt wrappers and reformat
- Loading branch information
Showing
1 changed file
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,46 @@ | ||
from PyQt4.QtCore import QCoreApplication, QSettings | ||
from PyQt.QtCore import QCoreApplication, QSettings | ||
|
||
|
||
def chunks(l, n): | ||
for i in xrange(0, len(l), n): | ||
yield l[i:i+n] | ||
for i in xrange(0, len(l), n): | ||
yield l[i:i + n] | ||
|
||
QCoreApplication.setOrganizationName( "QGIS" ) | ||
QCoreApplication.setOrganizationDomain( "qgis.org" ) | ||
QCoreApplication.setApplicationName( "QGIS2" ) | ||
QCoreApplication.setOrganizationName("QGIS") | ||
QCoreApplication.setOrganizationDomain("qgis.org") | ||
QCoreApplication.setApplicationName("QGIS2") | ||
|
||
s = QSettings() | ||
|
||
ba = s.value("/UI/geometry").toByteArray() | ||
|
||
f = open("src/app/ui_defaults.h", "w") | ||
|
||
f.write( "#ifndef UI_DEFAULTS_H\n#define UI_DEFAULTS_H\n\nstatic const unsigned char defaultUIgeometry[] =\n{\n" ) | ||
f.write("#ifndef UI_DEFAULTS_H\n#define UI_DEFAULTS_H\n\nstatic const unsigned char defaultUIgeometry[] =\n{\n") | ||
|
||
for chunk in chunks(ba,16): | ||
f.write( " %s,\n" % ", ".join( map( lambda x : "0x%02x" % ord(x), chunk ) ) ) | ||
for chunk in chunks(ba, 16): | ||
f.write(" %s,\n" % ", ".join(map(lambda x: "0x%02x" % ord(x), chunk))) | ||
|
||
f.write( "};\n\nstatic const unsigned char defaultUIstate[] =\n{\n" ) | ||
f.write("};\n\nstatic const unsigned char defaultUIstate[] =\n{\n") | ||
|
||
ba = s.value("/UI/state").toByteArray() | ||
|
||
for chunk in chunks(ba,16): | ||
f.write( " %s,\n" % ", ".join( map( lambda x : "0x%02x" % ord(x), chunk ) ) ) | ||
for chunk in chunks(ba, 16): | ||
f.write(" %s,\n" % ", ".join(map(lambda x: "0x%02x" % ord(x), chunk))) | ||
|
||
ba = s.value("/Composer/geometry").toByteArray() | ||
|
||
f.write( "};\n\nstatic const unsigned char defaultComposerUIgeometry[] =\n{\n" ) | ||
f.write("};\n\nstatic const unsigned char defaultComposerUIgeometry[] =\n{\n") | ||
|
||
for chunk in chunks(ba,16): | ||
f.write( " %s,\n" % ", ".join( map( lambda x : "0x%02x" % ord(x), chunk ) ) ) | ||
for chunk in chunks(ba, 16): | ||
f.write(" %s,\n" % ", ".join(map(lambda x: "0x%02x" % ord(x), chunk))) | ||
|
||
f.write( "};\n\nstatic const unsigned char defaultComposerUIstate[] =\n{\n" ) | ||
f.write("};\n\nstatic const unsigned char defaultComposerUIstate[] =\n{\n") | ||
|
||
ba = s.value("/ComposerUI/state").toByteArray() | ||
|
||
for chunk in chunks(ba,16): | ||
f.write( " %s,\n" % ", ".join( map( lambda x : "0x%02x" % ord(x), chunk ) ) ) | ||
for chunk in chunks(ba, 16): | ||
f.write(" %s,\n" % ", ".join(map(lambda x: "0x%02x" % ord(x), chunk))) | ||
|
||
f.write( "};\n\n#endif // UI_DEFAULTS_H\n" ) | ||
f.write("};\n\n#endif // UI_DEFAULTS_H\n") | ||
|
||
f.close() |