diff --git a/src/Mod/Arch/ArchStructure.py b/src/Mod/Arch/ArchStructure.py index 485ac0462..677205ec3 100644 --- a/src/Mod/Arch/ArchStructure.py +++ b/src/Mod/Arch/ArchStructure.py @@ -36,6 +36,9 @@ QtCore.QT_TRANSLATE_NOOP("Arch","Steel") # Presets in the form: Class, Name, Width, Height, [Web thickness, Flange thickness] Presets = [None, + + # wood sections + ["Wood","1x2in",19,28], ["Wood","1x3in",19,64], ["Wood","1x4in",19,89], @@ -43,7 +46,7 @@ Presets = [None, ["Wood","1x8in",19,140], ["Wood","1x10in",19,184], ["Wood","1x12in",19,286], - + ["Wood","2x2in",38,38], ["Wood","2x3in",38,64], ["Wood","2x4in",38,89], @@ -51,14 +54,53 @@ Presets = [None, ["Wood","2x8in",38,184], ["Wood","2x10in",38,235], ["Wood","2x12in",38,286], - + ["Wood","4x4in",89,89], ["Wood","4x6in",89,140], ["Wood","6x6in",140,140], ["Wood","8x8in",184,184], - + + # IPE beams + ["Steel","IPE90",46,80,3.8,5.2], - ["Steel","IPE100",55,100,4.1,5.7] + ["Steel","IPE100",55,100,4.1,5.7], + ["Steel","IPE120",64,120,4.4,6.3], + ["Steel","IPE140",73,140,4.7,6.9], + ["Steel","IPE160",82,160,5,7.4], + ["Steel","IPE180",91,180,5.3,8], + ["Steel","IPE200",100,200,5.6,8.5], + ["Steel","IPE220",110,220,5.9,9.2], + ["Steel","IPE240",120,240,6.2,9.8], + ["Steel","IPE270",135,270,6.6,10.2], + ["Steel","IPE300",150,300,7.1,10.7], + ["Steel","IPE330",160,330,7.5,11.5], + ["Steel","IPE360",170,360,8,12.7], + ["Steel","IPE400",180,400,8.6,13.5], + ["Steel","IPE450",190,450,9.4,14.6], + ["Steel","IPE500",200,500,10.2,16], + ["Steel","IPE550",210,550,11.1,17.2], + ["Steel","IPE600",220,600,12,19], + + # INP beams + + ["Steel","INP80",42,80,3.9,5.9], + ["Steel","INP100",50,100,4.5,6.8], + ["Steel","INP120",58,120,5.1,7.7], + ["Steel","INP140",66,140,5.7,8.6], + ["Steel","INP160",74,160,6.3,9.5], + ["Steel","INP180",82,180,6.9,10.4], + ["Steel","INP200",90,200,7.5,11.3], + ["Steel","INP220",98,220,8.1,12.2], + ["Steel","INP240",106,240,8.7,13.1], + ["Steel","INP260",113,260,9.4,14.1], + ["Steel","INP280",119,280,10.1,15.2], + ["Steel","INP300",125,300,10.8,16.2], + ["Steel","INP320",131,320,11.5,17.3], + ["Steel","INP340",137,340,12.2,18.3], + ["Steel","INP360",143,360,13,19.5], + ["Steel","INP380",149,380,13.7,20.5], + ["Steel","INP400",155,400,14.4,21.6] + ] def makeStructure(baseobj=None,length=0,width=0,height=0,name=str(translate("Arch","Structure"))): @@ -121,9 +163,10 @@ class _CommandStructure: global QtGui, QtCore from PyQt4 import QtGui, QtCore - self.Length = 100 - self.Width = 100 - self.Height = 1000 + p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch") + self.Length = p.GetFloat("StructureLength",100) + self.Width = p.GetFloat("StructureWidth",100) + self.Height = p.GetFloat("StructureHeight",1000) self.Profile = 0 self.continueCmd = False sel = FreeCADGui.Selection.getSelection() @@ -306,9 +349,9 @@ class _Structure(ArchComponent.Component): obj.addProperty("App::PropertyIntegerList","Exclude","Base", str(translate("Arch","The element numbers to exclude when this structure is based on axes"))) self.Type = "Structure" - obj.Length = 100 - obj.Width = 100 - obj.Height = 1000 + obj.Length = 1 + obj.Width = 1 + obj.Height = 1 def execute(self,obj): self.createGeometry(obj) @@ -343,7 +386,7 @@ class _Structure(ArchComponent.Component): import Part, DraftGeomUtils # getting default values - height = width = length = 100 + height = width = length = 1 if hasattr(obj,"Length"): if obj.Length: length = obj.Length diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index 78c52d63d..8de79cc5c 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -136,12 +136,12 @@ class _CommandWall: global QtGui, QtCore from PyQt4 import QtGui, QtCore - self.Width = 200 - self.Height = 3000 self.Align = "Center" self.Length = None self.continueCmd = False p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch") + self.Width = p.GetFloat("WallWidth",200) + self.Height = p.GetFloat("WallHeight",3000) self.JOIN_WALLS = p.GetBool("joinWallSketches") sel = FreeCADGui.Selection.getSelection() done = False @@ -348,9 +348,9 @@ class _Wall(ArchComponent.Component): obj.Align = ['Left','Right','Center'] obj.ForceWire = False self.Type = "Wall" - obj.Width = 100 - obj.Height = 1000 - obj.Length = 1000 + obj.Width = 1 + obj.Height = 1 + obj.Length = 1 def execute(self,obj): self.createGeometry(obj) @@ -374,11 +374,11 @@ class _Wall(ArchComponent.Component): def getDefaultValues(self,obj): "returns normal,width,height values from this wall" - length = 1000 + length = 1 if hasattr(obj,"Length"): if obj.Length: length = obj.Length - width = 100 + width = 1 if hasattr(obj,"Width"): if obj.Width: width = obj.Width @@ -391,7 +391,7 @@ class _Wall(ArchComponent.Component): if Draft.getType(p) == "Floor": height = p.Height if not height: - height = 1000 + height = 1 if hasattr(obj,"Normal"): if obj.Normal == Vector(0,0,0): normal = Vector(0,0,1) diff --git a/src/Mod/Arch/Arch_rc.py b/src/Mod/Arch/Arch_rc.py index 056219957..28b593b4c 100644 --- a/src/Mod/Arch/Arch_rc.py +++ b/src/Mod/Arch/Arch_rc.py @@ -2,8 +2,8 @@ # Resource object code # -# Created: Fri Jul 19 15:47:00 2013 -# by: The Resource Compiler for PyQt (Qt v4.8.4) +# Created: Fri Aug 16 18:34:56 2013 +# by: The Resource Compiler for PyQt (Qt v4.8.5) # # WARNING! All changes made in this file will be lost! @@ -27568,134 +27568,143 @@ qt_resource_data = "\ \x6c\x6c\x61\x64\x61\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x77\x69\ \x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x2e\x0a\ \x07\x00\x00\x00\x04\x61\x72\x63\x68\x01\ -\x00\x00\x07\xd4\ +\x00\x00\x08\x6e\ \x00\ -\x00\x3e\x97\x78\x9c\xed\x5b\x5b\x73\xdb\xb8\x0e\x7e\xef\xaf\xe0\ -\xf8\xb9\x5b\xdb\xb9\x35\xc9\x28\xde\x69\x9b\xa6\xed\x4e\xbb\x9b\ -\x1e\xe7\xb4\x8f\x3b\xb4\x04\x5b\xdc\x52\xa2\x96\xa4\x62\x7b\x7f\ -\xfd\x01\x29\xc9\xb2\x64\x49\x8e\x23\x5f\xce\x74\xdd\x69\xa7\x12\ -\x41\x03\x20\x04\x7c\x00\x28\xca\xf9\x75\x16\x70\xf2\x08\x52\x31\ -\x11\xde\x74\xfa\xaf\x7a\x1d\x02\xa1\x2b\x3c\x16\x4e\x6e\x3a\xff\ -\x7d\xb8\xfb\xe5\xb2\xf3\xeb\xe0\x85\x13\xb3\x7c\xd2\x19\x4e\x1a\ -\xbc\x20\x8e\xcb\xa9\x52\x83\x0f\x31\xbb\xbe\xbe\x65\x94\x8b\x09\ -\xfe\xcf\x27\x43\xd0\x1a\x7f\xac\xde\x48\xd7\x77\xba\xc9\x1c\x9c\ -\x3c\x65\xde\x04\x34\xb1\xf7\x37\x9d\xaf\xdf\xed\x6d\x87\x84\x34\ -\x80\x9b\x4e\x13\x0f\x23\x8a\x38\x91\x14\x11\x48\x3d\x4f\x7f\x30\ -\x01\x11\x80\x96\x73\x4b\x24\x8e\x04\x57\xdb\x2b\xe2\xcc\x06\x3d\ -\xa7\x3b\x4b\x6f\xe6\xe6\x66\x9e\xde\xa0\x06\xda\x1f\x9c\xbf\x3e\ -\x77\xba\xc9\x65\x32\xec\x03\x9b\xf8\x7a\x70\x71\x72\xe5\x74\xd3\ -\x6b\xcb\xb3\x9b\x31\x75\xba\x99\xf0\x2a\x4d\xa6\x2c\xf4\xc4\xf4\ -\x81\x69\x0e\xa9\x32\x4a\x4b\xd4\x7d\xf0\x01\x42\x90\x94\x13\x95\ -\xae\xc5\xe9\xa6\x84\x55\x96\x9c\xce\x45\x9c\xdb\xe6\xdb\x5b\x31\ -\xfb\x6c\x87\x52\x8e\x25\x91\x2a\xa2\x2e\x32\xea\xa4\x0b\x08\xe3\ -\x60\x04\x72\x70\xe1\x74\xd3\xab\x44\xfd\x65\x09\x2b\x2c\x02\x2a\ -\x27\x2c\x2c\x71\xb8\x6a\xe4\xc0\x34\x04\xb9\x25\x97\x9f\xe5\x07\ -\x29\xe2\x08\x75\xce\x9e\xe6\x24\xbb\x4f\xa6\xaf\x08\xd7\xb9\xb1\ -\x2a\xec\x65\x9e\x39\x19\x56\x18\x6d\x55\xa7\x46\xd3\xa5\xc2\xd0\ -\x6b\x35\x73\x29\x4f\x46\xff\x3c\xc9\xe5\xe6\x0b\xaa\x60\xf4\x71\ -\x85\x91\x2f\x24\xfb\x47\x84\xba\x82\x55\x99\xd9\xaa\x89\x3e\xd3\ -\x11\xf0\x8c\x13\x37\x37\x85\x9f\x57\xd8\x08\x66\xba\x30\x61\x61\ -\xa7\x5b\x18\xd3\x98\x23\x6b\xc1\x85\x24\x63\xfc\x37\xa5\x9c\x97\ -\x2d\x55\x6d\xae\x64\x30\xd1\x6d\x49\xf9\x6e\x51\xfb\x95\xc5\x18\ -\x87\x03\xb9\x62\x87\xa1\x1d\x6e\x5c\x06\xce\x05\x9c\xaa\x11\x37\ -\x4a\xab\x01\x74\xb5\xc1\x57\x7d\x7d\xfd\x71\xc1\xcf\xe9\xda\xc1\ -\x75\x0b\x58\x8d\x07\xf6\x0f\x7c\x64\x21\x3e\x29\xa5\x3d\x0c\xb7\ -\x9b\x4e\xaf\x6c\x3a\x9c\x51\x18\xc9\xd0\xe0\xac\x57\x00\x83\x05\ -\x35\x05\x82\x93\x5e\x01\x13\x72\xb5\xca\x0c\x6b\x2c\x9d\x18\x6e\ -\x03\x4b\x17\xdd\xc6\xc2\xe2\xbd\x84\xf1\x3b\xf3\xac\xdf\xc6\x5a\ -\xa3\x19\xb3\x20\x33\xb4\x08\x69\xd6\x0f\x46\x09\xad\xd1\xa3\x84\ -\xe0\x0f\x2c\xaa\x76\xaa\x07\x9f\x29\x82\x7f\xb5\x0f\xc4\x5b\x71\ -\xb0\x10\xa6\xe4\x3b\x3a\x19\x11\xa3\xbf\x10\x14\x9f\xee\x6b\x2b\ -\x4a\x58\x9e\x25\x15\xec\x58\xc9\xfe\x12\xbc\xc1\x49\xff\xcc\x80\ -\xb0\x57\x22\x4d\x24\x40\x98\x10\x93\xcb\x22\x79\xc4\x63\x48\xa8\ -\xf6\xaa\xf8\xd8\x56\x44\x3d\x4d\x6b\x63\xe6\xf7\xa1\x49\x37\xb5\ -\x1e\xe6\xa6\x16\x31\x66\xb2\x4f\x0b\x85\x3d\xd7\x48\x46\xdc\x3d\ -\xd5\xfe\x7a\x69\x5f\x84\xd7\x4d\xf3\xec\xb6\xa2\xdf\xe9\x26\x48\ -\xb8\x80\xc9\x02\xb9\x2d\x68\xb6\x82\xcc\xad\x01\x26\x12\x62\x57\ -\xc7\x12\x0e\x87\x9a\x6b\xe0\xff\x88\x9b\xfb\xc4\xcd\x75\xb9\xb8\ -\x1d\x72\x0e\x33\x6f\xdb\x2f\x7c\xf6\xcf\x7b\xf5\xf0\xd9\xbf\xb8\ -\x6a\x80\xcf\xfe\xe5\xc5\x81\xe0\x73\x61\xab\x23\x86\xd6\x17\x9e\ -\x17\xed\x0a\xcf\xf3\xed\x15\x9e\xb6\xf7\x39\x20\x88\x9e\x1d\x41\ -\xb4\xde\xd6\xfb\x06\xd1\xd3\xc6\x87\xb1\x09\x74\x9d\x9e\xd6\x23\ -\xd7\xd9\x79\x03\x70\x5d\x1c\x0a\xb7\xbe\xdb\x48\x38\x82\x56\x3d\ -\x68\xf5\xcf\xda\xa1\xd6\xc5\x96\x51\x8b\x4c\x8c\xac\xc3\x41\x57\ -\x33\x0a\x1f\xa1\x6b\xaf\xd0\xd5\x9c\x47\x36\x81\xae\xab\x06\xe8\ -\xea\x5f\x9e\x36\xf5\xac\xbd\xd3\x83\x82\xd7\x07\x63\xbb\x23\x82\ -\x35\x20\x58\xef\xe9\x08\x96\x7b\xa0\x0f\xee\x8f\xe5\xbd\xd1\x85\ -\xfb\x19\xc2\x48\xcc\xfe\xbc\x7c\x7e\xef\xf1\x69\x8c\x6d\x47\xd2\ -\x7e\x58\x76\xe0\xbd\x24\x53\x1f\x42\x72\x42\x14\x0b\x18\xa7\xe9\ -\xde\x20\xa1\xd8\x7c\x8c\x00\x7f\x82\x30\x18\x86\xd8\x83\x98\x99\ -\xd8\xb1\x30\x49\xe2\xd0\x03\xc9\xe7\x86\xa6\x7e\x80\x46\x3e\x0a\ -\x11\x92\x73\x9c\x4f\xfe\x12\x2c\x04\x8f\x20\x44\x08\x22\x42\x78\ -\x49\x68\xe8\xd9\x46\x47\x4f\x45\xca\x39\x9d\xea\x8a\x00\xcc\x94\ -\xe7\xb7\x36\xf5\x08\xfe\x1b\x6a\x91\x4a\x1b\x51\x05\x4b\x6a\x9a\ -\xa5\x46\x42\x29\x36\xe2\x2d\x24\x6f\x10\x29\xc6\x20\x66\x87\x67\ -\x98\xaa\xf0\x53\x46\x4a\x91\x58\xe0\xb5\x34\xef\x19\xef\x03\xf2\ -\x36\xfb\x69\x6f\x04\x3e\xdd\xbd\x23\x2c\x88\x84\xd4\xdb\x7e\x0d\ -\xb0\xbd\x97\x00\x57\x3b\xc1\x84\x35\x2d\x5a\x13\x26\x58\xe6\x09\ -\x2c\x60\xd4\x7a\x4c\x45\xb8\x28\xe2\xc1\x28\x9e\x90\x00\x94\xa2\ -\x13\x1b\x39\x8c\x43\x6a\x5b\x13\xf9\xc6\xd2\x63\x1c\x6a\xb1\x35\ -\x51\x1f\xbf\x43\x1f\xab\xad\xa2\x02\x7b\x09\x56\x36\x76\x6f\x8d\ -\xd4\x9f\x32\x48\xdb\x7b\xee\xf9\x2e\x3c\x77\xbb\xb9\x6c\xe1\x96\ -\x49\x9a\xa1\x7c\x4a\xe7\xca\x24\xa6\xc4\x73\x31\x35\x4d\x99\xf6\ -\x6d\x46\xc2\x1c\x05\x32\xa4\x9c\x44\x73\xed\x0b\x4c\x0b\x54\x2a\ -\x90\x2f\x09\x3c\x62\x8e\x60\x63\xf2\x69\xec\xfe\x11\x41\x38\xf4\ -\x01\x19\x19\x31\xa1\x42\x53\x70\xf0\x76\xe1\xf1\x77\x42\xba\x50\ -\xd4\x64\x2f\x1e\x3f\x36\x72\x71\xa5\xf7\x56\xf2\x7d\x2a\xf8\xe8\ -\xfd\x15\xde\x7f\xba\x13\xdc\x6e\xb1\x8f\xfc\x4e\x02\xd5\xe8\xe9\ -\x36\x59\x2a\xdb\xa8\x02\x75\xfd\xe4\x75\x78\xb2\x71\x4c\xf4\x3c\ -\xda\x49\x85\x65\x13\x36\x96\x86\x18\x55\x21\xb6\x9d\x18\x62\x73\ -\x2b\x6b\x3f\x38\xed\xda\x95\xa3\xdb\x5a\x35\x7e\xce\x9a\x6a\x0b\ -\xdd\x47\x7f\x27\x1e\xbb\x66\x5b\x65\x53\xc4\xc6\x5f\x87\xe6\xdc\ -\xc6\xa2\x85\x58\x20\x35\x55\x44\xc5\x23\x2d\xa9\x6b\x36\x35\x14\ -\x4e\x45\xd8\x96\x53\x86\x05\xbd\xa9\xed\x89\xf2\x69\x94\x03\x3d\ -\xba\x84\x37\x27\x3e\x7d\x84\xb4\x4d\x59\x30\xce\x98\xec\x06\xb9\ -\x87\x80\x70\x8d\xde\xb8\x90\xb7\xaf\x4a\x25\x13\xfc\xc7\x42\xee\ -\x31\x0a\xaa\xa2\x60\x83\x43\x37\x1b\x44\xc1\xeb\x2d\x47\x41\x02\ -\xd7\xe6\xd7\x79\x24\x18\x81\x6c\xb6\x5c\xb3\x98\xf2\xe6\xd3\x2d\ -\x49\xce\x5c\xed\xc2\x9b\xef\xad\xc8\x85\x1e\x28\x76\x0b\xe2\x36\ -\xf3\xeb\x44\x85\xdf\xad\xcc\xa3\x53\xd7\x38\xf5\x06\xc5\x48\xd5\ -\xd6\x78\xf3\xee\x65\xbd\x7b\xbc\x9f\xb9\x3c\xf6\x80\x70\xa6\xf4\ -\x35\xd9\xe5\x56\x78\x4d\x60\x7e\x66\x21\xbc\xf7\x98\x5e\x09\x4c\ -\x8e\x04\x30\x84\x67\x87\xe5\x1b\x53\xce\x04\xf4\x17\x95\xe2\xaa\ -\x67\x57\x49\x84\xed\x04\x08\x16\x39\x4c\x33\xb0\x2d\x32\xa4\x56\ -\x18\x4b\x11\x54\x6f\x37\xd4\x9b\xe2\xe9\xc6\xee\x3e\xc3\xe5\x39\ -\x75\xc1\x17\xdc\x03\xf9\x50\xfb\x0c\x71\x35\xf6\x85\xc2\x4b\xbc\ -\x78\x1b\x33\x6e\xce\xed\xbe\xe7\x10\xe0\x0a\xef\xa5\x98\xcd\xcd\ -\xf8\x1d\x17\xd3\x07\x90\x01\xc3\xfe\xc8\xde\xc7\x32\x64\xca\xcf\ -\x67\xee\x2d\xc9\xfd\x60\xd1\x11\x03\xaa\x31\xa0\xe5\x4b\xfd\x35\ -\x19\xac\xde\x7f\xac\xc3\x9b\xea\x0c\x73\x84\x0f\xea\xfa\xff\x11\ -\x06\xda\xf4\x55\x0d\x40\x80\xe9\xd7\x76\x39\x98\x8c\xa9\x26\x41\ -\x8c\xc3\xa5\x8a\x35\xb1\x49\x8b\xf0\x78\x62\x08\x1f\x2c\x22\xdf\ -\xa8\x2f\xb8\xc4\x9f\x32\x26\x77\xb7\x8d\xbd\x48\xd7\x4f\xdb\xc6\ -\x3e\xb9\x25\x12\xcc\x5b\x16\xbc\xd9\xfa\x79\xf6\xbc\x74\x68\x0d\ -\x41\xaf\x77\x52\x5a\xaf\x29\x4e\x9a\x42\x77\x69\xe3\x98\x85\x63\ -\x21\x03\xfb\x3e\x9c\x78\xb1\xa1\x92\x06\xb3\x6e\xe0\xbf\x6b\xb6\ -\xad\x13\x09\x20\x0f\xb1\x7f\x6d\x14\xf8\xf6\x9f\x2f\xc7\x3d\xec\ -\x7a\x97\xbd\x6c\x97\x34\x9b\x4f\x2c\xd5\xbb\xc6\x3b\xd4\x92\x4a\ -\xc0\x04\x61\x32\x94\xe9\xff\xdc\x1f\x21\xba\x06\x91\xc6\x43\x0f\ -\x77\xa6\xa4\x79\x3d\xc7\x33\x25\x5b\x39\x53\x72\x2b\xe2\x11\x87\ -\x61\xc4\xc2\x2a\xdc\xf3\x2c\x55\x21\xb5\xd5\xdb\x90\x61\x04\x2e\ -\x1b\x9b\x0e\xc5\xa0\x50\x40\xc3\x39\xd1\x2c\x80\xe4\x98\xf1\x23\ -\x83\xa9\xad\x63\x0a\xbe\x97\xd5\x2f\x34\x8a\x38\x43\x32\xb6\x36\ -\x2e\xfa\xa9\x99\xd5\x02\xaf\x1e\x29\x8f\xa1\xa4\x63\xb2\xc6\xc1\ -\xc9\xab\x5e\xf1\x8f\xd3\x4d\x29\xbb\x44\x45\x8c\x3d\x53\x2f\x3e\ -\x64\xeb\xfe\x57\x20\x63\x21\xec\xb3\x0a\x60\xe5\xf3\xab\x27\x06\ -\x7c\x1e\xee\xdf\x52\x4e\xe5\x60\xaf\x5a\xd1\x86\x81\xbe\x12\xe6\ -\x69\x90\x9f\x54\x05\x79\x16\xe2\x67\x55\x21\x5e\x0e\xf0\x0a\xe5\ -\xca\xc1\xbd\x79\x1d\xb8\x34\x69\x69\x46\x9a\x91\xb2\x63\xfd\xe9\ -\x77\x97\x37\x9d\x8b\x0e\x49\x3e\xa0\xbc\xe9\xf4\xfb\x1d\xd3\xda\ -\x3b\x11\x9b\x05\x34\x1a\xc7\xa1\xdd\xde\x1e\xfc\x7d\x6f\xef\xef\ -\xa4\x08\xbe\x60\xdc\x0e\x45\x2c\x5d\x40\xcd\x8b\xb3\xcc\x37\xb4\ -\x18\xb5\x22\x48\x24\x2a\xab\xc9\xf2\x48\xa2\xe5\xd2\x77\xb6\x4b\ -\x07\xda\xf2\x6f\x6b\xcd\x23\x9d\x69\xac\x54\xd4\xe0\xeb\x7d\xac\ -\xfc\x8c\x9e\x0d\xbe\x48\x4c\x4c\xb1\x92\x31\x5c\xba\xc9\xb7\xb7\ -\xea\x95\x6f\xac\x6d\x47\xad\x05\xca\x82\x9b\x35\x29\x1d\xaf\xab\ -\xd4\x66\x55\xe5\x3a\x95\x0c\xb7\xed\xa9\x95\x16\xa5\xd5\x16\xca\ -\xa9\x7b\x51\x26\x6b\x6e\xab\x95\xc9\xa9\x7b\x51\xa6\x90\xbb\xaa\ -\x35\x2a\x4d\x69\xaf\x56\x71\xc0\x7e\x0b\x2e\x41\xd9\x80\x50\x36\ -\x74\xd2\x23\x69\xe6\xad\x10\xde\x3b\xdd\x98\x0d\x5e\xfc\x0f\x2b\ -\xef\x24\x3e\ +\x00\x4d\x6d\x78\x9c\xed\x5c\xeb\x73\xd3\x38\x10\xff\xce\x5f\xa1\ +\xc9\x67\x20\x8f\x3e\x68\x3a\x6e\x18\xa0\x14\xb8\x81\xbb\x72\xed\ +\x71\x1f\x6f\x14\x7b\x13\xeb\x90\x2d\x9f\x24\x37\x09\x7f\xfd\xad\ +\x64\xe7\x61\xc7\x71\x1a\xe7\x45\x4a\x32\x30\xb5\x25\x79\x77\xb5\ +\xfe\xed\x4b\x96\xed\xbc\x1e\x06\x9c\x3c\x80\x54\x4c\x84\x57\xb5\ +\xe6\xcb\x46\x8d\x40\xe8\x0a\x8f\x85\xfd\xab\xda\x5f\xf7\x37\x2f\ +\x2e\x6a\xaf\x3b\xcf\x9c\x98\x4d\x07\x9d\xe2\xa0\xce\x33\xe2\xb8\ +\x9c\x2a\xd5\xf9\x10\xb3\xcb\xcb\x6b\x46\xb9\xe8\xe3\x5f\xde\xbf\ +\x03\xad\xf1\x62\xf5\x46\xba\xbe\x53\x4f\xc6\xe0\xe0\x01\xf3\xfa\ +\xa0\x89\x3d\xbf\xaa\x7d\xfd\xdb\x9e\xd6\x48\x48\x03\xb8\xaa\x95\ +\xd1\x30\xac\x88\x13\x49\x11\x81\xd4\xa3\xf4\x82\x3e\x88\x00\xb4\ +\x1c\xd9\x4e\xe2\x48\x70\xb5\x3d\x22\xce\xb0\xd3\x70\xea\xc3\xf4\ +\x64\x64\x4e\x46\xe9\x09\x4a\xa0\xfd\xce\xd9\xab\x33\xa7\x9e\x1c\ +\x26\xcd\x3e\xb0\xbe\xaf\x3b\xe7\xad\xb6\x53\x4f\x8f\x2d\xcd\xfa\ +\x98\xa8\x53\x1f\x33\x2f\x92\x64\xc0\x42\x4f\x0c\xee\x99\xe6\x90\ +\x0a\xa3\xb4\x44\xd9\x3b\x1f\x20\x04\x49\x39\x51\xe9\x5c\x9c\x7a\ +\xda\x31\x4f\x92\xd3\x91\x88\xa7\xba\xf9\xf6\x56\x0c\x3f\xdb\xa6\ +\x94\x62\x8e\xa5\x8a\xa8\x8b\x84\x6a\xe9\x04\xc2\x38\xe8\x82\xec\ +\x9c\x3b\xf5\xf4\x28\x11\x7f\x96\xc3\x1c\x89\x80\xca\x3e\x0b\x73\ +\x14\xda\xa5\x14\x98\x86\x60\xaa\xc9\xd9\x7b\xf9\x41\x8a\x38\x42\ +\x99\xc7\x77\xb3\x3f\x3e\x4f\x86\xcf\x31\xd7\x53\x65\xcd\xe8\xeb\ +\x1a\x7a\x34\xe6\xba\x50\x5f\xf3\xe2\x94\x6a\x2d\xe5\x83\x80\xd5\ +\xcc\xa5\x3c\x69\xfd\xa7\x35\x65\x39\x9d\x4b\x01\xa1\x8f\x73\x84\ +\x7c\x21\xd9\x0f\x11\xea\x02\x52\x79\x62\xf3\xda\xf9\x4c\xbb\xc0\ +\xc7\x94\xb8\x39\xc9\x5c\x5e\xa0\x1e\x18\xea\xcc\x80\x89\x8a\xfe\ +\xa6\x9c\xe7\xd4\x52\xac\x9b\xa4\x31\x11\x64\x46\xd2\x7a\x56\xd4\ +\x39\xc9\x0d\xb0\x40\xce\x4d\xfa\xce\x36\x97\xca\x8c\x63\x01\x87\ +\x6a\xf4\x0f\x39\xd1\x01\x21\xd5\xf9\xaa\x2f\x2f\x3f\x4e\xe8\x39\ +\x75\xdb\xb8\x6c\x02\xf3\xb8\x67\x3f\xe0\x23\x0b\xf1\xb6\x28\xed\ +\x21\x4c\xae\x6a\x8d\xbc\x9e\x70\x44\xa6\x65\x6c\xf5\xa7\x8d\x8c\ +\xd1\x4f\x7a\x53\x83\x6f\x35\x32\xb6\x3f\x15\x2b\x4f\x70\x81\xa6\ +\x13\xc5\xad\xa0\xe9\xe5\x18\x69\x36\xaa\x82\xc4\x4c\xf3\x72\x9b\ +\x30\xc9\x0a\x6f\x7d\xf7\xad\x84\xde\xb5\x88\xbb\x1c\xee\x22\x16\ +\xce\xfa\x02\xd3\x1b\x61\xaf\x67\x7b\x15\xf6\x76\xc5\x70\x89\x05\ +\x04\x74\xc8\x82\x38\xc8\xcd\x2f\xa1\xd0\x69\xe3\xef\x65\xfb\xa2\ +\x3d\xf9\xbd\xba\x68\x39\xf5\xb4\x73\x65\x4c\x3d\x50\x1e\x43\x31\ +\xa3\x56\xa3\xf1\xb2\x91\xfd\x55\xe7\x63\x54\xf0\x3e\x34\x11\x6b\ +\x21\x78\xdd\x19\x2b\xb7\x37\x11\xa3\xe7\x23\x6f\x62\x21\xbb\x5b\ +\xaa\xfd\xe5\xdc\xbe\x08\xaf\x9e\x86\xea\x5d\x21\xa6\x08\xee\x17\ +\x15\xd1\xfe\xd1\x5a\xed\xcf\x0e\xf7\x93\x03\x80\xfb\x49\x63\x8f\ +\x78\x4f\x6e\xe3\xaf\x04\xf8\x76\x45\xc0\xbf\x13\x5c\xc8\x7d\xe0\ +\xdd\x32\x7e\x1b\x6b\x8d\x21\x3e\x8f\x76\xd7\xf4\x75\x93\xbe\xd2\ +\x69\x09\xc1\xef\x59\x54\x3c\xb3\x7b\x9f\x29\x82\xff\xb4\x0f\xc4\ +\x4b\x93\x41\x4b\x98\xf4\xf0\x7f\x08\x03\x62\x90\x42\x44\xf7\x5f\ +\x4c\xcc\xf3\xe9\xe1\x0a\x50\xb1\x34\xf3\xe0\x30\x6d\xb9\xdc\x40\ +\x82\xd7\x69\x35\x4f\x4d\x21\xe0\xe5\xba\xfa\x12\x20\x4c\x3a\x93\ +\xc3\x6c\x77\x17\x8d\x2c\xe9\xb5\x47\xd9\x94\x62\x8e\xd5\x56\x0c\ +\xca\xde\xad\x43\xb5\x27\xa7\x9e\xa4\xe4\x93\x7c\x3d\xd3\xbd\x6e\ +\xf6\xbe\x56\xee\x5e\xd1\x6a\xef\xb4\x8c\x5d\x1d\x4b\xd8\x5b\xfa\ +\xbe\x24\xe5\x3a\x26\xf0\x1b\x4f\xe0\xab\x56\x79\x9f\x21\xec\xff\ +\xfc\x19\xfc\xe9\x01\xa4\x34\xcd\x3d\x65\x34\x13\x6b\x4f\x6e\xe5\ +\xa1\xba\xe1\x4a\xa8\x2f\x4f\x75\x0f\xbc\x6c\x3d\x3b\x82\x7e\x39\ +\xe8\x7f\xb9\xda\xb5\x59\xee\x0b\x0f\xbd\x78\x3d\x3f\x0c\xd0\xef\ +\x19\xf5\xbf\x5e\x05\xdb\x6c\x3e\xd1\x12\x76\xd9\xfa\xfc\x7a\x45\ +\xec\x04\x31\xbb\xad\x64\x9b\x67\x8d\xc5\x95\x6c\xf3\xbc\x5d\x52\ +\xc9\x36\x2f\xce\xf7\x54\xc9\x4e\x74\x75\x2c\x67\x17\x3f\x8c\x9a\ +\xf5\xcf\x15\xcc\xb8\x3c\xa7\x29\x4b\xd8\xcc\x83\xcf\xfd\xd5\xb3\ +\xe5\x41\xf7\x58\xcf\x6e\xba\x9e\x2d\x4f\x03\x16\xe3\xe4\x46\xe2\ +\x80\xc4\x07\xfe\xcc\x3e\xbf\xbc\x6e\x59\xc5\xd3\x9e\x9c\x2c\x76\ +\xb4\xa7\x67\x25\x7e\xf6\x7c\x5f\x6e\x36\x31\xe5\x83\xf6\xb1\x95\ +\x12\x98\xaa\xae\xef\x83\xa1\xf9\xf3\x43\xba\xdc\x43\xae\x02\xe9\ +\x76\x09\xa4\x9b\x17\x27\x65\xab\xe0\x8d\x93\xbd\x82\xda\xde\xaa\ +\x83\x46\xf6\x96\xb3\x87\xcc\x3e\x83\x47\x23\xd0\x07\xf7\x7b\x51\ +\xe5\xe8\x9a\x0e\x53\x34\x2e\x79\x9e\x5b\x96\x42\x7f\xea\x61\xf6\ +\x9c\x64\xd1\x96\x1c\x78\xcf\xc9\xc0\x87\x90\xb4\x88\x62\x01\xe3\ +\x54\x92\x01\xe5\x5c\x11\x8a\x39\x74\x17\xf0\x12\x34\xc5\x30\xc4\ +\x54\xda\x8c\xc4\xc4\x9b\x49\x12\x87\x1e\x48\x3e\x32\x7d\xea\x3b\ +\x68\xa4\xa3\xc8\x80\x71\x8e\xe3\xc9\xbf\x82\x85\xe0\x11\x8c\xdb\ +\x82\x88\x10\x9e\x13\x1a\x7a\x36\x5f\xd7\x03\x91\x52\x4e\x87\xba\ +\x02\x23\x17\x0e\xa9\x9e\xa1\x2f\xf6\x21\xbf\xa1\x14\x29\xb7\x2e\ +\x55\x30\x23\xa6\x99\x6a\x24\x94\x62\x58\xbb\x56\xe7\xbc\x82\xa5\ +\x18\x85\x98\x67\x46\x77\xa9\x08\x4f\xd2\x52\xb2\x9d\x19\x5a\x33\ +\xe3\x2a\xec\x72\x9b\x56\x8b\x8f\xdb\xe7\xf6\xe9\xe6\x1d\x61\x41\ +\x24\xa4\xde\xf4\x0e\xb7\xcd\xed\x6f\x6b\x6f\xc5\x27\x2c\x09\xb7\ +\x65\x3e\xc1\x12\x4f\xdc\x02\x5a\xad\xc7\x54\x84\x93\xc2\x02\xbb\ +\x1b\xf7\x49\x00\x4a\xd1\xbe\xb5\x1c\xc6\x21\xd5\xad\xb1\x7c\xa3\ +\xe9\x1e\x36\xad\x51\x61\x97\x3c\xd1\xf3\xc5\x20\x27\xc0\x4e\x8c\ +\x95\xf5\xdc\x6b\xc3\xf5\x49\x1a\xe9\xfa\xc8\x3d\xdb\x06\x72\x37\ +\x1b\xcb\x26\xb0\x4c\xc2\x0c\xe5\x03\x3a\x52\x26\x30\x25\xc8\xc5\ +\xd0\x34\x60\xda\xb7\x11\x09\x63\x14\xc8\x90\x72\x12\x8d\xb4\x2f\ +\x30\x2c\x50\xa9\x40\x3e\x27\xf0\x80\x31\x82\xf5\xc8\xa7\x9e\xfb\ +\x47\x04\xe1\x9d\x0f\x48\xc8\xb0\x09\x15\xaa\x82\x83\xb7\x0d\xc4\ +\xdf\x08\xe9\x42\x56\x92\x9d\x20\xbe\x67\xf8\xe2\x4c\x6f\x2d\xe7\ +\xdb\x94\xf1\x11\xfd\x05\xe8\x3f\xd9\x8a\xdf\x5e\x63\x39\xf4\x9d\ +\x04\xaa\x11\xe9\x36\x58\x2a\xbb\x06\x0a\xd4\xf5\x89\x51\x6b\xba\ +\xfe\x49\xf4\x28\xda\x4a\x86\x65\x03\x36\xa6\x86\x68\x55\x21\x84\ +\x1a\x4d\x6c\x64\x79\xed\xc6\x4f\xbb\x76\xe6\x08\x5b\x2b\xc6\xd3\ +\xcc\xa9\x36\x50\x7d\x34\xb7\x82\xd8\x25\x6b\x55\xab\x7a\x6c\xbc\ +\x3a\x34\xaf\x24\x4c\x4a\x88\x89\xa7\xa6\x8a\xa8\xb8\xab\x25\x75\ +\xcd\x4a\xa3\xc2\xa1\xe8\xb6\xe5\x80\x61\x42\x6f\x72\x7b\xa2\x7c\ +\x1a\x4d\x1d\x3d\x42\xc2\x1b\x11\x9f\x3e\x40\x5a\xa6\x4c\x08\x8f\ +\x89\x6c\xc7\x73\xdf\x01\xba\x6b\x44\xe3\x84\xdf\xae\x32\x95\x31\ +\xe3\x3f\x26\x7c\x8f\x56\x50\x64\x05\x2b\xbc\x4f\xb2\x82\x15\xbc\ +\xda\xb0\x15\x24\xee\xda\x5c\x3d\xb5\x04\xc3\x90\x0d\x67\x73\x16\ +\x93\xde\x7c\xba\x26\xc9\x9b\x44\xdb\x40\xf3\xad\x65\x39\x91\x03\ +\xd9\x6e\x80\xdd\x6a\xb8\x4e\x44\xf8\xdd\xf2\x3c\x82\x7a\x01\xa8\ +\x57\x48\x46\x8a\x56\x67\xab\x6e\xaa\x78\x3f\x74\x79\xec\x01\xe1\ +\x4c\xe9\x4b\xb2\x87\xe5\xd9\xcf\x2c\x84\xf7\x1e\xd3\x73\x86\xc9\ +\xb1\x03\x4c\x47\x65\xb3\x7c\x63\xd2\x99\x80\xbe\x50\xa9\x5f\xf5\ +\xec\x2c\x89\xb0\x95\x00\xc1\x24\x87\x69\x06\xb6\x44\x86\x54\x0b\ +\x3d\x29\x82\xe2\xe5\x86\xc5\xaa\x78\xbc\xb2\xeb\x15\x20\xcf\xa9\ +\x0b\xbe\xe0\x1e\xc8\xfb\x85\xf7\x10\x67\x63\x9f\xf2\x3d\xc7\x83\ +\xb7\x31\xe3\xe6\x6d\xd4\xf7\x1c\x02\x9c\xe1\xad\x14\xc3\x91\x69\ +\xbf\xe1\x62\x70\x0f\x32\x60\x58\x1f\xd9\xf3\x58\x86\x4c\xf9\xd3\ +\x91\x3b\x0b\x72\xdf\x59\x74\xf4\x01\xc5\x3e\x60\xcd\x67\xd3\x4b\ +\x22\xd8\x62\xfc\x58\xc0\x9b\xec\x0c\x63\x84\x0f\x6a\x1f\x4f\x69\ +\x96\xba\x81\x75\xea\xaa\x12\x47\x80\xe1\xd7\x56\x39\x18\x8c\xa9\ +\x26\x41\x8c\xcd\xb9\x8c\x35\xd1\xc9\x1a\xe6\xf1\x48\x13\xde\x9b\ +\x45\xbe\x51\x5f\x70\x8a\x4f\xd2\x26\xb7\xb7\x8c\x3d\x09\xd7\x8f\ +\x5b\xc6\x6e\x5d\x13\x09\xe6\x29\x0b\x9e\x6c\xfc\x55\xed\x69\xea\ +\xb0\xb6\x0b\x7a\xb5\x95\xd4\x7a\x49\x72\x52\x66\xba\x33\x0b\xc7\ +\x2c\xec\x09\x19\xd8\x4d\x2a\xc4\x8b\x4d\x2f\x29\x51\xeb\x0a\xf8\ +\x5d\xb2\x6c\x9d\x70\x00\xb9\x8f\xf5\x6b\x23\xc0\xb7\x3f\xbf\x1c\ +\xd7\xb0\x17\x43\xf6\x62\xbd\xa0\x59\x75\x07\xfe\x3b\x94\x92\x4a\ +\xc0\x00\x61\x22\x94\xa9\xff\xdc\xef\x21\x42\x83\x48\x83\xd0\xfd\ +\x6d\xf4\x2a\x9f\xcf\x71\xa3\xd7\x3a\x1b\xbd\xaa\x6c\x08\x5f\xc3\ +\xf5\x45\xe0\xb2\x9e\xa9\x50\x8c\x17\x0a\x68\x38\x22\x9a\x05\x90\ +\xec\x96\x7d\x60\x30\xb0\x79\x4c\x06\x7b\xe3\xfc\x85\x46\x11\x67\ +\xd8\x8d\xa5\x8d\x8b\x38\x35\xa3\xd6\xf0\x57\x65\x6f\xfd\xef\x65\ +\x1b\x39\xda\x9e\xc9\x17\xef\xc7\xf3\xfe\x25\x3c\x63\xc6\xec\xc7\ +\x19\xc0\xdc\xc7\x46\x1e\x69\xf0\x53\x73\xff\x96\x52\xca\x1b\x7b\ +\xd1\x8c\x56\x34\xf4\x39\x33\x4f\x8d\xbc\x55\x64\xe4\x63\x13\x3f\ +\x2d\x32\xf1\xbc\x81\x17\x08\x97\x37\xee\xd5\xf3\xc0\x99\x41\x33\ +\x23\xd2\x88\x34\xde\x9d\x9e\x7e\x4d\xe8\xaa\x76\x5e\x23\xc9\x67\ +\x81\xae\x6a\xcd\x66\xcd\x94\xf6\x4e\xc4\x86\x01\x8d\x7a\x71\x68\ +\x97\xb7\x3b\xff\xdd\xda\xf3\x1b\x29\x82\x2f\x68\xb7\x77\x22\x96\ +\x2e\xa0\xe4\xd9\x51\xe6\xcb\x50\x68\xb5\x22\x48\x38\x2a\x2b\xc9\ +\x6c\x4b\x22\xe5\xcc\xd7\xa3\x66\x36\xb4\x4d\xbf\x18\x65\x6e\xe9\ +\x50\x63\xa6\xa2\x3a\x5f\x6f\x63\xe5\x8f\xfb\xc7\x8d\xcf\x12\x15\ +\x53\xcc\x64\x0c\x95\x7a\xf2\x45\x29\xf5\xd2\x37\xda\xb6\xad\x56\ +\x03\x79\xc6\xe5\x92\xe4\xb6\xd7\x15\x4a\x33\x2f\xf2\x22\x91\x0c\ +\xb5\xcd\x89\x95\x26\xa5\xc5\x1a\x9a\xf6\xee\x44\x98\x71\x71\x5b\ +\x2c\xcc\xb4\x77\x27\xc2\x64\x62\x57\xb1\x44\xb9\x21\xeb\x8b\x95\ +\x6d\xb0\x5f\x38\x93\xa0\xac\x41\x28\x6b\x3a\xe9\x96\x34\xf3\x54\ +\x08\xcf\x9d\x7a\xcc\x3a\xcf\xfe\x07\xb7\xee\x27\xe9\ \x00\x00\x07\x4c\ \x00\ \x00\x29\xd1\x78\x9c\xed\x59\x5b\x8f\xe2\x46\x16\x7e\xef\x5f\xe1\ @@ -33748,40 +33757,40 @@ qt_resource_struct = "\ \x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x02\x52\xbc\ \x00\x00\x00\xe0\x00\x00\x00\x00\x00\x01\x00\x01\xbc\xaa\ \x00\x00\x02\x3e\x00\x00\x00\x00\x00\x01\x00\x05\x84\xf1\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x07\x5b\xbd\ -\x00\x00\x07\x0a\x00\x01\x00\x00\x00\x01\x00\x07\xc2\xe1\ -\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x01\x00\x07\x6a\x34\ -\x00\x00\x04\x12\x00\x00\x00\x00\x00\x01\x00\x07\x05\x89\ -\x00\x00\x08\x3a\x00\x01\x00\x00\x00\x01\x00\x08\x1a\xb6\ -\x00\x00\x06\xdc\x00\x01\x00\x00\x00\x01\x00\x07\xbc\x0c\ -\x00\x00\x04\x4c\x00\x01\x00\x00\x00\x01\x00\x07\x13\xf8\ -\x00\x00\x04\x9e\x00\x01\x00\x00\x00\x01\x00\x07\x27\x7f\ -\x00\x00\x03\xb6\x00\x01\x00\x00\x00\x01\x00\x06\xea\xe7\ -\x00\x00\x07\xd4\x00\x00\x00\x00\x00\x01\x00\x07\xf7\x72\ -\x00\x00\x06\x62\x00\x01\x00\x00\x00\x01\x00\x07\xa1\x31\ -\x00\x00\x06\xba\x00\x01\x00\x00\x00\x01\x00\x07\xb3\x1e\ -\x00\x00\x05\xdc\x00\x00\x00\x00\x00\x01\x00\x07\x84\x0e\ -\x00\x00\x05\x7c\x00\x01\x00\x00\x00\x01\x00\x07\x62\x6c\ -\x00\x00\x03\x94\x00\x01\x00\x00\x00\x01\x00\x06\xe1\xee\ -\x00\x00\x06\x8e\x00\x01\x00\x00\x00\x01\x00\x07\xa7\xf4\ -\x00\x00\x03\x38\x00\x01\x00\x00\x00\x01\x00\x06\xcf\xcd\ -\x00\x00\x07\xaa\x00\x01\x00\x00\x00\x01\x00\x07\xef\xdd\ -\x00\x00\x04\x7a\x00\x01\x00\x00\x00\x01\x00\x07\x1d\x50\ -\x00\x00\x03\x0e\x00\x01\x00\x00\x00\x01\x00\x06\xc6\x25\ -\x00\x00\x03\x74\x00\x01\x00\x00\x00\x01\x00\x06\xd9\x80\ -\x00\x00\x06\x0c\x00\x01\x00\x00\x00\x01\x00\x07\x93\x7c\ -\x00\x00\x05\x0a\x00\x00\x00\x00\x00\x01\x00\x07\x43\x7a\ -\x00\x00\x06\x3a\x00\x01\x00\x00\x00\x01\x00\x07\x98\xcc\ -\x00\x00\x05\x34\x00\x01\x00\x00\x00\x01\x00\x07\x53\xfb\ -\x00\x00\x07\x34\x00\x00\x00\x00\x00\x01\x00\x07\xcb\x26\ -\x00\x00\x04\xc2\x00\x01\x00\x00\x00\x01\x00\x07\x2c\x96\ -\x00\x00\x07\x7e\x00\x01\x00\x00\x00\x01\x00\x07\xe7\x63\ -\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x07\xdd\x29\ -\x00\x00\x05\xbc\x00\x01\x00\x00\x00\x01\x00\x07\x7d\xf6\ -\x00\x00\x08\x00\x00\x00\x00\x00\x00\x01\x00\x08\x09\x41\ -\x00\x00\x03\xe8\x00\x00\x00\x00\x00\x01\x00\x06\xf3\x29\ -\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x07\x34\x7e\ -\x00\x00\x02\xda\x00\x01\x00\x00\x00\x01\x00\x06\xbe\xd5\ +\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x07\x5c\x57\ +\x00\x00\x07\x0a\x00\x01\x00\x00\x00\x01\x00\x07\xc3\x7b\ +\x00\x00\x05\x9c\x00\x00\x00\x00\x00\x01\x00\x07\x6a\xce\ +\x00\x00\x04\x12\x00\x00\x00\x00\x00\x01\x00\x07\x06\x23\ +\x00\x00\x08\x3a\x00\x01\x00\x00\x00\x01\x00\x08\x1b\x50\ +\x00\x00\x06\xdc\x00\x01\x00\x00\x00\x01\x00\x07\xbc\xa6\ +\x00\x00\x04\x4c\x00\x01\x00\x00\x00\x01\x00\x07\x14\x92\ +\x00\x00\x04\x9e\x00\x01\x00\x00\x00\x01\x00\x07\x28\x19\ +\x00\x00\x03\xb6\x00\x01\x00\x00\x00\x01\x00\x06\xeb\x81\ +\x00\x00\x07\xd4\x00\x00\x00\x00\x00\x01\x00\x07\xf8\x0c\ +\x00\x00\x06\x62\x00\x01\x00\x00\x00\x01\x00\x07\xa1\xcb\ +\x00\x00\x06\xba\x00\x01\x00\x00\x00\x01\x00\x07\xb3\xb8\ +\x00\x00\x05\xdc\x00\x00\x00\x00\x00\x01\x00\x07\x84\xa8\ +\x00\x00\x05\x7c\x00\x01\x00\x00\x00\x01\x00\x07\x63\x06\ +\x00\x00\x03\x94\x00\x01\x00\x00\x00\x01\x00\x06\xe2\x88\ +\x00\x00\x06\x8e\x00\x01\x00\x00\x00\x01\x00\x07\xa8\x8e\ +\x00\x00\x03\x38\x00\x01\x00\x00\x00\x01\x00\x06\xd0\x67\ +\x00\x00\x07\xaa\x00\x01\x00\x00\x00\x01\x00\x07\xf0\x77\ +\x00\x00\x04\x7a\x00\x01\x00\x00\x00\x01\x00\x07\x1d\xea\ +\x00\x00\x03\x0e\x00\x01\x00\x00\x00\x01\x00\x06\xc6\xbf\ +\x00\x00\x03\x74\x00\x01\x00\x00\x00\x01\x00\x06\xda\x1a\ +\x00\x00\x06\x0c\x00\x01\x00\x00\x00\x01\x00\x07\x94\x16\ +\x00\x00\x05\x0a\x00\x00\x00\x00\x00\x01\x00\x07\x44\x14\ +\x00\x00\x06\x3a\x00\x01\x00\x00\x00\x01\x00\x07\x99\x66\ +\x00\x00\x05\x34\x00\x01\x00\x00\x00\x01\x00\x07\x54\x95\ +\x00\x00\x07\x34\x00\x00\x00\x00\x00\x01\x00\x07\xcb\xc0\ +\x00\x00\x04\xc2\x00\x01\x00\x00\x00\x01\x00\x07\x2d\x30\ +\x00\x00\x07\x7e\x00\x01\x00\x00\x00\x01\x00\x07\xe7\xfd\ +\x00\x00\x07\x5e\x00\x01\x00\x00\x00\x01\x00\x07\xdd\xc3\ +\x00\x00\x05\xbc\x00\x01\x00\x00\x00\x01\x00\x07\x7e\x90\ +\x00\x00\x08\x00\x00\x00\x00\x00\x00\x01\x00\x08\x09\xdb\ +\x00\x00\x03\xe8\x00\x00\x00\x00\x00\x01\x00\x06\xf3\xc3\ +\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x07\x35\x18\ +\x00\x00\x02\xda\x00\x01\x00\x00\x00\x01\x00\x06\xbf\x6f\ \x00\x00\x02\xb2\x00\x01\x00\x00\x00\x01\x00\x06\xb6\xfd\ " diff --git a/src/Mod/Arch/Resources/ui/archprefs-base.ui b/src/Mod/Arch/Resources/ui/archprefs-base.ui index 7de2e5bb2..8093699d0 100644 --- a/src/Mod/Arch/Resources/ui/archprefs-base.ui +++ b/src/Mod/Arch/Resources/ui/archprefs-base.ui @@ -23,7 +23,7 @@ - General Arch Settings + Default settings @@ -31,7 +31,7 @@ - Default color for walls + Wall @@ -48,6 +48,59 @@ + + + + Width: + + + + + + + 9999.989999999999782 + + + 200.000000000000000 + + + WallWidth + + + Mod/Arch + + + + + + + Height: + + + + + + + 9999.989999999999782 + + + 3000.000000000000000 + + + WallHeight + + + Mod/Arch + + + + + + + Color: + + + @@ -75,7 +128,7 @@ - Default color for structures + Structure @@ -92,6 +145,82 @@ + + + + Length: + + + + + + + 9999.989999999999782 + + + 100.000000000000000 + + + StructureLength + + + Mod/Arch + + + + + + + Width: + + + + + + + 9999.989999999999782 + + + 100.000000000000000 + + + StructureWidth + + + Mod/Arch + + + + + + + Height: + + + + + + + 9999.989999999999782 + + + 1000.000000000000000 + + + StructureHeight + + + Mod/Arch + + + + + + + Color: + + + @@ -119,7 +248,7 @@ - Default color for windows + Window @@ -136,6 +265,13 @@ + + + + Frame color: + + + @@ -153,30 +289,13 @@ - - - - - + - Default color for window glass + Glass color: - - - - Qt::Horizontal - - - - 40 - 20 - - - -