igarden-commit Mailing List for GardenSketch (Page 75)
Status: Beta
Brought to you by:
jlbedell
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
(77) |
Dec
(122) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(103) |
Feb
(278) |
Mar
(130) |
Apr
(66) |
May
(56) |
Jun
(31) |
Jul
(94) |
Aug
(73) |
Sep
(22) |
Oct
(306) |
Nov
(52) |
Dec
|
| 2008 |
Jan
(27) |
Feb
(90) |
Mar
(218) |
Apr
(145) |
May
(114) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Jeffrey B. <jlb...@us...> - 2006-12-26 01:35:15
|
Update of /cvsroot/igarden/Garden/source/Reports/ReportFormats In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv19272 Modified Files: Tag: Release_branch_v1 ShopList1.html Added Files: ShopList3.html Log Message: Add tall version of shopping list report --- NEW FILE: ShopList3.html --- <head> <title>Shopping List with Large Picture</title> <meta name="Border" content="true"> <meta name="Picture" content="true"> <meta name="Height" content="1.8"> <meta name="Width" content="8.0"> </head> <body> <font size="2"> <table width="520" height="132"><tr height="132"> <td width="300"> <bold>Name:</bold>#1S<br> <bold>Vendor: </bold>#2S<br> <bold>Where: </bold>#3S<br> </td> <td width="160"> <bold>Amount: </bold>#4S<br> </td> <td width="80"> <img src="#5S" height="120" width="120"><br> </td></tr> </table> </body> Index: ShopList1.html =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/ReportFormats/Attic/ShopList1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** ShopList1.html 19 Dec 2006 12:46:55 -0000 1.1.2.2 --- ShopList1.html 26 Dec 2006 01:35:13 -0000 1.1.2.3 *************** *** 19,20 **** --- 19,21 ---- </table> </body> + http://static.flickr.com/111/305099509_53d795ffaf.jpg?v=0 \ No newline at end of file |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:57:14
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6163 Modified Files: Tag: Release_branch_v1 RGHypertext.cpp Log Message: Add new shopping list report with plant picture Index: RGHypertext.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGHypertext.cpp,v retrieving revision 1.24.2.1 retrieving revision 1.24.2.2 diff -C2 -d -r1.24.2.1 -r1.24.2.2 *** RGHypertext.cpp 29 Oct 2006 03:31:56 -0000 1.24.2.1 --- RGHypertext.cpp 19 Dec 2006 12:57:13 -0000 1.24.2.2 *************** *** 327,337 **** tableInfo_t *curTable; - if(!_displayText) - return; - if(len == 0) - return; - if(len <= static_cast<long>(strspn(str, " \t\n"))) - return; - imageIndex = MatchingImage(static_cast<long>(_y), static_cast<long>(_lineHeight)); if(imageIndex >= 0) --- 327,330 ---- *************** *** 363,385 **** if(_doDraw) { imageInfo = _images[imageIndex]; ! imageRect.top = static_cast<short>(_y-_scrollY); ! imageRect.left = _imageLeft-_scrollX; ! imageRect.bottom = imageRect.top + imageInfo.height; ! imageRect.right = imageRect.left + imageInfo.width; ! ! dr.top = imageRect.top; ! dr.left = imageRect.left; ! dr.bottom = imageRect.bottom; ! dr.right = imageRect.right; ! if(PointWithinBounds(imageRect.right, imageRect.bottom)) { ! gw = RGCompression::DecompressFile(imageInfo.spec, imageInfo.width, imageInfo.height); ! if(gw != NULL) { SetForeColor(KXGColorBlack); ! CopyImage(gw, imageRect); ! delete gw; } } } --- 356,384 ---- if(_doDraw) { + long actualHeight, actualWidth; + imageInfo = _images[imageIndex]; ! gw = RGCompression::DecompressFile(imageInfo.spec, 0, 0, &actualHeight, &actualWidth); ! if(gw != NULL) { ! double ratio; ! ! ratio = (double)actualWidth / actualHeight; ! imageRect.top = static_cast<short>(_y-_scrollY); ! imageRect.left = _imageLeft-_scrollX; ! imageRect.bottom = imageRect.top + imageInfo.height; ! imageRect.right = imageRect.left + imageInfo.height*ratio; ! ! dr.top = imageRect.top; ! dr.left = imageRect.left; ! dr.bottom = imageRect.bottom; ! dr.right = imageRect.right; ! if(PointWithinBounds(imageRect.right, imageRect.bottom)) { + SetForeColor(KXGColorBlack); ! gw->CopyImage(imageRect); } + delete gw; } } *************** *** 402,405 **** --- 401,411 ---- } + if(!_displayText) + return; + if(len == 0) + return; + if(len <= static_cast<long>(strspn(str, " \t\n"))) + return; + info = CurrentFontInfo(); prefixSpace = false; *************** *** 750,754 **** CGWorld *gw; ! if(!_doDraw && !_loadedImageData && GetNamedArgument("src", filename)) { if(CIstrncmp(filename.c_str(), kResourceFilePrefix, strlen(kResourceFilePrefix)) == 0) --- 756,760 ---- CGWorld *gw; ! if(/* !_doDraw && */ !_loadedImageData && GetNamedArgument("src", filename)) { if(CIstrncmp(filename.c_str(), kResourceFilePrefix, strlen(kResourceFilePrefix)) == 0) |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:56:31
|
Update of /cvsroot/igarden/Garden/source/resources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5785 Modified Files: Tag: Release_branch_v1 Palettes.xml Log Message: Add plants to Europe and SE_US regions Index: Palettes.xml =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Attic/Palettes.xml,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** Palettes.xml 13 Dec 2006 12:11:30 -0000 1.1.2.2 --- Palettes.xml 19 Dec 2006 12:56:28 -0000 1.1.2.3 *************** *** 4,8 **** <PaletteGroup name="Common Plants"> <Palette name="Perrennials"> - <item>Echinacea purpurea</item> <item>Veronica austriaca</item> <item>Astilbe chinensis</item> --- 4,7 ---- *************** *** 80,88 **** <PaletteGroup name="Common Plants"> <Palette name="Perrennials"> <item>Hosta</item> </Palette> </PaletteGroup> </Region> ! <!-- Top 10 shade (about.com) --- 79,115 ---- <PaletteGroup name="Common Plants"> <Palette name="Perrennials"> + <item>Echinacea purpurea</item> <item>Hosta</item> </Palette> </PaletteGroup> </Region> ! <Region name="US_SE"> ! <PaletteGroup name="Common Plants"> ! <Palette name="Perrennials"> ! <item>Asparagus densiflorus</item> ! <item>agapanthus orientalis</item> ! <item>dietes vegata</item> ! <item>Ophiopogon Japonicus</item> ! </Palette> ! <Palette name="Trees and Shrubs"> ! <item>Bougainvillea Glabra</item> ! <item>Pittosporum tobira</item> ! <item>Plumbago auriculata</item> ! </Palette> ! </PaletteGroup> ! </Region> ! <Region name="Europe"> ! <PaletteGroup name="Common Plants"> ! <Palette name="Perrennials"> ! <item>Hosta montana</item> ! <item>Echinacea purpurea</item> ! <item>Sedum Telephium</item> ! </Palette> ! <Palette name="Trees and Shrubs"> ! <item>Taxus baccata</item> ! <item>Buxus Sempervirens</item> ! </Palette> ! </PaletteGroup> ! </Region> <!-- Top 10 shade (about.com) |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:56:03
|
Update of /cvsroot/igarden/Garden/source/Document In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5408 Modified Files: Tag: Release_branch_v1 CGardenForm.cp Log Message: Fix an XML load order issue Index: CGardenForm.cp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Document/CGardenForm.cp,v retrieving revision 1.36.2.2 retrieving revision 1.36.2.3 diff -C2 -d -r1.36.2.2 -r1.36.2.3 *** CGardenForm.cp 13 Dec 2006 13:55:36 -0000 1.36.2.2 --- CGardenForm.cp 19 Dec 2006 12:56:01 -0000 1.36.2.3 *************** *** 1256,1260 **** if(propID == kRegionSiteData) { ! layout = GetLayout(); if(prefs != NULL && layout != NULL) { --- 1256,1260 ---- if(propID == kRegionSiteData) { ! layout = GetFile()->GetLayout(); if(prefs != NULL && layout != NULL) { |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:55:21
|
Update of /cvsroot/igarden/Garden/Macintosh/Garden.xcodeproj In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5148 Modified Files: Tag: Release_branch_v1 project.pbxproj Log Message: Add new shopping list report with plant picture Index: project.pbxproj =================================================================== RCS file: /cvsroot/igarden/Garden/Macintosh/Garden.xcodeproj/project.pbxproj,v retrieving revision 1.58.2.12 retrieving revision 1.58.2.13 diff -C2 -d -r1.58.2.12 -r1.58.2.13 *** project.pbxproj 13 Dec 2006 12:14:29 -0000 1.58.2.12 --- project.pbxproj 19 Dec 2006 12:55:13 -0000 1.58.2.13 *************** *** 259,263 **** 497944C20B06D3360011D499 /* PurchaseReport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 497944C00B06D3360011D499 /* PurchaseReport.cpp */; }; 497944C30B06D3360011D499 /* PurchaseReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 497944C10B06D3360011D499 /* PurchaseReport.h */; }; ! 497946A70B08AA370011D499 /* ShopList1.html in Resources */ = {isa = PBXBuildFile; fileRef = 497946A60B08AA370011D499 /* ShopList1.html */; }; 4979A82608A4D51B00AB8671 /* PlanCanvasView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4979A82408A4D51B00AB8671 /* PlanCanvasView.h */; }; 4979A82708A4D51B00AB8671 /* PlanCanvasView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4979A82508A4D51B00AB8671 /* PlanCanvasView.cpp */; }; --- 259,263 ---- 497944C20B06D3360011D499 /* PurchaseReport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 497944C00B06D3360011D499 /* PurchaseReport.cpp */; }; 497944C30B06D3360011D499 /* PurchaseReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 497944C10B06D3360011D499 /* PurchaseReport.h */; }; ! 497946A70B08AA370011D499 /* ShopList2.html in Resources */ = {isa = PBXBuildFile; fileRef = 497946A60B08AA370011D499 /* ShopList2.html */; }; 4979A82608A4D51B00AB8671 /* PlanCanvasView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4979A82408A4D51B00AB8671 /* PlanCanvasView.h */; }; 4979A82708A4D51B00AB8671 /* PlanCanvasView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4979A82508A4D51B00AB8671 /* PlanCanvasView.cpp */; }; *************** *** 277,280 **** --- 277,281 ---- 498CCD0406F32A4400EFAB20 /* RGXMLWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 498CCD0206F32A4400EFAB20 /* RGXMLWriter.cpp */; }; 49969B1D08D1A16600851F2A /* Walk3.svg in Resources */ = {isa = PBXBuildFile; fileRef = 49969B1C08D1A16600851F2A /* Walk3.svg */; }; + 49980BB20B361FDA00A2A84F /* ShopList1.html in Resources */ = {isa = PBXBuildFile; fileRef = 49980BB10B361FDA00A2A84F /* ShopList1.html */; }; 49996190094F93BE001EAD0B /* White.png in Resources */ = {isa = PBXBuildFile; fileRef = 49B73E5F064B0C7800C766D2 /* White.png */; }; 49996191094F93BF001EAD0B /* Backgrounds.xml in Resources */ = {isa = PBXBuildFile; fileRef = 492B2873064B048600EB240B /* Backgrounds.xml */; }; *************** *** 971,975 **** 497944C00B06D3360011D499 /* PurchaseReport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PurchaseReport.cpp; path = Reports/PurchaseReport.cpp; sourceTree = "<group>"; }; 497944C10B06D3360011D499 /* PurchaseReport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PurchaseReport.h; path = Reports/PurchaseReport.h; sourceTree = "<group>"; }; ! 497946A60B08AA370011D499 /* ShopList1.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; name = ShopList1.html; path = Reports/ReportFormats/ShopList1.html; sourceTree = "<group>"; }; 4979A82408A4D51B00AB8671 /* PlanCanvasView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PlanCanvasView.h; path = PlanTool/PlanCanvasView.h; sourceTree = "<group>"; }; 4979A82508A4D51B00AB8671 /* PlanCanvasView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PlanCanvasView.cpp; path = PlanTool/PlanCanvasView.cpp; sourceTree = "<group>"; }; --- 972,976 ---- 497944C00B06D3360011D499 /* PurchaseReport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PurchaseReport.cpp; path = Reports/PurchaseReport.cpp; sourceTree = "<group>"; }; 497944C10B06D3360011D499 /* PurchaseReport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PurchaseReport.h; path = Reports/PurchaseReport.h; sourceTree = "<group>"; }; ! 497946A60B08AA370011D499 /* ShopList2.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; name = ShopList2.html; path = Reports/ReportFormats/ShopList2.html; sourceTree = "<group>"; }; 4979A82408A4D51B00AB8671 /* PlanCanvasView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PlanCanvasView.h; path = PlanTool/PlanCanvasView.h; sourceTree = "<group>"; }; 4979A82508A4D51B00AB8671 /* PlanCanvasView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PlanCanvasView.cpp; path = PlanTool/PlanCanvasView.cpp; sourceTree = "<group>"; }; *************** *** 993,996 **** --- 994,998 ---- 4997D6A407B85C9B00A74415 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = English; path = ../source/resources/English.lproj/TitleFull.html; sourceTree = SOURCE_ROOT; }; 4997D6B007B85D5000A74415 /* TitleNameAddress.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = TitleNameAddress.html; path = ../source/resources/English.lproj/TitleNameAddress.html; sourceTree = SOURCE_ROOT; }; + 49980BB10B361FDA00A2A84F /* ShopList1.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; name = ShopList1.html; path = Reports/ReportFormats/ShopList1.html; sourceTree = "<group>"; }; 4999706109550A13001EAD0B /* PictureSelectDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PictureSelectDialog.h; path = ../../CommonSource/YAAFExtensions/PictureSelectDialog.h; sourceTree = SOURCE_ROOT; }; 4999706209550A13001EAD0B /* PictureSelectDialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PictureSelectDialog.cpp; path = ../../CommonSource/YAAFExtensions/PictureSelectDialog.cpp; sourceTree = SOURCE_ROOT; }; *************** *** 1477,1482 **** children = ( 49040A380735C7F6009B97F1 /* Label_Borders1.html */, - 497946A60B08AA370011D499 /* ShopList1.html */, 49040A390735C7F6009B97F1 /* Label_Borders2.html */, ); name = "New Group"; --- 1479,1485 ---- children = ( 49040A380735C7F6009B97F1 /* Label_Borders1.html */, 49040A390735C7F6009B97F1 /* Label_Borders2.html */, + 49980BB10B361FDA00A2A84F /* ShopList1.html */, + 497946A60B08AA370011D499 /* ShopList2.html */, ); name = "New Group"; *************** *** 1813,1820 **** 49534EDA0649C20400DB7E02 /* CDatabaseAction.cpp */, 49074AA706488F4300C334E8 /* CDatabaseAction.h */, 49534EDB0649C20400DB7E02 /* CDatabasePanel.cp */, 49074AA906488F4300C334E8 /* CDatabasePanel.h */, 49534EDC0649C20500DB7E02 /* CDBComparator.cp */, - 49074AAB06488F4300C334E8 /* CDBComparator.h */, 49534EE30649C22E00DB7E02 /* CGardenForm.cp */, 49074AAF06488F4300C334E8 /* CGardenForm.h */, --- 1816,1823 ---- 49534EDA0649C20400DB7E02 /* CDatabaseAction.cpp */, 49074AA706488F4300C334E8 /* CDatabaseAction.h */, + 49074AAB06488F4300C334E8 /* CDBComparator.h */, 49534EDB0649C20400DB7E02 /* CDatabasePanel.cp */, 49074AA906488F4300C334E8 /* CDatabasePanel.h */, 49534EDC0649C20500DB7E02 /* CDBComparator.cp */, 49534EE30649C22E00DB7E02 /* CGardenForm.cp */, 49074AAF06488F4300C334E8 /* CGardenForm.h */, *************** *** 2613,2618 **** 497940880B0620C60011D499 /* KidneyPool.svg in Resources */, 497940890B0620C60011D499 /* Sundial.svg in Resources */, ! 497946A70B08AA370011D499 /* ShopList1.html in Resources */, 49D4BAE60B0BFD5D00E74E5A /* Palettes.xml in Resources */, ); runOnlyForDeploymentPostprocessing = 0; --- 2616,2622 ---- 497940880B0620C60011D499 /* KidneyPool.svg in Resources */, 497940890B0620C60011D499 /* Sundial.svg in Resources */, ! 497946A70B08AA370011D499 /* ShopList2.html in Resources */, 49D4BAE60B0BFD5D00E74E5A /* Palettes.xml in Resources */, + 49980BB20B361FDA00A2A84F /* ShopList1.html in Resources */, ); runOnlyForDeploymentPostprocessing = 0; |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:54:58
|
Update of /cvsroot/igarden/Garden/source/resources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4997 Modified Files: Tag: Release_branch_v1 Garden2.rsrc Log Message: Add new shopping list report with plant picture Index: Garden2.rsrc =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Garden2.rsrc,v retrieving revision 1.33.2.4 retrieving revision 1.33.2.5 diff -C2 -d -r1.33.2.4 -r1.33.2.5 Binary files /tmp/cvshFMaMO and /tmp/cvsKDeKk4 differ |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:54:18
|
Update of /cvsroot/igarden/Garden/source In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4973 Modified Files: Tag: Release_branch_v1 GardenApp.cp Log Message: Re-enable plant picture display (was disabled by speed improvements to SourceMaterialFile) Index: GardenApp.cp =================================================================== RCS file: /cvsroot/igarden/Garden/source/GardenApp.cp,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -d -r1.20 -r1.20.2.1 *** GardenApp.cp 23 Sep 2006 17:06:55 -0000 1.20 --- GardenApp.cp 19 Dec 2006 12:54:17 -0000 1.20.2.1 *************** *** 628,632 **** if(dialog.Open("Import Materials (XML)", spec)) { ! SourceMaterialFile::GetSourceDatabase()->ImportFromXML(spec); } break; --- 628,635 ---- if(dialog.Open("Import Materials (XML)", spec)) { ! RGDateTime currentDate; ! ! currentDate.Now(); ! SourceMaterialFile::GetSourceDatabase()->ImportFromXML(spec, currentDate); } break; |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:53:09
|
Update of /cvsroot/igarden/Garden/source/Plugins In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4458 Modified Files: Tag: Release_branch_v1 AppCallbackInterface.cpp Log Message: Re-enable plant picture display (was disabled by speed improvements to SourceMaterialFile) Index: AppCallbackInterface.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Plugins/AppCallbackInterface.cpp,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** AppCallbackInterface.cpp 8 Feb 2006 01:47:15 -0000 1.10 --- AppCallbackInterface.cpp 19 Dec 2006 12:53:07 -0000 1.10.2.1 *************** *** 125,129 **** XGXMLObject *parseTree; SourceMaterialFile *sources = SourceMaterialFile::GetSourceDatabase(); ! XGXMLDOMParser parser; stream->SetFilePos(0); --- 125,132 ---- XGXMLObject *parseTree; SourceMaterialFile *sources = SourceMaterialFile::GetSourceDatabase(); ! RGDateTime currentDate; ! ! currentDate.Now(); ! XGXMLDOMParser parser; stream->SetFilePos(0); *************** *** 142,146 **** while(parseTree != NULL) { ! sources->ImportSupplierFromXMLObject(parseTree, kMergeNonSearch); parseTree = parseTree->GetSibling(); } --- 145,149 ---- while(parseTree != NULL) { ! sources->ImportSupplierFromXMLObject(parseTree, kMergeNonSearch, currentDate); parseTree = parseTree->GetSibling(); } *************** *** 152,155 **** --- 155,161 ---- XGXMLObject *parseTree; SourceMaterialFile *sources = SourceMaterialFile::GetSourceDatabase(); + RGDateTime currentDate; + + currentDate.Now(); XGXMLDOMParser parser; *************** *** 169,173 **** while(parseTree != NULL) { ! sources->ImportMaterialFromXMLObject(parseTree, kMergeNonSearch); parseTree = parseTree->GetSibling(); } --- 175,179 ---- while(parseTree != NULL) { ! sources->ImportMaterialFromXMLObject(parseTree, kMergeNonSearch, currentDate); parseTree = parseTree->GetSibling(); } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:52:25
|
Update of /cvsroot/igarden/Garden/source/SourceMaterialDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4135 Modified Files: Tag: Release_branch_v1 SourceMaterialFile.cpp SourceMaterialFile.h Log Message: Re-enable plant picture display (was disabled by speed improvements to SourceMaterialFile) Index: SourceMaterialFile.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/SourceMaterialDB/SourceMaterialFile.h,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -C2 -d -r1.9.2.1 -r1.9.2.2 *** SourceMaterialFile.h 12 Dec 2006 00:56:09 -0000 1.9.2.1 --- SourceMaterialFile.h 19 Dec 2006 12:52:23 -0000 1.9.2.2 *************** *** 55,61 **** InfoSupplier* CreateInfoSupplier(const XGUUID& id); c4_Storage* GetStorage(); ! ErrorCode ImportFromXML(XGFileSpecifier &spec); ! void ImportMaterialFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType); ! void ImportSupplierFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType); ErrorCode ExportToXML(XGFileSpecifier &spec); static SourceMaterialFile* GetSourceDatabase(); --- 55,61 ---- InfoSupplier* CreateInfoSupplier(const XGUUID& id); c4_Storage* GetStorage(); ! ErrorCode ImportFromXML(XGFileSpecifier &spec, RGDateTime &xmlModDate); ! void ImportMaterialFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType, RGDateTime &xmlModDate); ! void ImportSupplierFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType, RGDateTime &xmlModDate); ErrorCode ExportToXML(XGFileSpecifier &spec); static SourceMaterialFile* GetSourceDatabase(); Index: SourceMaterialFile.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/SourceMaterialDB/SourceMaterialFile.cpp,v retrieving revision 1.22.2.2 retrieving revision 1.22.2.3 diff -C2 -d -r1.22.2.2 -r1.22.2.3 *** SourceMaterialFile.cpp 12 Dec 2006 00:55:54 -0000 1.22.2.2 --- SourceMaterialFile.cpp 19 Dec 2006 12:52:23 -0000 1.22.2.3 *************** *** 79,83 **** #endif ! ec = gSourceDB->ImportFromXML(spec); if(ec != KYAAFNoError) (void)Caution(ec, sourceStartFile); --- 79,83 ---- #endif ! ec = gSourceDB->ImportFromXML(spec, _fileModDate); if(ec != KYAAFNoError) (void)Caution(ec, sourceStartFile); *************** *** 458,462 **** } ! ErrorCode SourceMaterialFile::ImportFromXML(XGFileSpecifier &spec) { XGFile inFile; --- 458,462 ---- } ! ErrorCode SourceMaterialFile::ImportFromXML(XGFileSpecifier &spec, RGDateTime &xmlModDate) { XGFile inFile; *************** *** 499,503 **** while(sub2 != NULL) { ! ImportMaterialFromXMLObject(sub2, kMergeNonSearch); sub2 = sub2->GetSibling(); --- 499,503 ---- while(sub2 != NULL) { ! ImportMaterialFromXMLObject(sub2, kMergeNonSearch, xmlModDate); sub2 = sub2->GetSibling(); *************** *** 511,515 **** while(sub4 != NULL) { ! ImportSupplierFromXMLObject(sub4, kMergeStd); sub4 = sub4->GetSibling(); --- 511,515 ---- while(sub4 != NULL) { ! ImportSupplierFromXMLObject(sub4, kMergeStd, xmlModDate); sub4 = sub4->GetSibling(); *************** *** 548,552 **** } ! void SourceMaterialFile::ImportSupplierFromXMLObject(XGXMLObject *sub4, mergeType_t mergeType) { XGXMLData *data; --- 548,552 ---- } ! void SourceMaterialFile::ImportSupplierFromXMLObject(XGXMLObject *sub4, mergeType_t mergeType, RGDateTime &xmlModDate) { XGXMLData *data; *************** *** 556,560 **** xmlReadContext_t context; ! context.modDate = _fileModDate; data = dynamic_cast<XGXMLData*>(sub4); val = data->GetArgValue("UID"); --- 556,560 ---- xmlReadContext_t context; ! context.modDate = xmlModDate; data = dynamic_cast<XGXMLData*>(sub4); val = data->GetArgValue("UID"); *************** *** 569,573 **** } ! void SourceMaterialFile::ImportMaterialFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType) { const char *val; --- 569,573 ---- } ! void SourceMaterialFile::ImportMaterialFromXMLObject(XGXMLObject *sub2, mergeType_t mergeType, RGDateTime &xmlModDate) { const char *val; *************** *** 585,599 **** data2 = dynamic_cast<XGXMLData*>(sub2); ! context.modDate = _fileModDate; mat = FindMaterialFromXMLNames(sub2, false); if(mat != NULL) { refFound = mat->GetLatestDatedReference(kFieldSuppliers, date); ! if(!refFound || date.GetDouble() < _fileModDate.GetDouble()) { #if TEST_LOAD_BEHAVIOR String fileDateStr, objDateStr; ! _fileModDate.LongDateStr(shortDate, fileDateStr); date.LongDateStr(shortDate, objDateStr); --- 585,599 ---- data2 = dynamic_cast<XGXMLData*>(sub2); ! context.modDate = xmlModDate; mat = FindMaterialFromXMLNames(sub2, false); if(mat != NULL) { refFound = mat->GetLatestDatedReference(kFieldSuppliers, date); ! if(!refFound || date.GetDouble() < xmlModDate.GetDouble()) { #if TEST_LOAD_BEHAVIOR String fileDateStr, objDateStr; ! xmlModDate.LongDateStr(shortDate, fileDateStr); date.LongDateStr(shortDate, objDateStr); *************** *** 626,630 **** if(mat->CanAttributesBeMerged(sub2)) { ! mat->GetSpeciesObj()->MergeAttributesFrom(sub2, _fileModDate, mergeType); done = true; --- 626,630 ---- if(mat->CanAttributesBeMerged(sub2)) { ! mat->GetSpeciesObj()->MergeAttributesFrom(sub2, xmlModDate, mergeType); done = true; *************** *** 645,649 **** InfoSupplier *sup; XGUUID uid; ! GardenDate lastModDate(_fileModDate); mat = new Material(this); --- 645,649 ---- InfoSupplier *sup; XGUUID uid; ! GardenDate lastModDate(xmlModDate); mat = new Material(this); *************** *** 692,701 **** { variant->GetLatestDatedReference(kFieldSuppliers, date); ! if(date.GetDouble() < _fileModDate.GetDouble()) { #if TEST_LOAD_BEHAVIOR String fileDateStr, objDateStr; ! _fileModDate.LongDateStr(shortDate, fileDateStr); date.LongDateStr(shortDate, objDateStr); --- 692,701 ---- { variant->GetLatestDatedReference(kFieldSuppliers, date); ! if(date.GetDouble() < xmlModDate.GetDouble()) { #if TEST_LOAD_BEHAVIOR String fileDateStr, objDateStr; ! xmlModDate.LongDateStr(shortDate, fileDateStr); date.LongDateStr(shortDate, objDateStr); *************** *** 707,711 **** if(variant->CanAttributesBeMerged(sub3)) { ! variant->MergeAttributesFrom(sub3, _fileModDate, mergeType); done = true; } --- 707,711 ---- if(variant->CanAttributesBeMerged(sub3)) { ! variant->MergeAttributesFrom(sub3, xmlModDate, mergeType); done = true; } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:51:24
|
Update of /cvsroot/igarden/Garden/source/PlanTool In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3724 Modified Files: Tag: Release_branch_v1 ActiveMaterial.cpp Log Message: Re-enable plant picture display (was disabled by speed improvements to SourceMaterialFile) Index: ActiveMaterial.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/PlanTool/ActiveMaterial.cpp,v retrieving revision 1.45.2.7 retrieving revision 1.45.2.8 diff -C2 -d -r1.45.2.7 -r1.45.2.8 *** ActiveMaterial.cpp 2 Dec 2006 05:30:55 -0000 1.45.2.7 --- ActiveMaterial.cpp 19 Dec 2006 12:51:22 -0000 1.45.2.8 *************** *** 43,46 **** --- 43,47 ---- #include "PlanPaletteView.h" #include "CPlanPanel.h" + #include "SourceQuery.h" using yaaf::XGBroadcast; *************** *** 369,372 **** --- 370,376 ---- if(material != NULL) { + String fullName = material->GetFullCanonicalName(); + SourceQuery query(SourceMaterialFile::GetSourceDatabase()); + if(material->GetPictureFileSpec(fileSpec)) material->GetPictureRelativePath(fileName); *************** *** 374,378 **** { material->GetString(kMaterialPlanDrawing, fileName); ! if(fileName.Length() != 0) isSVG = true; } --- 378,387 ---- { material->GetString(kMaterialPlanDrawing, fileName); ! if(fileName.Length() == 0) ! { ! query.FindPictures(fullName, kOnePicture); ! material->GetPictureRelativePath(fileName); ! } ! else isSVG = true; } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:49:59
|
Update of /cvsroot/igarden/Garden/source/Reports In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2918 Modified Files: Tag: Release_branch_v1 PurchaseReport.h PurchaseReport.cpp RGReport.cpp Log Message: Add new shopping list report with plant picture Index: PurchaseReport.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/Attic/PurchaseReport.cpp,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** PurchaseReport.cpp 14 Dec 2006 03:05:28 -0000 1.1.2.3 --- PurchaseReport.cpp 19 Dec 2006 12:49:57 -0000 1.1.2.4 *************** *** 81,87 **** double _volume; measureUnits_t _units; SiftedData(); ! SiftedData(String& name, StringSet &suppliers, String& locations, long count); SiftedData(String& name, StringSet &suppliers, String& locations, double volume, measureUnits_t units); void AddSuppliers(StringSet &suppliers); --- 81,88 ---- double _volume; measureUnits_t _units; + String _picture; SiftedData(); ! SiftedData(String& name, StringSet &suppliers, String& locations, long count, String &picture); SiftedData(String& name, StringSet &suppliers, String& locations, double volume, measureUnits_t units); void AddSuppliers(StringSet &suppliers); *************** *** 447,451 **** format = _templates[_currentItem]; ! cellSize = InchesToPixels(8, 1); layout = _doc->GetLayout(); --- 448,452 ---- format = _templates[_currentItem]; ! cellSize = InchesToPixels(format.width, format.height); layout = _doc->GetLayout(); *************** *** 542,545 **** --- 543,547 ---- sint32 numPurchased, numUnpurchased; InstanceData *instance; + String picturePath; instance = ref->GetInstanceAttributes(false); *************** *** 552,560 **** numPurchased = 0; numUnpurchased = ref->GetNumItems() - numPurchased; if(numUnpurchased > 0) { siftedList_t::iterator cur; ! SiftedData data(name, supplierSet, plotName, numUnpurchased); cur = siftedList.find(data); --- 554,564 ---- numPurchased = 0; + mat->GetPictureRelativePath(picturePath); + numUnpurchased = ref->GetNumItems() - numPurchased; if(numUnpurchased > 0) { siftedList_t::iterator cur; ! SiftedData data(name, supplierSet, plotName, numUnpurchased, picturePath); cur = siftedList.find(data); *************** *** 643,647 **** sprintf(numBuf, "%ld", (*iter).second._count); FormatBuffer(output, format.vfmt, namePtr, supplierNames.c_str(), ! plotNames.c_str(), numBuf, ""); cell = new RGReportHypertextCell(this, _ht, cellSize, output); --- 647,651 ---- sprintf(numBuf, "%ld", (*iter).second._count); FormatBuffer(output, format.vfmt, namePtr, supplierNames.c_str(), ! plotNames.c_str(), numBuf, (*iter).second._picture.c_str()); cell = new RGReportHypertextCell(this, _ht, cellSize, output); *************** *** 686,690 **** { long fileLen; ! char *fileData; ShopTemplate_t templ; String str; --- 690,694 ---- { long fileLen; ! char *fileData, *tmp; ShopTemplate_t templ; String str; *************** *** 705,708 **** --- 709,717 ---- templ.hasBorder = (CIstrcmp(str.c_str(), "true") == 0); /****/ + ExtractTag(fileData, "Height", str); + templ.height = strtod(str.c_str(), &tmp); + /****/ + ExtractTag(fileData, "Width", str); + templ.width = strtod(str.c_str(), &tmp); templ.vfmt = fileData; _templates.push_back(templ); *************** *** 796,800 **** /// SiftedData::SiftedData // ! SiftedData::SiftedData(String& name, StringSet &suppliers, String& locations, long count) { _name = name; --- 805,809 ---- /// SiftedData::SiftedData // ! SiftedData::SiftedData(String& name, StringSet &suppliers, String& locations, long count, String &picture) { _name = name; *************** *** 804,807 **** --- 813,817 ---- _volume = 0.0; _units = kMetricUnits; + _picture = picture; } Index: PurchaseReport.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/Attic/PurchaseReport.h,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** PurchaseReport.h 14 Dec 2006 03:05:28 -0000 1.1.2.2 --- PurchaseReport.h 19 Dec 2006 12:49:57 -0000 1.1.2.3 *************** *** 30,33 **** --- 30,35 ---- { String *name; + double width; + double height; bool hasBorder; bool hasPicture; Index: RGReport.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/RGReport.cpp,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -C2 -d -r1.7.2.1 -r1.7.2.2 *** RGReport.cpp 17 Nov 2006 13:24:53 -0000 1.7.2.1 --- RGReport.cpp 19 Dec 2006 12:49:57 -0000 1.7.2.2 *************** *** 216,219 **** --- 216,221 ---- XGDraw draw(&GPrinter); Point res = GPrinter.Resolution(); + draw.SetForeColor(RGB(0,0,0)); + draw.SetBackColor(RGB(0xFF,0xFF,0xFF)); DrawPage(draw, NULL, n); |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-19 12:46:58
|
Update of /cvsroot/igarden/Garden/source/Reports/ReportFormats In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv1677 Modified Files: Tag: Release_branch_v1 ShopList1.html Added Files: ShopList2.html Log Message: Add new shopping list report with plant picture Index: ShopList1.html =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/ReportFormats/Attic/ShopList1.html,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** ShopList1.html 15 Nov 2006 13:08:03 -0000 1.1.2.1 --- ShopList1.html 19 Dec 2006 12:46:55 -0000 1.1.2.2 *************** *** 3,6 **** --- 3,8 ---- <meta name="Border" content="true"> <meta name="Picture" content="false"> + <meta name="Height" content="0.8"> + <meta name="Width" content="8.0"> </head> <body> --- NEW FILE: ShopList2.html --- <head> <title>Shopping List with Picture</title> <meta name="Border" content="true"> <meta name="Picture" content="true"> <meta name="Height" content="1.2"> <meta name="Width" content="8.0"> </head> <body> <font size="2"> <table width="520" height="92"><tr height="92"> <td width="300"> <bold>Name:</bold>#1S<br> <bold>Vendor: </bold>#2S<br> <bold>Where: </bold>#3S<br> </td> <td width="160"> <bold>Amount: </bold>#4S<br> </td> <td width="80"> <img src="#5S" height="80" width="80"><br> </td></tr> </table> </body> |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-14 03:07:49
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21185 Modified Files: Tag: Release_branch_v1 RGTableCell.cpp Log Message: Mark cell value as changed (and send message) if is was fixing an error, and the cell is now valid. Index: RGTableCell.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGTableCell.cpp,v retrieving revision 1.46 retrieving revision 1.46.2.1 diff -C2 -d -r1.46 -r1.46.2.1 *** RGTableCell.cpp 17 Jun 2006 02:36:32 -0000 1.46 --- RGTableCell.cpp 14 Dec 2006 03:07:48 -0000 1.46.2.1 *************** *** 662,672 **** if(next != ptr) { changed = (val != GetInteger()); SetInteger(val); if(*next != '\0') InputError("Trailing non-digit characters removed from an integer field."); ! else { ! valid = true; } } --- 662,677 ---- if(next != ptr) { + bool wasError = _err; changed = (val != GetInteger()); SetInteger(val); if(*next != '\0') + { InputError("Trailing non-digit characters removed from an integer field."); ! } ! ! valid = true; ! if(wasError) { ! changed = true; } } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-14 03:06:49
|
Update of /cvsroot/igarden/CommonSource/Utilities In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv20799 Modified Files: Tag: Release_branch_v1 RGString.cpp Log Message: Fix += operator when adding a NULL string Index: RGString.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/Utilities/RGString.cpp,v retrieving revision 1.12 retrieving revision 1.12.2.1 diff -C2 -d -r1.12 -r1.12.2.1 *** RGString.cpp 17 May 2006 00:03:55 -0000 1.12 --- RGString.cpp 14 Dec 2006 03:06:48 -0000 1.12.2.1 *************** *** 236,242 **** oldSptr = _sptr; ! if(oldSptr != NULL) { ! if(s._sptr != NULL) { _sptr = new wchar_t[std::wcslen(s._sptr) + std::wcslen(_sptr) + 1]; --- 236,242 ---- oldSptr = _sptr; ! if(s._sptr != NULL) { ! if(oldSptr != NULL) { _sptr = new wchar_t[std::wcslen(s._sptr) + std::wcslen(_sptr) + 1]; *************** *** 247,257 **** changed(); } ! } ! else ! { ! _sptr = new wchar_t[std::wcslen(s._sptr) +1 ]; ! std::wcscpy(_sptr, s._sptr); ! _length = std::wcslen(_sptr); ! changed(); } } --- 247,257 ---- changed(); } ! else ! { ! _sptr = new wchar_t[std::wcslen(s._sptr) +1 ]; ! std::wcscpy(_sptr, s._sptr); ! _length = std::wcslen(_sptr); ! changed(); ! } } } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-14 03:06:24
|
Update of /cvsroot/igarden/Garden/source/resources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv20776 Modified Files: Tag: Release_branch_v1 Garden.cin Garden.r Log Message: Allow picking whether to include mulch in purchases, and only count unpurchased materials Index: Garden.cin =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Garden.cin,v retrieving revision 1.61.2.6 retrieving revision 1.61.2.7 diff -C2 -d -r1.61.2.6 -r1.61.2.7 Binary files /tmp/cvs7lfJao and /tmp/cvsEeEgX5 differ Index: Garden.r =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Garden.r,v retrieving revision 1.61.2.6 retrieving revision 1.61.2.7 diff -C2 -d -r1.61.2.6 -r1.61.2.7 *** Garden.r 13 Dec 2006 14:12:59 -0000 1.61.2.6 --- Garden.r 14 Dec 2006 03:06:21 -0000 1.61.2.7 *************** *** 1 **** ! /* generated from Garden.cin * * This file was automatically generated by YAAF * Constructor. */ /* 'VRes' 128 * * "AboutBox" */ data 'VRes' (128,"AboutBox") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000000200000002" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001C20000" /* ........ */ $"0118000001C20000" /* ........ */ $"0118000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00001241626F7574" /* ...About */ $"2047617264656E53" /* GardenS */ $"6B65746368000000" /* ketch... */ $"0000000000010000" /* ........ */ $"0000000000000000" /* ........ */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFFF00000042" /* .......B */ $"0000000000000032" /* .......2 */ $"7069637400000000" /* pict.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000D2" /* ........ */ $"0000000400000196" /* ........ */ $"00000024FFFFFFFF" /* ...$.... */ $"0000000004030000" /* ........ */ $"0000000000000000" /* ........ */ $"0042000000000000" /* .B...... */ $"0032706963740000" /* .2pict.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0024000000140000" /* .$...... */ $"007F0000007EFFFF" /* ....~.. */ $"FFFF000000000402" /* ........ */ $"0000005B0000006A" /* ...[...j */ $"0000005400000000" /* ...T.... */ $"000000447062746E" /* ...Dpbtn */ $"0000000400000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000D700000050" /* .......P */ $"000001A100000071" /* .......q */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000001477" /* .......w */ $"77772E4761726465" /* ww.Garde */ $"6E536B657463682E" /* nSketch. */ $"636F6D0000000042" /* com....B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000178" /* .......x */ $"000000F3000001B8" /* ........ */ $"00000113FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"003E000000000000" /* .>...... */ $"002E487970720000" /* ..Hypr.. */ $"000A00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0026000000840000" /* .&...... */ $"01A4000000ECFFFF" /* ........ */ $"FFFF000000000082" /* ........ */ $"FFFFFFFF00000060" /* .......` */ $"0000000000000050" /* .......P */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000CF" /* ........ */ $"00000038000001BE" /* ...8.... */ $"0000004AFFFFFFFF" /* ...J.... */ $"000024436F707972" /* ..$Copyr */ $"6967687420286329" /* ight (c) */ $"2032303035205265" /* 2005 Re */ $"6473746172742053" /* dstart S */ $"6F66747761726500" /* oftware. */ $"0000000000000000" /* ........ */ $"000000000000003C" /* .......< */ $"7465787400000003" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000CF" /* ........ */ $"00000024000001AF" /* ...$.... */ $"00000034FFFFFFFF" /* ...4.... */ $"0000103C76657273" /* ...<vers */ $"696F6E2073747269" /* ion stri */ $"6E673E0000000000" /* ng>..... */ }; /* 'VRes' 130 * * "PrefsMeasurement" */ data 'VRes' (130,"PrefsMeasurement") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000015800000104" /* ...X.... */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A636F6C720000" /* .*colr.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF0000FFFFFFFF" /* ........ */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005C00000058" /* ...\...X */ $"0000010400000072" /* .......r */ $"FFFFFFFF00000000" /* ........ */ $"0000000000440000" /* .....D.. */ $"0000000000347465" /* .....4te */ $"7874000000040000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0058000000540000" /* .X...T.. */ $"0068FFFFFFFF0000" /* .h...... */ $"08526F756E64696E" /* .Roundin */ $"6700000000000000" /* g....... */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"005C000000300000" /* .\...0.. */ $"01020000004AFFFF" /* .....J.. */ $"FFFF000000000000" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003074657874" /* ...0text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000034" /* .......4 */ $"0000004000000044" /* ...@...D */ $"FFFFFFFF00000553" /* .......S */ $"63616C6500000000" /* cale.... */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005C0000000C" /* ...\.... */ $"0000010200000026" /* .......& */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000307465" /* .....0te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0010000000400000" /* .....@.. */ $"0020FFFFFFFF0000" /* . ...... */ $"05556E6974730000" /* .Units.. */ $"0000" /* .. */ }; /* 'VRes' 131 * * "PrefsPrinting" */ data 'VRes' (131,"PrefsPrinting") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000015800000104" /* ...X.... */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A636F6C720000" /* .*colr.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF0000FFFFFFFF" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A63686B62" /* ...:chkb */ $"0000000200000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000140000002C" /* ......., */ $"0000008C0000003C" /* .......< */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A50" /* .......P */ $"72696E7420477269" /* rint Gri */ $"6400000000000000" /* d....... */ $"00000000003C6368" /* .....<ch */ $"6B62000000010000" /* kb...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"00180000008C0000" /* ........ */ $"0028FFFFFFFFFFFF" /* .(...... */ $"0000000000000000" /* ........ */ $"0D5072696E742042" /* .Print B */ $"6F7264657273" /* orders */ }; /* 'VRes' 129 * * "PrefsDialog" */ data 'VRes' (129,"PrefsDialog") { $"0000000000000062" /* .......b */ $"00000052646C6F67" /* ...Rdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"01400000015E0000" /* .@...^.. */ $"0140000000000000" /* .@...... */ $"0000000000000000" /* ........ */ $"00000B5072656665" /* ...Prefe */ $"72656E6365730000" /* rences.. */ $"000000007D010000" /* ....}... */ $"7D02000000000000" /* }....... */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFFF00000042" /* .......B */ $"0000000000000032" /* .......2 */ $"7069637400000000" /* pict.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000F0" /* ........ */ $"0000000400000146" /* .......F */ $"00000060FFFFFFFF" /* ...`.... */ $"0000000004020000" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"7D0200000000FFFF" /* }....... */ $"FFFF000000000000" /* ........ */ $"0102000001200000" /* ..... .. */ $"014C0000013AFFFF" /* .L...:.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00007D01" /* pbtn..}. */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000B0" /* ........ */ $"00000120000000FA" /* ... .... */ $"0000013AFFFFFFFF" /* ...:.... */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"003C000000000000" /* .<...... */ $"002C706E6C730000" /* .,pnls.. */ $"7D0300000000FFFF" /* }....... */ $"FFFF000000000000" /* ........ */ $"0008000000740000" /* .....t.. */ $"015400000118FFFF" /* .T...... */ $"FFFF0000FFFF0000" /* ........ */ $"0001000000000000" /* ........ */ $"00000000002A706F" /* .....*po */ $"706D00007D040000" /* pm..}... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0058000000940000" /* .X...... */ $"006EFFFFFFFF0000" /* .n...... */ $"00000000" /* .... */ }; /* 'VRes' 135 * * "PlanPanel" */ data 'VRes' (135,"PlanPanel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000001" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003072756C72" /* ...0rulr */ $"0000000400000001" /* ........ */ $"FFFFFFFF0000FFFF" /* ........ */ $"0000000200000028" /* .......( */ $"0000002C00000000" /* ...,.... */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003072756C72" /* ...0rulr */ $"0000000300000001" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000002C00000000" /* ...,.... */ $"0000000000000028" /* .......( */ $"FFFFFFFF0000FFFF" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000003C" /* .......< */ $"0000002C73637276" /* ...,scrv */ $"0000000100000001" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000002C00000028" /* ...,...( */ $"0000000000000000" /* ........ */ $"FFFFFFFF0000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000000000002E" /* ........ */ $"7772505600000002" /* wrPV.... */ $"00000001FFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000FFFFFFFF" /* ........ */ $"0000000000030000" /* ........ */ $"0004" /* .. */ }; /* 'VRes' 132 * * "MainDocument" */ data 'VRes' (132,"MainDocument") { $"0000000000000058" /* .......X */ $"0000004877696E64" /* ...Hwind */ $"0000000000000000" /* ........ */ $"FFFF000000AA0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000500000" /* .....P.. */ $"0050000000000000" /* .P...... */ $"0000000002BE0000" /* ........ */ $"01FD000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"000000BE0000003A" /* .......: */ $"0000002A6261636B" /* ...*back */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000031" /* .......1 */ $"FFFFFFFF00000000" /* ........ */ $"00010000003C0000" /* .....<.. */ $"00000000002C7465" /* .....,te */ $"7874000075330000" /* xt..u3.. */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000BB0000" /* ........ */ $"0014FFFFFFFF0000" /* ........ */ $"0075000000000000" /* .u...... */ $"0000000000000000" /* ........ */ $"0038746162620000" /* .8tabb.. */ $"753400000000FFFF" /* u4...... */ $"FFFFFFFF00000000" /* ........ */ $"0000000000180000" /* ........ */ $"000000000030FFFF" /* .....0.. */ $"FFFF000000000000" /* ........ */ $"0000000008546573" /* .....Tes */ $"7420546162000000" /* t Tab... */ $"0000000000000000" /* ........ */ $"002C706E6C730000" /* .,pnls.. */ $"753200000000FFFF" /* u2...... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000320000" /* .....2.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000" /* .. */ }; /* 'VRes' 146 * * "Material Info PICT Popup" */ data 'VRes' (146,"Material Info PICT Popup") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"000000BE00000088" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0034746578740000" /* .4text.. */ $"000100000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000040000" /* ........ */ $"00BA0000002AFFFF" /* .....*.. */ $"FFFF000008756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000" /* .. */ }; /* 'VRes' 133 * * "DatabasePanel" */ data 'VRes' (133,"DatabasePanel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00B60000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000030000" /* ........ */ $"000000000020FFFF" /* ..... .. */ $"FFFF000000000001" /* ........ */ $"0000004200000000" /* ...B.... */ $"000000326269636E" /* ...2bicn */ $"0000000500000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFE500000001" /* ........ */ $"FFFFFFFF0000001C" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0002000003FCFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"00000000002A706F" /* .....*po */ $"706D000000040000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000000B0000" /* ........ */ $"0003000000A10000" /* ........ */ $"0019FFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000003C0000002C" /* ...<..., */ $"7363727600000001" /* scrv.... */ $"00000000FFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000002000000000" /* ... .... */ $"00000000FFFFFFFF" /* ........ */ $"0000FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000002E4D546162" /* ....MTab */ $"0000000200000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000FFFF0000" /* ...... */ }; /* 'VRes' 134 * * "BitfieldCheckDialog" */ data 'VRes' (134,"BitfieldCheckDialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001180000" /* ........ */ $"0078000001180000" /* .x...... */ $"0078000000000000" /* .x...... */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000004600000000" /* ...F.... */ $"000000367062746E" /* ...6pbtn */ $"0000000200000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000009000000054" /* .......T */ $"000001000000006E" /* .......n */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000643" /* .......C */ $"616E63656C650000" /* ancele.. */ $"004C000000000000" /* .L...... */ $"003C7062746E0000" /* .<pbtn.. */ $"000100000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0090000000340000" /* .....4.. */ $"01000000004EFFFF" /* .....N.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000C416464" /* .....Add */ $"20746F2056616C75" /* to Valu */ $"65000000004C0000" /* e....L.. */ $"00000000003C7062" /* .....<pb */ $"746E000000030000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0034000000840000" /* .4...... */ $"004EFFFFFFFFFFFF" /* .N...... */ $"0000000000000000" /* ........ */ $"0D5265706C616365" /* .Replace */ $"2056616C75650000" /* Value.. */ $"0000000000000000" /* ........ */ $"0060746578740000" /* .`text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"001C000000080000" /* ........ */ $"00F000000034FFFF" /* .....4.. */ $"FFFF000034446F20" /* ....4Do */ $"796F752077616E74" /* you want */ $"20746F207265706C" /* to repl */ $"616365206F722061" /* ace or a */ $"646420746F207468" /* dd to th */ $"6520657869737469" /* e existi */ $"6E672076616C7565" /* ng value */ $"3F0000000000" /* ?..... */ }; /* 'VRes' 138 * * "DatePicker" */ data 'VRes' (138,"DatePicker") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00E60000012C0000" /* .....,.. */ $"00E6000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A7062746E" /* ...:pbtn */ $"0000000500000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000C000000C8" /* ........ */ $"00000078000000E2" /* ...x.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A43" /* .......C */ $"6C65617220446174" /* lear Dat */ $"6500000000440000" /* e....D.. */ $"0000000000347465" /* .....4te */ $"7874000000040000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0004000001240000" /* .....$.. */ $"0014FFFFFFFF0000" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00DC000000C80000" /* ........ */ $"0126000000E2FFFF" /* .&...... */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000008A" /* ........ */ $"000000C8000000D4" /* ........ */ $"000000E2FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"0000000000000000" /* ........ */ $"003A434452500000" /* .:CDRP.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000180000" /* ........ */ $"0128000000C4FFFF" /* .(...... */ $"FFFF000000000080" /* ........ */ $"0000008000000080" /* ........ */ $"0000008000000080" /* ........ */ }; /* 'VRes' 136 * * "SubSelector" */ data 'VRes' (136,"SubSelector") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000017C0000" /* .....|.. */ $"00A0000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000400000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001800000054" /* .......T */ $"000001540000006A" /* ...T...j */ $"FFFFFFFF00000000" /* ........ */ $"0000000000420000" /* .....B.. */ $"0000000000327062" /* .....2pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000DC0000" /* ........ */ $"00740000011C0000" /* .t...... */ $"008EFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0359657300000042" /* .Yes...B */ $"0000000000000032" /* .......2 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000090" /* ........ */ $"00000074000000D0" /* ...t.... */ $"0000008EFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024E6F740000" /* ...Not.. */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0018000000380000" /* .....8.. */ $"01540000004EFFFF" /* .T...N.. */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000005874657874" /* ...Xtext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000010" /* ........ */ $"000000F000000034" /* .......4 */ $"FFFFFFFF00002C41" /* ......,A */ $"726520796F752061" /* re you a */ $"6464696E67206F6E" /* dding on */ $"65206F6620746865" /* e of the */ $"20666F6C6C6F7769" /* followi */ $"6E6720656E747269" /* ng entri */ $"65733F0000000000" /* es?..... */ }; /* 'VRes' 137 * * "Site Data Dialog" */ data 'VRes' (137,"Site Data Dialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001540000" /* .....T.. */ $"010E000001540000" /* .....T.. */ $"010E000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000095369746520" /* ...Site */ $"4461746100000000" /* Data.... */ $"0000000100000002" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000010000000C8" /* ........ */ $"0000005B000000D8" /* ...[.... */ $"FFFFFFFF00000652" /* .......R */ $"6567696F6E650000" /* egione.. */ $"00000000003A0000" /* .....:.. */ $"00000000002A706F" /* .....*po */ $"706D0000000C0000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000440000" /* .....D.. */ $"00C8000001440000" /* .....D.. */ $"00DEFFFFFFFF0000" /* ........ */ $"000000000000003A" /* .......: */ $"000000000000002A" /* .......* */ $"6469767200000000" /* divr.... */ $"00000000FFFFFFFF" /* ........ */ $"FFFF000000000004" /* ........ */ $"000000BCFFFFFFFC" /* ........ */ $"000000BFFFFFFFFF" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"0088000000440000" /* .....D.. */ $"003467726F750000" /* .4grou.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000080000" /* ........ */ $"014C0000007CFFFF" /* .L...|.. */ $"FFFF000009555344" /* .....USD */ $"41205A6F6E650000" /* A Zone.. */ $"0000000000000000" /* ........ */ $"0000000000347465" /* .....4te */ $"78740000000A0000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000400000" /* .....@.. */ $"005C0000012C0000" /* .\...,.. */ $"006CFFFFFFFF0000" /* .l...... */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"004C000000000000" /* .L...... */ $"003C7062746E0000" /* .<pbtn.. */ $"000900000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00CC000000440000" /* .....D.. */ $"01440000005EFFFF" /* .D...^.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000C4C6F6F" /* .....Loo */ $"6B207570205A6F6E" /* k up Zon */ $"6500000000520000" /* e....R.. */ $"0000000000426564" /* .....Bed */ $"6974000000080000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000780000" /* .....x.. */ $"0048000000C00000" /* .H...... */ $"0060FFFFFFFFFFFF" /* .`...... */ $"0075000000000000" /* .u...... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000046" /* .......F */ $"0000000000000036" /* .......6 */ $"7465787400000016" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000000C" /* ........ */ $"0000004C00000068" /* ...L...h */ $"0000005CFFFFFFFF" /* ...\.... */ $"00000B5553205A69" /* ...US Zi */ $"7020436F64650000" /* p Code.. */ $"0000000000400000" /* .....@.. */ $"0000000000307465" /* .....0te */ $"7874000000150000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000008C0000" /* ........ */ $"0034000000D70000" /* .4...... */ $"0044FFFFFFFF0000" /* .D...... */ $"056F722E2E2E0000" /* .or..... */ $"00000000003A0000" /* .....:.. */ $"00000000002A706F" /* .....*po */ $"706D000000030000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000380000" /* .....8.. */ $"001C000000EB0000" /* ........ */ $"0032FFFFFFFF0000" /* .2...... */ $"0000000000000046" /* .......F */ $"0000000000000036" /* .......6 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000EE" /* ........ */ $"000000E800000140" /* .......@ */ $"00000102FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000643616E6365" /* ...Cance */ $"6C65000000420000" /* le...B.. */ $"0000000000327062" /* .....2pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000960000" /* ........ */ $"00E8000000E80000" /* ........ */ $"0102FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"024F4B7400000042" /* .OKt...B */ $"0000000000000032" /* .......2 */ $"7062746E00000007" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000100" /* ........ */ $"000000A000000138" /* .......8 */ $"000000BAFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000035365740000" /* ...Set.. */ $"0042000000000000" /* .B...... */ $"00327062746E0000" /* .2pbtn.. */ $"000500000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0100000000800000" /* ........ */ $"01380000009AFFFF" /* .8...... */ $"FFFFFFFF00000000" /* ........ */ $"0000000003536574" /* .....Set */ $"0000003C00000000" /* ...<.... */ $"0000002C74657874" /* ...,text */ $"0000000600000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000A0000000A4" /* ........ */ $"000000EB000000B4" /* ........ */ $"FFFFFFFF00000075" /* .......u */ $"000000000000003C" /* .......< */ $"000000000000002C" /* ......., */ $"7465787400000004" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000098" /* ........ */ $"00000088000000E3" /* ........ */ $"00000098FFFFFFFF" /* ........ */ $"0000007500000000" /* ...u.... */ $"0000004C00000000" /* ...L.... */ $"0000003C74657874" /* ...<text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000010000000A4" /* ........ */ $"00000094000000B4" /* ........ */ $"FFFFFFFF00001046" /* .......F */ $"697273742046616C" /* irst Fal */ $"6C2046726F737400" /* l Frost. */ $"0000000000000000" /* ........ */ $"000000000000003C" /* .......< */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000010" /* ........ */ $"0000008800000084" /* ........ */ $"00000098FFFFFFFF" /* ........ */ $"0000114C61737420" /* ...Last */ $"537072696E672046" /* Spring F */ $"726F737400000000" /* rost.... */ }; /* 'VRes' 139 * * "Registration Dialog" */ data 'VRes' (139,"Registration Dialog") { $"0000000000000072" /* .......r */ $"00000062646C6F67" /* ...bdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"00DC0000015E0000" /* .....^.. */ $"00DC0000015E0000" /* .....^.. */ $"00DC000000000000" /* ........ */ $"00001B5265676973" /* ...Regis */ $"746572696E672052" /* tering R */ $"6564737461727420" /* edstart */ $"47617264656E0000" /* Garden.. */ $"0000000000010000" /* ........ */ $"0000000000E60000" /* ........ */ $"0048000000386772" /* .H...8gr */ $"6F75000000000000" /* ou...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000060000" /* ........ */ $"0006000001540000" /* .....T.. */ $"003CFFFFFFFF0000" /* .<...... */ $"0D57687920526567" /* .Why Reg */ $"69737465723F0000" /* ister?.. */ $"0000000000000000" /* ........ */ $"00000000008E7465" /* ......te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0014000001480000" /* .....H.. */ $"0030FFFFFFFF0000" /* .0...... */ $"6252656769737465" /* bRegiste */ $"72696E6720526564" /* ring Red */ $"7374617274204761" /* start Ga */ $"7264656E2077696C" /* rden wil */ $"6C20676574207269" /* l get ri */ $"64206F6620746865" /* d of the */ $"736520616E6E6F79" /* se annoy */ $"696E67206469616C" /* ing dial */ $"6F67732C20616E64" /* ogs, and */ $"2068656C70206675" /* help fu */ $"6E64206675747572" /* nd futur */ $"6520666561747572" /* e featur */ $"65732E7500000084" /* es.u.... */ $"000002840000004E" /* .......N */ $"0000003E67726F75" /* ...>grou */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000600000040" /* .......@ */ $"00000154000000B4" /* ...T.... */ $"FFFFFFFF00001248" /* .......H */ $"6F7720446F204920" /* ow Do I */ $"5265676973746572" /* Register */ $"3F00000000000000" /* ?....... */ $"0082000000000000" /* ........ */ $"0072746578740000" /* .rtext.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000400000" /* .....@.. */ $"01450000004CFFFF" /* .E...L.. */ $"FFFF000046332920" /* ....F3) */ $"456E746572207468" /* Enter th */ $"6520726567697374" /* e regist */ $"726174696F6E2063" /* ration c */ $"6F646520696E2062" /* ode in b */ $"656C6F7720616E64" /* elow and */ $"20636C69636B2074" /* click t */ $"6865207265676973" /* he regis */ $"7465722062757474" /* ter butt */ $"6F6E2E0000000084" /* on...... */ $"0000008000000000" /* ........ */ $"0000007074657874" /* ...ptext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000070000002B" /* .......+ */ $"0000013C00000037" /* ...<...7 */ $"FFFFFFFFFFFF4532" /* ......E2 */ $"29204F7264657220" /* ) Order */ $"5265647374617274" /* Redstart */ $"2047617264656E2E" /* Garden. */ $"2020412072656769" /* A regi */ $"7374726174696F6E" /* stration */ $"20636F6465207769" /* code wi */ $"6C6C206265206D61" /* ll be ma */ $"696C656420746F20" /* iled to */ $"796F752E00000084" /* you..... */ $"0000005400000000" /* ...T.... */ $"0000004474657874" /* ...Dtext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000700000016" /* ........ */ $"000000CC00000026" /* .......& */ $"FFFFFFFF00001831" /* .......1 */ $"2920476F20746F20" /* ) Go to */ $"6F726465722E6B61" /* order.ka */ $"67692E636F6D3A28" /* gi.com:( */ $"0000008400000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"0000005400000044" /* ...T...D */ $"00000064FFFFFFFF" /* ...d.... */ $"000005436F64653A" /* ...Code: */ $"0000000000000052" /* .......R */ $"0000000000000042" /* .......B */ $"6564697400000004" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000030" /* .......0 */ $"000000530000013C" /* ...S...< */ $"00000067FFFFFFFF" /* ...g.... */ $"FFFF007500000000" /* ...u.... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"003E7062746E0000" /* .>pbtn.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"007C000000100000" /* .|...... */ $"00EC0000002AFFFF" /* .....*.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000E6F7264" /* .....ord */ $"65722E6B6167692E" /* er.kagi. */ $"636F6D0000000046" /* com....F */ $"0000000000000036" /* .......6 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000F0" /* ........ */ $"000000B800000154" /* .......T */ $"000000D2FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000643616E6365" /* ...Cance */ $"6C65000000000000" /* le...... */ $"0000000000387062" /* .....8pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000008C0000" /* ........ */ $"00B8000000F00000" /* ........ */ $"00D2FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0852656769737465" /* .Registe */ $"7200" /* r. */ }; /* 'VRes' 140 * * "GerminationDialog" */ data 'VRes' (140,"GerminationDialog") { $"0000000000000062" /* .......b */ $"00000052646C6F67" /* ...Rdlog */ $"0000001000000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001900000" /* ........ */ $"012C000001900000" /* .,...... */ $"012C000001900000" /* .,...... */ $"012C000000000000" /* .,...... */ $"00000B4765726D69" /* ...Germi */ $"6E6174696F6E0000" /* nation.. */ $"0000000000010000" /* ........ */ $"0002000000000000" /* ........ */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"000000010000004A" /* .......J */ $"000000000000003A" /* .......: */ $"7062746E0000000C" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000006C" /* .......l */ $"000000F8000000CC" /* ........ */ $"00000112FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000A44656C6574" /* ...Delet */ $"6520526F77000000" /* e Row... */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000B00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000F80000" /* ........ */ $"006800000112FFFF" /* .h...... */ $"FFFFFFFF00000000" /* ........ */ $"00000000074E6577" /* .....New */ $"20526F7700000046" /* Row...F */ $"0000000000000036" /* .......6 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000D0" /* ........ */ $"000000F800000118" /* ........ */ $"00000112FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000643616E6365" /* ...Cance */ $"6C65000000420000" /* le...B.. */ $"0000000000327062" /* .....2pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00F8000001740000" /* .....t.. */ $"0112FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"024F4B7400000000" /* .OKt.... */ $"000000000000002C" /* ......., */ $"475461620000000A" /* GTab.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000000C" /* ........ */ $"0000001400000178" /* .......x */ $"000000E4FFFFFFFF" /* ........ */ $"000000000000FFFF" /* ........ */ }; /* 'VRes' 141 * * "Text Entry Dialog" */ data 'VRes' (141,"Text Entry Dialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00E60000012C0000" /* .....,.. */ $"00E6000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000002" /* ........ */ $"0000005200000000" /* ...R.... */ $"0000004265646974" /* ...Bedit */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000800000008" /* ........ */ $"00000124000000C0" /* ...$.... */ $"FFFFFFFFFFFF0075" /* .......u */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000004" /* ........ */ $"FFFF000000460000" /* .....F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000D60000" /* ........ */ $"00C8000001200000" /* ..... .. */ $"00E2FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000000000000000" /* ........ */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000086000000C8" /* ........ */ $"000000D0000000E2" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74" /* Kt */ }; /* 'VRes' 142 * * "InfoSupplier" */ data 'VRes' (142,"InfoSupplier") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"01770000015E0000" /* .w...^.. */ $"01770000015E0000" /* .w...^.. */ $"0177000000000000" /* .w...... */ $"00001256656E646F" /* ...Vendo */ $"7220496E666F726D" /* r Inform */ $"6174696F6E6F0000" /* ationo.. */ $"0000000000010000" /* ........ */ $"0002000000440000" /* .....D.. */ $"0000000000346368" /* .....4ch */ $"6B62000000150000" /* kb...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000001200000" /* ..... .. */ $"000C000001540000" /* .....T.. */ $"001CFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0448696465740000" /* .Hidet.. */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000D00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00480000013C0000" /* .H...<.. */ $"015400000153FFFF" /* .T...S.. */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000400000138" /* .......8 */ $"0000004000000148" /* ...@...H */ $"FFFFFFFF00000645" /* .......E */ $"2D4D61696C650000" /* -Maile.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000C0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000540000" /* .....T.. */ $"0040000000A90000" /* .@...... */ $"0057FFFFFFFFFFFF" /* .W...... */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000046" /* .......F */ $"0000000000000036" /* .......6 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000440000004F" /* ...D...O */ $"00000054FFFFFFFF" /* ...T.... */ $"00000A53686F7274" /* ...Short */ $"204E616D65000000" /* Name... */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000B0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000480000" /* .....H.. */ $"0120000000E00000" /* . ...... */ $"0137FFFFFFFFFFFF" /* .7...... */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000003E" /* .......> */ $"000000000000002E" /* ........ */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"0000011C0000003C" /* .......< */ $"0000012CFFFFFFFF" /* ...,.... */ $"0000034661780000" /* ...Fax.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000A0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000480000" /* .....H.. */ $"0104000000E00000" /* ........ */ $"011BFFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"0000010000000040" /* .......@ */ $"00000110FFFFFFFF" /* ........ */ $"00000550686F6E65" /* ...Phone */ $"000000000000003A" /* .......: */ $"000000000000002A" /* .......* */ $"706F706D00000014" /* popm.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"00000008000000E0" /* ........ */ $"0000001EFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00B6000001580000" /* .....X.. */ $"010000000172FFFF" /* .....r.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000010A" /* ........ */ $"0000015800000154" /* ...X...T */ $"00000172FFFFFFFF" /* ...r.... */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000900000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0048000000E80000" /* .H...... */ $"0154000000FFFFFF" /* .T...... */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000004000000E4" /* ........ */ $"00000040000000F4" /* ...@.... */ $"FFFFFFFF00000743" /* .......C */ $"6F756E7472790000" /* ountry.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"6974000000080000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000880000" /* ........ */ $"00CC000001180000" /* ........ */ $"00E3FFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000004E" /* .......N */ $"000000000000003E" /* .......> */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000CC00000080" /* ........ */ $"000000DCFFFFFFFF" /* ........ */ $"0000125A6970206F" /* ...Zip o */ $"7220506F7374616C" /* r Postal */ $"20436F6465000000" /* Code... */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"6974000000070000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000880000" /* ........ */ $"00B0000001180000" /* ........ */ $"00C7FFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000B400000038" /* .......8 */ $"000000C4FFFFFFFF" /* ........ */ $"0000055374617465" /* ...State */ $"000000000000005A" /* .......Z */ $"000000000000004A" /* .......J */ $"6564697400000006" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000048" /* .......H */ $"0000009400000154" /* .......T */ $"000000ABFFFFFFFF" /* ........ */ $"FFFF08756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0040000000000000" /* .@...... */ $"0030746578740000" /* .0text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000980000" /* ........ */ $"0034000000A8FFFF" /* .4...... */ $"FFFF000004436974" /* .....Cit */ $"7974000000000000" /* yt...... */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000500000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0048000000780000" /* .H...x.. */ $"01540000008FFFFF" /* .T...... */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000400000028" /* .......( */ $"0000004F00000038" /* ...O...8 */ $"FFFFFFFF00000743" /* .......C */ $"6F6D70616E790000" /* ompany.. */ $"0000000000420000" /* .....B.. */ $"0000000000327465" /* .....2te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000040000" /* ........ */ $"005C0000004F0000" /* .\...O.. */ $"006CFFFFFFFF0000" /* .l...... */ $"0741646472657373" /* .Address */ $"000000000000005A" /* .......Z */ $"000000000000004A" /* .......J */ $"6564697400000004" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000048" /* .......H */ $"0000005C00000154" /* ...\...T */ $"00000073FFFFFFFF" /* ...s.... */ $"FFFF08756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"004A656469740000" /* .Jedit.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0054000000250000" /* .T...%.. */ $"01540000003CFFFF" /* .T...<.. */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ }; /* 'VRes' 143 * * "ColumnSetDialog" */ data 'VRes' (143,"ColumnSetDialog") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000010000000000" /* ........ */ $"FFFF000000960000" /* ........ */ $"001E000000000000" /* ........ */ $"0000000001680000" /* .....h.. */ $"0118000001680000" /* .....h.. */ $"0118000001680000" /* .....h.. */ $"0118000000000000" /* ........ */ $"0000124564697420" /* ...Edit */ $"4461746162617365" /* Database */ $"2056696577000000" /* View... */ $"0000000000010000" /* ........ */ $"0002000000460000" /* .....F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000C30000" /* ........ */ $"00FC000001080000" /* ........ */ $"0116FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000004200000000" /* ...B.... */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000110000000FC" /* ........ */ $"0000015500000116" /* ...U.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74000000760000" /* Kt...v.. */ $"003C0000002C7363" /* .<...,sc */ $"7276000000000000" /* rv...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000040000" /* ........ */ $"0034000001640000" /* .4...d.. */ $"00F8FFFFFFFF0000" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"002A475461620000" /* .*GTab.. */ $"000600000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"014F000000B3FFFF" /* .O...... */ $"FFFF000000000000" /* ........ */ $"0000004400000000" /* ...D.... */ $"0000003474657874" /* ...4text */ $"0000000500000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000002C00000004" /* ...,.... */ $"0000016000000030" /* ...`...0 */ $"FFFFFFFF00000875" /* .......u */ $"6E7469746C656400" /* ntitled. */ $"0000000000000000" /* ........ */ $"0000000000000032" /* .......2 */ $"69636F6E00000007" /* icon.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"0000000400000028" /* .......( */ $"00000024FFFFFFFF" /* ...$.... */ $"0000000000020000" /* ........ */ $"002000000020" /* . ... */ }; /* 'VRes' 144 * * "SetNameDialog" */ data 'VRes' (144,"SetNameDialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00640000012C0000" /* .d...,.. */ $"00640000012C0000" /* .d...,.. */ $"00C8000000000000" /* ........ */ $"0000094E616D6520" /* ...Name */ $"5669657700000000" /* View.... */ $"0000000100000002" /* ........ */ $"0000004200000000" /* ...B.... */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000E000000040" /* .......@ */ $"000001280000005A" /* ...(...Z */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74000000460000" /* Kt...F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000900000" /* ........ */ $"0040000000D80000" /* .@...... */ $"005AFFFFFFFFFFFF" /* .Z...... */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000005200000000" /* ...R.... */ $"0000004265646974" /* ...Bedit */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000020" /* ....... */ $"0000011400000038" /* .......8 */ $"FFFFFFFFFFFF004E" /* .......N */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000427465" /* .....Bte */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"000C0000010C0000" /* ........ */ $"001CFFFFFFFF0000" /* ........ */ $"16506C6561736520" /* .Please */ $"6E616D6520746869" /* name thi */ $"7320766965772E6E" /* s view.n */ $"00000000" /* .... */ }; /* 'VRes' 148 * * "Plugin Selector" */ data 'VRes' (148,"Plugin Selector") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000017C0000" /* .....|.. */ $"01040000017C0000" /* .....|.. */ $"01040000017C0000" /* .....|.. */ $"0104000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"000000760000003C" /* ...v...< */ $"0000002C73637276" /* ...,scrv */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005800000030" /* ...X...0 */ $"00000178000000DC" /* ...x.... */ $"FFFFFFFF0000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000000000002A" /* .......* */ $"4754616200000000" /* GTab.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000FFFFFFFF" /* ........ */ $"FFFFFFFF0000010F" /* ........ */ $"0000009BFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00E4000000E40000" /* ........ */ $"0124000000FEFFFF" /* .$...... */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000130" /* .......0 */ $"000000E400000170" /* .......p */ $"000000FEFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"0042000000000000" /* .B...... */ $"0032746578740000" /* .2text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000300000" /* .....0.. */ $"004F000000CCFFFF" /* .O...... */ $"FFFF000006416374" /* .....Act */ $"696F6E6500000000" /* ione.... */ $"0000004000000000" /* ...@.... */ $"0000003074657874" /* ...0text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000840000000C" /* ........ */ $"000000AE0000001C" /* ........ */ $"FFFFFFFF0000044E" /* .......N */ $"616D657400000000" /* amet.... */ $"0000000000000000" /* ........ */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000500000000B" /* ...P.... */ $"0000007A0000001C" /* ...z.... */ $"FFFFFFFF00000641" /* .......A */ $"6374697665650000" /* ctivee.. */ $"0000" /* .. */ }; /* 'VRes' 150 * * "Default Search Panel" */ data 'VRes' (150,"Default Search Panel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000009600000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000001" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A7062746E" /* ...:pbtn */ $"0000000800000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000017800000014" /* ...x.... */ $"000002000000004C" /* .......L */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A53" /* .......S */ $"6974652044617461" /* ite Data */ $"C9000000003A0000" /* .....:.. */ $"00000000002A706F" /* .....*po */ $"706D000000070000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000840000" /* ........ */ $"00A8000000FC0000" /* ........ */ $"00BEFFFFFFFF0000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000069" /* text...i */ $"00000000FFFFFFFF" /* ........ */ $"000000000000000C" /* ........ */ $"000000AC00000057" /* .......W */ $"000000BCFFFFFFFF" /* ........ */ $"000004466F726D74" /* ...Formt */ $"000000000000003A" /* .......: */ $"000000000000002A" /* .......* */ $"706F706D00000006" /* popm.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000118" /* ........ */ $"0000008C00000190" /* ........ */ $"000000A2FFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000400000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0118000000700000" /* .....p.. */ $"019000000086FFFF" /* ........ */ $"FF... [truncated message content] |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-14 03:05:30
|
Update of /cvsroot/igarden/Garden/source/Reports In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv20403 Modified Files: Tag: Release_branch_v1 PurchaseReport.h PurchaseReport.cpp Log Message: Allow picking whether to include mulch in purchases, and only count unpurchased materials Index: PurchaseReport.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/Attic/PurchaseReport.cpp,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** PurchaseReport.cpp 17 Nov 2006 13:24:53 -0000 1.1.2.2 --- PurchaseReport.cpp 14 Dec 2006 03:05:28 -0000 1.1.2.3 *************** *** 56,59 **** --- 56,60 ---- const short kSortBy = 12; const short kFormat = 13; + const short kIncludeMulch = 14; using yaaf::XGCheckButton; *************** *** 101,104 **** --- 102,106 ---- _AllVendors = true; _showPictures = false; + _includeMulch = false; } *************** *** 121,124 **** --- 123,127 ---- long count, n, numLayers; XGUUID nilID; + XGCheckButton *check; GardenPlot *plot; Layout *layout; *************** *** 198,201 **** --- 201,207 ---- EnableFindButton(AllowPrint(), dlog); + + check = dynamic_cast<XGCheckButton*>(dlog->FindViewByID(kIncludeMulch)); + check->SetValue(_includeMulch ? 1 : 0); } *************** *** 212,215 **** --- 218,232 ---- void PurchaseReport::ControlClick(RGDialog *dialog, XGDialog *dlog, long viewID) { + XGCheckButton *check; + + switch(viewID) + { + case kIncludeMulch: + check = dynamic_cast<XGCheckButton*>(dlog->FindViewByID(kIncludeMulch)); + _includeMulch = !check->GetValue(); + check->SetValue(_includeMulch); + EnableFindButton(AllowPrint(), dlog); + break; + } } *************** *** 273,282 **** } ! XGCommandButton *printBtn = dynamic_cast<XGCommandButton*>(dlog->FindViewByID(10001)); ! MyAssert(printBtn != NULL); ! if(AllowPrint()) ! printBtn->EnableView(); ! else ! printBtn->DisableView(); } --- 290,294 ---- } ! EnableFindButton(AllowPrint(), dlog); } *************** *** 321,328 **** { bool found = false; UInt32 n, numRows; Material *mat; MaterialRef *ref; - InstanceData *instance; XGUUID plotID; --- 333,340 ---- { bool found = false; + bool matchSupplier; UInt32 n, numRows; Material *mat; MaterialRef *ref; XGUUID plotID; *************** *** 336,368 **** if(mat != NULL) { ! if(_AllPlots) ! found = true; ! else { ! instance = ref->LatestInstanceData(kInstanceSupplierIDs); ! if(instance != NULL) { - uint32 supplier, supplierCount; - XGUUID testID; - supplierCount = instance->GetNumSuppliers(); ! for(supplier = 0; supplier < supplierCount && !found; supplier++) { ! instance->GetIndexedSupplier(supplier, testID); ! if(testID == _vendorID) ! found = true; } ! if(!found) { ! ref->GetPlotID(plotID); ! if(_plotID == plotID) ! found = true; } } - else - found = true; } } } } --- 348,415 ---- if(mat != NULL) { ! sint32 numPurchased, numUnpurchased; ! InstanceData *instance; ! ! instance = ref->GetInstanceAttributes(false); ! if(instance != NULL) { ! uint32 supplier, supplierCount; ! XGUUID testID; ! ! matchSupplier = false; ! if(!instance->GetInt32(kNumPurchased, &numPurchased)) ! numPurchased = 0; ! numUnpurchased = ref->GetNumItems() - numPurchased; ! if(numUnpurchased > 0) { supplierCount = instance->GetNumSuppliers(); ! if(_AllVendors || supplierCount == 0) ! matchSupplier = true; ! else { ! for(supplier = 0; supplier < supplierCount && !found; supplier++) ! { ! instance->GetIndexedSupplier(supplier, testID); ! if(testID == _vendorID) ! matchSupplier = true; ! } } ! } ! } ! else ! { ! numUnpurchased = ref->GetNumItems(); ! matchSupplier = true; ! } ! ! if(matchSupplier) ! { ! ref->GetPlotID(plotID); ! if(_plotID == plotID || _AllPlots) ! found = true; ! } ! } ! } ! if(_includeMulch && !found) ! { ! Path *path; ! ! path = _list[n]->GetPathIfPresent(); ! if(path != NULL) ! { ! mat = path->GetBackdrop(); ! if(mat != 0) ! { ! if(mat->GetMaterialType() == kMaterialTypeMulch) ! { ! if(path->IsPathFillPossible()) { ! found = true; } } } } } + } *************** *** 397,402 **** XGUUID testPlotID; PathElement *elem; ! bool show; ! format = _templates[_currentItem]; cellSize = InchesToPixels(8, 1); --- 444,449 ---- XGUUID testPlotID; PathElement *elem; ! bool show, matchPlot, matchSupplier; ! format = _templates[_currentItem]; cellSize = InchesToPixels(8, 1); *************** *** 420,423 **** --- 467,473 ---- if(mat != NULL) { + matchSupplier = false; + matchPlot = false; + name = mat->GetDisplayName(kUsePreferencesSetting); *************** *** 443,447 **** supplierSet.AddString(companyName); } ! show = true; } else --- 493,497 ---- supplierSet.AddString(companyName); } ! matchSupplier = true; } else *************** *** 461,465 **** str = supplier->GetCompanyName(); supplierSet.AddString(str); ! show = true; break; } --- 511,515 ---- str = supplier->GetCompanyName(); supplierSet.AddString(str); ! matchSupplier = true; break; } *************** *** 467,471 **** --- 517,524 ---- } } + else + matchSupplier = true; + ref->GetPlotID(plotID); numPlots = layout->NumPlots(); *************** *** 478,535 **** { plot->GetName(plotName); break; } } ! if(show) { ! siftedList_t::iterator cur; ! SiftedData data(name, supplierSet, plotName, ref->GetNumItems()); ! cur = siftedList.find(data); ! if(cur == siftedList.end()) { ! siftedList[data] = data; ! // printf("Setting value for '%s' to %ld\n", namePtr, data.count); } else { - (*cur).second._count += ref->GetNumItems(); - (*cur).second.AddSuppliers(supplierSet); - (*cur).second.AddPlot(plotName); - // printf("Changing value for '%s' to %ld\n", namePtr, (*cur).second.count); - } - } - } - } - - path = elem->GetPathIfPresent(); - if(path != NULL) - { - mat = path->GetBackdrop(); - if(mat != 0) - { - if(mat->GetMaterialType() == kMaterialTypeMulch) - { - if(path->IsPathFillPossible()) - { - measureUnits_t units = (measureUnits_t)_doc->GetPrefsDB()->GetInt32Pref(kUnitsPref); - double cubicMM, volume; - StringSet mulchSuppliers; - - cubicMM = path->ComputeArea() * path->GetBackdropDepth(); - // mulch sold as cubic yard in US, cubic metre in metric. - if(units == kEnglishUnits) - { - volume = cubicMM / 764554857.984; - } - else - { - volume = cubicMM / 1000000000; - } - siftedList_t::iterator cur; ! name = mat->GetDisplayName(kUsePreferencesSetting); ! SiftedData data(name, mulchSuppliers, plotName, volume, units); cur = siftedList.find(data); --- 531,560 ---- { plot->GetName(plotName); + matchPlot = true; break; } } + if(_AllPlots) + matchPlot = true; ! if(matchPlot && matchSupplier) { ! sint32 numPurchased, numUnpurchased; ! InstanceData *instance; ! instance = ref->GetInstanceAttributes(false); ! if(instance != NULL) { ! if(!instance->GetInt32(kNumPurchased, &numPurchased)) ! numPurchased = 0; } else + numPurchased = 0; + + numUnpurchased = ref->GetNumItems() - numPurchased; + if(numUnpurchased > 0) { siftedList_t::iterator cur; ! SiftedData data(name, supplierSet, plotName, numUnpurchased); cur = siftedList.find(data); *************** *** 541,549 **** else { ! (*cur).second._volume += volume; (*cur).second.AddPlot(plotName); // printf("Changing value for '%s' to %ld\n", namePtr, (*cur).second.count); } ! } } --- 566,624 ---- else { ! (*cur).second._count += numUnpurchased; ! (*cur).second.AddSuppliers(supplierSet); (*cur).second.AddPlot(plotName); // printf("Changing value for '%s' to %ld\n", namePtr, (*cur).second.count); } ! } ! } ! } ! } ! ! if(_includeMulch) ! { ! path = elem->GetPathIfPresent(); ! if(path != NULL) ! { ! mat = path->GetBackdrop(); ! if(mat != 0) ! { ! if(mat->GetMaterialType() == kMaterialTypeMulch) ! { ! if(path->IsPathFillPossible()) ! { ! measureUnits_t units = (measureUnits_t)_doc->GetPrefsDB()->GetInt32Pref(kUnitsPref); ! double cubicMM, volume; ! StringSet mulchSuppliers; ! ! cubicMM = path->ComputeArea() * path->GetBackdropDepth(); ! // mulch sold as cubic yard in US, cubic metre in metric. ! if(units == kEnglishUnits) ! { ! volume = cubicMM / 764554857.984; ! } ! else ! { ! volume = cubicMM / 1000000000; ! } ! ! siftedList_t::iterator cur; ! name = mat->GetDisplayName(kUsePreferencesSetting); ! SiftedData data(name, mulchSuppliers, plotName, volume, units); ! ! cur = siftedList.find(data); ! if(cur == siftedList.end()) ! { ! siftedList[data] = data; ! // printf("Setting value for '%s' to %ld\n", namePtr, data.count); ! } ! else ! { ! (*cur).second._volume += volume; ! (*cur).second.AddPlot(plotName); ! // printf("Changing value for '%s' to %ld\n", namePtr, (*cur).second.count); ! } ! ! } } } Index: PurchaseReport.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Reports/Attic/PurchaseReport.h,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** PurchaseReport.h 15 Nov 2006 03:56:32 -0000 1.1.2.1 --- PurchaseReport.h 14 Dec 2006 03:05:28 -0000 1.1.2.2 *************** *** 74,77 **** --- 74,78 ---- XGUUID _vendorID; bool _showPictures; + bool _includeMulch; long _currentItem; XGSDynArray<ShopTemplate_t> _templates; |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 14:13:07
|
Update of /cvsroot/igarden/Garden/source/resources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv10757 Modified Files: Tag: Release_branch_v1 Garden.r Garden.cin Log Message: Fully implement planting regions for choosing the quick pick list Index: Garden.cin =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Garden.cin,v retrieving revision 1.61.2.5 retrieving revision 1.61.2.6 diff -C2 -d -r1.61.2.5 -r1.61.2.6 Binary files /tmp/cvsaQ3L8K and /tmp/cvsHIuaUe differ Index: Garden.r =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Garden.r,v retrieving revision 1.61.2.5 retrieving revision 1.61.2.6 diff -C2 -d -r1.61.2.5 -r1.61.2.6 *** Garden.r 9 Dec 2006 17:47:30 -0000 1.61.2.5 --- Garden.r 13 Dec 2006 14:12:59 -0000 1.61.2.6 *************** *** 1 **** ! /* generated from Garden.cin * * This file was automatically generated by YAAF * Constructor. */ /* 'VRes' 128 * * "AboutBox" */ data 'VRes' (128,"AboutBox") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000000200000002" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001C20000" /* ........ */ $"0118000001C20000" /* ........ */ $"0118000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00001241626F7574" /* ...About */ $"2047617264656E53" /* GardenS */ $"6B65746368000000" /* ketch... */ $"0000000000010000" /* ........ */ $"0000000000000000" /* ........ */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFFF00000042" /* .......B */ $"0000000000000032" /* .......2 */ $"7069637400000000" /* pict.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000D2" /* ........ */ $"0000000400000196" /* ........ */ $"00000024FFFFFFFF" /* ...$.... */ $"0000000004030000" /* ........ */ $"0000000000000000" /* ........ */ $"0042000000000000" /* .B...... */ $"0032706963740000" /* .2pict.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0024000000140000" /* .$...... */ $"007F0000007EFFFF" /* ....~.. */ $"FFFF000000000402" /* ........ */ $"0000005B0000006A" /* ...[...j */ $"0000005400000000" /* ...T.... */ $"000000447062746E" /* ...Dpbtn */ $"0000000400000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000D700000050" /* .......P */ $"000001A100000071" /* .......q */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000001477" /* .......w */ $"77772E4761726465" /* ww.Garde */ $"6E536B657463682E" /* nSketch. */ $"636F6D0000000042" /* com....B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000178" /* .......x */ $"000000F3000001B8" /* ........ */ $"00000113FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"003E000000000000" /* .>...... */ $"002E487970720000" /* ..Hypr.. */ $"000A00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0026000000840000" /* .&...... */ $"01A4000000ECFFFF" /* ........ */ $"FFFF000000000082" /* ........ */ $"FFFFFFFF00000060" /* .......` */ $"0000000000000050" /* .......P */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000CF" /* ........ */ $"00000038000001BE" /* ...8.... */ $"0000004AFFFFFFFF" /* ...J.... */ $"000024436F707972" /* ..$Copyr */ $"6967687420286329" /* ight (c) */ $"2032303035205265" /* 2005 Re */ $"6473746172742053" /* dstart S */ $"6F66747761726500" /* oftware. */ $"0000000000000000" /* ........ */ $"000000000000003C" /* .......< */ $"7465787400000003" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000CF" /* ........ */ $"00000024000001AF" /* ...$.... */ $"00000034FFFFFFFF" /* ...4.... */ $"0000103C76657273" /* ...<vers */ $"696F6E2073747269" /* ion stri */ $"6E673E0000000000" /* ng>..... */ }; /* 'VRes' 130 * * "PrefsMeasurement" */ data 'VRes' (130,"PrefsMeasurement") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000015800000104" /* ...X.... */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A636F6C720000" /* .*colr.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF0000FFFFFFFF" /* ........ */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005C00000058" /* ...\...X */ $"0000010400000072" /* .......r */ $"FFFFFFFF00000000" /* ........ */ $"0000000000440000" /* .....D.. */ $"0000000000347465" /* .....4te */ $"7874000000040000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0058000000540000" /* .X...T.. */ $"0068FFFFFFFF0000" /* .h...... */ $"08526F756E64696E" /* .Roundin */ $"6700000000000000" /* g....... */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"005C000000300000" /* .\...0.. */ $"01020000004AFFFF" /* .....J.. */ $"FFFF000000000000" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003074657874" /* ...0text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000034" /* .......4 */ $"0000004000000044" /* ...@...D */ $"FFFFFFFF00000553" /* .......S */ $"63616C6500000000" /* cale.... */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005C0000000C" /* ...\.... */ $"0000010200000026" /* .......& */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000307465" /* .....0te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0010000000400000" /* .....@.. */ $"0020FFFFFFFF0000" /* . ...... */ $"05556E6974730000" /* .Units.. */ $"0000" /* .. */ }; /* 'VRes' 131 * * "PrefsPrinting" */ data 'VRes' (131,"PrefsPrinting") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000015800000104" /* ...X.... */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A636F6C720000" /* .*colr.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF0000FFFFFFFF" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A63686B62" /* ...:chkb */ $"0000000200000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000140000002C" /* ......., */ $"0000008C0000003C" /* .......< */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A50" /* .......P */ $"72696E7420477269" /* rint Gri */ $"6400000000000000" /* d....... */ $"00000000003C6368" /* .....<ch */ $"6B62000000010000" /* kb...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"00180000008C0000" /* ........ */ $"0028FFFFFFFFFFFF" /* .(...... */ $"0000000000000000" /* ........ */ $"0D5072696E742042" /* .Print B */ $"6F7264657273" /* orders */ }; /* 'VRes' 129 * * "PrefsDialog" */ data 'VRes' (129,"PrefsDialog") { $"0000000000000062" /* .......b */ $"00000052646C6F67" /* ...Rdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"01400000015E0000" /* .@...^.. */ $"0140000000000000" /* .@...... */ $"0000000000000000" /* ........ */ $"00000B5072656665" /* ...Prefe */ $"72656E6365730000" /* rences.. */ $"000000007D010000" /* ....}... */ $"7D02000000000000" /* }....... */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFFF00000042" /* .......B */ $"0000000000000032" /* .......2 */ $"7069637400000000" /* pict.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000F0" /* ........ */ $"0000000400000146" /* .......F */ $"00000060FFFFFFFF" /* ...`.... */ $"0000000004020000" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"7D0200000000FFFF" /* }....... */ $"FFFF000000000000" /* ........ */ $"0102000001200000" /* ..... .. */ $"014C0000013AFFFF" /* .L...:.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00007D01" /* pbtn..}. */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000B0" /* ........ */ $"00000120000000FA" /* ... .... */ $"0000013AFFFFFFFF" /* ...:.... */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"003C000000000000" /* .<...... */ $"002C706E6C730000" /* .,pnls.. */ $"7D0300000000FFFF" /* }....... */ $"FFFF000000000000" /* ........ */ $"0008000000740000" /* .....t.. */ $"015400000118FFFF" /* .T...... */ $"FFFF0000FFFF0000" /* ........ */ $"0001000000000000" /* ........ */ $"00000000002A706F" /* .....*po */ $"706D00007D040000" /* pm..}... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0058000000940000" /* .X...... */ $"006EFFFFFFFF0000" /* .n...... */ $"00000000" /* .... */ }; /* 'VRes' 135 * * "PlanPanel" */ data 'VRes' (135,"PlanPanel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000001" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003072756C72" /* ...0rulr */ $"0000000400000001" /* ........ */ $"FFFFFFFF0000FFFF" /* ........ */ $"0000000200000028" /* .......( */ $"0000002C00000000" /* ...,.... */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004000000000" /* ...@.... */ $"0000003072756C72" /* ...0rulr */ $"0000000300000001" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000002C00000000" /* ...,.... */ $"0000000000000028" /* .......( */ $"FFFFFFFF0000FFFF" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000003C" /* .......< */ $"0000002C73637276" /* ...,scrv */ $"0000000100000001" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000002C00000028" /* ...,...( */ $"0000000000000000" /* ........ */ $"FFFFFFFF0000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000000000002E" /* ........ */ $"7772505600000002" /* wrPV.... */ $"00000001FFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000FFFFFFFF" /* ........ */ $"0000000000030000" /* ........ */ $"0004" /* .. */ }; /* 'VRes' 132 * * "MainDocument" */ data 'VRes' (132,"MainDocument") { $"0000000000000058" /* .......X */ $"0000004877696E64" /* ...Hwind */ $"0000000000000000" /* ........ */ $"FFFF000000AA0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000500000" /* .....P.. */ $"0050000000000000" /* .P...... */ $"0000000002BE0000" /* ........ */ $"01FD000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"000000BE0000003A" /* .......: */ $"0000002A6261636B" /* ...*back */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000031" /* .......1 */ $"FFFFFFFF00000000" /* ........ */ $"00010000003C0000" /* .....<.. */ $"00000000002C7465" /* .....,te */ $"7874000075330000" /* xt..u3.. */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000BB0000" /* ........ */ $"0014FFFFFFFF0000" /* ........ */ $"0075000000000000" /* .u...... */ $"0000000000000000" /* ........ */ $"0038746162620000" /* .8tabb.. */ $"753400000000FFFF" /* u4...... */ $"FFFFFFFF00000000" /* ........ */ $"0000000000180000" /* ........ */ $"000000000030FFFF" /* .....0.. */ $"FFFF000000000000" /* ........ */ $"0000000008546573" /* .....Tes */ $"7420546162000000" /* t Tab... */ $"0000000000000000" /* ........ */ $"002C706E6C730000" /* .,pnls.. */ $"753200000000FFFF" /* u2...... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000320000" /* .....2.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000" /* .. */ }; /* 'VRes' 146 * * "Material Info PICT Popup" */ data 'VRes' (146,"Material Info PICT Popup") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"000000BE00000088" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000000000" /* ........ */ $"0034746578740000" /* .4text.. */ $"000100000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000040000" /* ........ */ $"00BA0000002AFFFF" /* .....*.. */ $"FFFF000008756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000" /* .. */ }; /* 'VRes' 133 * * "DatabasePanel" */ data 'VRes' (133,"DatabasePanel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00B60000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000000030000" /* ........ */ $"000000000020FFFF" /* ..... .. */ $"FFFF000000000001" /* ........ */ $"0000004200000000" /* ...B.... */ $"000000326269636E" /* ...2bicn */ $"0000000500000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"FFFFFFE500000001" /* ........ */ $"FFFFFFFF0000001C" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0002000003FCFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"00000000002A706F" /* .....*po */ $"706D000000040000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000000B0000" /* ........ */ $"0003000000A10000" /* ........ */ $"0019FFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"0000003C0000002C" /* ...<..., */ $"7363727600000001" /* scrv.... */ $"00000000FFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000002000000000" /* ... .... */ $"00000000FFFFFFFF" /* ........ */ $"0000FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000002E4D546162" /* ....MTab */ $"0000000200000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000FFFF0000" /* ...... */ }; /* 'VRes' 134 * * "BitfieldCheckDialog" */ data 'VRes' (134,"BitfieldCheckDialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001180000" /* ........ */ $"0078000001180000" /* .x...... */ $"0078000000000000" /* .x...... */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000004600000000" /* ...F.... */ $"000000367062746E" /* ...6pbtn */ $"0000000200000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000009000000054" /* .......T */ $"000001000000006E" /* .......n */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000643" /* .......C */ $"616E63656C650000" /* ancele.. */ $"004C000000000000" /* .L...... */ $"003C7062746E0000" /* .<pbtn.. */ $"000100000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0090000000340000" /* .....4.. */ $"01000000004EFFFF" /* .....N.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000C416464" /* .....Add */ $"20746F2056616C75" /* to Valu */ $"65000000004C0000" /* e....L.. */ $"00000000003C7062" /* .....<pb */ $"746E000000030000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"0034000000840000" /* .4...... */ $"004EFFFFFFFFFFFF" /* .N...... */ $"0000000000000000" /* ........ */ $"0D5265706C616365" /* .Replace */ $"2056616C75650000" /* Value.. */ $"0000000000000000" /* ........ */ $"0060746578740000" /* .`text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"001C000000080000" /* ........ */ $"00F000000034FFFF" /* .....4.. */ $"FFFF000034446F20" /* ....4Do */ $"796F752077616E74" /* you want */ $"20746F207265706C" /* to repl */ $"616365206F722061" /* ace or a */ $"646420746F207468" /* dd to th */ $"6520657869737469" /* e existi */ $"6E672076616C7565" /* ng value */ $"3F0000000000" /* ?..... */ }; /* 'VRes' 138 * * "DatePicker" */ data 'VRes' (138,"DatePicker") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00E60000012C0000" /* .....,.. */ $"00E6000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A7062746E" /* ...:pbtn */ $"0000000500000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000C000000C8" /* ........ */ $"00000078000000E2" /* ...x.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A43" /* .......C */ $"6C65617220446174" /* lear Dat */ $"6500000000440000" /* e....D.. */ $"0000000000347465" /* .....4te */ $"7874000000040000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0004000001240000" /* .....$.. */ $"0014FFFFFFFF0000" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00DC000000C80000" /* ........ */ $"0126000000E2FFFF" /* .&...... */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000008A" /* ........ */ $"000000C8000000D4" /* ........ */ $"000000E2FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"0000000000000000" /* ........ */ $"003A434452500000" /* .:CDRP.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000180000" /* ........ */ $"0128000000C4FFFF" /* .(...... */ $"FFFF000000000080" /* ........ */ $"0000008000000080" /* ........ */ $"0000008000000080" /* ........ */ }; /* 'VRes' 136 * * "SubSelector" */ data 'VRes' (136,"SubSelector") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000017C0000" /* .....|.. */ $"00A0000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000100000002" /* ........ */ $"0000003A00000000" /* ...:.... */ $"0000002A706F706D" /* ...*popm */ $"0000000400000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001800000054" /* .......T */ $"000001540000006A" /* ...T...j */ $"FFFFFFFF00000000" /* ........ */ $"0000000000420000" /* .....B.. */ $"0000000000327062" /* .....2pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000DC0000" /* ........ */ $"00740000011C0000" /* .t...... */ $"008EFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0359657300000042" /* .Yes...B */ $"0000000000000032" /* .......2 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000090" /* ........ */ $"00000074000000D0" /* ...t.... */ $"0000008EFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024E6F740000" /* ...Not.. */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0018000000380000" /* .....8.. */ $"01540000004EFFFF" /* .T...N.. */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000005874657874" /* ...Xtext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000010" /* ........ */ $"000000F000000034" /* .......4 */ $"FFFFFFFF00002C41" /* ......,A */ $"726520796F752061" /* re you a */ $"6464696E67206F6E" /* dding on */ $"65206F6620746865" /* e of the */ $"20666F6C6C6F7769" /* followi */ $"6E6720656E747269" /* ng entri */ $"65733F0000000000" /* es?..... */ }; /* 'VRes' 137 * * "Site Data Dialog" */ data 'VRes' (137,"Site Data Dialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001540000" /* .....T.. */ $"010E000001540000" /* .....T.. */ $"010E000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000095369746520" /* ...Site */ $"4461746100000000" /* Data.... */ $"0000000100000002" /* ........ */ $"0000003A00000000" /* ...:.... */ $"0000002A64697672" /* ...*divr */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"00000004000000BC" /* ........ */ $"FFFFFFFC000000BF" /* ........ */ $"FFFFFFFF0000FFFF" /* ........ */ $"FFFF000000880000" /* ........ */ $"0044000000346772" /* .D...4gr */ $"6F75000000000000" /* ou...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"00080000014C0000" /* .....L.. */ $"007CFFFFFFFF0000" /* .|...... */ $"0955534441205A6F" /* .USDA Zo */ $"6E65000000000000" /* ne...... */ $"0000000000000000" /* ........ */ $"0034746578740000" /* .4text.. */ $"000A00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00400000005C0000" /* .@...\.. */ $"012C0000006CFFFF" /* .,...l.. */ $"FFFF000008756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"00000000004C0000" /* .....L.. */ $"00000000003C7062" /* .....<pb */ $"746E000000090000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000CC0000" /* ........ */ $"0044000001440000" /* .D...D.. */ $"005EFFFFFFFFFFFF" /* .^...... */ $"0000000000000000" /* ........ */ $"0C4C6F6F6B207570" /* .Look up */ $"205A6F6E65000000" /* Zone... */ $"0052000000000000" /* .R...... */ $"0042656469740000" /* .Bedit.. */ $"000800000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0078000000480000" /* .x...H.. */ $"00C000000060FFFF" /* .....`.. */ $"FFFFFFFF00750000" /* .....u.. */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004600000000" /* ...F.... */ $"0000003674657874" /* ...6text */ $"0000001600000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000C0000004C" /* .......L */ $"000000680000005C" /* ...h...\ */ $"FFFFFFFF00000B55" /* .......U */ $"53205A697020436F" /* S Zip Co */ $"6465000000000000" /* de...... */ $"0040000000000000" /* .@...... */ $"0030746578740000" /* .0text.. */ $"001500000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"008C000000340000" /* .....4.. */ $"00D700000044FFFF" /* .....D.. */ $"FFFF0000056F722E" /* .....or. */ $"2E2E000000000000" /* ........ */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00380000001C0000" /* .8...... */ $"00EB00000032FFFF" /* .....2.. */ $"FFFF000000000000" /* ........ */ $"0000004600000000" /* ...F.... */ $"000000367062746E" /* ...6pbtn */ $"0000000200000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000EE000000E8" /* ........ */ $"0000014000000102" /* ...@.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000643" /* .......C */ $"616E63656C650000" /* ancele.. */ $"0042000000000000" /* .B...... */ $"00327062746E0000" /* .2pbtn.. */ $"000100000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0096000000E80000" /* ........ */ $"00E800000102FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000000024F4B74" /* .....OKt */ $"0000004200000000" /* ...B.... */ $"000000327062746E" /* ...2pbtn */ $"0000000700000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000100000000A0" /* ........ */ $"00000138000000BA" /* ...8.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000353" /* .......S */ $"6574000000420000" /* et...B.. */ $"0000000000327062" /* .....2pb */ $"746E000000050000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000001000000" /* ........ */ $"0080000001380000" /* .....8.. */ $"009AFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"035365740000003C" /* .Set...< */ $"000000000000002C" /* ......., */ $"7465787400000006" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000A0" /* ........ */ $"000000A4000000EB" /* ........ */ $"000000B4FFFFFFFF" /* ........ */ $"0000007500000000" /* ...u.... */ $"0000003C00000000" /* ...<.... */ $"0000002C74657874" /* ...,text */ $"0000000400000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000009800000088" /* ........ */ $"000000E300000098" /* ........ */ $"FFFFFFFF00000075" /* .......u */ $"000000000000004C" /* .......L */ $"000000000000003C" /* .......< */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000010" /* ........ */ $"000000A400000094" /* ........ */ $"000000B4FFFFFFFF" /* ........ */ $"0000104669727374" /* ...First */ $"2046616C6C204672" /* Fall Fr */ $"6F73740000000000" /* ost..... */ $"0000000000000000" /* ........ */ $"0000003C74657874" /* ...<text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001000000088" /* ........ */ $"0000008400000098" /* ........ */ $"FFFFFFFF0000114C" /* .......L */ $"6173742053707269" /* ast Spri */ $"6E672046726F7374" /* ng Frost */ $"00000000" /* .... */ }; /* 'VRes' 139 * * "Registration Dialog" */ data 'VRes' (139,"Registration Dialog") { $"0000000000000072" /* .......r */ $"00000062646C6F67" /* ...bdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"00DC0000015E0000" /* .....^.. */ $"00DC0000015E0000" /* .....^.. */ $"00DC000000000000" /* ........ */ $"00001B5265676973" /* ...Regis */ $"746572696E672052" /* tering R */ $"6564737461727420" /* edstart */ $"47617264656E0000" /* Garden.. */ $"0000000000010000" /* ........ */ $"0000000000E60000" /* ........ */ $"0048000000386772" /* .H...8gr */ $"6F75000000000000" /* ou...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000060000" /* ........ */ $"0006000001540000" /* .....T.. */ $"003CFFFFFFFF0000" /* .<...... */ $"0D57687920526567" /* .Why Reg */ $"69737465723F0000" /* ister?.. */ $"0000000000000000" /* ........ */ $"00000000008E7465" /* ......te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000080000" /* ........ */ $"0014000001480000" /* .....H.. */ $"0030FFFFFFFF0000" /* .0...... */ $"6252656769737465" /* bRegiste */ $"72696E6720526564" /* ring Red */ $"7374617274204761" /* start Ga */ $"7264656E2077696C" /* rden wil */ $"6C20676574207269" /* l get ri */ $"64206F6620746865" /* d of the */ $"736520616E6E6F79" /* se annoy */ $"696E67206469616C" /* ing dial */ $"6F67732C20616E64" /* ogs, and */ $"2068656C70206675" /* help fu */ $"6E64206675747572" /* nd futur */ $"6520666561747572" /* e featur */ $"65732E7500000084" /* es.u.... */ $"000002840000004E" /* .......N */ $"0000003E67726F75" /* ...>grou */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000600000040" /* .......@ */ $"00000154000000B4" /* ...T.... */ $"FFFFFFFF00001248" /* .......H */ $"6F7720446F204920" /* ow Do I */ $"5265676973746572" /* Register */ $"3F00000000000000" /* ?....... */ $"0082000000000000" /* ........ */ $"0072746578740000" /* .rtext.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000400000" /* .....@.. */ $"01450000004CFFFF" /* .E...L.. */ $"FFFF000046332920" /* ....F3) */ $"456E746572207468" /* Enter th */ $"6520726567697374" /* e regist */ $"726174696F6E2063" /* ration c */ $"6F646520696E2062" /* ode in b */ $"656C6F7720616E64" /* elow and */ $"20636C69636B2074" /* click t */ $"6865207265676973" /* he regis */ $"7465722062757474" /* ter butt */ $"6F6E2E0000000084" /* on...... */ $"0000008000000000" /* ........ */ $"0000007074657874" /* ...ptext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000070000002B" /* .......+ */ $"0000013C00000037" /* ...<...7 */ $"FFFFFFFFFFFF4532" /* ......E2 */ $"29204F7264657220" /* ) Order */ $"5265647374617274" /* Redstart */ $"2047617264656E2E" /* Garden. */ $"2020412072656769" /* A regi */ $"7374726174696F6E" /* stration */ $"20636F6465207769" /* code wi */ $"6C6C206265206D61" /* ll be ma */ $"696C656420746F20" /* iled to */ $"796F752E00000084" /* you..... */ $"0000005400000000" /* ...T.... */ $"0000004474657874" /* ...Dtext */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000700000016" /* ........ */ $"000000CC00000026" /* .......& */ $"FFFFFFFF00001831" /* .......1 */ $"2920476F20746F20" /* ) Go to */ $"6F726465722E6B61" /* order.ka */ $"67692E636F6D3A28" /* gi.com:( */ $"0000008400000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"0000005400000044" /* ...T...D */ $"00000064FFFFFFFF" /* ...d.... */ $"000005436F64653A" /* ...Code: */ $"0000000000000052" /* .......R */ $"0000000000000042" /* .......B */ $"6564697400000004" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000030" /* .......0 */ $"000000530000013C" /* ...S...< */ $"00000067FFFFFFFF" /* ...g.... */ $"FFFF007500000000" /* ...u.... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"003E7062746E0000" /* .>pbtn.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"007C000000100000" /* .|...... */ $"00EC0000002AFFFF" /* .....*.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000E6F7264" /* .....ord */ $"65722E6B6167692E" /* er.kagi. */ $"636F6D0000000046" /* com....F */ $"0000000000000036" /* .......6 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000F0" /* ........ */ $"000000B800000154" /* .......T */ $"000000D2FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000643616E6365" /* ...Cance */ $"6C65000000000000" /* le...... */ $"0000000000387062" /* .....8pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000008C0000" /* ........ */ $"00B8000000F00000" /* ........ */ $"00D2FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0852656769737465" /* .Registe */ $"7200" /* r. */ }; /* 'VRes' 140 * * "GerminationDialog" */ data 'VRes' (140,"GerminationDialog") { $"0000000000000062" /* .......b */ $"00000052646C6F67" /* ...Rdlog */ $"0000001000000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000001900000" /* ........ */ $"012C000001900000" /* .,...... */ $"012C000001900000" /* .,...... */ $"012C000000000000" /* .,...... */ $"00000B4765726D69" /* ...Germi */ $"6E6174696F6E0000" /* nation.. */ $"0000000000010000" /* ........ */ $"0002000000000000" /* ........ */ $"003A0000002A636F" /* .:...*co */ $"6C72000000000000" /* lr...... */ $"0000FFFFFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000FFFFFFFF0000" /* ........ */ $"000000010000004A" /* .......J */ $"000000000000003A" /* .......: */ $"7062746E0000000C" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000006C" /* .......l */ $"000000F8000000CC" /* ........ */ $"00000112FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000A44656C6574" /* ...Delet */ $"6520526F77000000" /* e Row... */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000B00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0008000000F80000" /* ........ */ $"006800000112FFFF" /* .h...... */ $"FFFFFFFF00000000" /* ........ */ $"00000000074E6577" /* .....New */ $"20526F7700000046" /* Row...F */ $"0000000000000036" /* .......6 */ $"7062746E00000002" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000000000D0" /* ........ */ $"000000F800000118" /* ........ */ $"00000112FFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00000643616E6365" /* ...Cance */ $"6C65000000420000" /* le...B.. */ $"0000000000327062" /* .....2pb */ $"746E000000010000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00F8000001740000" /* .....t.. */ $"0112FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"024F4B7400000000" /* .OKt.... */ $"000000000000002C" /* ......., */ $"475461620000000A" /* GTab.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000000C" /* ........ */ $"0000001400000178" /* .......x */ $"000000E4FFFFFFFF" /* ........ */ $"000000000000FFFF" /* ........ */ }; /* 'VRes' 141 * * "Text Entry Dialog" */ data 'VRes' (141,"Text Entry Dialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00E60000012C0000" /* .....,.. */ $"00E6000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000002" /* ........ */ $"0000005200000000" /* ...R.... */ $"0000004265646974" /* ...Bedit */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000800000008" /* ........ */ $"00000124000000C0" /* ...$.... */ $"FFFFFFFFFFFF0075" /* .......u */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000004" /* ........ */ $"FFFF000000460000" /* .....F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000D60000" /* ........ */ $"00C8000001200000" /* ..... .. */ $"00E2FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000000000000000" /* ........ */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000086000000C8" /* ........ */ $"000000D0000000E2" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74" /* Kt */ }; /* 'VRes' 142 * * "InfoSupplier" */ data 'VRes' (142,"InfoSupplier") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000015E0000" /* .....^.. */ $"01770000015E0000" /* .w...^.. */ $"01770000015E0000" /* .w...^.. */ $"0177000000000000" /* .w...... */ $"00001256656E646F" /* ...Vendo */ $"7220496E666F726D" /* r Inform */ $"6174696F6E6F0000" /* ationo.. */ $"0000000000010000" /* ........ */ $"0002000000440000" /* .....D.. */ $"0000000000346368" /* .....4ch */ $"6B62000000150000" /* kb...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000001200000" /* ..... .. */ $"000C000001540000" /* .....T.. */ $"001CFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0448696465740000" /* .Hidet.. */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000D00000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00480000013C0000" /* .H...<.. */ $"015400000153FFFF" /* .T...S.. */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000400000138" /* .......8 */ $"0000004000000148" /* ...@...H */ $"FFFFFFFF00000645" /* .......E */ $"2D4D61696C650000" /* -Maile.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000C0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000540000" /* .....T.. */ $"0040000000A90000" /* .@...... */ $"0057FFFFFFFFFFFF" /* .W...... */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000046" /* .......F */ $"0000000000000036" /* .......6 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000440000004F" /* ...D...O */ $"00000054FFFFFFFF" /* ...T.... */ $"00000A53686F7274" /* ...Short */ $"204E616D65000000" /* Name... */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000B0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000480000" /* .....H.. */ $"0120000000E00000" /* . ...... */ $"0137FFFFFFFFFFFF" /* .7...... */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000003E" /* .......> */ $"000000000000002E" /* ........ */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"0000011C0000003C" /* .......< */ $"0000012CFFFFFFFF" /* ...,.... */ $"0000034661780000" /* ...Fax.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"69740000000A0000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000480000" /* .....H.. */ $"0104000000E00000" /* ........ */ $"011BFFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"0000010000000040" /* .......@ */ $"00000110FFFFFFFF" /* ........ */ $"00000550686F6E65" /* ...Phone */ $"000000000000003A" /* .......: */ $"000000000000002A" /* .......* */ $"706F706D00000014" /* popm.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"00000008000000E0" /* ........ */ $"0000001EFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00B6000001580000" /* .....X.. */ $"010000000172FFFF" /* .....r.. */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"000000000000010A" /* ........ */ $"0000015800000154" /* ...X...T */ $"00000172FFFFFFFF" /* ...r.... */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000900000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0048000000E80000" /* .H...... */ $"0154000000FFFFFF" /* .T...... */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000004000000E4" /* ........ */ $"00000040000000F4" /* ...@.... */ $"FFFFFFFF00000743" /* .......C */ $"6F756E7472790000" /* ountry.. */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"6974000000080000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000880000" /* ........ */ $"00CC000001180000" /* ........ */ $"00E3FFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000004E" /* .......N */ $"000000000000003E" /* .......> */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000CC00000080" /* ........ */ $"000000DCFFFFFFFF" /* ........ */ $"0000125A6970206F" /* ...Zip o */ $"7220506F7374616C" /* r Postal */ $"20436F6465000000" /* Code... */ $"00000000005A0000" /* .....Z.. */ $"00000000004A6564" /* .....Jed */ $"6974000000070000" /* it...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000880000" /* ........ */ $"00B0000001180000" /* ........ */ $"00C7FFFFFFFFFFFF" /* ........ */ $"08756E7469746C65" /* .untitle */ $"6400000000000000" /* d....... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000000" /* text.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000004" /* ........ */ $"000000B400000038" /* .......8 */ $"000000C4FFFFFFFF" /* ........ */ $"0000055374617465" /* ...State */ $"000000000000005A" /* .......Z */ $"000000000000004A" /* .......J */ $"6564697400000006" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000048" /* .......H */ $"0000009400000154" /* .......T */ $"000000ABFFFFFFFF" /* ........ */ $"FFFF08756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0040000000000000" /* .@...... */ $"0030746578740000" /* .0text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000980000" /* ........ */ $"0034000000A8FFFF" /* .4...... */ $"FFFF000004436974" /* .....Cit */ $"7974000000000000" /* yt...... */ $"005A000000000000" /* .Z...... */ $"004A656469740000" /* .Jedit.. */ $"000500000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0048000000780000" /* .H...x.. */ $"01540000008FFFFF" /* .T...... */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000004200000000" /* ...B.... */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000000400000028" /* .......( */ $"0000004F00000038" /* ...O...8 */ $"FFFFFFFF00000743" /* .......C */ $"6F6D70616E790000" /* ompany.. */ $"0000000000420000" /* .....B.. */ $"0000000000327465" /* .....2te */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000040000" /* ........ */ $"005C0000004F0000" /* .\...O.. */ $"006CFFFFFFFF0000" /* .l...... */ $"0741646472657373" /* .Address */ $"000000000000005A" /* .......Z */ $"000000000000004A" /* .......J */ $"6564697400000004" /* edit.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000048" /* .......H */ $"0000005C00000154" /* ...\...T */ $"00000073FFFFFFFF" /* ...s.... */ $"FFFF08756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"004A656469740000" /* .Jedit.. */ $"000300000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0054000000250000" /* .T...%.. */ $"01540000003CFFFF" /* .T...<.. */ $"FFFFFFFF08756E74" /* .....unt */ $"69746C6564000000" /* itled... */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ }; /* 'VRes' 143 * * "ColumnSetDialog" */ data 'VRes' (143,"ColumnSetDialog") { $"000000000000006A" /* .......j */ $"0000005A646C6F67" /* ...Zdlog */ $"0000010000000000" /* ........ */ $"FFFF000000960000" /* ........ */ $"001E000000000000" /* ........ */ $"0000000001680000" /* .....h.. */ $"0118000001680000" /* .....h.. */ $"0118000001680000" /* .....h.. */ $"0118000000000000" /* ........ */ $"0000124564697420" /* ...Edit */ $"4461746162617365" /* Database */ $"2056696577000000" /* View... */ $"0000000000010000" /* ........ */ $"0002000000460000" /* .....F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000C30000" /* ........ */ $"00FC000001080000" /* ........ */ $"0116FFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000004200000000" /* ...B.... */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000110000000FC" /* ........ */ $"0000015500000116" /* ...U.... */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74000000760000" /* Kt...v.. */ $"003C0000002C7363" /* .<...,sc */ $"7276000000000000" /* rv...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000040000" /* ........ */ $"0034000001640000" /* .4...d.. */ $"00F8FFFFFFFF0000" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"002A475461620000" /* .*GTab.. */ $"000600000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"014F000000B3FFFF" /* .O...... */ $"FFFF000000000000" /* ........ */ $"0000004400000000" /* ...D.... */ $"0000003474657874" /* ...4text */ $"0000000500000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000002C00000004" /* ...,.... */ $"0000016000000030" /* ...`...0 */ $"FFFFFFFF00000875" /* .......u */ $"6E7469746C656400" /* ntitled. */ $"0000000000000000" /* ........ */ $"0000000000000032" /* .......2 */ $"69636F6E00000007" /* icon.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000008" /* ........ */ $"0000000400000028" /* .......( */ $"00000024FFFFFFFF" /* ...$.... */ $"0000000000020000" /* ........ */ $"002000000020" /* . ... */ }; /* 'VRes' 144 * * "SetNameDialog" */ data 'VRes' (144,"SetNameDialog") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000012C0000" /* .....,.. */ $"00640000012C0000" /* .d...,.. */ $"00640000012C0000" /* .d...,.. */ $"00C8000000000000" /* ........ */ $"0000094E616D6520" /* ...Name */ $"5669657700000000" /* View.... */ $"0000000100000002" /* ........ */ $"0000004200000000" /* ...B.... */ $"000000327062746E" /* ...2pbtn */ $"0000000100000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000E000000040" /* .......@ */ $"000001280000005A" /* ...(...Z */ $"FFFFFFFFFFFF0000" /* ........ */ $"000000000000024F" /* .......O */ $"4B74000000460000" /* Kt...F.. */ $"0000000000367062" /* .....6pb */ $"746E000000020000" /* tn...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000900000" /* ........ */ $"0040000000D80000" /* .@...... */ $"005AFFFFFFFFFFFF" /* .Z...... */ $"0000000000000000" /* ........ */ $"0643616E63656C65" /* .Cancele */ $"0000005200000000" /* ...R.... */ $"0000004265646974" /* ...Bedit */ $"0000000300000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000001400000020" /* ....... */ $"0000011400000038" /* .......8 */ $"FFFFFFFFFFFF004E" /* .......N */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"0000000000427465" /* .....Bte */ $"7874000000000000" /* xt...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000140000" /* ........ */ $"000C0000010C0000" /* ........ */ $"001CFFFFFFFF0000" /* ........ */ $"16506C6561736520" /* .Please */ $"6E616D6520746869" /* name thi */ $"7320766965772E6E" /* s view.n */ $"00000000" /* .... */ }; /* 'VRes' 148 * * "Plugin Selector" */ data 'VRes' (148,"Plugin Selector") { $"0000000000000060" /* .......` */ $"00000050646C6F67" /* ...Pdlog */ $"0000001200000000" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000000000000000" /* ........ */ $"00000000017C0000" /* .....|.. */ $"01040000017C0000" /* .....|.. */ $"01040000017C0000" /* .....|.. */ $"0104000000000000" /* ........ */ $"000008756E746974" /* ...untit */ $"6C65640000000000" /* led..... */ $"0000000000000000" /* ........ */ $"000000760000003C" /* ...v...< */ $"0000002C73637276" /* ...,scrv */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000005800000030" /* ...X...0 */ $"00000178000000DC" /* ...x.... */ $"FFFFFFFF0000FFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000000000002A" /* .......* */ $"4754616200000000" /* GTab.... */ $"00000000FFFFFFFF" /* ........ */ $"00000000FFFFFFFF" /* ........ */ $"FFFFFFFF0000010F" /* ........ */ $"0000009BFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"0046000000000000" /* .F...... */ $"00367062746E0000" /* .6pbtn.. */ $"000200000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"00E4000000E40000" /* ........ */ $"0124000000FEFFFF" /* .$...... */ $"FFFFFFFF00000000" /* ........ */ $"000000000643616E" /* .....Can */ $"63656C6500000042" /* cele...B */ $"0000000000000032" /* .......2 */ $"7062746E00000001" /* pbtn.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000130" /* .......0 */ $"000000E400000170" /* .......p */ $"000000FEFFFFFFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000024F4B740000" /* ...OKt.. */ $"0042000000000000" /* .B...... */ $"0032746578740000" /* .2text.. */ $"000000000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0004000000300000" /* .....0.. */ $"004F000000CCFFFF" /* .O...... */ $"FFFF000006416374" /* .....Act */ $"696F6E6500000000" /* ione.... */ $"0000004000000000" /* ...@.... */ $"0000003074657874" /* ...0text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000840000000C" /* ........ */ $"000000AE0000001C" /* ........ */ $"FFFFFFFF0000044E" /* .......N */ $"616D657400000000" /* amet.... */ $"0000000000000000" /* ........ */ $"0000003274657874" /* ...2text */ $"0000000000000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"000000500000000B" /* ...P.... */ $"0000007A0000001C" /* ...z.... */ $"FFFFFFFF00000641" /* .......A */ $"6374697665650000" /* ctivee.. */ $"0000" /* .. */ }; /* 'VRes' 150 * * "Default Search Panel" */ data 'VRes' (150,"Default Search Panel") { $"0000000000000036" /* .......6 */ $"0000002676696577" /* ...&view */ $"0000009600000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"FFFFFFFFFFFFFFFF" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"00000000003A0000" /* .....:.. */ $"002A6261636B0000" /* .*back.. */ $"000000000000FFFF" /* ........ */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000000" /* ........ */ $"000000000000FFFF" /* ........ */ $"FFFF000000000001" /* ........ */ $"0000004A00000000" /* ...J.... */ $"0000003A7062746E" /* ...:pbtn */ $"0000000800000000" /* ........ */ $"FFFFFFFF00000000" /* ........ */ $"0000017800000014" /* ...x.... */ $"000002000000004C" /* .......L */ $"FFFFFFFFFFFF0000" /* ........ */ $"0000000000000A53" /* .......S */ $"6974652044617461" /* ite Data */ $"C9000000003A0000" /* .....:.. */ $"00000000002A706F" /* .....*po */ $"706D000000070000" /* pm...... */ $"0000FFFFFFFF0000" /* ........ */ $"0000000000840000" /* ........ */ $"00A8000000FC0000" /* ........ */ $"00BEFFFFFFFF0000" /* ........ */ $"0000000000000040" /* .......@ */ $"0000000000000030" /* .......0 */ $"7465787400000069" /* text...i */ $"00000000FFFFFFFF" /* ........ */ $"000000000000000C" /* ........ */ $"000000AC00000057" /* .......W */ $"000000BCFFFFFFFF" /* ........ */ $"000004466F726D74" /* ...Formt */ $"000000000000003A" /* .......: */ $"000000000000002A" /* .......* */ $"706F706D00000006" /* popm.... */ $"00000000FFFFFFFF" /* ........ */ $"0000000000000118" /* ........ */ $"0000008C00000190" /* ........ */ $"000000A2FFFFFFFF" /* ........ */ $"0000000000000000" /* ........ */ $"003A000000000000" /* .:...... */ $"002A706F706D0000" /* .*popm.. */ $"000400000000FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0118000000700000" /* .....p.. */ $"019000000086FFFF" /* ........ */ $"FFFF000000000000" /* ........ */ $"0000003E00000000" /* ...>.... */ $"0000002E74657874" /* ....text */ $"0000006B00000000" /* ...k.... */ $"FFFFFFFF00000000" /* ........ */ $"0000010400000090" /* ........ */ $"00000118000000A0" /* ........ */ $"FFFFFFFF00000274" /* .......t */ $"6F74000000000000" /* ot...... */ $"003E000000000000" /* .>...... */ $"002E746578740000" /* ..text.. */ $"006A00000000FFFF" /* .j...... */ $"FFFF000000000000" /* ........ */ $"0104000000740000" /* .....t.. */ $"011800000084FFFF" /* ........ */ $"FFFF000002746F74" /* .....tot... [truncated message content] |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 14:12:47
|
Update of /cvsroot/igarden/Garden/source/resources/English.lproj In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv10739 Modified Files: Tag: Release_branch_v1 AttributeValues.cin AttributeValues.r AttributeValues.rc AttributeValues.rdata Log Message: Fully implement planting regions for choosing the quick pick list Index: AttributeValues.rc =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/English.lproj/AttributeValues.rc,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** AttributeValues.rc 24 May 2006 12:02:34 -0000 1.2 --- AttributeValues.rc 13 Dec 2006 14:12:45 -0000 1.2.2.1 *************** *** 1 **** ! /* generated from AttributeValues.cin * * This file was automatically generated by YAAF * Constructor. */ /* 'EMsg' 3000 * * "MaterialType" */ 3000 EMsg BEGIN 0x0E00, 0x550B, 0x736E, 0x6570, /* ...Unspe */ 0x6963, 0x6966, 0x6465, 0x0F00, /* cified.. */ 0x6F63, 0x696E, 0x6566, 0x6F72, /* conifero */ 0x7375, 0x7420, 0x6572, 0x0065, /* us tree. */ 0x640E, 0x6365, 0x6469, 0x6F75, /* .deciduo */ 0x7375, 0x7420, 0x6572, 0x0065, /* us tree. */ 0x6310, 0x6E6F, 0x6669, 0x7265, /* .conifer */ 0x756F, 0x2073, 0x6873, 0x7572, /* ous shru */ 0x0062, 0x640F, 0x6365, 0x6469, /* b..decid */ 0x6F75, 0x7375, 0x7320, 0x7268, /* uous shr */ 0x6275, 0x0F00, 0x7262, 0x616F, /* ub..broa */ 0x6C64, 0x6165, 0x2066, 0x6873, /* dleaf sh */ 0x7572, 0x0062, 0x640E, 0x6365, /* rub..dec */ 0x6469, 0x6F75, 0x7375, 0x7620, /* iduous v */ 0x6E69, 0x0065, 0x620E, 0x6F72, /* ine..bro */ 0x6461, 0x656C, 0x6661, 0x7620, /* adleaf v */ 0x6E69, 0x0065, 0x6106, 0x6E6E, /* ine..ann */ 0x6175, 0x006C, 0x7009, 0x7265, /* ual..per */ 0x6E65, 0x696E, 0x6C61, 0x0800, /* ennial.. */ 0x6962, 0x6E65, 0x696E, 0x6C61, /* biennial */ 0x0400, 0x7562, 0x626C, 0x0900, /* ..bulb.. */ 0x7247, 0x6D61, 0x6E61, 0x696F, /* Gramanoi */ 0x0064, 0x5609, 0x6765, 0x7465, /* d..Veget */ 0x6261, 0x656C, 0x6700, /* able.g */ END /* 'EMsg' 3001 * * "PlantZone" */ 3001 EMsg BEGIN 0x1100, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0100, /* cified.. */ 0x0031, 0x3201, 0x0200, 0x6232, /* 1..2..2b */ 0x0100, 0x0033, 0x3302, 0x0062, /* ..3..3b. */ 0x3402, 0x0061, 0x3402, 0x0062, /* .4a..4b. */ 0x3502, 0x0061, 0x3502, 0x0062, /* .5a..5b. */ 0x3602, 0x0061, 0x3602, 0x0062, /* .6a..6b. */ 0x3702, 0x0061, 0x3801, 0x0100, /* .7a..8.. */ 0x0039, 0x3102, 0x0030, 0x3102, /* 9..10..1 */ 0x0031, /* 1. */ END /* 'EMsg' 3002 * * "PlantForm" */ 3002 EMsg BEGIN 0x0D00, 0x550B, 0x736E, 0x6570, /* ...Unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x6C67, 0x626F, 0x6C75, 0x7261, /* globular */ 0x0C00, 0x7075, 0x6972, 0x6867, /* ..uprigh */ 0x2074, 0x766F, 0x6C61, 0x0A00, /* t oval.. */ 0x7262, 0x616F, 0x2064, 0x766F, /* broad ov */ 0x6C61, 0x0900, 0x7970, 0x6172, /* al..pyra */ 0x696D, 0x6164, 0x006C, 0x6308, /* midal..c */ 0x6C6F, 0x6D75, 0x616E, 0x0072, /* olumnar. */ 0x6909, 0x7272, 0x6765, 0x6C75, /* .irregul */ 0x7261, 0x0700, 0x6577, 0x7065, /* ar..weep */ 0x6E69, 0x0067, 0x7309, 0x7270, /* ing..spr */ 0x6165, 0x6964, 0x676E, 0x0900, /* eading.. */ 0x7270, 0x736F, 0x7274, 0x7461, /* prostrat */ 0x0065, 0x7604, 0x6E69, 0x0065, /* e..vine. */ 0x6409, 0x6365, 0x6D75, 0x6162, /* .decumba */ 0x746E, 0x0400, 0x6176, 0x6573, /* nt..vase */ 0x6100, /* .a */ END /* 'EMsg' 3003 * * "GrowthRate" */ 3003 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6F6C, /* very slo */ 0x0077, 0x7304, 0x6F6C, 0x0077, /* w..slow. */ 0x6D08, 0x646F, 0x7265, 0x7461, /* .moderat */ 0x0065, 0x6604, 0x7361, 0x0074, /* e..fast. */ 0x7609, 0x7265, 0x2079, 0x6166, /* .very fa */ 0x7473, 0x6100, /* st.a */ END /* 'EMsg' 3004 * * "LifeExpecancy" */ 3004 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x1000, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6F68, /* very sho */ 0x7472, 0x6C20, 0x7669, 0x6465, /* rt lived */ 0x0B00, 0x6873, 0x726F, 0x2074, /* ..short */ 0x696C, 0x6576, 0x0064, 0x6D0C, /* lived..m */ 0x6465, 0x7569, 0x206D, 0x696C, /* edium li */ 0x6576, 0x0064, 0x6C0A, 0x6E6F, /* ved..lon */ 0x2067, 0x696C, 0x6576, 0x0064, /* g lived. */ 0x760F, 0x7265, 0x2079, 0x6F6C, /* .very lo */ 0x676E, 0x6C20, 0x7669, 0x6465, /* ng lived */ 0x6E00, /* .n */ END /* 'EMsg' 3005 * * "SoilPh" */ 3005 EMsg BEGIN 0x0600, 0x750B, 0x7370, 0x6570, /* ...upspe */ 0x6963, 0x6966, 0x6465, 0x0B00, /* cified.. */ 0x7473, 0x6F72, 0x676E, 0x6120, /* strong a */ 0x6963, 0x0064, 0x6D0D, 0x646F, /* cid..mod */ 0x7265, 0x7461, 0x2065, 0x6361, /* erate ac */ 0x6469, 0x0C00, 0x696C, 0x6867, /* id..ligh */ 0x6C74, 0x2079, 0x6361, 0x6469, /* tly acid */ 0x0700, 0x656E, 0x7475, 0x6172, /* ..neutra */ 0x006C, 0x6108, 0x6B6C, 0x6C61, /* l..alkal */ 0x6E69, 0x0065, /* ine. */ END /* 'EMsg' 3006 * * "SoilTexture" */ 3006 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6173, 0x646E, 0x0A00, 0x6173, /* sand..sa */ 0x646E, 0x2079, 0x6F6C, 0x6D61, /* ndy loam */ 0x0400, 0x6F6C, 0x6D61, 0x0900, /* ..loam.. */ 0x6C63, 0x7961, 0x6C20, 0x616F, /* clay loa */ 0x006D, 0x6304, 0x616C, 0x0079, /* m..clay. */ END /* 'EMsg' 3007 * * "SoilMoisture" */ 3007 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0300, /* cified.. */ 0x6577, 0x0074, 0x6D05, 0x696F, /* wet..moi */ 0x7473, 0x0700, 0x7661, 0x7265, /* st..aver */ 0x6761, 0x0065, 0x6403, 0x7972, /* age..dry */ 0x0800, 0x6576, 0x7972, 0x6420, /* ..very d */ 0x7972, 0x6300, /* ry.c */ END /* 'EMsg' 3008 * * "RootPattern" */ 3008 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0700, /* cified.. */ 0x6873, 0x6C61, 0x6F6C, 0x0077, /* shallow. */ 0x640C, 0x6565, 0x2070, 0x616C, /* .deep la */ 0x6574, 0x6172, 0x006C, 0x7408, /* teral..t */ 0x7061, 0x7220, 0x6F6F, 0x0074, /* ap root. */ END /* 'EMsg' 3009 * * "TransplantEase" */ 3009 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6165, 0x7973, 0x0600, 0x6F6E, /* easy..no */ 0x6D72, 0x6C61, 0x0900, 0x6964, /* rmal..di */ 0x6666, 0x6369, 0x6C75, 0x0074, /* fficult. */ 0x760E, 0x7265, 0x2079, 0x6964, /* .very di */ 0x6666, 0x6369, 0x6C75, 0x0074, /* fficult. */ END /* 'EMsg' 3010 * * "Transplant Condition" */ 3010 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6162, 0x6572, 0x7220, 0x6F6F, /* bare roo */ 0x0074, 0x6206, 0x7275, 0x616C, /* t..burla */ 0x0070, 0x6309, 0x6E6F, 0x6174, /* p..conta */ 0x6E69, 0x7265, 0x2000, /* iner. */ END /* 'EMsg' 3011 * * "Availability" */ 3011 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x1000, /* cified.. */ 0x6C61, 0x6177, 0x7379, 0x6120, /* always a */ 0x6176, 0x6C69, 0x6261, 0x656C, /* vailable */ 0x1200, 0x6F6E, 0x6D72, 0x6C61, /* ..normal */ 0x796C, 0x6120, 0x6176, 0x6C69, /* ly avail */ 0x6261, 0x656C, 0x1300, 0x6F73, /* able..so */ 0x656D, 0x6974, 0x656D, 0x2073, /* metimes */ 0x7661, 0x6961, 0x616C, 0x6C62, /* availabl */ 0x0065, 0x7210, 0x7261, 0x6C65, /* e..rarel */ 0x2079, 0x7661, 0x6961, 0x616C, /* y availa */ 0x6C62, 0x0065, /* ble. */ END /* 'EMsg' 3012 * * "ShadeTolerance" */ 3012 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x7566, 0x6C6C, 0x7320, 0x6E75, /* full sun */ 0x0B00, 0x6170, 0x7472, 0x6169, /* ..partia */ 0x206C, 0x7573, 0x006E, 0x680A, /* l sun..h */ 0x6C61, 0x2066, 0x6873, 0x6461, /* alf shad */ 0x0065, 0x660A, 0x6C75, 0x206C, /* e..full */ 0x6873, 0x6461, 0x0065, /* shade. */ END /* 'EMsg' 3013 * * "BranchPattern" */ 3013 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x6576, 0x7472, 0x6369, 0x6C61, /* vertical */ 0x0900, 0x7361, 0x6563, 0x646E, /* ..ascend */ 0x6E69, 0x0067, 0x680A, 0x726F, /* ing..hor */ 0x7A69, 0x6E6F, 0x6174, 0x006C, /* izontal. */ 0x640A, 0x7365, 0x6563, 0x646E, /* .descend */ 0x6E69, 0x0067, 0x7009, 0x6E65, /* ing..pen */ 0x7564, 0x6F6C, 0x7375, 0x6C00, /* dulous.l */ END /* 'EMsg' 3014 * * "LeafingPeriod" */ 3014 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6165, 0x6C72, 0x0079, 0x690C, /* early..i */ 0x746E, 0x7265, 0x656D, 0x6964, /* ntermedi */ 0x7461, 0x0065, 0x6C04, 0x7461, /* ate..lat */ 0x0065, 0x7609, 0x7265, 0x2079, /* e..very */ 0x616C, 0x6574, 0x6500, /* late.e */ END /* 'EMsg' 3015 * * "FoliageFinish" */ 3015 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6C67, 0x736F, 0x7973, 0x0C00, /* glossy.. */ 0x6E69, 0x6574, 0x6D72, 0x6465, /* intermed */ 0x6169, 0x6574, 0x0400, 0x7564, /* iate..du */ 0x6C6C, 0x7600, /* ll.v */ END /* 'EMsg' 3016 * * "FoliageTexture" */ 3016 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6966, 0x656E, 0x0600, 0x656D, /* fine..me */ 0x6964, 0x6D75, 0x0600, 0x6F63, /* dium..co */ 0x7261, 0x6573, 0x0400, /* arse.. */ END /* 'EMsg' 3017 * * "FoliageDensity" */ 3017 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x706F, 0x6E65, 0x0800, 0x6F6D, /* open..mo */ 0x6564, 0x6172, 0x6574, 0x0500, /* derate.. */ 0x6564, 0x736E, 0x0065, /* dense. */ END /* 'EMsg' 3018 * * "FoliageColor" */ 3018 EMsg BEGIN 0x0F00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0A00, /* cified.. */ 0x6164, 0x6B72, 0x6720, 0x6572, /* dark gre */ 0x6E65, 0x1500, 0x696C, 0x6867, /* en..ligh */ 0x2074, 0x6F74, 0x7920, 0x6C65, /* t to yel */ 0x6F6C, 0x2D77, 0x7267, 0x6565, /* low-gree */ 0x006E, 0x6D0C, 0x6465, 0x7569, /* n..mediu */ 0x206D, 0x7267, 0x6565, 0x006E, /* m green. */ 0x6215, 0x756C, 0x2065, 0x7267, /* .blue gr */ 0x6565, 0x2D6E, 0x7267, 0x7961, /* een-gray */ 0x6720, 0x6572, 0x6E65, 0x0A00, /* green.. */ 0x6572, 0x2D64, 0x616D, 0x6F72, /* red-maro */ 0x6E6F, 0x0600, 0x6F67, 0x646C, /* on..gold */ 0x6E65, 0x0500, 0x6C62, 0x6361, /* en..blac */ 0x006B, 0x6209, 0x756C, 0x2D65, /* k..blue- */ 0x7267, 0x7961, 0x0600, 0x7262, /* gray..br */ 0x6E6F, 0x657A, 0x0400, 0x7267, /* onze..gr */ 0x7965, 0x0600, 0x7570, 0x7072, /* ey..purp */ 0x656C, 0x0600, 0x6973, 0x766C, /* le..silv */ 0x7265, 0x0C00, 0x6973, 0x766C, /* er..silv */ 0x7265, 0x672D, 0x6572, 0x6E65, /* er-green */ 0x0600, 0x6579, 0x6C6C, 0x776F, /* ..yellow */ 0x0000, /* .. */ END /* 'EMsg' 3019 * * "AutumnColor" */ 3019 EMsg BEGIN 0x0900, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7267, 0x6565, 0x006E, 0x7913, /* green..y */ 0x6C65, 0x6F6C, 0x2D77, 0x6579, /* ellow-ye */ 0x6C6C, 0x776F, 0x6720, 0x6572, /* llow gre */ 0x6E65, 0x1000, 0x6579, 0x6C6C, /* en..yell */ 0x776F, 0x7420, 0x206F, 0x726F, /* ow to or */ 0x6E61, 0x6567, 0x0D00, 0x726F, /* ange..or */ 0x6E61, 0x6567, 0x7420, 0x206F, /* ange to */ 0x6572, 0x0064, 0x720E, 0x6465, /* red..red */ 0x7420, 0x206F, 0x6373, 0x7261, /* to scar */ 0x656C, 0x0074, 0x6412, 0x7261, /* let..dar */ 0x206B, 0x6572, 0x2064, 0x6F74, /* k red to */ 0x6D20, 0x7261, 0x6F72, 0x006E, /* marron. */ 0x6215, 0x756C, 0x2065, 0x7267, /* .blue gr */ 0x6565, 0x2D6E, 0x7267, 0x7965, /* een-grey */ 0x6720, 0x6572, 0x6E65, 0x0C00, /* green.. */ 0x7262, 0x6E6F, 0x657A, 0x6220, /* bronze b */ 0x6F72, 0x6E77, 0x6900, /* rown.i */ END /* 'EMsg' 3020 * * "AutumnVisibility" */ 3020 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x6E04, 0x6E6F, 0x0065, /* w..none. */ END /* 'EMsg' 3021 * * "LeafFall" */ 3021 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6165, 0x6C72, 0x0079, 0x690C, /* early..i */ 0x746E, 0x7265, 0x656D, 0x6964, /* ntermedi */ 0x7461, 0x0065, 0x6C04, 0x7461, /* ate..lat */ 0x0065, 0x7609, 0x7265, 0x2079, /* e..very */ 0x616C, 0x6574, 0x0A00, 0x6570, /* late..pe */ 0x7372, 0x7369, 0x6574, 0x746E, /* rsistent */ 0x6E00, /* .n */ END /* 'EMsg' 3022 * * "Sex" */ 3022 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6F6D, 0x656E, 0x6963, 0x756F, /* moneciou */ 0x0073, 0x6409, 0x6F69, 0x6365, /* s..dioec */ 0x6F69, 0x7375, 0x6C00, /* ious.l */ END /* 'EMsg' 3023 * * "FlowerType" */ 3023 EMsg BEGIN 0x0800, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6973, 0x676E, 0x656C, 0x0600, /* single.. */ 0x6F64, 0x6275, 0x656C, 0x0400, /* double.. */ 0x6562, 0x6C6C, 0x0700, 0x6C63, /* bell..cl */ 0x7375, 0x6574, 0x0072, 0x7305, /* uster..s */ 0x6970, 0x656B, 0x0600, 0x6163, /* pike..ca */ 0x6B74, 0x6E69, 0x0500, 0x746F, /* tkin..ot */ 0x6568, 0x0072, /* her. */ END /* 'EMsg' 3024 * * "FlowerColor" */ 3024 EMsg BEGIN 0x1900, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6877, 0x7469, 0x0065, 0x790C, /* white..y */ 0x6C65, 0x6F6C, 0x2077, 0x7267, /* ellow gr */ 0x6565, 0x006E, 0x7906, 0x6C65, /* een..yel */ 0x6F6C, 0x0077, 0x7009, 0x6E69, /* low..pin */ 0x2F6B, 0x6F72, 0x6573, 0x0300, /* k/rose.. */ 0x6572, 0x0064, 0x720A, 0x6465, /* red..red */ 0x7020, 0x7275, 0x6C70, 0x0065, /* purple. */ 0x7006, 0x7275, 0x6C70, 0x0065, /* .purple. */ 0x620B, 0x756C, 0x2065, 0x6976, /* .blue vi */ 0x6C6F, 0x7465, 0x0A00, 0x726F, /* olet..or */ 0x6E61, 0x6567, 0x722F, 0x6465, /* ange/red */ 0x0400, 0x7267, 0x7961, 0x0500, /* ..gray.. */ 0x6C62, 0x6361, 0x006B, 0x6204, /* black..b */ 0x756C, 0x0065, 0x6205, 0x6F72, /* lue..bro */ 0x6E77, 0x0800, 0x7562, 0x6772, /* wn..burg */ 0x6E75, 0x7964, 0x0500, 0x7263, /* undy..cr */ 0x6165, 0x006D, 0x6704, 0x6C6F, /* eam..gol */ 0x0064, 0x6705, 0x6572, 0x6E65, /* d..green */ 0x0800, 0x616C, 0x6176, 0x646E, /* ..lavand */ 0x7265, 0x0D00, 0x616C, 0x6576, /* er..lave */ 0x646E, 0x7265, 0x6220, 0x756C, /* nder blu */ 0x0065, 0x6D07, 0x6761, 0x6E65, /* e..magen */ 0x6174, 0x0500, 0x696D, 0x6578, /* ta..mixe */ 0x0064, 0x7005, 0x6165, 0x6863, /* d..peach */ 0x0600, 0x6173, 0x6D6C, 0x6E6F, /* ..salmon */ 0x0600, 0x6976, 0x6C6F, 0x7465, /* ..violet */ 0xCB00, /* .. */ END /* 'EMsg' 3025 * * "FlowerSeason" */ 3025 EMsg BEGIN 0x0E00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7041, 0x6972, 0x006C, 0x6509, /* April..e */ 0x7261, 0x796C, 0x6D20, 0x7961, /* arly may */ 0x0800, 0x616C, 0x6574, 0x6D20, /* ..late m */ 0x7961, 0x0400, 0x754A, 0x656E, /* ay..June */ 0x0400, 0x754A, 0x796C, 0x0600, /* ..July.. */ 0x7541, 0x7567, 0x7473, 0x0900, /* August.. */ 0x6553, 0x7470, 0x6D65, 0x6562, /* Septembe */ 0x0072, 0x4F07, 0x7463, 0x626F, /* r..Octob */ 0x7265, 0x0800, 0x6F4E, 0x6576, /* er..Nove */ 0x626D, 0x7265, 0x0800, 0x6544, /* mber..De */ 0x6563, 0x626D, 0x7265, 0x0700, /* cember.. */ 0x614A, 0x756E, 0x7261, 0x0079, /* January. */ 0x4608, 0x6265, 0x7572, 0x7261, /* .Februar */ 0x0079, 0x4D05, 0x7261, 0x6863, /* y..March */ 0x6E00, /* .n */ END /* 'EMsg' 3026 * * "FlowerDuration" */ 3026 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0F00, /* cified.. */ 0x6E75, 0x6564, 0x2072, 0x6E6F, /* under on */ 0x2065, 0x6F6D, 0x746E, 0x0068, /* e month. */ 0x310A, 0x322D, 0x6D20, 0x6E6F, /* .1-2 mon */ 0x6874, 0x0073, 0x320A, 0x332D, /* ths..2-3 */ 0x6D20, 0x6E6F, 0x6874, 0x0073, /* months. */ 0x6F0D, 0x6576, 0x2072, 0x2033, /* .over 3 */ 0x6F6D, 0x746E, 0x7368, 0x6500, /* months.e */ END /* 'EMsg' 3027 * * "FlowerVisibility" */ 3027 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x7608, 0x7265, 0x2079, /* w..very */ 0x6F6C, 0x0077, /* low. */ END /* 'EMsg' 3028 * * "FlowerFragrance" */ 3028 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x7473, 0x6F72, 0x676E, 0x0600, /* strong.. */ 0x656D, 0x6964, 0x6D75, 0x0D00, /* medium.. */ 0x6E69, 0x6973, 0x6E67, 0x6669, /* insignif */ 0x6369, 0x6E61, 0x0074, 0x6D11, /* icant..m */ 0x6C69, 0x6C64, 0x2079, 0x616D, /* ildly ma */ 0x6F6C, 0x6F64, 0x6F72, 0x7375, /* lodorous */ 0x1300, 0x7473, 0x6F72, 0x676E, /* ..strong */ 0x796C, 0x6D20, 0x6C61, 0x646F, /* ly malod */ 0x726F, 0x756F, 0x0073, /* orous. */ END /* 'EMsg' 3029 * * "FruitType" */ 3029 EMsg BEGIN 0x0700, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6562, 0x7272, 0x2079, 0x726F, /* berry or */ 0x7020, 0x6D6F, 0x656D, 0x0300, /* pomme.. */ 0x756E, 0x0074, 0x6B03, 0x7965, /* nut..key */ 0x0600, 0x656C, 0x7567, 0x656D, /* ..legume */ 0x0400, 0x6F63, 0x656E, 0x0600, /* ..cone.. */ 0x6361, 0x6568, 0x656E, 0x7300, /* achene.s */ END /* 'EMsg' 3030 * * "FruitColor" */ 3030 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7267, 0x6565, 0x006E, 0x7906, /* green..y */ 0x6C65, 0x6F6C, 0x0077, 0x6F06, /* ellow..o */ 0x6172, 0x676E, 0x0065, 0x7203, /* range..r */ 0x6465, 0x0600, 0x7570, 0x7072, /* ed..purp */ 0x656C, 0x0500, 0x7262, 0x776F, /* le..brow */ 0x006E, 0x6204, 0x756C, 0x0065, /* n..blue. */ 0x6205, 0x616C, 0x6B63, 0x0400, /* .black.. */ 0x7267, 0x7961, 0x0500, 0x6877, /* gray..wh */ 0x7469, 0x0065, /* ite. */ END /* 'EMsg' 3031 * * "FruitPeriod" */ 3031 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0C00, /* cified.. */ 0x6165, 0x6C72, 0x2079, 0x7573, /* early su */ 0x6D6D, 0x7265, 0x0B00, 0x616C, /* mmer..la */ 0x6574, 0x7320, 0x6D75, 0x656D, /* te summe */ 0x0072, 0x650A, 0x7261, 0x796C, /* r..early */ 0x6620, 0x6C61, 0x006C, 0x6C09, /* fall..l */ 0x7461, 0x2065, 0x6166, 0x6C6C, /* ate fall */ 0x6200, /* .b */ END /* 'EMsg' 3032 * * "FruitDuration" */ 3032 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6E75, 0x7265, 0x6F20, 0x656E, /* uner one */ 0x6D20, 0x6E6F, 0x6874, 0x0A00, /* month.. */ 0x2D31, 0x2032, 0x6F6D, 0x746E, /* 1-2 mont */ 0x7368, 0x0A00, 0x2D32, 0x2033, /* hs..2-3 */ 0x6F6D, 0x746E, 0x7368, 0x0D00, /* months.. */ 0x766F, 0x7265, 0x3320, 0x6D20, /* over 3 m */ 0x6E6F, 0x6874, 0x0073, /* onths. */ END /* 'EMsg' 3033 * * "FruitVisibility" */ 3033 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x7608, 0x7265, 0x2079, /* w..very */ 0x6F6C, 0x0077, /* low. */ END /* 'EMsg' 3034 * * "Edibility" */ 3034 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0C00, 0x6F6C, /* dium..lo */ 0x2D77, 0x7365, 0x746F, 0x7265, /* w-esoter */ 0x6369, 0x0900, 0x6F70, 0x7369, /* ic..pois */ 0x6E6F, 0x756F, 0x0073, /* onous. */ END /* 'EMsg' 3035 * * "SongbirdValue" */ 3035 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, /* w. */ END /* 'EMsg' 3036 * * "FlowerSize" */ 3036 EMsg BEGIN 0x0100, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ END /* 'EMsg' 3037 * * "CutFlower" */ 3037 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0300, /* cified.. */ 0x6579, 0x0073, 0x6E02, 0x006F, /* yes..no. */ END /* 'EMsg' 3038 * * "FruitFrequency" */ 3038 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6E61, 0x756E, 0x6C61, 0x0800, /* annual.. */ 0x6962, 0x6E65, 0x696E, 0x6C61, /* biennial */ 0x0000, /* .. */ END /* 'EMsg' 3039 * * "FruitStorable" */ 3039 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x7865, 0x6563, 0x6C6C, 0x6E65, /* excellen */ 0x0074, 0x6704, 0x6F6F, 0x0064, /* t..good. */ 0x6D06, 0x6465, 0x7569, 0x006D, /* .medium. */ 0x7004, 0x6F6F, 0x0072, /* .poor. */ END /* 'EMsg' 3040 * * "Tolerance" */ 3040 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6E65, /* very sen */ 0x6973, 0x6974, 0x6576, 0x0900, /* sitive.. */ 0x6573, 0x736E, 0x7469, 0x7669, /* sensitiv */ 0x0065, 0x690C, 0x746E, 0x7265, /* e..inter */ 0x656D, 0x6964, 0x7461, 0x0065, /* mediate. */ 0x7408, 0x6C6F, 0x7265, 0x6E61, /* .toleran */ 0x0074, 0x760D, 0x7265, 0x2079, /* t..very */ 0x6F74, 0x656C, 0x6172, 0x746E, /* tolerant */ 0x7400, /* .t */ END /* 'EMsg' 3041 * * "OzoneTolerance" */ 3041 EMsg BEGIN END /* 'EMsg' 3042 * * "AirPollutionTolerance" */ 3042 EMsg BEGIN END /* 'EMsg' 3043 * * "FloodTolerance" */ 3043 EMsg BEGIN END /* 'EMsg' 3044 * * "DroughtTolerance" */ 3044 EMsg BEGIN END /* 'EMsg' 3045 * * "SulphurDioxideTolerance" */ 3045 EMsg BEGIN END /* 'EMsg' 3046 * * "WinterWIndTolerance" */ 3046 EMsg BEGIN END /* 'EMsg' 3047 * * "BranchTexture" */ 3047 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6966, 0x656E, 0x0600, 0x656D, /* fine..me */ 0x6964, 0x6D75, 0x0600, 0x6F63, /* dium..co */ 0x7261, 0x6573, 0x7400, /* arse.t */ END /* 'EMsg' 3048 * * "BranchDensity" */ 3048 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x706F, 0x6E65, 0x0800, 0x6F6D, /* open..mo */ 0x6564, 0x6172, 0x6574, 0x0500, /* derate.. */ 0x6564, 0x736E, 0x0065, /* dense. */ END /* 'EMsg' 3049 * * "TwigColor" */ 3049 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0D00, /* cified.. */ 0x6579, 0x6C6C, 0x776F, 0x6F2D, /* yellow-o */ 0x6172, 0x676E, 0x0065, 0x6710, /* range..g */ 0x6172, 0x2079, 0x7267, 0x6565, /* ray gree */ 0x2D6E, 0x7267, 0x6565, 0x006E, /* n-green. */ 0x7203, 0x6465, 0x0600, 0x7570, /* .red..pu */ 0x7072, 0x656C, 0x0900, 0x6174, /* rple..ta */ 0x2D6E, 0x7262, 0x776F, 0x006E, /* n-brown. */ 0x7209, 0x6465, 0x622D, 0x6F72, /* .red-bro */ 0x6E77, 0x0A00, 0x7267, 0x7961, /* wn..gray */ 0x6220, 0x6F72, 0x6E77, 0x0400, /* brown.. */ 0x7267, 0x7961, 0x0500, 0x6C62, /* gray..bl */ 0x6361, 0x006B, 0x7705, 0x6968, /* ack..whi */ 0x6574, 0x6200, /* te.b */ END /* 'EMsg' 3050 * * "BarkTexture" */ 3050 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6D73, 0x6F6F, 0x6874, 0x0D00, /* smooth.. */ 0x6373, 0x6C61, 0x6465, 0x702D, /* scaled-p */ 0x616C, 0x6574, 0x0064, 0x6514, /* lated..e */ 0x6678, 0x6C6F, 0x6169, 0x6974, /* xfoliati */ 0x6E6F, 0x732D, 0x6568, 0x6464, /* on-shedd */ 0x6E69, 0x0067, 0x7310, 0x6168, /* ing..sha */ 0x6C6C, 0x776F, 0x662D, 0x7275, /* llow-fur */ 0x6F72, 0x6577, 0x0064, 0x640D, /* rowed..d */ 0x6565, 0x2D70, 0x7566, 0x7272, /* eep-furr */ 0x776F, 0x6465, 0x6E00, /* owed.n */ END /* 'EMsg' 3051 * * "BarkColor" */ 3051 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0D00, /* cified.. */ 0x6579, 0x6C6C, 0x776F, 0x6F2D, /* yellow-o */ 0x6172, 0x676E, 0x0065, 0x6710, /* range..g */ 0x6172, 0x2079, 0x7267, 0x6565, /* ray gree */ 0x2D6E, 0x7267, 0x6565, 0x006E, /* n-green. */ 0x7203, 0x6465, 0x0600, 0x7570, /* .red..pu */ 0x7072, 0x656C, 0x0900, 0x6174, /* rple..ta */ 0x2D6E, 0x7262, 0x776F, 0x006E, /* n-brown. */ 0x7209, 0x6465, 0x622D, 0x6F72, /* .red-bro */ 0x6E77, 0x0A00, 0x7267, 0x7961, /* wn..gray */ 0x6220, 0x6F72, 0x6E77, 0x0400, /* brown.. */ 0x7267, 0x7961, 0x0500, 0x6C62, /* gray..bl */ 0x6361, 0x006B, 0x7705, 0x6968, /* ack..whi */ 0x6574, 0x6200, /* te.b */ END /* 'EMsg' 3052 * * "SowLocation" */ 3052 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0200, /* cified.. */ 0x6E69, 0x0A00, 0x6F63, 0x646C, /* in..cold */ 0x6620, 0x6172, 0x656D, 0x0300, /* frame.. */ 0x756F, 0x0074, /* out. */ END \ No newline at end of file --- 1 ---- ! /* generated from AttributeValues.cin * * This file was automatically generated by YAAF * Constructor. */ /* 'EMsg' 3000 * * "MaterialType" */ 3000 EMsg BEGIN 0x0E00, 0x550B, 0x736E, 0x6570, /* ...Unspe */ 0x6963, 0x6966, 0x6465, 0x0F00, /* cified.. */ 0x6F63, 0x696E, 0x6566, 0x6F72, /* conifero */ 0x7375, 0x7420, 0x6572, 0x0065, /* us tree. */ 0x640E, 0x6365, 0x6469, 0x6F75, /* .deciduo */ 0x7375, 0x7420, 0x6572, 0x0065, /* us tree. */ 0x6310, 0x6E6F, 0x6669, 0x7265, /* .conifer */ 0x756F, 0x2073, 0x6873, 0x7572, /* ous shru */ 0x0062, 0x640F, 0x6365, 0x6469, /* b..decid */ 0x6F75, 0x7375, 0x7320, 0x7268, /* uous shr */ 0x6275, 0x0F00, 0x7262, 0x616F, /* ub..broa */ 0x6C64, 0x6165, 0x2066, 0x6873, /* dleaf sh */ 0x7572, 0x0062, 0x640E, 0x6365, /* rub..dec */ 0x6469, 0x6F75, 0x7375, 0x7620, /* iduous v */ 0x6E69, 0x0065, 0x620E, 0x6F72, /* ine..bro */ 0x6461, 0x656C, 0x6661, 0x7620, /* adleaf v */ 0x6E69, 0x0065, 0x6106, 0x6E6E, /* ine..ann */ 0x6175, 0x006C, 0x7009, 0x7265, /* ual..per */ 0x6E65, 0x696E, 0x6C61, 0x0800, /* ennial.. */ 0x6962, 0x6E65, 0x696E, 0x6C61, /* biennial */ 0x0400, 0x7562, 0x626C, 0x0900, /* ..bulb.. */ 0x7247, 0x6D61, 0x6E61, 0x696F, /* Gramanoi */ 0x0064, 0x5609, 0x6765, 0x7465, /* d..Veget */ 0x6261, 0x656C, 0x6700, /* able.g */ END /* 'EMsg' 3001 * * "PlantZone" */ 3001 EMsg BEGIN 0x1100, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0100, /* cified.. */ 0x0031, 0x3201, 0x0200, 0x6232, /* 1..2..2b */ 0x0100, 0x0033, 0x3302, 0x0062, /* ..3..3b. */ 0x3402, 0x0061, 0x3402, 0x0062, /* .4a..4b. */ 0x3502, 0x0061, 0x3502, 0x0062, /* .5a..5b. */ 0x3602, 0x0061, 0x3602, 0x0062, /* .6a..6b. */ 0x3702, 0x0061, 0x3801, 0x0100, /* .7a..8.. */ 0x0039, 0x3102, 0x0030, 0x3102, /* 9..10..1 */ 0x0031, /* 1. */ END /* 'EMsg' 3002 * * "PlantForm" */ 3002 EMsg BEGIN 0x0D00, 0x550B, 0x736E, 0x6570, /* ...Unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x6C67, 0x626F, 0x6C75, 0x7261, /* globular */ 0x0C00, 0x7075, 0x6972, 0x6867, /* ..uprigh */ 0x2074, 0x766F, 0x6C61, 0x0A00, /* t oval.. */ 0x7262, 0x616F, 0x2064, 0x766F, /* broad ov */ 0x6C61, 0x0900, 0x7970, 0x6172, /* al..pyra */ 0x696D, 0x6164, 0x006C, 0x6308, /* midal..c */ 0x6C6F, 0x6D75, 0x616E, 0x0072, /* olumnar. */ 0x6909, 0x7272, 0x6765, 0x6C75, /* .irregul */ 0x7261, 0x0700, 0x6577, 0x7065, /* ar..weep */ 0x6E69, 0x0067, 0x7309, 0x7270, /* ing..spr */ 0x6165, 0x6964, 0x676E, 0x0900, /* eading.. */ 0x7270, 0x736F, 0x7274, 0x7461, /* prostrat */ 0x0065, 0x7604, 0x6E69, 0x0065, /* e..vine. */ 0x6409, 0x6365, 0x6D75, 0x6162, /* .decumba */ 0x746E, 0x0400, 0x6176, 0x6573, /* nt..vase */ 0x6100, /* .a */ END /* 'EMsg' 3003 * * "GrowthRate" */ 3003 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6F6C, /* very slo */ 0x0077, 0x7304, 0x6F6C, 0x0077, /* w..slow. */ 0x6D08, 0x646F, 0x7265, 0x7461, /* .moderat */ 0x0065, 0x6604, 0x7361, 0x0074, /* e..fast. */ 0x7609, 0x7265, 0x2079, 0x6166, /* .very fa */ 0x7473, 0x6100, /* st.a */ END /* 'EMsg' 3004 * * "LifeExpecancy" */ 3004 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x1000, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6F68, /* very sho */ 0x7472, 0x6C20, 0x7669, 0x6465, /* rt lived */ 0x0B00, 0x6873, 0x726F, 0x2074, /* ..short */ 0x696C, 0x6576, 0x0064, 0x6D0C, /* lived..m */ 0x6465, 0x7569, 0x206D, 0x696C, /* edium li */ 0x6576, 0x0064, 0x6C0A, 0x6E6F, /* ved..lon */ 0x2067, 0x696C, 0x6576, 0x0064, /* g lived. */ 0x760F, 0x7265, 0x2079, 0x6F6C, /* .very lo */ 0x676E, 0x6C20, 0x7669, 0x6465, /* ng lived */ 0x6E00, /* .n */ END /* 'EMsg' 3005 * * "SoilPh" */ 3005 EMsg BEGIN 0x0600, 0x750B, 0x7370, 0x6570, /* ...upspe */ 0x6963, 0x6966, 0x6465, 0x0B00, /* cified.. */ 0x7473, 0x6F72, 0x676E, 0x6120, /* strong a */ 0x6963, 0x0064, 0x6D0D, 0x646F, /* cid..mod */ 0x7265, 0x7461, 0x2065, 0x6361, /* erate ac */ 0x6469, 0x0C00, 0x696C, 0x6867, /* id..ligh */ 0x6C74, 0x2079, 0x6361, 0x6469, /* tly acid */ 0x0700, 0x656E, 0x7475, 0x6172, /* ..neutra */ 0x006C, 0x6108, 0x6B6C, 0x6C61, /* l..alkal */ 0x6E69, 0x0065, /* ine. */ END /* 'EMsg' 3006 * * "SoilTexture" */ 3006 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6173, 0x646E, 0x0A00, 0x6173, /* sand..sa */ 0x646E, 0x2079, 0x6F6C, 0x6D61, /* ndy loam */ 0x0400, 0x6F6C, 0x6D61, 0x0900, /* ..loam.. */ 0x6C63, 0x7961, 0x6C20, 0x616F, /* clay loa */ 0x006D, 0x6304, 0x616C, 0x0079, /* m..clay. */ END /* 'EMsg' 3007 * * "SoilMoisture" */ 3007 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0300, /* cified.. */ 0x6577, 0x0074, 0x6D05, 0x696F, /* wet..moi */ 0x7473, 0x0700, 0x7661, 0x7265, /* st..aver */ 0x6761, 0x0065, 0x6403, 0x7972, /* age..dry */ 0x0800, 0x6576, 0x7972, 0x6420, /* ..very d */ 0x7972, 0x6300, /* ry.c */ END /* 'EMsg' 3008 * * "RootPattern" */ 3008 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0700, /* cified.. */ 0x6873, 0x6C61, 0x6F6C, 0x0077, /* shallow. */ 0x640C, 0x6565, 0x2070, 0x616C, /* .deep la */ 0x6574, 0x6172, 0x006C, 0x7408, /* teral..t */ 0x7061, 0x7220, 0x6F6F, 0x0074, /* ap root. */ END /* 'EMsg' 3009 * * "TransplantEase" */ 3009 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6165, 0x7973, 0x0600, 0x6F6E, /* easy..no */ 0x6D72, 0x6C61, 0x0900, 0x6964, /* rmal..di */ 0x6666, 0x6369, 0x6C75, 0x0074, /* fficult. */ 0x760E, 0x7265, 0x2079, 0x6964, /* .very di */ 0x6666, 0x6369, 0x6C75, 0x0074, /* fficult. */ END /* 'EMsg' 3010 * * "Transplant Condition" */ 3010 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6162, 0x6572, 0x7220, 0x6F6F, /* bare roo */ 0x0074, 0x6206, 0x7275, 0x616C, /* t..burla */ 0x0070, 0x6309, 0x6E6F, 0x6174, /* p..conta */ 0x6E69, 0x7265, 0x2000, /* iner. */ END /* 'EMsg' 3011 * * "Availability" */ 3011 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x1000, /* cified.. */ 0x6C61, 0x6177, 0x7379, 0x6120, /* always a */ 0x6176, 0x6C69, 0x6261, 0x656C, /* vailable */ 0x1200, 0x6F6E, 0x6D72, 0x6C61, /* ..normal */ 0x796C, 0x6120, 0x6176, 0x6C69, /* ly avail */ 0x6261, 0x656C, 0x1300, 0x6F73, /* able..so */ 0x656D, 0x6974, 0x656D, 0x2073, /* metimes */ 0x7661, 0x6961, 0x616C, 0x6C62, /* availabl */ 0x0065, 0x7210, 0x7261, 0x6C65, /* e..rarel */ 0x2079, 0x7661, 0x6961, 0x616C, /* y availa */ 0x6C62, 0x0065, /* ble. */ END /* 'EMsg' 3012 * * "ShadeTolerance" */ 3012 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x7566, 0x6C6C, 0x7320, 0x6E75, /* full sun */ 0x0B00, 0x6170, 0x7472, 0x6169, /* ..partia */ 0x206C, 0x7573, 0x006E, 0x680A, /* l sun..h */ 0x6C61, 0x2066, 0x6873, 0x6461, /* alf shad */ 0x0065, 0x660A, 0x6C75, 0x206C, /* e..full */ 0x6873, 0x6461, 0x0065, /* shade. */ END /* 'EMsg' 3013 * * "BranchPattern" */ 3013 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0800, /* cified.. */ 0x6576, 0x7472, 0x6369, 0x6C61, /* vertical */ 0x0900, 0x7361, 0x6563, 0x646E, /* ..ascend */ 0x6E69, 0x0067, 0x680A, 0x726F, /* ing..hor */ 0x7A69, 0x6E6F, 0x6174, 0x006C, /* izontal. */ 0x640A, 0x7365, 0x6563, 0x646E, /* .descend */ 0x6E69, 0x0067, 0x7009, 0x6E65, /* ing..pen */ 0x7564, 0x6F6C, 0x7375, 0x6C00, /* dulous.l */ END /* 'EMsg' 3014 * * "LeafingPeriod" */ 3014 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6165, 0x6C72, 0x0079, 0x690C, /* early..i */ 0x746E, 0x7265, 0x656D, 0x6964, /* ntermedi */ 0x7461, 0x0065, 0x6C04, 0x7461, /* ate..lat */ 0x0065, 0x7609, 0x7265, 0x2079, /* e..very */ 0x616C, 0x6574, 0x6500, /* late.e */ END /* 'EMsg' 3015 * * "FoliageFinish" */ 3015 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6C67, 0x736F, 0x7973, 0x0C00, /* glossy.. */ 0x6E69, 0x6574, 0x6D72, 0x6465, /* intermed */ 0x6169, 0x6574, 0x0400, 0x7564, /* iate..du */ 0x6C6C, 0x7600, /* ll.v */ END /* 'EMsg' 3016 * * "FoliageTexture" */ 3016 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6966, 0x656E, 0x0600, 0x656D, /* fine..me */ 0x6964, 0x6D75, 0x0600, 0x6F63, /* dium..co */ 0x7261, 0x6573, 0x0400, /* arse.. */ END /* 'EMsg' 3017 * * "FoliageDensity" */ 3017 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x706F, 0x6E65, 0x0800, 0x6F6D, /* open..mo */ 0x6564, 0x6172, 0x6574, 0x0500, /* derate.. */ 0x6564, 0x736E, 0x0065, /* dense. */ END /* 'EMsg' 3018 * * "FoliageColor" */ 3018 EMsg BEGIN 0x0F00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0A00, /* cified.. */ 0x6164, 0x6B72, 0x6720, 0x6572, /* dark gre */ 0x6E65, 0x1500, 0x696C, 0x6867, /* en..ligh */ 0x2074, 0x6F74, 0x7920, 0x6C65, /* t to yel */ 0x6F6C, 0x2D77, 0x7267, 0x6565, /* low-gree */ 0x006E, 0x6D0C, 0x6465, 0x7569, /* n..mediu */ 0x206D, 0x7267, 0x6565, 0x006E, /* m green. */ 0x6215, 0x756C, 0x2065, 0x7267, /* .blue gr */ 0x6565, 0x2D6E, 0x7267, 0x7961, /* een-gray */ 0x6720, 0x6572, 0x6E65, 0x0A00, /* green.. */ 0x6572, 0x2D64, 0x616D, 0x6F72, /* red-maro */ 0x6E6F, 0x0600, 0x6F67, 0x646C, /* on..gold */ 0x6E65, 0x0500, 0x6C62, 0x6361, /* en..blac */ 0x006B, 0x6209, 0x756C, 0x2D65, /* k..blue- */ 0x7267, 0x7961, 0x0600, 0x7262, /* gray..br */ 0x6E6F, 0x657A, 0x0400, 0x7267, /* onze..gr */ 0x7965, 0x0600, 0x7570, 0x7072, /* ey..purp */ 0x656C, 0x0600, 0x6973, 0x766C, /* le..silv */ 0x7265, 0x0C00, 0x6973, 0x766C, /* er..silv */ 0x7265, 0x672D, 0x6572, 0x6E65, /* er-green */ 0x0600, 0x6579, 0x6C6C, 0x776F, /* ..yellow */ 0x0000, /* .. */ END /* 'EMsg' 3019 * * "AutumnColor" */ 3019 EMsg BEGIN 0x0900, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7267, 0x6565, 0x006E, 0x7913, /* green..y */ 0x6C65, 0x6F6C, 0x2D77, 0x6579, /* ellow-ye */ 0x6C6C, 0x776F, 0x6720, 0x6572, /* llow gre */ 0x6E65, 0x1000, 0x6579, 0x6C6C, /* en..yell */ 0x776F, 0x7420, 0x206F, 0x726F, /* ow to or */ 0x6E61, 0x6567, 0x0D00, 0x726F, /* ange..or */ 0x6E61, 0x6567, 0x7420, 0x206F, /* ange to */ 0x6572, 0x0064, 0x720E, 0x6465, /* red..red */ 0x7420, 0x206F, 0x6373, 0x7261, /* to scar */ 0x656C, 0x0074, 0x6412, 0x7261, /* let..dar */ 0x206B, 0x6572, 0x2064, 0x6F74, /* k red to */ 0x6D20, 0x7261, 0x6F72, 0x006E, /* marron. */ 0x6215, 0x756C, 0x2065, 0x7267, /* .blue gr */ 0x6565, 0x2D6E, 0x7267, 0x7965, /* een-grey */ 0x6720, 0x6572, 0x6E65, 0x0C00, /* green.. */ 0x7262, 0x6E6F, 0x657A, 0x6220, /* bronze b */ 0x6F72, 0x6E77, 0x6900, /* rown.i */ END /* 'EMsg' 3020 * * "AutumnVisibility" */ 3020 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x6E04, 0x6E6F, 0x0065, /* w..none. */ END /* 'EMsg' 3021 * * "LeafFall" */ 3021 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6165, 0x6C72, 0x0079, 0x690C, /* early..i */ 0x746E, 0x7265, 0x656D, 0x6964, /* ntermedi */ 0x7461, 0x0065, 0x6C04, 0x7461, /* ate..lat */ 0x0065, 0x7609, 0x7265, 0x2079, /* e..very */ 0x616C, 0x6574, 0x0A00, 0x6570, /* late..pe */ 0x7372, 0x7369, 0x6574, 0x746E, /* rsistent */ 0x6E00, /* .n */ END /* 'EMsg' 3022 * * "Sex" */ 3022 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x6F6D, 0x656E, 0x6963, 0x756F, /* moneciou */ 0x0073, 0x6409, 0x6F69, 0x6365, /* s..dioec */ 0x6F69, 0x7375, 0x6C00, /* ious.l */ END /* 'EMsg' 3023 * * "FlowerType" */ 3023 EMsg BEGIN 0x0800, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6973, 0x676E, 0x656C, 0x0600, /* single.. */ 0x6F64, 0x6275, 0x656C, 0x0400, /* double.. */ 0x6562, 0x6C6C, 0x0700, 0x6C63, /* bell..cl */ 0x7375, 0x6574, 0x0072, 0x7305, /* uster..s */ 0x6970, 0x656B, 0x0600, 0x6163, /* pike..ca */ 0x6B74, 0x6E69, 0x0500, 0x746F, /* tkin..ot */ 0x6568, 0x0072, /* her. */ END /* 'EMsg' 3024 * * "FlowerColor" */ 3024 EMsg BEGIN 0x1900, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x6877, 0x7469, 0x0065, 0x790C, /* white..y */ 0x6C65, 0x6F6C, 0x2077, 0x7267, /* ellow gr */ 0x6565, 0x006E, 0x7906, 0x6C65, /* een..yel */ 0x6F6C, 0x0077, 0x7009, 0x6E69, /* low..pin */ 0x2F6B, 0x6F72, 0x6573, 0x0300, /* k/rose.. */ 0x6572, 0x0064, 0x720A, 0x6465, /* red..red */ 0x7020, 0x7275, 0x6C70, 0x0065, /* purple. */ 0x7006, 0x7275, 0x6C70, 0x0065, /* .purple. */ 0x620B, 0x756C, 0x2065, 0x6976, /* .blue vi */ 0x6C6F, 0x7465, 0x0A00, 0x726F, /* olet..or */ 0x6E61, 0x6567, 0x722F, 0x6465, /* ange/red */ 0x0400, 0x7267, 0x7961, 0x0500, /* ..gray.. */ 0x6C62, 0x6361, 0x006B, 0x6204, /* black..b */ 0x756C, 0x0065, 0x6205, 0x6F72, /* lue..bro */ 0x6E77, 0x0800, 0x7562, 0x6772, /* wn..burg */ 0x6E75, 0x7964, 0x0500, 0x7263, /* undy..cr */ 0x6165, 0x006D, 0x6704, 0x6C6F, /* eam..gol */ 0x0064, 0x6705, 0x6572, 0x6E65, /* d..green */ 0x0800, 0x616C, 0x6176, 0x646E, /* ..lavand */ 0x7265, 0x0D00, 0x616C, 0x6576, /* er..lave */ 0x646E, 0x7265, 0x6220, 0x756C, /* nder blu */ 0x0065, 0x6D07, 0x6761, 0x6E65, /* e..magen */ 0x6174, 0x0500, 0x696D, 0x6578, /* ta..mixe */ 0x0064, 0x7005, 0x6165, 0x6863, /* d..peach */ 0x0600, 0x6173, 0x6D6C, 0x6E6F, /* ..salmon */ 0x0600, 0x6976, 0x6C6F, 0x7465, /* ..violet */ 0xFF00, /* .. */ END /* 'EMsg' 3025 * * "FlowerSeason" */ 3025 EMsg BEGIN 0x0E00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7041, 0x6972, 0x006C, 0x6509, /* April..e */ 0x7261, 0x796C, 0x6D20, 0x7961, /* arly may */ 0x0800, 0x616C, 0x6574, 0x6D20, /* ..late m */ 0x7961, 0x0400, 0x754A, 0x656E, /* ay..June */ 0x0400, 0x754A, 0x796C, 0x0600, /* ..July.. */ 0x7541, 0x7567, 0x7473, 0x0900, /* August.. */ 0x6553, 0x7470, 0x6D65, 0x6562, /* Septembe */ 0x0072, 0x4F07, 0x7463, 0x626F, /* r..Octob */ 0x7265, 0x0800, 0x6F4E, 0x6576, /* er..Nove */ 0x626D, 0x7265, 0x0800, 0x6544, /* mber..De */ 0x6563, 0x626D, 0x7265, 0x0700, /* cember.. */ 0x614A, 0x756E, 0x7261, 0x0079, /* January. */ 0x4608, 0x6265, 0x7572, 0x7261, /* .Februar */ 0x0079, 0x4D05, 0x7261, 0x6863, /* y..March */ 0x6E00, /* .n */ END /* 'EMsg' 3026 * * "FlowerDuration" */ 3026 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0F00, /* cified.. */ 0x6E75, 0x6564, 0x2072, 0x6E6F, /* under on */ 0x2065, 0x6F6D, 0x746E, 0x0068, /* e month. */ 0x310A, 0x322D, 0x6D20, 0x6E6F, /* .1-2 mon */ 0x6874, 0x0073, 0x320A, 0x332D, /* ths..2-3 */ 0x6D20, 0x6E6F, 0x6874, 0x0073, /* months. */ 0x6F0D, 0x6576, 0x2072, 0x2033, /* .over 3 */ 0x6F6D, 0x746E, 0x7368, 0x6500, /* months.e */ END /* 'EMsg' 3027 * * "FlowerVisibility" */ 3027 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x7608, 0x7265, 0x2079, /* w..very */ 0x6F6C, 0x0077, /* low. */ END /* 'EMsg' 3028 * * "FlowerFragrance" */ 3028 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x7473, 0x6F72, 0x676E, 0x0600, /* strong.. */ 0x656D, 0x6964, 0x6D75, 0x0D00, /* medium.. */ 0x6E69, 0x6973, 0x6E67, 0x6669, /* insignif */ 0x6369, 0x6E61, 0x0074, 0x6D11, /* icant..m */ 0x6C69, 0x6C64, 0x2079, 0x616D, /* ildly ma */ 0x6F6C, 0x6F64, 0x6F72, 0x7375, /* lodorous */ 0x1300, 0x7473, 0x6F72, 0x676E, /* ..strong */ 0x796C, 0x6D20, 0x6C61, 0x646F, /* ly malod */ 0x726F, 0x756F, 0x0073, /* orous. */ END /* 'EMsg' 3029 * * "FruitType" */ 3029 EMsg BEGIN 0x0700, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6562, 0x7272, 0x2079, 0x726F, /* berry or */ 0x7020, 0x6D6F, 0x656D, 0x0300, /* pomme.. */ 0x756E, 0x0074, 0x6B03, 0x7965, /* nut..key */ 0x0600, 0x656C, 0x7567, 0x656D, /* ..legume */ 0x0400, 0x6F63, 0x656E, 0x0600, /* ..cone.. */ 0x6361, 0x6568, 0x656E, 0x7300, /* achene.s */ END /* 'EMsg' 3030 * * "FruitColor" */ 3030 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0500, /* cified.. */ 0x7267, 0x6565, 0x006E, 0x7906, /* green..y */ 0x6C65, 0x6F6C, 0x0077, 0x6F06, /* ellow..o */ 0x6172, 0x676E, 0x0065, 0x7203, /* range..r */ 0x6465, 0x0600, 0x7570, 0x7072, /* ed..purp */ 0x656C, 0x0500, 0x7262, 0x776F, /* le..brow */ 0x006E, 0x6204, 0x756C, 0x0065, /* n..blue. */ 0x6205, 0x616C, 0x6B63, 0x0400, /* .black.. */ 0x7267, 0x7961, 0x0500, 0x6877, /* gray..wh */ 0x7469, 0x0065, /* ite. */ END /* 'EMsg' 3031 * * "FruitPeriod" */ 3031 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0C00, /* cified.. */ 0x6165, 0x6C72, 0x2079, 0x7573, /* early su */ 0x6D6D, 0x7265, 0x0B00, 0x616C, /* mmer..la */ 0x6574, 0x7320, 0x6D75, 0x656D, /* te summe */ 0x0072, 0x650A, 0x7261, 0x796C, /* r..early */ 0x6620, 0x6C61, 0x006C, 0x6C09, /* fall..l */ 0x7461, 0x2065, 0x6166, 0x6C6C, /* ate fall */ 0x6200, /* .b */ END /* 'EMsg' 3032 * * "FruitDuration" */ 3032 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6E75, 0x7265, 0x6F20, 0x656E, /* uner one */ 0x6D20, 0x6E6F, 0x6874, 0x0A00, /* month.. */ 0x2D31, 0x2032, 0x6F6D, 0x746E, /* 1-2 mont */ 0x7368, 0x0A00, 0x2D32, 0x2033, /* hs..2-3 */ 0x6F6D, 0x746E, 0x7368, 0x0D00, /* months.. */ 0x766F, 0x7265, 0x3320, 0x6D20, /* over 3 m */ 0x6E6F, 0x6874, 0x0073, /* onths. */ END /* 'EMsg' 3033 * * "FruitVisibility" */ 3033 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, 0x7608, 0x7265, 0x2079, /* w..very */ 0x6F6C, 0x0077, /* low. */ END /* 'EMsg' 3034 * * "Edibility" */ 3034 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0C00, 0x6F6C, /* dium..lo */ 0x2D77, 0x7365, 0x746F, 0x7265, /* w-esoter */ 0x6369, 0x0900, 0x6F70, 0x7369, /* ic..pois */ 0x6E6F, 0x756F, 0x0073, /* onous. */ END /* 'EMsg' 3035 * * "SongbirdValue" */ 3035 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6968, 0x6867, 0x0600, 0x656D, /* high..me */ 0x6964, 0x6D75, 0x0300, 0x6F6C, /* dium..lo */ 0x0077, /* w. */ END /* 'EMsg' 3036 * * "FlowerSize" */ 3036 EMsg BEGIN 0x0100, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ END /* 'EMsg' 3037 * * "CutFlower" */ 3037 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0300, /* cified.. */ 0x6579, 0x0073, 0x6E02, 0x006F, /* yes..no. */ END /* 'EMsg' 3038 * * "FruitFrequency" */ 3038 EMsg BEGIN 0x0300, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6E61, 0x756E, 0x6C61, 0x0800, /* annual.. */ 0x6962, 0x6E65, 0x696E, 0x6C61, /* biennial */ 0x0000, /* .. */ END /* 'EMsg' 3039 * * "FruitStorable" */ 3039 EMsg BEGIN 0x0500, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0900, /* cified.. */ 0x7865, 0x6563, 0x6C6C, 0x6E65, /* excellen */ 0x0074, 0x6704, 0x6F6F, 0x0064, /* t..good. */ 0x6D06, 0x6465, 0x7569, 0x006D, /* .medium. */ 0x7004, 0x6F6F, 0x0072, /* .poor. */ END /* 'EMsg' 3040 * * "Tolerance" */ 3040 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0E00, /* cified.. */ 0x6576, 0x7972, 0x7320, 0x6E65, /* very sen */ 0x6973, 0x6974, 0x6576, 0x0900, /* sitive.. */ 0x6573, 0x736E, 0x7469, 0x7669, /* sensitiv */ 0x0065, 0x690C, 0x746E, 0x7265, /* e..inter */ 0x656D, 0x6964, 0x7461, 0x0065, /* mediate. */ 0x7408, 0x6C6F, 0x7265, 0x6E61, /* .toleran */ 0x0074, 0x760D, 0x7265, 0x2079, /* t..very */ 0x6F74, 0x656C, 0x6172, 0x746E, /* tolerant */ 0x7400, /* .t */ END /* 'EMsg' 3041 * * "OzoneTolerance" */ 3041 EMsg BEGIN END /* 'EMsg' 3042 * * "AirPollutionTolerance" */ 3042 EMsg BEGIN END /* 'EMsg' 3043 * * "FloodTolerance" */ 3043 EMsg BEGIN END /* 'EMsg' 3044 * * "DroughtTolerance" */ 3044 EMsg BEGIN END /* 'EMsg' 3045 * * "SulphurDioxideTolerance" */ 3045 EMsg BEGIN END /* 'EMsg' 3046 * * "WinterWIndTolerance" */ 3046 EMsg BEGIN END /* 'EMsg' 3047 * * "BranchTexture" */ 3047 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x6966, 0x656E, 0x0600, 0x656D, /* fine..me */ 0x6964, 0x6D75, 0x0600, 0x6F63, /* dium..co */ 0x7261, 0x6573, 0x7400, /* arse.t */ END /* 'EMsg' 3048 * * "BranchDensity" */ 3048 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0400, /* cified.. */ 0x706F, 0x6E65, 0x0800, 0x6F6D, /* open..mo */ 0x6564, 0x6172, 0x6574, 0x0500, /* derate.. */ 0x6564, 0x736E, 0x0065, /* dense. */ END /* 'EMsg' 3049 * * "TwigColor" */ 3049 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0D00, /* cified.. */ 0x6579, 0x6C6C, 0x776F, 0x6F2D, /* yellow-o */ 0x6172, 0x676E, 0x0065, 0x6710, /* range..g */ 0x6172, 0x2079, 0x7267, 0x6565, /* ray gree */ 0x2D6E, 0x7267, 0x6565, 0x006E, /* n-green. */ 0x7203, 0x6465, 0x0600, 0x7570, /* .red..pu */ 0x7072, 0x656C, 0x0900, 0x6174, /* rple..ta */ 0x2D6E, 0x7262, 0x776F, 0x006E, /* n-brown. */ 0x7209, 0x6465, 0x622D, 0x6F72, /* .red-bro */ 0x6E77, 0x0A00, 0x7267, 0x7961, /* wn..gray */ 0x6220, 0x6F72, 0x6E77, 0x0400, /* brown.. */ 0x7267, 0x7961, 0x0500, 0x6C62, /* gray..bl */ 0x6361, 0x006B, 0x7705, 0x6968, /* ack..whi */ 0x6574, 0x6200, /* te.b */ END /* 'EMsg' 3050 * * "BarkTexture" */ 3050 EMsg BEGIN 0x0600, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0600, /* cified.. */ 0x6D73, 0x6F6F, 0x6874, 0x0D00, /* smooth.. */ 0x6373, 0x6C61, 0x6465, 0x702D, /* scaled-p */ 0x616C, 0x6574, 0x0064, 0x6514, /* lated..e */ 0x6678, 0x6C6F, 0x6169, 0x6974, /* xfoliati */ 0x6E6F, 0x732D, 0x6568, 0x6464, /* on-shedd */ 0x6E69, 0x0067, 0x7310, 0x6168, /* ing..sha */ 0x6C6C, 0x776F, 0x662D, 0x7275, /* llow-fur */ 0x6F72, 0x6577, 0x0064, 0x640D, /* rowed..d */ 0x6565, 0x2D70, 0x7566, 0x7272, /* eep-furr */ 0x776F, 0x6465, 0x6E00, /* owed.n */ END /* 'EMsg' 3051 * * "BarkColor" */ 3051 EMsg BEGIN 0x0B00, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0D00, /* cified.. */ 0x6579, 0x6C6C, 0x776F, 0x6F2D, /* yellow-o */ 0x6172, 0x676E, 0x0065, 0x6710, /* range..g */ 0x6172, 0x2079, 0x7267, 0x6565, /* ray gree */ 0x2D6E, 0x7267, 0x6565, 0x006E, /* n-green. */ 0x7203, 0x6465, 0x0600, 0x7570, /* .red..pu */ 0x7072, 0x656C, 0x0900, 0x6174, /* rple..ta */ 0x2D6E, 0x7262, 0x776F, 0x006E, /* n-brown. */ 0x7209, 0x6465, 0x622D, 0x6F72, /* .red-bro */ 0x6E77, 0x0A00, 0x7267, 0x7961, /* wn..gray */ 0x6220, 0x6F72, 0x6E77, 0x0400, /* brown.. */ 0x7267, 0x7961, 0x0500, 0x6C62, /* gray..bl */ 0x6361, 0x006B, 0x7705, 0x6968, /* ack..whi */ 0x6574, 0x6200, /* te.b */ END /* 'EMsg' 3052 * * "SowLocation" */ 3052 EMsg BEGIN 0x0400, 0x750B, 0x736E, 0x6570, /* ...unspe */ 0x6963, 0x6966, 0x6465, 0x0200, /* cified.. */ 0x6E69, 0x0A00, 0x6F63, 0x646C, /* in..cold */ 0x6620, 0x6172, 0x656D, 0x0300, /* frame.. */ 0x756F, 0x0074, /* out. */ END /* 'EMsg' 3053 * * "Regions" */ 3053 EMsg BEGIN 0x1300, 0x550B, 0x736E, 0x6570, /* ...Unspe */ 0x6963, 0x6966, 0x6465, 0x550B, /* cified.U */ 0x736E, 0x6570, 0x6963, 0x6966, /* nspecifi */ 0x6465, 0x4108, 0x7266, 0x6369, /* ed.Afric */ 0x5F61, 0x1043, 0x6641, 0x6972, /* a_C.Afri */ 0x6163, 0x2820, 0x6543, 0x746E, /* ca (Cent */ 0x6172, 0x296C, 0x4108, 0x7266, /* ral).Afr */ 0x6369, 0x5F61, 0x114E, 0x6641, /* ica_N.Af */ 0x6972, 0x6163, 0x2820, 0x6F4E, /* rica (No */ 0x7472, 0x6568, 0x6E72, 0x0829, /* rthern). */ 0x6641, 0x6972, 0x6163, 0x535F, /* Africa_S */ 0x4111, 0x7266, 0x6369, 0x2061, /* .Africa */ 0x5328, 0x756F, 0x6874, 0x7265, /* (Souther */ 0x296E, 0x4106, 0x6973, 0x5F61, /* n).Asia_ */ 0x0F4E, 0x7341, 0x6169, 0x2820, /* N.Asia ( */ 0x6F4E, 0x7472, 0x6568, 0x6E72, /* Northern */ 0x0729, 0x7341, 0x6169, 0x535F, /* ).Asia_S */ 0x1045, 0x7341, 0x6169, 0x2820, /* E.Asia ( */ 0x6F53, 0x7475, 0x6568, 0x7361, /* Southeas */ 0x2974, 0x4106, 0x6973, 0x5F61, /* t).Asia_ */ 0x0F53, 0x7341, 0x6169, 0x2820, /* S.Asia ( */ 0x6F53, 0x7475, 0x6568, 0x6E72, /* Southern */ 0x0929, 0x7541, 0x7473, 0x6172, /* ).Austra */ 0x696C, 0x0961, 0x7541, 0x7473, /* lia.Aust */ 0x6172, 0x696C, 0x0661, 0x6143, /* ralia.Ca */ 0x616E, 0x6164, 0x4306, 0x6E61, /* nada.Can */ 0x6461, 0x0F61, 0x6543, 0x746E, /* ada.Cent */ 0x6172, 0x5F6C, 0x6D41, 0x7265, /* ral_Amer */ 0x6369, 0x0F61, 0x6543, 0x746E, /* ica.Cent */ 0x6172, 0x206C, 0x6D41, 0x7265, /* ral Amer */ 0x6369, 0x0661, 0x7545, 0x6F72, /* ica.Euro */ 0x6570, 0x4506, 0x7275, 0x706F, /* pe.Europ */ 0x0865, 0x7545, 0x6F72, 0x6570, /* e.Europe */ 0x4E5F, 0x4511, 0x7275, 0x706F, /* _N.Europ */ 0x2065, 0x4E28, 0x726F, 0x6874, /* e (North */ 0x7265, 0x296E, 0x4D0D, 0x6465, /* ern).Med */ 0x7469, 0x7265, 0x6172, 0x656E, /* iterrane */ 0x6E61, 0x4D0D, 0x6465, 0x7469, /* an.Medit */ 0x7265, 0x6172, 0x656E, 0x6E61, /* erranean */ 0x530F, 0x756F, 0x6874, 0x415F, /* .South_A */ 0x656D, 0x6972, 0x6163, 0x4E5F, /* merica_N */ 0x5318, 0x756F, 0x6874, 0x4120, /* .South A */ 0x656D, 0x6972, 0x6163, 0x2820, /* merica ( */ 0x6F4E, 0x7472, 0x6568, 0x6E72, /* Northern */ 0x0F29, 0x6F53, 0x7475, 0x5F68, /* ).South_ */ 0x6D41, 0x7265, 0x6369, 0x5F61, /* America_ */ 0x1853, 0x6F53, 0x7475, 0x2068, /* S.South */ 0x6D41, 0x7265, 0x6369, 0x2061, /* America */ 0x5328, 0x756F, 0x6874, 0x7265, /* (Souther */ 0x296E, 0x5505, 0x5F53, 0x454E, /* n).US_NE */ 0x5519, 0x696E, 0x6574, 0x2064, /* .United */ 0x7453, 0x7461, 0x7365, 0x2820, /* States ( */ 0x6F4E, 0x7472, 0x6568, 0x7361, /* Northeas */ 0x2974, 0x5505, 0x5F53, 0x4553, /* t).US_SE */ 0x5519, 0x696E, 0x6574, 0x2064, /* .United */ 0x7453, 0x7461, 0x7365, 0x2820, /* States ( */ 0x6F53, 0x7475, 0x6568, 0x7361, /* Southeas */ 0x2974, 0x5504, 0x5F53, 0x1757, /* t).US_W. */ 0x6E55, 0x7469, 0x6465, 0x5320, /* United S */ 0x6174, 0x6574, 0x2073, 0x5728, /* tates (W */ 0x7365, 0x6574, 0x6E72, 0x0529, /* estern). */ 0x5355, 0x575F, 0x1A43, 0x6E55, /* US_WC.Un */ 0x7469, 0x6465, 0x5320, 0x6174, /* ited Sta */ 0x6574, 0x2073, 0x5728, 0x7365, /* tes (Wes */ 0x2074, 0x6F43, 0x7361, 0x2974, /* t Coast) */ END \ No newline at end of file Index: AttributeValues.r =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/English.lproj/AttributeValues.r,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** AttributeValues.r 24 May 2006 12:02:34 -0000 1.5 --- AttributeValues.r 13 Dec 2006 14:12:45 -0000 1.5.2.1 *************** *** 1 **** ! /* generated from AttributeValues.cin * * This file was automatically generated by YAAF * Constructor. */ /* 'EMsg' 3000 * * "MaterialType" */ data 'EMsg' (3000,"MaterialType") { $"000E0B556E737065" /* ...Unspe */ $"636966696564000F" /* cified.. */ $"636F6E696665726F" /* conifero */ $"7573207472656500" /* us tree. */ $"0E6465636964756F" /* .deciduo */ $"7573207472656500" /* us tree. */ $"10636F6E69666572" /* .conifer */ $"6F75732073687275" /* ous shru */ $"62000F6465636964" /* b..decid */ $"756F757320736872" /* uous shr */ $"7562000F62726F61" /* ub..broa */ $"646C656166207368" /* dleaf sh */ $"727562000E646563" /* rub..dec */ $"6964756F75732076" /* iduous v */ $"696E65000E62726F" /* ine..bro */ $"61646C6561662076" /* adleaf v */ $"696E650006616E6E" /* ine..ann */ $"75616C0009706572" /* ual..per */ $"656E6E69616C0008" /* ennial.. */ $"6269656E6E69616C" /* biennial */ $"000462756C620009" /* ..bulb.. */ $"4772616D616E6F69" /* Gramanoi */ $"6400095665676574" /* d..Veget */ $"61626C6500" /* able. */ }; /* 'EMsg' 3001 * * "PlantZone" */ data 'EMsg' (3001,"PlantZone") { $"00110B756E737065" /* ...unspe */ $"6369666965640001" /* cified.. */ $"3100013200023262" /* 1..2..2b */ $"0001330002336200" /* ..3..3b. */ $"0234610002346200" /* .4a..4b. */ $"0235610002356200" /* .5a..5b. */ $"0236610002366200" /* .6a..6b. */ $"0237610001380001" /* .7a..8.. */ $"3900023130000231" /* 9..10..1 */ $"3100" /* 1. */ }; /* 'EMsg' 3002 * * "PlantForm" */ data 'EMsg' (3002,"PlantForm") { $"000D0B556E737065" /* ...Unspe */ $"6369666965640008" /* cified.. */ $"676C6F62756C6172" /* globular */ $"000C757072696768" /* ..uprigh */ $"74206F76616C000A" /* t oval.. */ $"62726F6164206F76" /* broad ov */ $"616C000970797261" /* al..pyra */ $"6D6964616C000863" /* midal..c */ $"6F6C756D6E617200" /* olumnar. */ $"096972726567756C" /* .irregul */ $"6172000777656570" /* ar..weep */ $"696E670009737072" /* ing..spr */ $"656164696E670009" /* eading.. */ $"70726F7374726174" /* prostrat */ $"65000476696E6500" /* e..vine. */ $"09646563756D6261" /* .decumba */ $"6E74000476617365" /* nt..vase */ $"00" /* . */ }; /* 'EMsg' 3003 * * "GrowthRate" */ data 'EMsg' (3003,"GrowthRate") { $"00060B756E737065" /* ...unspe */ $"6369666965640009" /* cified.. */ $"7665727920736C6F" /* very slo */ $"770004736C6F7700" /* w..slow. */ $"086D6F6465726174" /* .moderat */ $"6500046661737400" /* e..fast. */ $"0976657279206661" /* .very fa */ $"737400" /* st. */ }; /* 'EMsg' 3004 * * "LifeExpecancy" */ data 'EMsg' (3004,"LifeExpecancy") { $"00060B756E737065" /* ...unspe */ $"6369666965640010" /* cified.. */ $"766572792073686F" /* very sho */ $"7274206C69766564" /* rt lived */ $"000B73686F727420" /* ..short */ $"6C69766564000C6D" /* lived..m */ $"656469756D206C69" /* edium li */ $"766564000A6C6F6E" /* ved..lon */ $"67206C6... [truncated message content] |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 13:55:47
|
Update of /cvsroot/igarden/Garden/source/Preferences In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3851 Modified Files: Tag: Release_branch_v1 DocumentTags.h Log Message: Fully implement planting regions for choosing the quick pick list Index: DocumentTags.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Preferences/DocumentTags.h,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** DocumentTags.h 17 May 2006 00:00:44 -0000 1.10 --- DocumentTags.h 13 Dec 2006 13:55:43 -0000 1.10.2.1 *************** *** 65,68 **** --- 65,69 ---- /***/ virtual bool GetStrPref(stateTags_t propertyID, Int32 valueLen, void* value); + virtual bool GetStrPref(stateTags_t propertyID, String &str) { return PersistentTags::GetStrPref(propertyID, str); } virtual UInt32 GetStrPrefLength(stateTags_t propertyID); virtual void SetStrPref(stateTags_t propertyID, const char* value); |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 13:55:40
|
Update of /cvsroot/igarden/Garden/source/Document In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3839 Modified Files: Tag: Release_branch_v1 CGardenForm.cp CGardenForm.h Log Message: Fully implement planting regions for choosing the quick pick list Index: CGardenForm.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Document/CGardenForm.h,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -C2 -d -r1.11 -r1.11.2.1 *** CGardenForm.h 8 Sep 2006 02:46:45 -0000 1.11 --- CGardenForm.h 13 Dec 2006 13:55:36 -0000 1.11.2.1 *************** *** 81,84 **** --- 81,85 ---- virtual long DoKeyEvent(long arg, void* parg); virtual void DoFormTerminate(); + virtual long DoPrefsStateChanged( long arg, void* parg ); static CGardenForm* NewDocument(); static CGardenForm* OpenDocument(XGFileSpecifier* inFileSpec = NULL); Index: CGardenForm.cp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Document/CGardenForm.cp,v retrieving revision 1.36.2.1 retrieving revision 1.36.2.2 diff -C2 -d -r1.36.2.1 -r1.36.2.2 *** CGardenForm.cp 15 Nov 2006 04:02:53 -0000 1.36.2.1 --- CGardenForm.cp 13 Dec 2006 13:55:36 -0000 1.36.2.2 *************** *** 63,66 **** --- 63,67 ---- DISPATCHTABLE(KXGAppEvent,CGardenForm::DoEventFilter) DISPATCHTABLE(kTableInputErr,CGardenForm::DoInputError) + DISPATCHTABLE(msg_PreferenceStateChanged,CGardenForm::DoPrefsStateChanged) ENDDISPATCH *************** *** 153,156 **** --- 154,158 ---- NameNewDoc(); // Set name of untitled window + XGBroadcast::AddBroadcast(this); } *************** *** 1240,1242 **** --- 1242,1267 ---- } + // --------------------------------------------------------------------------- + /// DoPrefsStateChanged + // + long CGardenForm::DoPrefsStateChanged( long arg, void* parg ) + { + #pragma unused(arg) + propertyID_t propID; + Layout *layout; + String regionStr; + PersistentTags *prefs = static_cast<PersistentTags*>(parg); + + propID = static_cast<propertyID_t>(arg); + if(propID == kRegionSiteData) + { + layout = GetLayout(); + if(prefs != NULL && layout != NULL) + { + prefs->GetStrPref(kRegionSiteData, regionStr); + layout->LoadQoickPickPalettes(regionStr); + } + } + return -1; // Let everyone else hear this + } |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 13:47:17
|
Update of /cvsroot/igarden/Garden/source/LayoutDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv678 Modified Files: Tag: Release_branch_v1 Layout.h Layout.cpp Log Message: Fully implement planting regions for choosing the quick pick list Index: Layout.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/Layout.h,v retrieving revision 1.18.2.3 retrieving revision 1.18.2.4 diff -C2 -d -r1.18.2.3 -r1.18.2.4 *** Layout.h 7 Dec 2006 01:23:03 -0000 1.18.2.3 --- Layout.h 13 Dec 2006 13:47:15 -0000 1.18.2.4 *************** *** 104,107 **** --- 104,108 ---- void ParseXML( ClientDocument * doc, XGXMLObject *obj ); void LoadInitialPalettes(materialArray_t *allMaterials); + void LoadQoickPickPalettes(String ®ionStr); void Draw(PlanView* view); void LoadOldFileFormat(); *************** *** 174,177 **** --- 175,179 ---- XGDynArray<PaletteGroup*> _paletteGroups; XGDynArray<LayerSet*> _layerSets; + String _region; bool _translateToGL; bool _fixBeta1Layers; Index: Layout.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/Layout.cpp,v retrieving revision 1.27.2.5 retrieving revision 1.27.2.6 diff -C2 -d -r1.27.2.5 -r1.27.2.6 *** Layout.cpp 7 Dec 2006 01:23:03 -0000 1.27.2.5 --- Layout.cpp 13 Dec 2006 13:47:15 -0000 1.27.2.6 *************** *** 539,554 **** { long n, numMaterials; - XGFileSpecifier spec; - XGDirectory dir; - XGFile inFile; - ErrorCode ec; - long bytesRead; - char buf[128]; - XGXMLDOMParser parser; - XGXMLObject *parseTree; - XGXMLData *data; XGUUID uid, nilID; materialID_t id; MaterialCollection *palette; PRECONDITION(NumPalettes(kRegenAllPlantsGroup) == 1); --- 539,546 ---- { long n, numMaterials; XGUUID uid, nilID; materialID_t id; MaterialCollection *palette; + String initialRegion(""); PRECONDITION(NumPalettes(kRegenAllPlantsGroup) == 1); *************** *** 566,595 **** } ! MyAssert(dir.FindLocation(XGDirectory::kApplicationFolder)); ! dir.ChangeDirectory(NULL); ! MyAssert(dir.ChangeDirectory("Resources")); ! spec.SetFile(dir, "palettes.xml"); ! ec = inFile.Open(&spec, false); ! if(ec != KYAAFNoError) ! return; ! bytesRead = inFile.Read(sizeof(buf), buf); ! if(strncmp(buf, "<?xml version=\"1.0\"?>", 21) == 0) { ! buf[sizeof(buf)-1] = '\0'; ! if(strstr(buf, "<iGardenPalette>") != NULL) { ! inFile.SetFilePos(21); ! parseTree = parser.RunDOMParser(&inFile); ! if(parseTree != NULL) { ! data = dynamic_cast<XGXMLData*>(parseTree); ! if(strcmp(data->GetTag(), "iGardenPalette") == 0) { ! ParseOnePaletteEntry(data->GetChild(), NULL, kUserDefaultGroup); } ! ! delete data; } } --- 558,615 ---- } ! LoadQoickPickPalettes(initialRegion); ! } ! void Layout::LoadQoickPickPalettes(String ®ionStr) ! { ! XGDirectory dir; ! XGXMLDOMParser parser; ! XGFileSpecifier spec; ! XGFile inFile; ! ErrorCode ec; ! long bytesRead; ! char buf[128]; ! XGXMLObject *parseTree; ! XGXMLData *data; ! if(_region.empty() || regionStr != _region) { ! _region = regionStr; ! ! MyAssert(dir.FindLocation(XGDirectory::kApplicationFolder)); ! dir.ChangeDirectory(NULL); ! MyAssert(dir.ChangeDirectory("Resources")); ! spec.SetFile(dir, "palettes.xml"); ! ! ec = inFile.Open(&spec, false); ! if(ec != KYAAFNoError) ! return; ! ! _paletteGroups[kBackgroundGroup]->_palettes.DeleteAll(); ! _paletteGroups[kCommonPlantGroup]->_palettes.DeleteAll(); ! _paletteGroups[kCommonHardscapeGroup]->_palettes.DeleteAll(); ! _paletteGroups[kUserDefaultGroup]->_palettes.DeleteAll(); ! bytesRead = inFile.Read(sizeof(buf), buf); ! if(strncmp(buf, "<?xml version=\"1.0\"?>", 21) == 0) { ! buf[sizeof(buf)-1] = '\0'; ! if(strstr(buf, "<iGardenPalette>") != NULL) { ! inFile.SetFilePos(21); ! parseTree = parser.RunDOMParser(&inFile); ! if(parseTree != NULL) { ! data = dynamic_cast<XGXMLData*>(parseTree); ! if(strcmp(data->GetTag(), "iGardenPalette") == 0) ! { ! ParseOnePaletteEntry(data->GetChild(), NULL, kUserDefaultGroup); ! } ! ! delete data; } ! } ! else ! { ! inFile.Close(); } } *************** *** 599,606 **** } } - else - { - inFile.Close(); - } } --- 619,622 ---- *************** *** 650,653 **** --- 666,670 ---- XGXMLData *data; MaterialCollection *palette; + PersistentTags *prefs; while(subTree != NULL) *************** *** 656,670 **** if(strcmp(data->GetTag(), "Palette") == 0) { ! palette = new MaterialCollection(this); ! palette->ParseXML(subTree); ! // printf("Adding palette '%s' to group %ld of region %s\n", palette->GetName().c_str(), group, region != NULL ? region : ""); ! AddPalette(group, palette); } else if(strcmp(data->GetTag(), "Region") == 0) { region = data->GetArgValue("name"); // printf("Entering region %s\n", region ? region : ""); if(strcmp(region, "any") == 0) ParseOnePaletteEntry(data->GetChild(), region, group); } else if(strcmp(data->GetTag(), "PaletteGroup") == 0) --- 673,709 ---- if(strcmp(data->GetTag(), "Palette") == 0) { ! long i, numGroups; ! String curPaletteName; ! ! palette = NULL; ! MaterialCollection::GetNameFromXML(subTree, curPaletteName); ! ! numGroups = _paletteGroups[group]->_palettes.Length(); ! for(i = 0; i < numGroups && palette == NULL; i++) ! { ! if(_paletteGroups[group]->_palettes[i]->GetName() == curPaletteName) ! { ! palette = _paletteGroups[group]->_palettes[i]; ! palette->ParseXML(subTree); ! } ! } ! ! if(palette == NULL) ! { ! palette = new MaterialCollection(this); ! palette->ParseXML(subTree); ! AddPalette(group, palette); ! } ! palette->SortByName(kUsePreferencesSetting); } else if(strcmp(data->GetTag(), "Region") == 0) { region = data->GetArgValue("name"); + String regionObj(region); // printf("Entering region %s\n", region ? region : ""); if(strcmp(region, "any") == 0) ParseOnePaletteEntry(data->GetChild(), region, group); + else if(regionObj == _region) + ParseOnePaletteEntry(data->GetChild(), region, group); } else if(strcmp(data->GetTag(), "PaletteGroup") == 0) |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 12:14:48
|
Update of /cvsroot/igarden/Garden/source/SiteData In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv29693 Modified Files: Tag: Release_branch_v1 SiteDataDialog.h SiteDataDialog.cpp Log Message: Fully implement planting regions for choosing the quick pick list Index: SiteDataDialog.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/SiteData/SiteDataDialog.cpp,v retrieving revision 1.14 retrieving revision 1.14.2.1 diff -C2 -d -r1.14 -r1.14.2.1 *** SiteDataDialog.cpp 11 Feb 2006 16:47:55 -0000 1.14 --- SiteDataDialog.cpp 13 Dec 2006 12:14:45 -0000 1.14.2.1 *************** *** 19,22 **** --- 19,23 ---- #include "SiteDataDialog.h" #include <GlobalTags.h> + #include <XCoreUtils.h> #include "CGardenForm.h" #include "DateSelectDialog.h" *************** *** 43,46 **** --- 44,48 ---- const int kSiteDialog = 137; + const int kRegionStrings = 3053; const int kSiteOK = 1; *************** *** 54,60 **** --- 56,64 ---- const int kSiteZoneLookup = 9; const int kSiteZoneFoundText = 10; + const int kSiteRegionMenu = 12; const int kSiteZoneStaticText1 = 21; const int kSiteZoneStaticText2 = 22; + using namespace yaaf; // --------------------------------------------------------------------------- *************** *** 72,80 **** RGDateTime outDate; XGStaticText *springText, *fallText; ! XGPopControl *zonePop; XGStaticText *foundText; String bufObj; long n, count; String value; switch (msg) { --- 76,85 ---- RGDateTime outDate; XGStaticText *springText, *fallText; ! XGPopControl *zonePop, *regionPop; XGStaticText *foundText; String bufObj; long n, count; String value; + char shortMsg[256], longMsg[256]; switch (msg) { *************** *** 151,154 **** --- 156,172 ---- view->HideView(); } + + regionPop = dynamic_cast<XGPopControl*>(dlog->FindViewByID(kSiteRegionMenu)); + for(n = 0; ; n++) + { + if(GetResourceMessage(kRegionStrings, n, shortMsg, longMsg)) + { + regionPop->Insert(n, longMsg); + if(strcmp(shortMsg, result->_regionKey.c_str()) == 0) + regionPop->SetValue(n); + } + else + break; + } return 0; default: *************** *** 165,168 **** --- 183,192 ---- result->_zone = zonePop->GetValue() << 1L; break; + case kSiteRegionMenu: + zonePop = dynamic_cast<XGPopControl*>(dlog->FindViewByID(kSiteRegionMenu)); + AssertValidView(zonePop); + GetResourceMessage(kRegionStrings, zonePop->GetValue(), shortMsg, longMsg); + result->_regionKey.SetCString(shortMsg); + break; } break; *************** *** 299,302 **** --- 323,327 ---- dialog._hasSpringFrost = prefs->GetDatePref(kSpringFrostSiteData, dialog._springFrost); dialog._hasFallFrost = prefs->GetDatePref(kFallFrostSiteData, dialog._fallFrost); + prefs->GetStrPref(kRegionSiteData, dialog._regionKey); ok = XGDialog::ModalDialog(kSiteDialog, SiteDialogProc, &dialog); *************** *** 308,311 **** --- 333,337 ---- if(dialog._hasFallFrost) prefs->SetDatePref(kFallFrostSiteData, dialog._fallFrost); + prefs->SetStrPref(kRegionSiteData, dialog._regionKey.c_str()); } } Index: SiteDataDialog.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/SiteData/SiteDataDialog.h,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** SiteDataDialog.h 5 Jan 2005 11:35:14 -0000 1.3 --- SiteDataDialog.h 13 Dec 2006 12:14:45 -0000 1.3.2.1 *************** *** 49,52 **** --- 49,53 ---- bool _hasSpringFrost; bool _hasFallFrost; + String _regionKey; }; |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 12:14:41
|
Update of /cvsroot/igarden/Garden/source/Preferences In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv29680 Modified Files: Tag: Release_branch_v1 PersistentTags.cpp PersistentTags.h Log Message: Fully implement planting regions for choosing the quick pick list Index: PersistentTags.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/Preferences/PersistentTags.h,v retrieving revision 1.11.2.2 retrieving revision 1.11.2.3 diff -C2 -d -r1.11.2.2 -r1.11.2.3 *** PersistentTags.h 7 Dec 2006 01:22:52 -0000 1.11.2.2 --- PersistentTags.h 13 Dec 2006 12:14:36 -0000 1.11.2.3 *************** *** 24,27 **** --- 24,28 ---- class PreferencesWindow; class RGXMLWriter; + class RGString; #include <XGDynArray.h> *************** *** 58,62 **** kUseInternetAskedPref, kUseCompoundFileFormat, ! kIncludeAerialInFile } stateTags_t; --- 59,64 ---- kUseInternetAskedPref, kUseCompoundFileFormat, ! kIncludeAerialInFile, ! kRegionSiteData } stateTags_t; *************** *** 78,81 **** --- 80,84 ---- /***/ virtual bool GetStrPref(stateTags_t propertyID, Int32 valueLen, void* value) = 0; + virtual bool GetStrPref(stateTags_t propertyID, String &str); virtual UInt32 GetStrPrefLength(stateTags_t propertyID) = 0; virtual void SetStrPref(stateTags_t propertyID, const char* value) = 0; Index: PersistentTags.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/Preferences/PersistentTags.cpp,v retrieving revision 1.12.2.2 retrieving revision 1.12.2.3 diff -C2 -d -r1.12.2.2 -r1.12.2.3 *** PersistentTags.cpp 7 Dec 2006 01:22:52 -0000 1.12.2.2 --- PersistentTags.cpp 13 Dec 2006 12:14:36 -0000 1.12.2.3 *************** *** 72,75 **** --- 72,85 ---- } + bool PersistentTags::GetStrPref(stateTags_t propertyID, String &str) + { + UInt32 len = GetStrPrefLength(propertyID); + if(len > 0) + { + char *buf = new char[len+1]; + GetStrPref(propertyID, len+1, buf); + str.SetCString(buf); + } + } *************** *** 118,121 **** --- 128,132 ---- vc3->AddProperty(kFallFrostSiteData, "fallFrost", kDateField); vc3->AddProperty(kZoneSiteData, "USDAZone", kIntegerField); + vc3->AddProperty(kRegionSiteData, "Region", kStringField); vc3->AddProperty(kProjectName, "ProjectName", kStringField); |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 12:14:33
|
Update of /cvsroot/igarden/Garden/Macintosh/Garden.xcodeproj In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv29641 Modified Files: Tag: Release_branch_v1 project.pbxproj Log Message: Fully implement planting regions for choosing the quick pick list Index: project.pbxproj =================================================================== RCS file: /cvsroot/igarden/Garden/Macintosh/Garden.xcodeproj/project.pbxproj,v retrieving revision 1.58.2.11 retrieving revision 1.58.2.12 diff -C2 -d -r1.58.2.11 -r1.58.2.12 *** project.pbxproj 13 Dec 2006 00:43:33 -0000 1.58.2.11 --- project.pbxproj 13 Dec 2006 12:14:29 -0000 1.58.2.12 *************** *** 3359,3362 **** --- 3359,3363 ---- GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_UNROLL_LOOPS = NO; + GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; |
|
From: Jeffrey B. <jlb...@us...> - 2006-12-13 12:11:32
|
Update of /cvsroot/igarden/Garden/source/resources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28473 Modified Files: Tag: Release_branch_v1 Palettes.xml Log Message: Fully implement planting regions for choosing the quick pick list Index: Palettes.xml =================================================================== RCS file: /cvsroot/igarden/Garden/source/resources/Attic/Palettes.xml,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** Palettes.xml 26 Nov 2006 01:19:52 -0000 1.1.2.1 --- Palettes.xml 13 Dec 2006 12:11:30 -0000 1.1.2.2 *************** *** 10,14 **** <item>Coreopsis</item> <item>Liatris spicata</item> - <item>Hosta</item> <item>Leucanthemum x superbum</item> <item>Dianthus deltoides</item> --- 10,13 ---- *************** *** 78,81 **** --- 77,87 ---- </PaletteGroup> </Region> + <Region name="US_NE"> + <PaletteGroup name="Common Plants"> + <Palette name="Perrennials"> + <item>Hosta</item> + </Palette> + </PaletteGroup> + </Region> <!-- |