├── .GitHub └── copilot-setup-steps.yml ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── CI.yml │ ├── CommitMessage.yml │ ├── base-installer-cd.yml │ ├── check-whitespace.yml │ └── patch-installer-cd.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Bin ├── BCopy.exe ├── CollectCppUnitTests.exe ├── CollectUnit++Tests.cmd ├── CollectUnit++Tests.sh ├── FixGenComHeaderFile.exe ├── GenerateFwSchema.exe ├── Interop.IWshRuntimeLibrary.dll ├── LocaleStrings.exe ├── Mktstw.bat ├── MsHtmHstInterop.dll ├── Po2Xml.exe ├── ProcessLanguagesBld.exe ├── ReadKey.exe ├── RemakeFw.bat ├── Rhino │ └── Rhino.Mocks.dll ├── WriteKey.exe ├── WriteKey.exe.manifest ├── _EnsureRoot.bat ├── abs.py ├── ilrepack-assemblies ├── list-assembly-references ├── md5sums.exe ├── mkGenLib-tst.bat ├── mkGenLib.bat ├── mkaft.bat ├── mkall-tst.bat ├── mkdir.exe ├── mkdp.bat ├── mkecob.bat ├── mkfwk-tst.bat ├── mkfwk.bat ├── mkgrc.bat ├── mkgre.bat ├── mkhv.bat ├── mkhw.bat ├── mkhwt.bat ├── mkhwv.bat ├── mkhwx.bat ├── mklg-tst.bat ├── mklg.bat ├── mklgt.bat ├── mktlbs.bat ├── mktsth.bat ├── mktv.bat ├── mkvw-tst.bat ├── mkvw.bat ├── nmock │ ├── NMock.dll │ ├── NMock.pdb │ └── src │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── build.bat │ │ ├── ccnet │ │ ├── ccnet-nmock.bat │ │ └── ccnet.config │ │ ├── continuousintegration.build │ │ ├── lib │ │ ├── nunit-console.exe │ │ ├── nunit-console.exe.config │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll │ │ ├── nmock.build │ │ ├── sample │ │ ├── build.build │ │ ├── order │ │ │ ├── Notifier.cs │ │ │ ├── Order.cs │ │ │ ├── OrderProcessor.cs │ │ │ └── OrderProcessorTest.cs │ │ ├── random │ │ │ ├── Weather.cs │ │ │ └── WeatherTest.cs │ │ └── sample.csproj │ │ ├── src │ │ ├── AssemblyInfo.cs │ │ ├── NMock.csproj │ │ ├── NMock │ │ │ ├── CallMethodOrder.cs │ │ │ ├── CallMethodWithParams.cs │ │ │ ├── CallMethodWithoutExpectation.cs │ │ │ ├── Constraints │ │ │ │ ├── Constraints.cs │ │ │ │ ├── IConstraint.cs │ │ │ │ └── IsArrayEqual.cs │ │ │ ├── Dynamic │ │ │ │ ├── ClassGenerator.cs │ │ │ │ └── InterfaceLister.cs │ │ │ ├── DynamicMock.cs │ │ │ ├── IInvocationHandler.cs │ │ │ ├── IMethod.cs │ │ │ ├── IMock.cs │ │ │ ├── IVerifiable.cs │ │ │ ├── Invocation.cs │ │ │ ├── Method.cs │ │ │ ├── MethodSignature.cs │ │ │ ├── Mock.cs │ │ │ ├── MockCall.cs │ │ │ ├── NMock.csproj │ │ │ ├── Remoting │ │ │ │ ├── MockServer.cs │ │ │ │ └── RemotingMock.cs │ │ │ ├── SingleMethod.cs │ │ │ ├── VerifyException.cs │ │ │ └── build.build │ │ └── src.csproj │ │ ├── test │ │ ├── AssemblyInfo.cs │ │ ├── NMock │ │ │ ├── Constraints │ │ │ │ ├── ConstraintsTest.cs │ │ │ │ └── IsArrayEqualTest.cs │ │ │ ├── Dynamic │ │ │ │ ├── ClassGeneratorTest.cs │ │ │ │ └── InterfaceListerTest.cs │ │ │ ├── DynamicMockTest.cs │ │ │ ├── FastErrorHandlingTest.cs │ │ │ ├── MockTest.cs │ │ │ ├── NMockTests.csproj │ │ │ ├── Remoting │ │ │ │ ├── MockServerTest.cs │ │ │ │ └── RemotingMockTest.cs │ │ │ ├── VerifyExceptionTest.cs │ │ │ └── build.build │ │ └── test.csproj │ │ └── tools │ │ ├── NAnt.Core.dll │ │ ├── NAnt.DotNetTasks.dll │ │ ├── NAnt.NUnit1Tasks.dll │ │ ├── NAnt.NUnitTasks.dll │ │ ├── NDoc.Core.dll │ │ ├── nant.exe │ │ ├── nunit.core.dll │ │ └── nunit.framework.dll ├── nunitforms │ ├── FormsTester.dll │ └── source │ │ └── FormsTester │ │ ├── AmbiguousNameException.cs │ │ ├── ControlFinder.cs │ │ ├── ControlNotVisibleException.cs │ │ ├── ControlTester.cs │ │ ├── Finder.cs │ │ ├── FormCollection.cs │ │ ├── FormFinder.cs │ │ ├── FormsTestAssertionException.cs │ │ ├── FormsTester.csproj │ │ ├── ModalFormTester.cs │ │ ├── NUnitFormTest.cs │ │ ├── NoSuchControlException.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Win32.cs │ │ └── readme.txt ├── saxon │ ├── instant.html │ ├── saxon-jdom.jar │ ├── saxon-xml-apis.jar │ ├── saxon.exe │ ├── saxon.jar │ └── saxon6-5-4.zip ├── testWrapper.cmd └── wrapper.cmd ├── Bld ├── _init.mak ├── _mkcore.bat ├── _names.mak ├── _rule.mak └── _targ.mak ├── Build ├── Agent │ └── install-deps ├── CopyInterpret.js ├── DownloadLibraryDependencies.pl ├── FieldWorks.proj ├── FwBuildTasks.targets ├── GlobalInclude.properties.template ├── Installer.targets ├── LibraryDevelopment.targets ├── LocalLibrary.targets ├── Localize.targets ├── NUnitReport.exe ├── NuGet.targets ├── RegFree.targets ├── RemoveAsterisks.js ├── SetupInclude.targets ├── Src │ ├── .editorconfig │ ├── FwBuildTasks │ │ ├── .gitignore │ │ ├── BuildUtils.cs │ │ ├── Clouseau.cs │ │ ├── CodeReader │ │ │ └── ILReader.cs │ │ ├── CollectTargets.cs │ │ ├── DownloadFile.cs │ │ ├── DownloadFilesFromTeamCity.cs │ │ ├── ExtractIIDsTask.cs │ │ ├── ForceDelete.cs │ │ ├── FwBuildTasks.csproj │ │ ├── FwBuildTasks.sln │ │ ├── FwBuildTasks.sln.DotSettings │ │ ├── FwBuildTasksTests │ │ │ ├── ClouseauTests.cs │ │ │ ├── GoldEticToXliffTests.cs │ │ │ ├── InstrumentedLocalizeFieldWorks.cs │ │ │ ├── InstrumentedLocalizer.cs │ │ │ ├── InstrumentedProjectLocalizer.cs │ │ │ ├── LocalizeFieldWorksTests.cs │ │ │ ├── LocalizeListsTests.cs │ │ │ ├── LocalizerTests.cs │ │ │ ├── NormalizeLocalesTests.cs │ │ │ ├── PoToXmlTests.cs │ │ │ ├── ProjectLocalizerTests.cs │ │ │ ├── TaskTestUtils.cs │ │ │ ├── WxsToWxiTests.cs │ │ │ ├── XliffToGoldEticTests.cs │ │ │ └── XmlToPoTests.cs │ │ ├── GenerateNUnitReports.cs │ │ ├── GenerateTestCoverageReport.cs │ │ ├── Localization │ │ │ ├── CopyLocale.cs │ │ │ ├── EmbedInfo.cs │ │ │ ├── GoldEticToXliff.cs │ │ │ ├── ListsToXliff.cs │ │ │ ├── LocalizeFieldWorks.cs │ │ │ ├── LocalizeLists.cs │ │ │ ├── Localizer.cs │ │ │ ├── LocalizerOptions.cs │ │ │ ├── NormalizeLocales.cs │ │ │ ├── POString.cs │ │ │ ├── PoToXml.cs │ │ │ ├── ProjectLocalizer.cs │ │ │ ├── ProjectLocalizerOptions.cs │ │ │ ├── XliffToGoldEtic.cs │ │ │ ├── XliffToLists.cs │ │ │ ├── XliffUtils.cs │ │ │ └── XmlToPo.cs │ │ ├── LogMetadata.cs │ │ ├── Make.cs │ │ ├── Md5Checksum.cs │ │ ├── Misc.cs │ │ ├── ParseVersionNumbers.cs │ │ ├── README.md │ │ ├── RegFree.cs │ │ ├── RegFreeCreator.cs │ │ ├── RegHelper.cs │ │ ├── RegisterForTestsTask.cs │ │ ├── Substitute.cs │ │ ├── TestTask.cs │ │ ├── Unitpp.cs │ │ ├── UnzipTask.cs │ │ ├── VerifyFilesIdentical.cs │ │ ├── WriteRegistry.cs │ │ ├── WriteTextFile.cs │ │ ├── WxsToWxi.cs │ │ ├── XslTransformation.cs │ │ ├── ZipTask.cs │ │ └── app.config │ └── NUnitReport │ │ ├── NUnitReport.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ReportGenerator.cs │ │ ├── StubBuildEngine.cs │ │ └── app.config ├── TestTimeoutValues.xml ├── Windows.targets ├── build ├── build-recent ├── build.bat ├── build64.bat ├── buildLocalLibraries.sh ├── bumpVersion.py ├── mkall.targets ├── multitry ├── nuget-common │ └── packages.config ├── nuget-windows │ └── packages.config ├── releaseTagger.py ├── run-in-environ └── vswhere.exe ├── DistFiles ├── Aga.Controls.dll ├── Arrow by character.reg ├── CheckGuidsInProjectXml.exe ├── CommonLocalizations │ ├── .gitignore │ └── README.md ├── ConvertLib.dll ├── ConvertLib.pdb ├── Converter.exe ├── Converter.pdb ├── ConverterConsole.exe ├── ConverterConsole.pdb ├── DisableSplashScreen.reg ├── Editorial Checks │ ├── eng.vrs │ ├── lxx.vrs │ ├── org.vrs │ ├── oth.vrs │ ├── rsc.vrs │ ├── rso.vrs │ └── vul.vrs ├── EncodingConverters │ └── TestPyScript.py ├── Fonts │ ├── IPA93Mapping │ │ ├── CharacterMapping.dtd │ │ ├── SIL-IPA93-2001.map │ │ ├── readme.txt │ │ ├── silipa93.tec │ │ └── silipa93.xml │ ├── Raw │ │ ├── Quivira.otf │ │ └── ReadMe.txt │ ├── SILCorpPUAAssign_2007-10-30.pdf │ └── UCD-SIL_PUA_2007-11-08.xls ├── FormLanguageSwitch.dll ├── FwTMDefinition.xml ├── GAFAWSAnalysis.dll ├── Graphite │ ├── Compiler Debug Files.rtf │ ├── GDL.pdf │ ├── Graphite Overview.rtf │ ├── OpenSrcRel │ │ ├── Readme.txt │ │ └── Release_Notes.txt │ ├── Stack Machine Commands.rtf │ ├── Transduction Log.rtf │ ├── ac │ │ ├── allcaps.gdl │ │ ├── makecaps.wpx │ │ └── stddr.ttf │ ├── gdlpp.exe │ ├── graphite_readme.txt │ ├── ipa │ │ ├── IPA93.BMP │ │ ├── IPA_Release_Notes.pdf │ │ ├── IPA_overview.rtf │ │ ├── Ipa93_5.kmn │ │ ├── Ipa93_5.kmx │ │ ├── SILDU.gdl │ │ ├── SILDUb.xml │ │ ├── SILDUb2.gdh │ │ ├── SILDUb3.TTF │ │ └── SILDUniR1_6.ttf │ ├── pl │ │ ├── Pig_Latin_Demo.rtf │ │ ├── piglatin.gdl │ │ └── piglatin.ttf │ ├── sd │ │ ├── Stack_Diac_Demo.rtf │ │ ├── stakdiac.bmp │ │ ├── stakdiac.gdl │ │ ├── stakdiac.kmn │ │ ├── stakdiac.kmx │ │ └── stakdiac.ttf │ └── stddef.gdh ├── Keyboards │ ├── Ezra │ │ ├── EzraSIL25.kmp │ │ └── Sources │ │ │ ├── FONTLOG.txt │ │ │ ├── Filelist.txt │ │ │ ├── FontLab │ │ │ ├── OFL.txt │ │ │ ├── SILEOT-2.vfb │ │ │ └── silsr2.vfb │ │ │ ├── Keyman │ │ │ ├── EZRAUNI23.KMN │ │ │ ├── EZRAUNI23.kmx │ │ │ ├── EZRAUNI23.kvk │ │ │ ├── Ezra2.3.kps │ │ │ ├── HEBDISPY.bmp │ │ │ └── alef.bmp │ │ │ ├── Licenses.txt │ │ │ ├── OFL-FAQ.txt │ │ │ ├── README.txt │ │ │ ├── SILEOT.ttf │ │ │ ├── SILEOTSR.ttf │ │ │ ├── VOLT │ │ │ ├── MITX11License.txt │ │ │ ├── SILEOT8May07.vtp │ │ │ └── SILEOTSR8May07.vtp │ │ │ ├── WordDocs │ │ │ ├── Ezra SIL Keyboard Chart.doc │ │ │ ├── Ezra Unicode Convert30.doc │ │ │ ├── Ezra Unicode Install2.5v19.doc │ │ │ ├── Keying in Hebrew 7.doc │ │ │ ├── Simplified keyboard chart.doc │ │ │ └── Unicode Ezra Chart17short.xls │ │ │ └── mappings │ │ │ ├── EzraSIL20to25.map │ │ │ ├── EzraSIL20to25.tec │ │ │ ├── HEB-map.xml │ │ │ ├── Hebrew_MCtoUni50.map │ │ │ ├── Hebrew_MCtoUni50.tec │ │ │ ├── MC2se_2007.cct │ │ │ ├── SILEzratoUni50.map │ │ │ ├── SILEzratoUni50.tec │ │ │ ├── WLC2sfm.cct │ │ │ ├── iso-8859-1.map │ │ │ ├── iso-8859-1.tec │ │ │ ├── r2l.cct │ │ │ ├── r2l_2004.cct │ │ │ ├── se2de_2007.cct │ │ │ ├── se2tr_2007.cct │ │ │ └── unpoint.cct │ ├── Galatia │ │ ├── GrkPolyComp.kmp │ │ └── Sources │ │ │ ├── ALPHA.bmp │ │ │ ├── Greek Poly Comp Kbrd Layout.pdf │ │ │ ├── GrkPolyComp.KMN │ │ │ ├── GrkPolyComp.kps │ │ │ ├── sil.bmp │ │ │ └── welcome.htm │ └── IPA │ │ ├── Keyman │ │ ├── IPA Unicode 5.1 (ver 1.2) KMN.pdf │ │ ├── IPAUni12.kmx │ │ └── Sources │ │ │ ├── IPA Unicode 5.1 (ver 1.2) KMN.doc │ │ │ ├── IPAUni12.kmn │ │ │ ├── IPAUni12.kps │ │ │ ├── ipa.bmp │ │ │ ├── sil.bmp │ │ │ └── welcome.htm │ │ └── MSKLC │ │ ├── IPA Unicode 5.0c (ver 1.0.1) MSK.pdf │ │ ├── IPAMSKLCreadme.txt │ │ ├── Sources │ │ ├── IPA Unicode 5.0c (ver 1.0.1) MSK.doc │ │ └── IPA101.klc │ │ └── ipa101 │ │ ├── IPA101_amd64.msi │ │ ├── IPA101_i386.msi │ │ ├── IPA101_ia64.msi │ │ ├── amd64 │ │ └── IPA101.dll │ │ ├── i386 │ │ └── IPA101.dll │ │ ├── ia64 │ │ └── IPA101.dll │ │ ├── setup.exe │ │ └── wow64 │ │ └── IPA101.dll ├── Language Explorer │ ├── AlphaConfigs │ │ ├── AllReversalIndexes.fwdictconfig │ │ ├── README.txt │ │ ├── Root.fwdictconfig │ │ └── Stem.fwdictconfig │ ├── Configuration │ │ ├── Available Plugins │ │ │ └── ReadMe.txt │ │ ├── CommonDataTreeInclude.xml │ │ ├── ConstituentChartStyleInfo.xml │ │ ├── ContextHelp.xml │ │ ├── DictionaryConfiguration.xsd │ │ ├── Extensions │ │ │ └── ReadMe.txt │ │ ├── Grammar │ │ │ ├── DataTreeInclude.xml │ │ │ ├── Edit │ │ │ │ ├── DataEntryFilters │ │ │ │ │ ├── basicFilter.xml │ │ │ │ │ └── basicPlusFilter.xml │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Extensions │ │ │ │ └── ReadMe.txt │ │ │ ├── InflAffixTemplateInclude.xml │ │ │ ├── areaConfiguration.xml │ │ │ └── cd.tab │ │ ├── Lexicon │ │ │ ├── Browse │ │ │ │ └── toolConfiguration.xml │ │ │ ├── DataTreeInclude.xml │ │ │ ├── Dictionary │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Edit │ │ │ │ ├── DataEntryFilters │ │ │ │ │ ├── CompleteFilter.xml │ │ │ │ │ ├── basicFilter.xml │ │ │ │ │ └── basicPlusFilter.xml │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Extensions │ │ │ │ └── ReadMe.txt │ │ │ ├── RDE │ │ │ │ └── toolConfiguration.xml │ │ │ ├── ReversalEntriesBulkEdit │ │ │ │ └── toolConfiguration.xml │ │ │ ├── ReversalIndices │ │ │ │ └── toolConfiguration.xml │ │ │ ├── areaConfiguration.xml │ │ │ └── browseDialogColumns.xml │ │ ├── LinguaLinksImportMessage.html │ │ ├── Lists │ │ │ ├── DataTreeInclude.xml │ │ │ ├── Edit │ │ │ │ ├── DataEntryFilters │ │ │ │ │ └── completeFilter.xml │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Extensions │ │ │ │ └── ReadMe.txt │ │ │ ├── ReversalPOSEdit │ │ │ │ └── toolConfiguration.xml │ │ │ └── areaConfiguration.xml │ │ ├── Main.xml │ │ ├── Notebook │ │ │ ├── Browse │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Document │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Edit │ │ │ │ └── toolConfiguration.xml │ │ │ ├── areaConfiguration.xml │ │ │ └── browseDialogColumns.xml │ │ ├── Parts │ │ │ ├── Cellar.fwlayout │ │ │ ├── CellarParts.xml │ │ │ ├── CmPossibility.fwlayout │ │ │ ├── CmPossibilityParts.xml │ │ │ ├── LexEntry.fwlayout │ │ │ ├── LexEntryParts.xml │ │ │ ├── LexSense.fwlayout │ │ │ ├── LexSenseParts.xml │ │ │ ├── Morphology.fwlayout │ │ │ ├── MorphologyParts.xml │ │ │ ├── Notebook.fwlayout │ │ │ ├── NotebookParts.xml │ │ │ ├── Reversal.fwlayout │ │ │ ├── ReversalParts.xml │ │ │ ├── ViewsLayout.xsd │ │ │ ├── WFI.fwlayout │ │ │ └── WFIParts.xml │ │ ├── UtilityCatalogInclude.xml │ │ ├── Words │ │ │ ├── Analyses │ │ │ │ ├── TraceParse │ │ │ │ │ ├── InitialDocument.htm │ │ │ │ │ ├── WhileTracing.htm │ │ │ │ │ ├── beginminus.gif │ │ │ │ │ ├── beginminusRTL.gif │ │ │ │ │ ├── beginplus.gif │ │ │ │ │ ├── beginplusRTL.gif │ │ │ │ │ ├── lastminus.gif │ │ │ │ │ ├── lastminusRTL.gif │ │ │ │ │ ├── lastplus.gif │ │ │ │ │ ├── lastplusRTL.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── minusRTL.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── plusRTL.gif │ │ │ │ │ ├── singleminus.gif │ │ │ │ │ ├── singleminusRTL.gif │ │ │ │ │ ├── singleplus.gif │ │ │ │ │ └── singleplusRTL.gif │ │ │ │ └── toolConfiguration.xml │ │ │ ├── BulkEdit │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Concordance │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Extensions │ │ │ │ └── ReadMe.txt │ │ │ ├── Spelling │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Statistics │ │ │ │ └── toolConfiguration.xml │ │ │ ├── Texts │ │ │ │ ├── toolConfigInclude.xml │ │ │ │ └── toolConfiguration.xml │ │ │ ├── areaConfiguration.xml │ │ │ └── reusableBrowseControlConfiguration.xml │ │ └── strings-en.xml │ ├── DefaultConfigurations │ │ ├── Classified Dictionary │ │ │ └── SemanticDomainSenses.fwdictconfig │ │ ├── Dictionary │ │ │ ├── Hybrid.fwdictconfig │ │ │ ├── Lexeme.fwdictconfig │ │ │ └── Root.fwdictconfig │ │ ├── Readme.md │ │ └── ReversalIndex │ │ │ └── AllReversalIndexes.fwdictconfig │ ├── Export Templates │ │ ├── AllListsHTMLS.xsl │ │ ├── AllListsXMLExport.xml │ │ ├── ClassifiedDictXhtml.xml │ │ ├── ClassifiedDictXhtml.xsl │ │ ├── ConfiguredXHTML.xml │ │ ├── ConfiguredXHTML.xsl │ │ ├── Discourse │ │ │ ├── Discourse2Word.xsl │ │ │ ├── Discourse2XLingPaper.xsl │ │ │ ├── MsWord.xml │ │ │ ├── Plain.xml │ │ │ └── XLingPaper.xml │ │ ├── Filtered-LIFT.xml │ │ ├── GrammarSketch.xml │ │ ├── GrammarSketchXLingPaper.xml │ │ ├── Interlinear │ │ │ ├── FlexInterlinear.xsd │ │ │ ├── HTML.xml │ │ │ ├── Interlinear Macros and Instructions.doc │ │ │ ├── Interlinear Macros and Instructions.pdf │ │ │ ├── MorphTypeGuids.xsl │ │ │ ├── MsWord.xml │ │ │ ├── MsWord2007.xml │ │ │ ├── OO.xml │ │ │ ├── Plain.xml │ │ │ ├── VerifiableGeneric.xml │ │ │ ├── XLingPap.xml │ │ │ ├── XLingPapConcatMorphemes.xml │ │ │ ├── XLingPapExamples.xml │ │ │ ├── XLingPapExamplesConcatMorphemes.xml │ │ │ ├── XLingPapListExamplesConcatMorphemes.xml │ │ │ ├── XmlExportForELAN.xml │ │ │ ├── manifest.xml │ │ │ ├── mimetype │ │ │ ├── xml2OO.xsl │ │ │ ├── xml2OOStyles.xsl │ │ │ ├── xml2Verifiable.xsl │ │ │ ├── xml2Word.xsl │ │ │ ├── xml2Word2007.xsl │ │ │ ├── xml2XLingPap.xsl │ │ │ ├── xml2XLingPapAllCommon.xsl │ │ │ ├── xml2XLingPapCommon.xsl │ │ │ ├── xml2XLingPapCommonConcatMorphemes.xsl │ │ │ ├── xml2XLingPapConcatMorphemes.xsl │ │ │ ├── xml2XLingPapExamples.xsl │ │ │ ├── xml2XLingPapExamplesConcatMorphemes.xsl │ │ │ ├── xml2XLingPapListExamplesConcatMorphemes.xsl │ │ │ └── xml2htm.xsl │ │ ├── LIFT.xml │ │ ├── LexiquePro │ │ │ └── LexiqueProConfig.dtd │ │ ├── ListsSfm.xml │ │ ├── ListsTsv.xml │ │ ├── ListsXml.xml │ │ ├── MicrosoftWord.xml │ │ ├── Notebook │ │ │ ├── Configured.xml │ │ │ ├── Configured.xsl │ │ │ ├── ConfiguredXHTML.xml │ │ │ ├── ConfiguredXHTML.xsl │ │ │ ├── FullNotebookSfm.xml │ │ │ ├── FullNotebookSfm.xsl │ │ │ └── FullNotebookXml.xml │ │ ├── OtherExports.xml │ │ ├── Pathway.xml │ │ ├── Phonology.xml │ │ ├── ReversalIndexXHTML.xml │ │ ├── ReversalIndexXHTML.xsl │ │ ├── RootBasedMDF.xml │ │ ├── SemDomQs.xml │ │ ├── SemDomQs.xsl │ │ ├── SemDomQuestDepthFirst.xml │ │ ├── SemDomQuestDepthFirst.xsl │ │ ├── TranslatedLists.xml │ │ ├── Webonary.xml │ │ ├── WordformsSfm.xml │ │ ├── WordformsTSV.xml │ │ ├── WordformsXML.xml │ │ ├── XLingPaperForXXE.xsl │ │ ├── folderEnd.xml │ │ ├── folderStart.xml │ │ └── mdf.xml │ ├── FlexStyles.xml │ ├── GeneratedHtmlViewer │ │ ├── GeneratingDocumentPleaseWait.htm │ │ └── InitialDocument.htm │ ├── Import │ │ ├── BuildPhase2XSLT.xsl │ │ ├── Help.htm │ │ ├── ImportFields.dtd │ │ ├── ImportFields.xml │ │ ├── ImportFieldsHelpToHtml.xsl │ │ ├── InterlinearSfmImport.map │ │ ├── LLImportPhase1.xsl │ │ ├── LLImportPhase2.xsl │ │ ├── LLImportPhase3.xsl │ │ ├── LLImportPhase4.xsl │ │ ├── MDFImport.map │ │ ├── NotesImport.map │ │ ├── Phase3.xsl │ │ ├── Phase4.xsl │ │ └── WordsSfmImport.map │ ├── MGA │ │ ├── GlossLists │ │ │ ├── EticGlossList.xml │ │ │ ├── PhonFeatsEticGlossList.xml │ │ │ └── eticGlossList.dtd │ │ ├── Help.htm │ │ └── MGAShowInfo.xsl │ ├── Transforms │ │ ├── HermitCrabInput.dtd │ │ ├── WWUtils │ │ │ └── GenericForTesting.xslt │ │ ├── XLingPap.dtd │ │ ├── XLingPapCharacterEntities.dtd │ │ ├── XLingPapIndexTerms.dtd │ │ └── XLingPapReferences.dtd │ └── UserScripts │ │ └── TransduceCitationForms.py ├── LinqBridge.dll ├── MSSQLMigration │ ├── COMInterfaces.dll │ ├── OldMigrationScripts │ │ ├── 200185To200186.sql │ │ ├── 200186To200187.sql │ │ ├── 200187To200188.sql │ │ ├── 200188To200189.sql │ │ ├── 200189To200190.sql │ │ ├── 200190To200191.sql │ │ ├── 200191To200192.sql │ │ ├── 200192To200193.sql │ │ ├── 200193To200194.sql │ │ ├── 200194To200195.sql │ │ ├── 200195To200196.sql │ │ ├── 200196To200197.sql │ │ ├── 200197To200198.sql │ │ ├── 200198To200199.sql │ │ ├── 200199To200200.sql │ │ ├── 200200To200201.sql │ │ ├── 200201To200202.sql │ │ ├── 200202To200203.sql │ │ ├── 200203To200204.sql │ │ ├── 200204To200205.sql │ │ ├── 200205To200206.sql │ │ ├── 200206To200207.sql │ │ ├── 200207To200208.sql │ │ ├── 200208To200209.sql │ │ ├── 200209To200210.sql │ │ ├── 200210To200211.sql │ │ ├── 200211To200212.sql │ │ ├── 200212To200213.sql │ │ ├── 200213To200214.sql │ │ ├── 200214To200215.sql │ │ ├── 200215To200216.sql │ │ ├── 200216To200217.sql │ │ ├── 200217To200218.sql │ │ ├── 200218To200219.sql │ │ ├── 200219To200220.sql │ │ ├── 200220To200221.sql │ │ ├── 200221To200222.sql │ │ ├── 200222To200223.sql │ │ ├── 200223To200224.sql │ │ ├── 200224To200225.sql │ │ ├── 200225To200226.sql │ │ ├── 200226To200227.sql │ │ ├── 200227To200228.sql │ │ ├── 200228To200229.sql │ │ ├── 200229To200230.sql │ │ ├── 200230To200231.sql │ │ ├── 200231To200232.sql │ │ ├── 200232To200233.sql │ │ ├── 200233To200234.sql │ │ ├── 200234To200235.sql │ │ ├── 200235To200236.sql │ │ ├── 200236To200237.sql │ │ ├── 200237To200238.sql │ │ ├── 200238To200239.sql │ │ ├── 200239To200240.sql │ │ ├── 200240To200241.sql │ │ ├── 200241To200242.sql │ │ ├── 200242To200243.sql │ │ ├── 200243To200244.sql │ │ ├── 200244To200245.sql │ │ ├── 200245To200246.sql │ │ ├── 200246To200247.sql │ │ ├── 200247To200248.sql │ │ ├── 200248To200249.sql │ │ ├── 200249To200250.sql │ │ ├── 200250To200251.sql │ │ ├── 200251To200252.sql │ │ ├── 200252To200253.sql │ │ ├── 200253To200254.sql │ │ ├── 200254To200255.sql │ │ ├── 200255To200256.sql │ │ ├── 200256To200257.sql │ │ ├── 200257To200258.sql │ │ ├── 200258To200259.sql │ │ └── 200259To200260.sql │ └── db.exe ├── MissingPictureInImport.bmp ├── PaToFdoInterfaces.dll ├── Parts │ ├── Standard.fwlayout │ └── StandardParts.xml ├── Projects │ └── .gitignore ├── QuotationLanguages.xml ├── RngValidate.exe ├── SFconv.exe ├── SamplePreviewToBeDeleted.css ├── SamplePreviewToBeDeleted.xhtml ├── ScrBookRef.dtd ├── ScrBookRef.xml ├── Tamir.SharpSSH.dll ├── Templates │ ├── .gitignore │ ├── BasicIPAInfo.xml │ ├── BasicIPASymbol.dtd │ ├── ConfigureInterlinear │ │ ├── ConfigureInterlinear.css │ │ ├── configureInterlinearLines.js │ │ ├── dragula.min.js │ │ ├── jquery.js │ │ ├── jqueryui.js │ │ ├── script.js │ │ └── scriptForChart.js │ ├── MasterFieldWorksModel7.0.xml │ ├── OCM-Frame.xml │ ├── OCM.xml │ ├── XMLMindAddons │ │ ├── CategoryCatalog │ │ │ ├── CategoryCatalog.css │ │ │ ├── CategoryCatalog.dtd │ │ │ ├── CategoryCatalog.xxe │ │ │ ├── CategoryCatalog.xxe_addon │ │ │ ├── CategoryCatalogTemplate.xml │ │ │ ├── CategoryCatalog_catalog.xml │ │ │ ├── CreateCategoryCatalog.xsl │ │ │ ├── CreateInitialSetOfCategories.xsl │ │ │ ├── CreateInitialSetOfCategories7.0.xsl │ │ │ ├── InsertNewLanguage.xsl │ │ │ └── RemoveLanguage.xsl │ │ └── FeatureCatalog │ │ │ ├── CreateFeatureCatalog.xsl │ │ │ ├── FeatureCatalog.css │ │ │ ├── FeatureCatalog.dtd │ │ │ ├── FeatureCatalog.xxe │ │ │ ├── FeatureCatalogTemplate.xml │ │ │ ├── FeatureCatalog_catalog.xml │ │ │ ├── InsertNewLanguage.xsl │ │ │ └── RemoveLanguage.xsl │ ├── ar.ldml │ ├── az.ldml │ ├── bn.ldml │ ├── de.ldml │ ├── en.ldml │ ├── es.ldml │ ├── fa.ldml │ ├── fr.ldml │ ├── grc.ldml │ ├── hbo.ldml │ ├── hi.ldml │ ├── hu.ldml │ ├── id.ldml │ ├── km.ldml │ ├── ko.ldml │ ├── ml.ldml │ ├── ms.ldml │ ├── my.ldml │ ├── ne.ldml │ ├── pt.ldml │ ├── ru.ldml │ ├── rw.ldml │ ├── sw.ldml │ ├── ta.ldml │ ├── te.ldml │ ├── th.ldml │ ├── tr.ldml │ ├── ur.ldml │ ├── vi.ldml │ ├── yo.ldml │ └── zh-CN.ldml ├── TextFormStorage.dll ├── TxtConv.exe ├── Windows │ ├── EC Common │ │ ├── .gitignore │ │ └── Help │ │ │ ├── CC Table Plug-in About box.htm │ │ │ ├── CC Table Plug-in About box.mht │ │ │ ├── CC Table Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image007.png │ │ │ └── image008.jpg │ │ │ ├── Code Page Converter Plug-in About box.htm │ │ │ ├── Code Page Converter Plug-in About box.mht │ │ │ ├── Code Page Converter Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── header.htm │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image007.png │ │ │ └── image008.jpg │ │ │ ├── Compound Converter Plug-in About box.htm │ │ │ ├── Compound Converter Plug-in About box.mht │ │ │ ├── Compound Converter Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── image001.jpg │ │ │ ├── image005.png │ │ │ ├── image006.jpg │ │ │ └── image007.png │ │ │ ├── Fallback Converter Plug-in About box.htm │ │ │ ├── Fallback Converter Plug-in About box.mht │ │ │ ├── Fallback Converter Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image005.jpg │ │ │ └── image007.png │ │ │ ├── ICU Converters Plug-in About box.htm │ │ │ ├── ICU Converters Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image007.png │ │ │ └── image008.jpg │ │ │ ├── ICU Regular Expression Plug-in About box.htm │ │ │ ├── ICU Regular Expression Plug-in About box.mht │ │ │ ├── ICU Regular Expression Plug-in About box_files │ │ │ ├── colorschememapping.xml │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image005.png │ │ │ ├── image006.jpg │ │ │ ├── image007.png │ │ │ ├── image008.jpg │ │ │ ├── item0014.xml │ │ │ ├── props015.xml │ │ │ └── themedata.thmx │ │ │ ├── ICU Transliterators Plug-in About box.htm │ │ │ ├── ICU Transliterators Plug-in About box.mht │ │ │ ├── ICU Transliterators Plug-in About box_files │ │ │ ├── colorschememapping.xml │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image005.png │ │ │ ├── image006.jpg │ │ │ └── themedata.thmx │ │ │ ├── Perl Expression Plug-in About box.htm │ │ │ ├── Perl Expression Plug-in About box.mht │ │ │ ├── Perl Expression Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── header.htm │ │ │ ├── image001.png │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image005.png │ │ │ ├── image006.jpg │ │ │ └── image007.jpg │ │ │ ├── Python Script Plug-in About box.htm │ │ │ ├── Python Script Plug-in About box.mht │ │ │ ├── Python Script Plug-in About box_files │ │ │ ├── colorschememapping.xml │ │ │ ├── filelist.xml │ │ │ ├── header.htm │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image005.png │ │ │ ├── image006.jpg │ │ │ └── themedata.thmx │ │ │ ├── TECkit Map Plug-in About box.htm │ │ │ ├── TECkit Map Plug-in About box.mht │ │ │ └── TECkit Map Plug-in About box_files │ │ │ ├── filelist.xml │ │ │ ├── image001.png │ │ │ ├── image002.jpg │ │ │ ├── image003.png │ │ │ ├── image004.jpg │ │ │ ├── image007.png │ │ │ └── image008.jpg │ ├── EC for Developers │ │ ├── AIGuesserEC.dll │ │ ├── AIGuesserEC.pdb │ │ ├── AIGuesserEC.tlb │ │ ├── AdaptIt2Unicode.exe │ │ ├── AdaptIt2Unicode.pdb │ │ ├── CcEC.pdb │ │ ├── ClipboardEC.exe │ │ ├── ClipboardEC.pdb │ │ ├── Consistent Spelling Checker 400.dot │ │ ├── DChartHelper.exe │ │ ├── DChartHelper.pdb │ │ ├── Data Conversion Macro 0400.dot │ │ ├── DriveAiEncConverter.exe │ │ ├── DriveAiEncConverter.pdb │ │ ├── EC │ │ │ └── Plugins │ │ │ │ ├── AI 4.0.0.0 Plugin Details.xml │ │ │ │ └── SIEC 4.0.0.0 Plugin Details.xml │ │ ├── ECFileConverter.exe │ │ ├── EncConvertersAppDataMover40.pdb │ │ ├── Help │ │ │ ├── AdaptIt Guesser Plug-in About box.htm │ │ │ ├── AdaptIt Guesser Plug-in About box.mht │ │ │ ├── AdaptIt Guesser Plug-in About box_files │ │ │ │ ├── filelist.xml │ │ │ │ ├── header.htm │ │ │ │ ├── image001.png │ │ │ │ ├── image002.jpg │ │ │ │ ├── image003.png │ │ │ │ ├── image004.jpg │ │ │ │ ├── image005.png │ │ │ │ ├── image006.jpg │ │ │ │ ├── image007.png │ │ │ │ ├── image008.jpg │ │ │ │ ├── image013.png │ │ │ │ └── image014.jpg │ │ │ ├── AdaptIt Plug-in About box.htm │ │ │ ├── AdaptIt Plug-in About box.mht │ │ │ ├── AdaptIt Plug-in About box_files │ │ │ │ ├── filelist.xml │ │ │ │ ├── header.htm │ │ │ │ ├── image001.png │ │ │ │ ├── image002.jpg │ │ │ │ ├── image003.png │ │ │ │ ├── image004.jpg │ │ │ │ ├── image005.png │ │ │ │ ├── image006.jpg │ │ │ │ ├── image007.png │ │ │ │ ├── image008.jpg │ │ │ │ ├── image009.png │ │ │ │ ├── image010.jpg │ │ │ │ ├── image011.png │ │ │ │ └── image012.jpg │ │ │ ├── Help for SIL Converters.doc │ │ │ ├── Help for SIL Converters.pdf │ │ │ ├── Instructional Content 2005.dot │ │ │ ├── SILConverters Installation Help.doc │ │ │ ├── SILConverters Installation Help.pdf │ │ │ └── Technical Hindi (Google group) Html Converter Plug-in About box.mht │ │ ├── IcuEC.pdb │ │ ├── Jump2Toolbox.dll │ │ ├── Jump2Toolbox.exp │ │ ├── Jump2Toolbox.lib │ │ ├── Jump2Toolbox.pdb │ │ ├── LinguisticTools-2.2.oxt │ │ ├── PerlExpressionEC.pdb │ │ ├── PyScriptEC.pdb │ │ ├── SFMConv.exe │ │ ├── SFMConv.pdb │ │ ├── SILConvertersOffice.dll │ │ ├── SILConvertersOffice07.dll │ │ ├── SILConvertersOffice10.dll │ │ ├── SILConvertersOffice13.dll │ │ ├── SILConvertersWordML.exe │ │ ├── SILConvertersWordML.pdb │ │ ├── SecOptionsInstaller.exe │ │ ├── SilConvertersXML.exe │ │ ├── SilConvertersXML.pdb │ │ ├── SilEncConverters40.pdb │ │ ├── SilIndicEncConverters40.dll │ │ ├── SilIndicEncConverters40.tlb │ │ ├── SpellFixer.dot │ │ ├── SpellingFixerEC.dll │ │ ├── SpellingFixerEC.pdb │ │ ├── SpellingFixerEC.tlb │ │ ├── TECkitMappingEditorU.exe │ │ ├── TECkitMappingEditorU.pdb │ │ └── TestEncCnvtrs.pdb │ └── EC │ │ ├── .gitignore │ │ └── EC │ │ └── Plugins │ │ └── .gitignore ├── Winterdom.IO.FileMap License.txt ├── Winterdom.IO.FileMap.dll ├── XAmpleManagedWrapper.dll.config ├── XceedZip.dll ├── ZEdit.exe ├── ZeditColors.txt ├── aspell-15.dll ├── compatibility.fragment.manifest ├── iconv.dll ├── iso-8859-1.map ├── iso-8859-1.tec ├── libglib-2.0-0-vs8.dll ├── libglib-2.0-0.dll ├── libgmodule-2.0-0-vs8.dll ├── libgmodule-2.0-0.dll ├── libxample64.so ├── log4net.dll ├── strings-en.txt ├── unicows.dll ├── vs_piaredist.exe ├── wrtXML.dll ├── xample32.dll ├── xample64.dll └── xmlparse_u.dll ├── FLExInstaller ├── CustomActionSteps.wxi ├── CustomComponents.wxi ├── CustomFeatures.wxi ├── Fonts.wxi ├── Overrides.wxi ├── Redistributables.wxi ├── UpdateInfo.xml ├── UpdateInfoAlpha.xml └── UpdateInfoBeta.xml ├── FW.6.0.ReSharper ├── FW.sln.DotSettings ├── Include ├── CCDLL.h ├── CExPat.h ├── CXMLDataRec.h ├── HtmlHelp.h ├── IcuCommon.h ├── TECkit_Common.h ├── TECkit_Compiler.h ├── TECkit_Engine.h ├── unicode │ ├── .gitignore │ └── Readme.md ├── unit++ │ ├── optmap.h │ └── unit++.h ├── wrtXML.h ├── wrtXML.tlb └── xmlparse.h ├── Lib ├── CC32.lib ├── Common │ ├── Interop.MSXML2.dll │ ├── Interop.ResourceDriver.dll │ └── Interop.Utility.dll ├── Directory.Build.targets ├── HtmlHelp.lib ├── TECkit_Compiler_x86.lib ├── TECkit_x86.lib ├── debug │ ├── ECInterfaces.tlb │ ├── ICSharpCode.SharpZipLib.dll │ ├── ICSharpCode.SharpZipLib.pdb │ ├── ParserObject.lib │ ├── cport.lib │ ├── wrtXML.dll │ ├── xmlparse-utf16.lib │ ├── xmlparse-utf16.pdb │ ├── xmlparse.lib │ └── xmlparse.pdb ├── libenchant.lib ├── release │ ├── ICSharpCode.SharpZipLib.dll │ ├── ParserObject.lib │ ├── adodb.dll │ ├── cport.lib │ ├── wrtXML.dll │ ├── xmlparse-utf16.lib │ └── xmlparse.lib ├── src │ ├── Converter │ │ ├── ConvertConsole │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ConverterConsole.csproj │ │ │ └── Program.cs │ │ ├── Converter │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Converter.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Convertlib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Classes.cs │ │ │ ├── Convert.cs │ │ │ ├── ConvertLib.csproj │ │ │ ├── Custom.cs │ │ │ └── RTClass.cs │ ├── EC │ │ └── README │ ├── FormLanguageSwitch │ │ ├── AssemblyInfo.cs │ │ ├── FormLanguageSwitch.cs │ │ ├── FormLanguageSwitch.csproj │ │ ├── LanguageCollector.cs │ │ └── License │ ├── ObjectBrowser │ │ ├── ClassPropertySelector.Designer.cs │ │ ├── ClassPropertySelector.cs │ │ ├── ClassPropertySelector.resx │ │ ├── ColorPicker.Designer.cs │ │ ├── ColorPicker.cs │ │ ├── ColorPicker.resx │ │ ├── GenericInspectorObject.cs │ │ ├── InspectorGrid.cs │ │ ├── InspectorInterfaces.cs │ │ ├── InspectorWnd.Designer.cs │ │ ├── InspectorWnd.cs │ │ ├── InspectorWnd.resx │ │ ├── ObjectBrowser.Designer.cs │ │ ├── ObjectBrowser.cs │ │ ├── ObjectBrowser.csproj │ │ ├── ObjectBrowser.resx │ │ ├── OptionsDlg.Designer.cs │ │ ├── OptionsDlg.cs │ │ ├── OptionsDlg.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── ArrangeWindowsInline.png │ │ │ ├── ArrangeWindowsSideBySide.png │ │ │ ├── ArrangeWindowsSideBySide.xcf │ │ │ ├── ArrangeWindowsStacked.png │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Collapse.png │ │ │ ├── Expand.png │ │ │ ├── FDO Model.png │ │ │ ├── OpenFile.png │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ ├── Settings.settings │ │ │ └── Show_Object_In_New_Window.png │ │ ├── WeifenLuo.WinFormsUI.Docking.dll │ │ └── app.config │ ├── OpenLibFiles.bat │ ├── ParserObject │ │ ├── CExPat.cpp │ │ ├── CExPat.h │ │ ├── CXMLDataRec.h │ │ ├── CXMLDefRec.cpp │ │ ├── ParserObject.mak │ │ ├── ParserObject.vcproj │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── common.h │ │ ├── debug.h │ │ └── main.h │ ├── ScrChecks │ │ ├── BuildInclude.targets │ │ ├── CapitalizationCheck.cs │ │ ├── ChapterVerseCheck.cs │ │ ├── CharactersCheck.cs │ │ ├── MatchedPairsCheck.cs │ │ ├── MixedCapitalizationCheck.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── PunctuationCheck.cs │ │ ├── QuotationCheck.cs │ │ ├── RepeatedWordsCheck.cs │ │ ├── ScrChecks.csproj │ │ ├── ScrChecksTests │ │ │ ├── CapitalizationCheckSilUnitTest.cs │ │ │ ├── CapitalizationCheckUnitTest.cs │ │ │ ├── ChapterVerseTests.cs │ │ │ ├── CharactersCheckUnitTest.cs │ │ │ ├── DummyTextToken.cs │ │ │ ├── MatchedPairsCheckUnitTest.cs │ │ │ ├── MixedCapitalizationCheckUnitTest.cs │ │ │ ├── PunctuationCheckUnitTest.cs │ │ │ ├── QuotationCheckSilUnitTest.cs │ │ │ ├── QuotationCheckUnitTest.cs │ │ │ ├── RepeatedWordsCheckTests.cs │ │ │ ├── RepeatedWordsCheckUnitTest.cs │ │ │ ├── ScrChecksTestBase.cs │ │ │ ├── ScrChecksTests.csproj │ │ │ ├── SentenceFinalPunctCapitalizationCheckUnitTest.cs │ │ │ ├── TestChecksDataSource.cs │ │ │ ├── UnitTestChecksDataSource.cs │ │ │ └── UnitTestTokenizer.cs │ │ ├── TextInventory.cs │ │ └── VerseTextToken.cs │ ├── cport │ │ ├── cport.dsw │ │ ├── cportlib.dsp │ │ ├── cportlib.vcproj │ │ ├── getopt.c │ │ ├── strpos.c │ │ ├── strrpbrk.c │ │ └── strrpos.c │ ├── graphite2 │ │ ├── .gitattributes │ │ ├── Makefile │ │ ├── README │ │ ├── TestFonts │ │ │ ├── TestingGraphite.doc │ │ │ ├── arabicTest.wpx │ │ │ ├── burmeseTest.wpx │ │ │ ├── fwgrtest_arabic.ttf │ │ │ ├── fwgrtest_burmese.ttf │ │ │ ├── fwgrtest_roman.ttf │ │ │ └── romanTest.wpx │ │ ├── graphite2.mak │ │ ├── include │ │ │ └── graphite2 │ │ │ │ ├── Font.h │ │ │ │ ├── Log.h │ │ │ │ ├── Segment.h │ │ │ │ └── Types.h │ │ ├── src │ │ │ ├── Bidi.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CmapCache.cpp │ │ │ ├── Code.cpp │ │ │ ├── Collider.cpp │ │ │ ├── Decompressor.cpp │ │ │ ├── Face.cpp │ │ │ ├── FeatureMap.cpp │ │ │ ├── FileFace.cpp │ │ │ ├── Font.cpp │ │ │ ├── GlyphCache.cpp │ │ │ ├── GlyphFace.cpp │ │ │ ├── Intervals.cpp │ │ │ ├── Justifier.cpp │ │ │ ├── NameTable.cpp │ │ │ ├── Pass.cpp │ │ │ ├── Position.cpp │ │ │ ├── SegCache.cpp │ │ │ ├── SegCacheEntry.cpp │ │ │ ├── SegCacheStore.cpp │ │ │ ├── Segment.cpp │ │ │ ├── Silf.cpp │ │ │ ├── Slot.cpp │ │ │ ├── Sparse.cpp │ │ │ ├── TtfUtil.cpp │ │ │ ├── UtfCodec.cpp │ │ │ ├── call_machine.cpp │ │ │ ├── direct_machine.cpp │ │ │ ├── files.mk │ │ │ ├── files.mk.win │ │ │ ├── gr_char_info.cpp │ │ │ ├── gr_face.cpp │ │ │ ├── gr_features.cpp │ │ │ ├── gr_font.cpp │ │ │ ├── gr_logging.cpp │ │ │ ├── gr_segment.cpp │ │ │ ├── gr_slot.cpp │ │ │ ├── inc │ │ │ │ ├── Bidi.h │ │ │ │ ├── CharInfo.h │ │ │ │ ├── CmapCache.h │ │ │ │ ├── Code.h │ │ │ │ ├── Collider.h │ │ │ │ ├── Compression.h │ │ │ │ ├── Decompressor.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Error.h │ │ │ │ ├── Face.h │ │ │ │ ├── FeatureMap.h │ │ │ │ ├── FeatureVal.h │ │ │ │ ├── FileFace.h │ │ │ │ ├── Font.h │ │ │ │ ├── GlyphCache.h │ │ │ │ ├── GlyphFace.h │ │ │ │ ├── Intervals.h │ │ │ │ ├── List.h │ │ │ │ ├── Machine.h │ │ │ │ ├── Main.h │ │ │ │ ├── NameTable.h │ │ │ │ ├── Pass.h │ │ │ │ ├── Position.h │ │ │ │ ├── Rule.h │ │ │ │ ├── SegCache.h │ │ │ │ ├── SegCacheEntry.h │ │ │ │ ├── SegCacheStore.h │ │ │ │ ├── Segment.h │ │ │ │ ├── Silf.h │ │ │ │ ├── Slot.h │ │ │ │ ├── Sparse.h │ │ │ │ ├── TtfTypes.h │ │ │ │ ├── TtfUtil.h │ │ │ │ ├── UtfCodec.h │ │ │ │ ├── bits.h │ │ │ │ ├── debug.h │ │ │ │ ├── json.h │ │ │ │ ├── locale2lcid.h │ │ │ │ ├── opcode_table.h │ │ │ │ └── opcodes.h │ │ │ └── json.cpp │ │ └── update.sh │ ├── unit++ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Changelog │ │ ├── GlobalSetup.cc │ │ ├── GlobalTeardown.cc │ │ ├── INSTALL │ │ ├── Makefile.in │ │ ├── README │ │ ├── Test_gui.cc │ │ ├── Test_optmap.cc │ │ ├── Test_unit++.cc │ │ ├── VS │ │ │ ├── unit++.vcxproj │ │ │ └── unit++.vcxproj.filters │ │ ├── aclocal.m4 │ │ ├── configure.ac │ │ ├── fw_VersionInfo │ │ ├── gui.cc │ │ ├── gui.h │ │ ├── guitester.cc │ │ ├── guitester.h │ │ ├── html │ │ │ ├── ClassGraph.class │ │ │ ├── ClassGraphPanel.class │ │ │ ├── ClassLayout.class │ │ │ ├── General.html │ │ │ ├── GlobalSetup.html │ │ │ ├── GlobalTeardown.html │ │ │ ├── HIER.html │ │ │ ├── HIERjava.html │ │ │ ├── NavigatorButton.class │ │ │ ├── assert_eq.html │ │ │ ├── assert_true.html │ │ │ ├── assert_value_error.html │ │ │ ├── assertion_error.html │ │ │ ├── exception_case.html │ │ │ ├── exception_test.html │ │ │ ├── fail.html │ │ │ ├── gui_hook.html │ │ │ ├── icon1.gif │ │ │ ├── icon2.gif │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ ├── opt_flag.html │ │ │ ├── opt_int.html │ │ │ ├── opt_string.html │ │ │ ├── options.html │ │ │ ├── options_utils.html │ │ │ ├── optmap.html │ │ │ ├── plain_runner.html │ │ │ ├── res_cnt.html │ │ │ ├── set_tester.html │ │ │ ├── suite.html │ │ │ ├── test.html │ │ │ ├── test_mfun.html │ │ │ ├── test_runner.html │ │ │ ├── testcase.html │ │ │ ├── tester.html │ │ │ ├── unitpp.html │ │ │ ├── vectorize.html │ │ │ └── visitor.html │ │ ├── main.cc │ │ ├── main.h │ │ ├── optmap-compat.h │ │ ├── optmap.cc │ │ ├── optmap.h │ │ ├── tester.cc │ │ ├── tester.h │ │ ├── unit++-compat.h │ │ ├── unit++.1 │ │ ├── unit++.3 │ │ ├── unit++.cc │ │ ├── unit++.h │ │ └── unitpp.m4 │ └── xmlparse │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── copying.txt │ │ ├── expat.html │ │ ├── iasciitab.h │ │ ├── latin1tab.h │ │ ├── nametab.h │ │ ├── utf8tab.h │ │ ├── xmldef.h │ │ ├── xmlparse.c │ │ ├── xmlparse.h │ │ ├── xmlparse.vcproj │ │ ├── xmlparse2008.vcproj │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c └── w95scm.lib ├── License.htm ├── ReadMe.md ├── Src ├── AppCore │ ├── AfColorTable.cpp │ ├── AfColorTable.h │ ├── AfDef.h │ ├── AfGfx.cpp │ ├── AfGfx.h │ ├── FwStyledText.cpp │ ├── FwStyledText.h │ └── Res │ │ ├── AfApp.rc │ │ ├── AfAppRes.h │ │ ├── FmtBdrComboData.bmp │ │ ├── HelpAbout.bmp │ │ ├── ImagesSmall.bmp │ │ ├── SplashPictureBase.bmp │ │ ├── StdBtns.bmp │ │ ├── TBarCopy.cur │ │ ├── TBarMove.cur │ │ ├── TBarNoDrop.cur │ │ └── ToolbarFormatting.bmp ├── AppForTests.config ├── AssemblyInfoForTests.cs ├── AssemblyInfoForUiIndependentTests.cs ├── CacheLight │ ├── AssemblyInfo.cs │ ├── CacheLight.csproj │ ├── CacheLightTests │ │ ├── CacheLightTests.csproj │ │ ├── MetaDataCacheTests.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RealDataCacheTests.cs │ │ ├── TestModel.xml │ │ └── TestModel.xsd │ ├── MetaDataCache.cs │ ├── RealCacheLoader.cs │ ├── RealDataCache.cs │ ├── TsMultiString.cs │ └── TsStringfactory.cs ├── Cellar │ ├── FwXml.cpp │ ├── FwXml.h │ └── FwXmlString.cpp ├── Common │ ├── Controls │ │ ├── Design │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Design.csproj │ │ │ ├── EnhancedCollectionEditor.cs │ │ │ ├── EnhancedCollectionEditor.resx │ │ │ ├── FwButtonDesigner.cs │ │ │ ├── FwHelpButtonDesigner.cs │ │ │ ├── InformationBarButtonDesigner.cs │ │ │ ├── PersistenceDesigner.cs │ │ │ ├── ProgressLineDesigner.cs │ │ │ ├── SideBarButtonDesigner.cs │ │ │ ├── SideBarDesigner.cs │ │ │ └── SideBarTabDesigner.cs │ │ ├── DetailControls │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AtomicRefTypeAheadSlice.cs │ │ │ ├── AtomicReferenceLauncher.cs │ │ │ ├── AtomicReferenceLauncher.resx │ │ │ ├── AtomicReferencePOSSlice.cs │ │ │ ├── AtomicReferenceSlice.cs │ │ │ ├── AtomicReferenceView.cs │ │ │ ├── AtomicReferenceView.resx │ │ │ ├── AudioVisualSlice.cs │ │ │ ├── AutoMenuHandler.cs │ │ │ ├── BasicTypeSlices.cs │ │ │ ├── ButtonLauncher.cs │ │ │ ├── ButtonLauncher.resx │ │ │ ├── ChooserCommand.cs │ │ │ ├── CollectionNode.bmp │ │ │ ├── CommandSlice.cs │ │ │ ├── ConfigureWritingSystemsDlg.cs │ │ │ ├── ConfigureWritingSystemsDlg.resx │ │ │ ├── DataTree.cs │ │ │ ├── DataTree.resx │ │ │ ├── DataTreeImages.cs │ │ │ ├── DataTreeImages.resx │ │ │ ├── DerivMSAReferenceSlice.cs │ │ │ ├── DetailControls.csproj │ │ │ ├── DetailControlsTests │ │ │ │ ├── AtomicReferenceLauncherTests.cs │ │ │ │ ├── DataTreeTests.cs │ │ │ │ ├── DetailControlsTests.csproj │ │ │ │ ├── PhoneEnvReferenceViewTests.cs │ │ │ │ ├── SliceFactoryTests.cs │ │ │ │ ├── SliceTests.cs │ │ │ │ ├── Test.fwlayout │ │ │ │ ├── TestParts.xml │ │ │ │ └── VectorReferenceLauncherTests.cs │ │ │ ├── EnumComboSlice.cs │ │ │ ├── FieldSlice.cs │ │ │ ├── FwCancelSearchButton.cs │ │ │ ├── GenDateChooserDlg.cs │ │ │ ├── GenDateChooserDlg.resx │ │ │ ├── GenDateLauncher.cs │ │ │ ├── GenDateLauncher.resx │ │ │ ├── GenDateSlice.cs │ │ │ ├── GhostReferenceVectorSlice.cs │ │ │ ├── GhostStringSlice.cs │ │ │ ├── IWritingSystemChooser.cs │ │ │ ├── ImageSlice.cs │ │ │ ├── InflMSAReferenceSlice.cs │ │ │ ├── LeftArrow.bmp │ │ │ ├── MSAReferenceComboBoxSlice.cs │ │ │ ├── MenuWidget.bmp │ │ │ ├── MessageSlice.cs │ │ │ ├── MorphTypeAtomicLauncher.cs │ │ │ ├── MorphTypeAtomicLauncher.resx │ │ │ ├── MorphTypeAtomicReferenceSlice.cs │ │ │ ├── MorphTypeChooser.cs │ │ │ ├── MorphTypeChooser.resx │ │ │ ├── MultiLevelConc.cs │ │ │ ├── MultiLevelConc.resx │ │ │ ├── MultiStringSlice.cs │ │ │ ├── ObjSeqHashMap.cs │ │ │ ├── PartGenerator │ │ │ │ ├── LayoutGenerate.xslt │ │ │ │ └── PartGenerate.xslt │ │ │ ├── PhoneEnvReferenceLauncher.cs │ │ │ ├── PhoneEnvReferenceLauncher.resx │ │ │ ├── PhoneEnvReferenceSlice.cs │ │ │ ├── PhoneEnvReferenceView.cs │ │ │ ├── PhoneEnvReferenceView.resx │ │ │ ├── PictureSlice.cs │ │ │ ├── PossibilityAtomicReferenceLauncher.cs │ │ │ ├── PossibilityAtomicReferenceSlice.cs │ │ │ ├── PossibilityAtomicReferenceView.cs │ │ │ ├── PossibilityAutoComplete.cs │ │ │ ├── PossibilityReferenceVectorSlice.cs │ │ │ ├── PossibilityVectorReferenceLauncher.cs │ │ │ ├── PossibilityVectorReferenceView.cs │ │ │ ├── ReferenceComboBoxSlice.cs │ │ │ ├── ReferenceLauncher.cs │ │ │ ├── ReferenceLauncher.resx │ │ │ ├── ReferenceSlice.cs │ │ │ ├── ReferenceVectorSlice.cs │ │ │ ├── ReferenceViewBase.cs │ │ │ ├── Resources │ │ │ │ ├── DetailControlsStrings.Designer.cs │ │ │ │ ├── DetailControlsStrings.resx │ │ │ │ ├── GoToArrow.bmp │ │ │ │ └── gotoLinkPic.png │ │ │ ├── SemanticDomainReferenceLauncher.cs │ │ │ ├── SemanticDomainReferenceVectorSlice.cs │ │ │ ├── SemanticDomainsChooser.Designer.cs │ │ │ ├── SemanticDomainsChooser.cs │ │ │ ├── SemanticDomainsChooser.resx │ │ │ ├── SequenceSmall.bmp │ │ │ ├── SimpleComparer.cs │ │ │ ├── SimpleListChooser.cs │ │ │ ├── SimpleListChooser.resx │ │ │ ├── Slice.cs │ │ │ ├── SliceFactory.cs │ │ │ ├── SliceFilter.cs │ │ │ ├── SliceTreeNode.cs │ │ │ ├── SliceTreeNode.resx │ │ │ ├── StTextSlice.cs │ │ │ ├── StringSlice.cs │ │ │ ├── StringSliceUtils.cs │ │ │ ├── SummaryCommandControl.cs │ │ │ ├── SummaryCommandControl.resx │ │ │ ├── SummarySlice.cs │ │ │ ├── TreeEvents.cs │ │ │ ├── TwoLevelConc.cs │ │ │ ├── VectorReferenceLauncher.cs │ │ │ ├── VectorReferenceLauncher.resx │ │ │ ├── VectorReferenceView.cs │ │ │ ├── VectorReferenceView.resx │ │ │ ├── ViewPropertySlice.cs │ │ │ ├── ViewSlice.cs │ │ │ ├── atomicNode.bmp │ │ │ ├── ellipsis-vs.bmp │ │ │ └── ellipsis.bmp │ │ ├── FwControls │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CaseSensitiveListBox.cs │ │ │ ├── CharacterGrid.cs │ │ │ ├── CharacterGrid.resx │ │ │ ├── CharacterInfoToolTip.cs │ │ │ ├── CollapsibleSplitter.cs │ │ │ ├── ColorPickerDropDown.cs │ │ │ ├── ColorPickerDropDown.resx │ │ │ ├── ColorPickerMatrix.Designer.cs │ │ │ ├── ColorPickerMatrix.cs │ │ │ ├── ColorPickerMatrix.resx │ │ │ ├── ColorPickerStrings.Designer.cs │ │ │ ├── ColorPickerStrings.resx │ │ │ ├── DataUpDown.cs │ │ │ ├── DockExtender │ │ │ │ ├── DockExtender.cs │ │ │ │ ├── Floaty.cs │ │ │ │ ├── Floaty.resx │ │ │ │ ├── IFloaty.cs │ │ │ │ ├── Overlay.cs │ │ │ │ └── readme.txt │ │ │ ├── DropDownContainer.cs │ │ │ ├── ExplorerBarItem.cs │ │ │ ├── FileDialog │ │ │ │ ├── FileDialogAdapter.cs │ │ │ │ ├── FileDialogStrings.Designer.cs │ │ │ │ ├── FileDialogStrings.resx │ │ │ │ ├── FolderBrowserDialogAdapter.cs │ │ │ │ ├── Interfaces │ │ │ │ │ ├── IFileDialog.cs │ │ │ │ │ ├── IFolderBrowserDialog.cs │ │ │ │ │ ├── IOpenFileDialog.cs │ │ │ │ │ └── ISaveFileDialog.cs │ │ │ │ ├── Manager.cs │ │ │ │ ├── OpenFileDialogAdapter.cs │ │ │ │ ├── SaveFileDialogAdapter.cs │ │ │ │ ├── Windows │ │ │ │ │ ├── FileDialogWindows.cs │ │ │ │ │ ├── FolderBrowserDialogWindows.cs │ │ │ │ │ ├── OpenFileDialogWindows.cs │ │ │ │ │ └── SaveFileDialogWindows.cs │ │ │ │ └── readme.txt │ │ │ ├── FwBasicGrid.cs │ │ │ ├── FwButton.cs │ │ │ ├── FwButton.resx │ │ │ ├── FwColorButton.cs │ │ │ ├── FwColorButton.resx │ │ │ ├── FwColorCombo.cs │ │ │ ├── FwColorCombo.resx │ │ │ ├── FwColorPicker.cs │ │ │ ├── FwColorPicker.resx │ │ │ ├── FwContainer.cs │ │ │ ├── FwControls.Designer.cs │ │ │ ├── FwControls.csproj │ │ │ ├── FwControls.resx │ │ │ ├── FwControlsTests │ │ │ │ ├── CaseSensitiveListBoxTests.cs │ │ │ │ ├── DummyDerivedForm.cs │ │ │ │ ├── DummyDerivedForm.resx │ │ │ │ ├── DummyPersistedFormManual.cs │ │ │ │ ├── DummyPersistedFormManual.resx │ │ │ │ ├── DummyPersistedFormWinDef.cs │ │ │ │ ├── DummyPersistedFormWinDef.resx │ │ │ │ ├── FwControlsTests.csproj │ │ │ │ ├── FwSplitContainerTests.cs │ │ │ │ ├── ObtainProjectMethodTests.cs │ │ │ │ ├── PersistenceTest.cs │ │ │ │ ├── ProgressDlgTests.cs │ │ │ │ ├── ProgressStateTests.cs │ │ │ │ └── TriStateTreeViewTests.cs │ │ │ ├── FwDrawing.cs │ │ │ ├── FwDrawing.resx │ │ │ ├── FwHelpButton.Designer.cs │ │ │ ├── FwHelpButton.cs │ │ │ ├── FwHelpButton.resx │ │ │ ├── FwOverrideComboBox.cs │ │ │ ├── FwPanel.cs │ │ │ ├── FwPopup.cs │ │ │ ├── FwPopup.designer.cs │ │ │ ├── FwPopup.resx │ │ │ ├── FwSplitContainer.Designer.cs │ │ │ ├── FwSplitContainer.cs │ │ │ ├── FwTextPanel.cs │ │ │ ├── HeaderLabel.cs │ │ │ ├── IFwMainWndSettings.cs │ │ │ ├── IInheritableFwControl.cs │ │ │ ├── InformationBar.cs │ │ │ ├── InformationBar.resx │ │ │ ├── InformationBarButton.cs │ │ │ ├── InformationBarButton.resx │ │ │ ├── InformationBarButtonCollection.cs │ │ │ ├── LineControl.Designer.cs │ │ │ ├── LineControl.cs │ │ │ ├── LineControl.resx │ │ │ ├── ObtainProjectMethod.cs │ │ │ ├── OptionListBox.cs │ │ │ ├── Persistence.cs │ │ │ ├── Persistence.resx │ │ │ ├── PredictiveProgressState.cs │ │ │ ├── ProgressDialogImpl.Designer.cs │ │ │ ├── ProgressDialogImpl.cs │ │ │ ├── ProgressDialogImpl.resx │ │ │ ├── ProgressDialogWithTask.cs │ │ │ ├── ProgressDialogWorkingOn.cs │ │ │ ├── ProgressDialogWorkingOn.resx │ │ │ ├── ProgressLine.Designer.cs │ │ │ ├── ProgressLine.cs │ │ │ ├── ProgressLine.resx │ │ │ ├── ProgressState.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── ScrollListBox.cs │ │ │ ├── ScrollListBox.resx │ │ │ ├── SimpleExplorerBar.cs │ │ │ ├── SizingLine.cs │ │ │ ├── StatusBarProgressPanel.cs │ │ │ ├── StatusBarProgressPanel.resx │ │ │ ├── StatusBarTextBox.cs │ │ │ ├── TriStateTreeView.cs │ │ │ ├── TriStateTreeView.resx │ │ │ ├── WSChooser.cs │ │ │ ├── WSChooser.resx │ │ │ ├── WizardDialog.cs │ │ │ ├── WizardDialog.resx │ │ │ ├── XButton.cs │ │ │ └── resources │ │ │ │ ├── BorderDrawing.bmp │ │ │ │ ├── Checked.bmp │ │ │ │ ├── ExplorerBar_Collapse_Glyph.png │ │ │ │ ├── ExplorerBar_Epand_Glyph.png │ │ │ │ ├── FWButtonMenuArrow.bmp │ │ │ │ ├── GreyChecked.bmp │ │ │ │ ├── HelpButton.ICO │ │ │ │ ├── InformationBar.ico │ │ │ │ ├── MissingGlyph.png │ │ │ │ ├── Persistence.bmp │ │ │ │ ├── SelectedOption.bmp │ │ │ │ ├── UnSelectedOption.bmp │ │ │ │ ├── Unchecked.bmp │ │ │ │ └── WhatsThisHelpProvider.bmp │ │ ├── Widgets │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CustomDigitEntryControl.cs │ │ │ ├── DataGridView │ │ │ │ ├── FwTextBoxCell.cs │ │ │ │ ├── FwTextBoxColumn.cs │ │ │ │ ├── FwTextBoxControl.cs │ │ │ │ ├── FwTextBoxRow.cs │ │ │ │ ├── SilButtonCell.cs │ │ │ │ └── SortableBindingList.cs │ │ │ ├── FontHeightAdjuster.cs │ │ │ ├── FwComboBox.cs │ │ │ ├── FwComboBox.resx │ │ │ ├── FwLabel.cs │ │ │ ├── FwListBox.cs │ │ │ ├── FwListBox.resx │ │ │ ├── FwMultiParaTextBox.cs │ │ │ ├── FwMultilingualPropView.cs │ │ │ ├── FwMultilingualPropView.resx │ │ │ ├── FwTextBox.cs │ │ │ ├── FwTextBox.resx │ │ │ ├── HvoTreeNode.cs │ │ │ ├── IWritingSystemAndStylesheet.cs │ │ │ ├── InnerLabeledMultiStringControl.cs │ │ │ ├── InnerLabeledMultiStringView.cs │ │ │ ├── LabeledMultiStringControl.cs │ │ │ ├── LabeledMultiStringView.cs │ │ │ ├── MultiStringSelectionUtils.cs │ │ │ ├── PasswordBox.Designer.cs │ │ │ ├── PasswordBox.cs │ │ │ ├── PasswordBox.resx │ │ │ ├── PopupTree.cs │ │ │ ├── PopupTree.resx │ │ │ ├── Resources │ │ │ │ └── password-reveal-eye-16x16.png │ │ │ ├── Strings.Designer.cs │ │ │ ├── Strings.resx │ │ │ ├── ToolStripControlComboBox.cs │ │ │ ├── TreeCombo.cs │ │ │ ├── TreeCombo.resx │ │ │ ├── UserInterfaceChooser.Designer.cs │ │ │ ├── UserInterfaceChooser.cs │ │ │ ├── UserInterfaceChooser.resx │ │ │ ├── VSTabControl.cs │ │ │ ├── VSTabControl.designer.cs │ │ │ ├── VSTabControl.resx │ │ │ ├── Widgets.csproj │ │ │ └── WidgetsTests │ │ │ │ ├── FontHeightAdjusterTests.cs │ │ │ │ ├── FwListBoxTests.cs │ │ │ │ ├── FwMultilingualPropViewTests.cs │ │ │ │ ├── FwTextBoxTests.cs │ │ │ │ ├── InnerLabeledMultiStringViewTests.cs │ │ │ │ └── WidgetsTests.csproj │ │ └── XMLViews │ │ │ ├── AssemblyInfo.cs │ │ │ ├── BrowseViewer.cs │ │ │ ├── BrowseViewer.resx │ │ │ ├── BulkEditBar.cs │ │ │ ├── BulkEditBar.resx │ │ │ ├── BulkEditClose.bmp │ │ │ ├── BulkEditIcon.bmp │ │ │ ├── BulkEditPreview.bmp │ │ │ ├── ChooserCommandBase.cs │ │ │ ├── ColumnConfigureDialog.cs │ │ │ ├── ColumnConfigureDialog.resx │ │ │ ├── ConfiguredExport.cs │ │ │ ├── DhListView.cs │ │ │ ├── DhListView.resx │ │ │ ├── FilterBar.cs │ │ │ ├── FilterSdaDecorator.cs │ │ │ ├── FlatListView.Designer.cs │ │ │ ├── FlatListView.cs │ │ │ ├── GhostParentHelper.cs │ │ │ ├── GoToArrow.bmp │ │ │ ├── LabelNode.cs │ │ │ ├── LargeDownArrow.bmp │ │ │ ├── LargeUpArrow.bmp │ │ │ ├── LayoutCache.cs │ │ │ ├── LayoutFinder.cs │ │ │ ├── LayoutMerger.cs │ │ │ ├── MatchingObjectsBrowser.cs │ │ │ ├── NeededPropertyInfo.cs │ │ │ ├── NonEmptyTargetControl.cs │ │ │ ├── NonEmptyTargetControl.resx │ │ │ ├── ObjectLabels.cs │ │ │ ├── ObjectListPublisher.cs │ │ │ ├── OccurrenceInContextFinder.cs │ │ │ ├── PartGenerator.cs │ │ │ ├── ReallySimpleListChooser.cs │ │ │ ├── ReallySimpleListChooser.resx │ │ │ ├── SearchCompletedEventArgs.cs │ │ │ ├── SearchEngine.cs │ │ │ ├── SimpleDateMatchDlg.Designer.cs │ │ │ ├── SimpleDateMatchDlg.cs │ │ │ ├── SimpleDateMatchDlg.resx │ │ │ ├── SimpleIntegerMatchDlg.cs │ │ │ ├── SimpleIntegerMatchDlg.resx │ │ │ ├── SimpleMatchDlg.cs │ │ │ ├── SimpleMatchDlg.resx │ │ │ ├── XMLViews.csproj │ │ │ ├── XMLViewsDataCache.cs │ │ │ ├── XMLViewsStrings.Designer.cs │ │ │ ├── XMLViewsStrings.resx │ │ │ ├── XMLViewsTests │ │ │ ├── BulkEditBarTests.cs │ │ │ ├── ConfiguredExportTests.cs │ │ │ ├── DhListViewTests.cs │ │ │ ├── LayoutMergerTestData │ │ │ │ ├── LexEntry.fwlayout │ │ │ │ ├── LexEntryParts.xml │ │ │ │ ├── LexSense.fwlayout │ │ │ │ ├── LexSenseParts.xml │ │ │ │ ├── LexSensePartsOutput.xml │ │ │ │ ├── Morphology.fwlayout │ │ │ │ ├── MorphologyParts.xml │ │ │ │ ├── My_Stem-based_LexEntry_Layouts.xml │ │ │ │ ├── NewMaster.xml │ │ │ │ └── User.xml │ │ │ ├── LayoutMergerTests.cs │ │ │ ├── OccurrenceInContextFinderTests.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Resources │ │ │ │ ├── Layouts.xml │ │ │ │ ├── Parts.xml │ │ │ │ └── TextCacheModel.xml │ │ │ ├── SampleCm.xml │ │ │ ├── SampleData.xml │ │ │ ├── SearchEngineTests.cs │ │ │ ├── SimpleDataParser.cs │ │ │ ├── TestColumnConfigureDialog.cs │ │ │ ├── TestColumns.xml │ │ │ ├── TestLayoutMerge.cs │ │ │ ├── TestManyOneBrowse.cs │ │ │ ├── TestNeededPropertyInfo.cs │ │ │ ├── TestObjectListPublisher.cs │ │ │ ├── TestPartGenerate.cs │ │ │ ├── TestParts.xml │ │ │ ├── TestXmlBrowseView.cs │ │ │ ├── TestXmlViewsDataCache.cs │ │ │ ├── TestXmlViewsUtils.cs │ │ │ ├── XMLViewsTests.csproj │ │ │ ├── XmlBrowseViewBaseTests.cs │ │ │ ├── XmlBrowseViewBaseVcTests.cs │ │ │ └── XmlVcTests.cs │ │ │ ├── XmlBrowseRDEView.cs │ │ │ ├── XmlBrowseRDEView.resx │ │ │ ├── XmlBrowseView.cs │ │ │ ├── XmlBrowseView.resx │ │ │ ├── XmlBrowseViewBase.cs │ │ │ ├── XmlBrowseViewBase.resx │ │ │ ├── XmlBrowseViewBaseVc.cs │ │ │ ├── XmlBrowseViewSelectionRestorer.cs │ │ │ ├── XmlBrowseViewVc.cs │ │ │ ├── XmlRDEBrowseViewVc.cs │ │ │ ├── XmlSeqView.cs │ │ │ ├── XmlSeqView.resx │ │ │ ├── XmlVc.cs │ │ │ ├── XmlVcDisplayVec.cs │ │ │ ├── XmlView.cs │ │ │ ├── XmlView.resx │ │ │ └── XmlViewsUtils.cs │ ├── FieldWorks │ │ ├── App.config │ │ ├── ApplicationBusyDialog.Designer.cs │ │ ├── ApplicationBusyDialog.cs │ │ ├── ApplicationBusyDialog.resx │ │ ├── BookAndCube.ico │ │ ├── BookOnCube.ico │ │ ├── BookOnCubeVersion.ico │ │ ├── BuildInclude.targets │ │ ├── CubeOnBook.ico │ │ ├── CubeOnBookVersion.ico │ │ ├── FieldWorks.cs │ │ ├── FieldWorks.csproj │ │ ├── FieldWorksManager.cs │ │ ├── FieldWorksTests │ │ │ ├── FieldWorksTests.cs │ │ │ ├── FieldWorksTests.csproj │ │ │ ├── PaObjectsTests.cs │ │ │ ├── ProjectIDTests.cs │ │ │ └── WelcomeToFieldWorksDlgTests.cs │ │ ├── FwRestoreProjectSettings.cs │ │ ├── LargeCubeOnBook.ico │ │ ├── LargeCubeOnBookVersion.ico │ │ ├── LexicalProvider │ │ │ ├── ILexicalProvider.cs │ │ │ ├── LexicalProviderImpl.cs │ │ │ ├── LexicalProviderManager.cs │ │ │ └── LexicalServiceProvider.cs │ │ ├── MoveProjectsDlg.Designer.cs │ │ ├── MoveProjectsDlg.cs │ │ ├── MoveProjectsDlg.resx │ │ ├── PaObjects │ │ │ ├── PaCmPossibility.cs │ │ │ ├── PaComplexFormInfo.cs │ │ │ ├── PaLexEntry.cs │ │ │ ├── PaLexPronunciation.cs │ │ │ ├── PaLexSense.cs │ │ │ ├── PaLexicalInfo.cs │ │ │ ├── PaMediaFile.cs │ │ │ ├── PaMultiString.cs │ │ │ ├── PaRemoteRequest.cs │ │ │ ├── PaVariant.cs │ │ │ ├── PaVariantOfInfo.cs │ │ │ └── PaWritingSystem.cs │ │ ├── ProjectId.cs │ │ ├── ProjectMatch.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RemoteRequest.cs │ │ ├── Resources │ │ │ ├── DatabaseNew.png │ │ │ ├── Download26x26.png │ │ │ ├── Import28x28.png │ │ │ ├── Info.png │ │ │ ├── OpenFile.png │ │ │ ├── SendReceiveGetArrow32x32.png │ │ │ └── chorus32x32.png │ │ ├── SmallBookOnCube.ico │ │ ├── SmallBookOnCubeVersion.ico │ │ ├── WelcomeToFieldWorksDlg.Designer.cs │ │ ├── WelcomeToFieldWorksDlg.cs │ │ ├── WelcomeToFieldWorksDlg.resx │ │ └── WindowsInstallerQuery.cs │ ├── Filters │ │ ├── AssemblyInfo.cs │ │ ├── BadSpellingMatcher.cs │ │ ├── DateTimeMatcher.cs │ │ ├── ExactLiteralMatcher.cs │ │ ├── Filters.csproj │ │ ├── FiltersStrings.Designer.cs │ │ ├── FiltersStrings.resx │ │ ├── FiltersTests │ │ │ ├── DateTimeMatcherTests.cs │ │ │ ├── FiltersTests.csproj │ │ │ ├── FindResultsSorterTests.cs │ │ │ ├── RangeIntMatcherTests.cs │ │ │ ├── TestPersistence.cs │ │ │ └── WordformFiltersTests.cs │ │ ├── FindResultSorter.cs │ │ ├── IManyOnePathSortItem.cs │ │ ├── IntFinder.cs │ │ ├── IntMatcher.cs │ │ ├── ManyOnePathSortItem.cs │ │ ├── RecordFilter.cs │ │ ├── RecordSorter.cs │ │ └── WordFormFilters.cs │ ├── Framework │ │ ├── AssemblyInfo.cs │ │ ├── ExportStyleInfo.cs │ │ ├── ExternalSettingsAccessorBase.cs │ │ ├── Framework.csproj │ │ ├── FrameworkStrings.Designer.cs │ │ ├── FrameworkStrings.resx │ │ ├── FrameworkTests │ │ │ ├── FrameworkTests.csproj │ │ │ ├── FwEditingHelperTests.cs │ │ │ ├── MainWindowDelegateTests.cs │ │ │ ├── SelInfoTests.cs │ │ │ ├── StylesXmlAccessorTests.cs │ │ │ └── XhtmlHelperTests.cs │ │ ├── FwApp.cs │ │ ├── FwEditingHelper.cs │ │ ├── FwRegistrySettings.cs │ │ ├── FwRootSite.cs │ │ ├── FwRootSite.resx │ │ ├── IFieldWorksManager.cs │ │ ├── IFwMainWnd.cs │ │ ├── MainWindowDelegate.cs │ │ ├── PublicationInterfaces.cs │ │ ├── Resources │ │ │ ├── FWAbout.bmp │ │ │ ├── FWAddToDictionary.png │ │ │ ├── FWBackgroundColor.bmp │ │ │ ├── FWBold.bmp │ │ │ ├── FWBorders.bmp │ │ │ ├── FWBrowse-Large.bmp │ │ │ ├── FWBrowse-Small.bmp │ │ │ ├── FWBulletedList.bmp │ │ │ ├── FWCenter.bmp │ │ │ ├── FWContents.bmp │ │ │ ├── FWContextHelp.bmp │ │ │ ├── FWCopy.bmp │ │ │ ├── FWCut.bmp │ │ │ ├── FWDataEntry-Large.bmp │ │ │ ├── FWDataEntry-Small.bmp │ │ │ ├── FWDecreaseIndent.bmp │ │ │ ├── FWDeleteProject.bmp │ │ │ ├── FWDocument-Large.bmp │ │ │ ├── FWDocument-Small.bmp │ │ │ ├── FWFilterAdvanced-Large.bmp │ │ │ ├── FWFilterAdvanced-Small.bmp │ │ │ ├── FWFilterBasic-Large.bmp │ │ │ ├── FWFilterBasic-Small.bmp │ │ │ ├── FWFilterOff-Large.bmp │ │ │ ├── FWFilterOff-Small.bmp │ │ │ ├── FWFind.bmp │ │ │ ├── FWFindNext.bmp │ │ │ ├── FWFindPrev.bmp │ │ │ ├── FWFirstArrow.bmp │ │ │ ├── FWFontColor.bmp │ │ │ ├── FWHowDoI.bmp │ │ │ ├── FWIncreaseIndent.bmp │ │ │ ├── FWIndex.bmp │ │ │ ├── FWInsertFootnote.bmp │ │ │ ├── FWInsertSection.bmp │ │ │ ├── FWInsertVerseNumbers.bmp │ │ │ ├── FWItalics.bmp │ │ │ ├── FWLastArrow.bmp │ │ │ ├── FWLeft.bmp │ │ │ ├── FWLeftArrow.bmp │ │ │ ├── FWNew.bmp │ │ │ ├── FWNewWindow.bmp │ │ │ ├── FWNumberedList.bmp │ │ │ ├── FWOpen.bmp │ │ │ ├── FWPageSetup.bmp │ │ │ ├── FWParaBorderAll.bmp │ │ │ ├── FWParaBorderBottom.bmp │ │ │ ├── FWParaBorderLeft.bmp │ │ │ ├── FWParaBorderNone.bmp │ │ │ ├── FWParaBorderRight.bmp │ │ │ ├── FWParaBorderTop.bmp │ │ │ ├── FWPaste.bmp │ │ │ ├── FWPrint.bmp │ │ │ ├── FWPrintPreview.bmp │ │ │ ├── FWRedo.bmp │ │ │ ├── FWRefresh.bmp │ │ │ ├── FWRight.bmp │ │ │ ├── FWRightArrow.bmp │ │ │ ├── FWSILLogo.bmp │ │ │ ├── FWSILLogoColor2005-PLD.bmp │ │ │ ├── FWSILLogoColor2005-PLD_118x168.bmp │ │ │ ├── FWSILLogoColor2005.bmp │ │ │ ├── FWSILLogoColor2005_118x139.bmp │ │ │ ├── FWSave.bmp │ │ │ ├── FWSort-Large.bmp │ │ │ ├── FWSort-Small.bmp │ │ │ ├── FWSplitter.bmp │ │ │ ├── FWTileCascade.bmp │ │ │ ├── FWTileSideBySide.bmp │ │ │ ├── FWTileStacked.bmp │ │ │ ├── FWTutorials.bmp │ │ │ ├── FWUndo.bmp │ │ │ ├── FWUserFace.bmp │ │ │ ├── FWWhatsThis.bmp │ │ │ ├── FwDelete.bmp │ │ │ ├── FwFindHelp.bmp │ │ │ └── FwReplace.bmp │ │ ├── SettingsXmlAccessorBase.cs │ │ ├── StatusBarProgressHandler.cs │ │ ├── StylesXmlAccessor.cs │ │ ├── UndoRedoDropDown.cs │ │ ├── UndoRedoDropDown.resx │ │ └── XhtmlHelper.cs │ ├── FwUtils │ │ ├── AccessibleNameCreator.cs │ │ ├── ActivationContextHelper.cs │ │ ├── AlphaOutline.cs │ │ ├── AreaConstants.cs │ │ ├── Benchmark.cs │ │ ├── BuildInclude.targets │ │ ├── CachePair.cs │ │ ├── CharEnumeratorForByteArray.cs │ │ ├── CharacterCategorizer.cs │ │ ├── ClipboardUtils.cs │ │ ├── ComponentsExtensionMethods.cs │ │ ├── ConsoleProgress.cs │ │ ├── DebugProcs.cs │ │ ├── DisposableObjectsSet.cs │ │ ├── DownloadClient.cs │ │ ├── DriveUtil.cs │ │ ├── EndOfActionManager.cs │ │ ├── EndOfActionOrder.cs │ │ ├── EventConstants.cs │ │ ├── FLExBridgeHelper.cs │ │ ├── FlexHelpProvider.cs │ │ ├── Folders.cs │ │ ├── FwApplicationSettings.cs │ │ ├── FwApplicationSettingsBase.cs │ │ ├── FwDirectoryFinder.cs │ │ ├── FwLinkArgs.cs │ │ ├── FwRegistryHelper.cs │ │ ├── FwSubKey.cs │ │ ├── FwUpdateChooserDlg.Designer.cs │ │ ├── FwUpdateChooserDlg.cs │ │ ├── FwUpdateChooserDlg.resx │ │ ├── FwUpdater.cs │ │ ├── FwUtils.cs │ │ ├── FwUtils.csproj │ │ ├── FwUtils.template.cs │ │ ├── FwUtilsStrings.Designer.cs │ │ ├── FwUtilsStrings.resx │ │ ├── FwUtilsTests │ │ │ ├── AlphaOutlineTests.cs │ │ │ ├── Attributes │ │ │ │ ├── CreateComObjectsFromManifestAttribute.cs │ │ │ │ ├── HandleApplicationThreadExceptionAttribute.cs │ │ │ │ ├── InitializeFwRegistryHelperAttribute.cs │ │ │ │ ├── InitializeNoOpKeyboardControllerAttribute.cs │ │ │ │ ├── InitializeRealKeyboardControllerAttribute.cs │ │ │ │ ├── RedirectHKCU.cs │ │ │ │ ├── RequiresSTAOnWindowsAttribute.cs │ │ │ │ ├── SetMessageBoxAdapterAttribute.cs │ │ │ │ └── SuppressErrorBeepsAttribute.cs │ │ │ ├── CharEnumeratorForByteArrayTests.cs │ │ │ ├── ClipboardStub.cs │ │ │ ├── DebugProcsTests.cs │ │ │ ├── DisposableObjectsSetTests.cs │ │ │ ├── DummyFwRegistryHelper.cs │ │ │ ├── DummyKeyboardAdaptor.cs │ │ │ ├── FLExBridgeHelperTests.cs │ │ │ ├── FwApplicationSettingsTests.cs │ │ │ ├── FwDirectoryFinderTests.cs │ │ │ ├── FwLinkArgsTests.cs │ │ │ ├── FwRegistryHelperTests.cs │ │ │ ├── FwUpdaterTests.cs │ │ │ ├── FwUtilsTests.csproj │ │ │ ├── IVwCacheDaTests.cs │ │ │ ├── ImagePictureTest.cs │ │ │ ├── InterfacesTests.cs │ │ │ ├── LayoutKeyUtilsTests.cs │ │ │ ├── ManagedPictureFactoryTests.cs │ │ │ ├── MatchedPairsTests.cs │ │ │ ├── MeasurementUtilsTest.cs │ │ │ ├── MessageBoxStub.cs │ │ │ ├── ParagraphCorrelationTests.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── PubSubSystemTests.cs │ │ │ ├── QuotationMarksTests.cs │ │ │ ├── SimpleLoggerTests.cs │ │ │ ├── StringTableTests.cs │ │ │ ├── TempSFFileMaker.cs │ │ │ ├── TempSFFileMakerTests.cs │ │ │ ├── TestBaseForTestsThatCreateTempFilesBasedOnResources.cs │ │ │ ├── TestData │ │ │ │ └── WavFiles │ │ │ │ │ ├── abu2.wav │ │ │ │ │ └── bad.wav │ │ │ ├── TestFwApplicationSettings.cs │ │ │ ├── TestFwStylesheet.cs │ │ │ ├── TestFwStylesheetTests.cs │ │ │ ├── WavConverterTests.cs │ │ │ ├── XmlHelper.cs │ │ │ └── food │ │ │ │ └── fruit │ │ │ │ ├── citrus │ │ │ │ └── strings-en.xml │ │ │ │ └── strings-en.xml │ │ ├── GraphicsManager.cs │ │ ├── GraphiteFontFeatures.cs │ │ ├── HelpTopicProviderBase.cs │ │ ├── HiMetric.cs │ │ ├── IChecksDataSource.cs │ │ ├── IFocusablePanePortion.cs │ │ ├── IFwRegistryHelper.cs │ │ ├── IHelpTopicProvider.cs │ │ ├── IProjectSpecificSettingsKeyProvider.cs │ │ ├── IPublisher.cs │ │ ├── IScriptureCheck.cs │ │ ├── ISubscriber.cs │ │ ├── ITextToken.cs │ │ ├── IdleQueue.cs │ │ ├── ImagePicture.cs │ │ ├── ImportExportStep.cs │ │ ├── InstallationException.cs │ │ ├── LayoutKeyUtils.cs │ │ ├── ManagedPictureFactory.cs │ │ ├── MatchedPairs.cs │ │ ├── MeasurementUtils.cs │ │ ├── MergeSort.cs │ │ ├── MessageBoxUtils.cs │ │ ├── OLEConvert.cs │ │ ├── ParagraphCorrelation.cs │ │ ├── Pathway │ │ │ ├── PathwayUtils.cs │ │ │ └── SilSubKey.cs │ │ ├── PictureHolder.cs │ │ ├── ProgressMessageArgs.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Settings.Designer.cs │ │ │ ├── Settings.cs │ │ │ └── Settings.settings │ │ ├── Property.cs │ │ ├── PropertyConstants.cs │ │ ├── Publisher.cs │ │ ├── PublisherParameterObject.cs │ │ ├── PunctuationPatterns.cs │ │ ├── QuotationMarks.cs │ │ ├── RecordErrorEventArgs.cs │ │ ├── RegistryGroup.cs │ │ ├── SearchTimer.cs │ │ ├── SelectionEvents.cs │ │ ├── ShowHelp.cs │ │ ├── SimpleLogger.cs │ │ ├── StandardCheckIds.cs │ │ ├── StartupException.cs │ │ ├── StringTable.cs │ │ ├── StyleMarkupInfo.cs │ │ ├── Subscriber.cs │ │ ├── TextFileDataSource.cs │ │ ├── TextTokenSubstring.cs │ │ ├── ThreadHelper.cs │ │ ├── TrackingHelper.cs │ │ ├── Unicode.cs │ │ ├── UserActivityMonitor.cs │ │ ├── VersionInfoProvider.cs │ │ ├── ViewSizeEvents.cs │ │ ├── WaitCursor.cs │ │ ├── WavConverter.cs │ │ ├── Win32Wrappers.cs │ │ ├── XmlSerializationHelper.cs │ │ ├── app.config │ │ └── silfw link.reg │ ├── RootSite │ │ ├── AssemblyInfo.cs │ │ ├── CollectorEnv.cs │ │ ├── FwBaseVc.cs │ │ ├── IApp.cs │ │ ├── IHeightEstimator.cs │ │ ├── IRootSiteGroup.cs │ │ ├── IRootSiteSlave.cs │ │ ├── IVwGraphicsNet.cs │ │ ├── PictureWrapper.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RequestSelectionHelper.cs │ │ ├── Resources │ │ │ └── footnote │ │ ├── RootSite.cs │ │ ├── RootSite.csproj │ │ ├── RootSite.resx │ │ ├── RootSiteControl.cs │ │ ├── RootSiteControl.resx │ │ ├── RootSiteEditingHelper.cs │ │ ├── RootSiteStrings.Designer.cs │ │ ├── RootSiteStrings.resx │ │ ├── RootSiteTests │ │ │ ├── BasicViewTestsBase.cs │ │ │ ├── CollectorEnvTests.cs │ │ │ ├── DummyBasicView.cs │ │ │ ├── DummyBasicView.resx │ │ │ ├── DummyBasicViewVc.cs │ │ │ ├── InterlinPopupArrow.bmp │ │ │ ├── MoreRootSiteTests.cs │ │ │ ├── PrintRootSiteTests.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── RootSiteDataProviderCacheModel.xml │ │ │ ├── RootSiteEditingHelperTests.cs │ │ │ ├── RootSiteGroupTests.cs │ │ │ ├── RootSiteTests.csproj │ │ │ ├── RootsiteBasicViewTestsBase.cs │ │ │ ├── StVcTests.cs │ │ │ └── UndoTaskHelperTests.cs │ │ ├── SpellCheckHelper.cs │ │ ├── StVc.cs │ │ ├── UndoActions.cs │ │ └── UndoTaskHelper.cs │ ├── ScriptureUtils │ │ ├── AssemblyInfo.cs │ │ ├── PT7ScrTextWrapper.cs │ │ ├── Paratext7Provider.cs │ │ ├── ParatextHelper.cs │ │ ├── ScrReferencePositionComparer.cs │ │ ├── ScriptureProvider.cs │ │ ├── ScriptureReferenceComparer.cs │ │ ├── ScriptureUtils.csproj │ │ └── ScriptureUtilsTests │ │ │ ├── ParatextHelperTests.cs │ │ │ ├── ScrReferencePositionComparerTests.cs │ │ │ ├── ScriptureReferenceComparerTests.cs │ │ │ └── ScriptureUtilsTests.csproj │ ├── SimpleRootSite │ │ ├── AccessibilityWrapper.cs │ │ ├── ActiveViewHelper.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataUpdateMonitor.cs │ │ ├── EditingHelper.cs │ │ ├── FwRightMouseClickEventArgs.cs │ │ ├── HoldGraphics.cs │ │ ├── IChangeRootObject.cs │ │ ├── IControl.cs │ │ ├── IRootSite.cs │ │ ├── ISelectionChangeNotifier.cs │ │ ├── IbusRootSiteEventHandler.cs │ │ ├── LocalLinkArgs.cs │ │ ├── OrientationManager.cs │ │ ├── PrintRootSite.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RenderEngineFactory.cs │ │ ├── Resources │ │ │ ├── HORIZONTAL_IBEAM.CUR │ │ │ └── PictureNotFound_256x226.bmp │ │ ├── SelPositionInfo.cs │ │ ├── SelectionHelper.cs │ │ ├── SelectionRestorer.cs │ │ ├── SimpleRootSite.cs │ │ ├── SimpleRootSite.csproj │ │ ├── SimpleRootSite.resx │ │ ├── SimpleRootSiteTests │ │ │ ├── EditingHelperTests.cs │ │ │ ├── IbusRootSiteEventHandlerTests.cs │ │ │ ├── IbusRootSiteEventHandlerTests_Simple.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── RenderEngineFactoryTests.cs │ │ │ ├── SelectionHelperTests.cs │ │ │ ├── SimpleBasicView.cs │ │ │ ├── SimpleBasicView.resx │ │ │ ├── SimpleRootSiteDataProviderCacheModel.xml │ │ │ ├── SimpleRootSiteDataProviderView.Designer.cs │ │ │ ├── SimpleRootSiteDataProviderView.cs │ │ │ ├── SimpleRootSiteTests.cs │ │ │ ├── SimpleRootSiteTests.csproj │ │ │ ├── SimpleRootSiteTests_IsSelectionVisibleTests.cs │ │ │ ├── SimpleRootSiteTests_ScrollSelectionIntoView.cs │ │ │ ├── SimpleRootsiteTestsBase.cs │ │ │ ├── SimpleViewVc.cs │ │ │ ├── TextCacheModel.xml │ │ │ ├── TsStringWrapperTests.cs │ │ │ └── UndoableRealDataCache.cs │ │ ├── TextSelInfo.cs │ │ ├── TsStringWrapper.cs │ │ ├── ViewInputManager.cs │ │ ├── VwBaseVc.cs │ │ ├── VwSelectionArgs.cs │ │ └── WpfInterfacesForMono.cs │ ├── UIAdapterInterfaces │ │ ├── AssemblyInfo.cs │ │ ├── HelperClasses.cs │ │ ├── SIBInterface.cs │ │ ├── TMInterface.cs │ │ ├── UIAdapterInterfaces.csproj │ │ ├── UIAdapterInterfacesStrings.Designer.cs │ │ └── UIAdapterInterfacesStrings.resx │ └── ViewsInterfaces │ │ ├── AssemblyInfo.cs │ │ ├── BuildInclude.targets │ │ ├── ComUtils.cs │ │ ├── ComWrapper.cs │ │ ├── DispPropOverrideFactory.cs │ │ ├── IPicture.cs │ │ ├── Rect.cs │ │ ├── ViewsInterfaces.csproj │ │ ├── ViewsInterfacesTests │ │ ├── ExtraComInterfacesTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ViewsInterfacesTests.csproj │ │ └── VwGraphicsTests.cs │ │ └── VwPropertyStoreManaged.cs ├── CommonAssemblyInfoTemplate.cs ├── DbExtend │ └── xp_IsMatch.cpp ├── DebugProcs │ ├── DebugProcs.cpp │ ├── DebugProcs.h │ ├── DebugProcs.mak │ └── DebugProcs.vcxproj ├── Directory.Build.targets ├── DocConvert │ └── Res │ │ └── DocConvert.ico ├── Documentation.vcproj ├── FXT │ ├── FxtDll │ │ ├── AssemblyInfo.cs │ │ ├── ChangedDataItem.cs │ │ ├── FilterStrategy.cs │ │ ├── FxtDll.csproj │ │ ├── FxtDllTests │ │ │ ├── DumperTests.cs │ │ │ ├── ExpectedResults │ │ │ │ ├── Phase1-Sena3-bo-ConfiguredDictionary.xml │ │ │ │ ├── Phase2-Sena3-bo-ConfiguredDictionary.xml │ │ │ │ ├── Sena3-bo-ConfiguredDictionary.sfm │ │ │ │ ├── TLPParser.xml │ │ │ │ ├── TLPRootBasedMDF.sfm │ │ │ │ ├── TLPSimpleGuidsAnswer.xml │ │ │ │ ├── TLPSketchGen.xml │ │ │ │ ├── TLPStandardFormatMDF.sfm │ │ │ │ └── TLPWebPageSampleAnswer.xhtml │ │ │ ├── FxtDllTests.csproj │ │ │ ├── FxtTestBase.cs │ │ │ ├── M3ParserDumpTests.cs │ │ │ ├── M3SketchDumpTests.cs │ │ │ ├── NormalizeOutput.xsl │ │ │ ├── SimpleGuids.fxt │ │ │ ├── SimpleTests.cs │ │ │ ├── StandFormatExportTests.cs │ │ │ └── WebPageSample.xhtml │ │ ├── XDumper.cs │ │ └── XUpdater.cs │ ├── FxtExe │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── FxtExe.csproj │ │ └── main.cs │ └── FxtReference.doc ├── FdoUi │ ├── AssemblyInfo.cs │ ├── BulkPosEditor.cs │ ├── Dialogs │ │ ├── CantRestoreLinkedFilesToOriginalLocation.Designer.cs │ │ ├── CantRestoreLinkedFilesToOriginalLocation.cs │ │ ├── CantRestoreLinkedFilesToOriginalLocation.resx │ │ ├── ConfirmDeleteObjectDlg.cs │ │ ├── ConfirmDeleteObjectDlg.resx │ │ ├── ConflictingSaveDlg.Designer.cs │ │ ├── ConflictingSaveDlg.cs │ │ ├── ConflictingSaveDlg.resx │ │ ├── FilesToRestoreAreOlder.Designer.cs │ │ ├── FilesToRestoreAreOlder.cs │ │ ├── FilesToRestoreAreOlder.resx │ │ ├── MergeObjectDlg.cs │ │ ├── MergeObjectDlg.resx │ │ ├── RelatedWords.cs │ │ ├── RelatedWords.resx │ │ ├── RestoreLinkedFilesToProjectsFolder.Designer.cs │ │ ├── RestoreLinkedFilesToProjectsFolder.cs │ │ ├── RestoreLinkedFilesToProjectsFolder.resx │ │ ├── SummaryDialogForm.cs │ │ └── SummaryDialogForm.resx │ ├── DummyCmObject.cs │ ├── EXCLEM.ICO │ ├── FdoUi.csproj │ ├── FdoUiCore.cs │ ├── FdoUiStrings.Designer.cs │ ├── FdoUiStrings.resx │ ├── FdoUiTests │ │ ├── FdoUiTests.cs │ │ └── FdoUiTests.csproj │ ├── FsFeatDefnUi.cs │ ├── FwLcmUI.cs │ ├── InflectionClassEditor.cs │ ├── InflectionFeatureEditor.cs │ ├── LexEntryUi.cs │ ├── LexPronunciationUi.cs │ ├── PartOfSpeechUi.cs │ ├── PhonologicalFeatureEditor.cs │ ├── ProgressBarWrapper.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ └── question.ico │ ├── ReversalIndexEntryUi.cs │ ├── TypeAheadSupportVc.cs │ └── WfiWordformUi.cs ├── FieldWorks.snk ├── FwCoreDlgs │ ├── AddCnvtrDlg.cs │ ├── AddCnvtrDlg.resx │ ├── AddConverterDlgStrings.Designer.cs │ ├── AddConverterDlgStrings.resx │ ├── AddConverterResources.Designer.cs │ ├── AddConverterResources.resx │ ├── AddNewUserDlg.cs │ ├── AddNewUserDlg.resx │ ├── AddNewVernLangWarningDlg.Designer.cs │ ├── AddNewVernLangWarningDlg.cs │ ├── AddNewVernLangWarningDlg.resx │ ├── AdvancedEncProps.cs │ ├── AdvancedEncProps.resx │ ├── AdvancedScriptRegionVariantModel.cs │ ├── AdvancedScriptRegionVariantView.Designer.cs │ ├── AdvancedScriptRegionVariantView.cs │ ├── AdvancedScriptRegionVariantView.resx │ ├── ArchiveWithRamp.Designer.cs │ ├── ArchiveWithRamp.cs │ ├── ArchiveWithRamp.resx │ ├── AssemblyInfo.cs │ ├── BackupProjectSettings.cs │ ├── BackupRestore │ │ ├── BackupProjectDlg.Designer.cs │ │ ├── BackupProjectDlg.cs │ │ ├── BackupProjectDlg.resx │ │ ├── BackupProjectPresenter.cs │ │ ├── ChangeDefaultBackupDir.Designer.cs │ │ ├── ChangeDefaultBackupDir.cs │ │ ├── ChangeDefaultBackupDir.resx │ │ ├── IBackupProjectView.cs │ │ ├── OverwriteExistingProject.Designer.cs │ │ ├── OverwriteExistingProject.cs │ │ ├── OverwriteExistingProject.resx │ │ ├── RestoreProjectDlg.Designer.cs │ │ ├── RestoreProjectDlg.cs │ │ ├── RestoreProjectDlg.resx │ │ └── RestoreProjectPresenter.cs │ ├── BasicFindDialog.Designer.cs │ ├── BasicFindDialog.cs │ ├── BasicFindDialog.resx │ ├── CharContextCtrl.Designer.cs │ ├── CharContextCtrl.cs │ ├── CharContextCtrl.resx │ ├── CheckBoxColumnHeaderHandler.cs │ ├── ChooseLangProjectDialog.Designer.cs │ ├── ChooseLangProjectDialog.cs │ ├── ChooseLangProjectDialog.resx │ ├── ChooserTreeView.cs │ ├── CnvtrPropertiesCtrl.cs │ ├── CnvtrPropertiesCtrl.resx │ ├── CnvtrTypeComboItem.cs │ ├── ConverterTest.cs │ ├── ConverterTest.resx │ ├── DeleteWritingSystemWarningDialog.Designer.cs │ ├── DeleteWritingSystemWarningDialog.cs │ ├── DeleteWritingSystemWarningDialog.resx │ ├── ErrorMessage.cs │ ├── FWCoreDlgsErrors.Designer.cs │ ├── FWCoreDlgsErrors.resx │ ├── FindCollectorEnv.cs │ ├── FwApplyStyleDlg.Designer.cs │ ├── FwApplyStyleDlg.cs │ ├── FwApplyStyleDlg.resx │ ├── FwCharacterCategorizer.cs │ ├── FwChooseAnthroListCtrl.Designer.cs │ ├── FwChooseAnthroListCtrl.cs │ ├── FwChooseAnthroListCtrl.resx │ ├── FwChooseAnthroListModel.cs │ ├── FwChooserDlg.cs │ ├── FwChooserDlg.resx │ ├── FwCoreDlgControls │ │ ├── AssemblyInfo.cs │ │ ├── BlueCircleButton.Designer.cs │ │ ├── BlueCircleButton.cs │ │ ├── ConfigParentNode.Designer.cs │ │ ├── ConfigParentNode.cs │ │ ├── ConfigParentNode.resx │ │ ├── ConfigSenseLayout.Designer.cs │ │ ├── ConfigSenseLayout.cs │ │ ├── ConfigSenseLayout.resx │ │ ├── DefaultFontsControl.cs │ │ ├── DefaultFontsControl.resx │ │ ├── DictionaryConfigComboItems.cs │ │ ├── DisposableWindowsForms.cs │ │ ├── FontFeaturesButton.cs │ │ ├── FontFeaturesButton.resx │ │ ├── FontInfoExtensions.cs │ │ ├── FwBorderTab.Designer.cs │ │ ├── FwBorderTab.cs │ │ ├── FwBorderTab.resx │ │ ├── FwBulletsPreview.cs │ │ ├── FwBulletsTab.Designer.cs │ │ ├── FwBulletsTab.cs │ │ ├── FwBulletsTab.resx │ │ ├── FwCoreDlgControls.Designer.cs │ │ ├── FwCoreDlgControls.csproj │ │ ├── FwCoreDlgControls.resx │ │ ├── FwCoreDlgControlsTests │ │ │ ├── DefaultFontsControlTests.cs │ │ │ ├── FwAttributesTests.cs │ │ │ ├── FwCoreDlgControlsTests.csproj │ │ │ ├── FwFontTabTests.cs │ │ │ ├── StyleInfoTests.cs │ │ │ ├── StylesComboTests.cs │ │ │ ├── TestFontFeaturesButton.cs │ │ │ └── UpDownMeasureControlTests.cs │ │ ├── FwFontAttributes.Designer.cs │ │ ├── FwFontAttributes.cs │ │ ├── FwFontAttributes.resx │ │ ├── FwFontTab.Designer.cs │ │ ├── FwFontTab.cs │ │ ├── FwFontTab.resx │ │ ├── FwGeneralTab.Designer.cs │ │ ├── FwGeneralTab.cs │ │ ├── FwGeneralTab.resx │ │ ├── FwInheritablePropComboBox.cs │ │ ├── FwParagraphTab.Designer.cs │ │ ├── FwParagraphTab.cs │ │ ├── FwParagraphTab.resx │ │ ├── IFontDialog.cs │ │ ├── IStylesTab.cs │ │ ├── LocaleMenuButton.cs │ │ ├── LocaleMenuButton.resx │ │ ├── RegionVariantControl.cs │ │ ├── RegionVariantControl.resx │ │ ├── StyleInfo.cs │ │ ├── StyleLists │ │ │ ├── BaseStyleListHelper.cs │ │ │ ├── StyleComboListHelper.cs │ │ │ ├── StyleListBoxHelper.cs │ │ │ └── StyleListItem.cs │ │ ├── UpDownMeasureControl.cs │ │ └── UpDownMeasureControl.resx │ ├── FwCoreDlgs.Designer.cs │ ├── FwCoreDlgs.csproj │ ├── FwCoreDlgs.resx │ ├── FwCoreDlgsTests │ │ ├── AdvancedScriptRegionVariantModelTests.cs │ │ ├── App.config │ │ ├── CharContextCtrlTests.cs │ │ ├── CnvtrPropertiesCtrlTests.cs │ │ ├── FindCollectorEnvTests.cs │ │ ├── FwCharacterCategorizerTests.cs │ │ ├── FwChooseAnthroListModelTests.cs │ │ ├── FwCoreDlgsTests.csproj │ │ ├── FwFindReplaceDlgTests.cs │ │ ├── FwFontDialogTests.cs │ │ ├── FwHelpAboutTests.cs │ │ ├── FwNewLangProjectModelTests.cs │ │ ├── FwStylesDlgTests.cs │ │ ├── FwWritingSystemSetupDlgTests.cs │ │ ├── FwWritingSystemSetupModelTests.cs │ │ ├── RealSplashScreenTests.cs │ │ ├── RestoreProjectPresenterTests.cs │ │ ├── TestWSContainer.cs │ │ ├── ValidCharactersDlgTests.cs │ │ ├── ViewHiddenWritingSystemsModelTests.cs │ │ ├── custompua.xml │ │ └── xtst.xml │ ├── FwDeleteProjectDlg.cs │ ├── FwDeleteProjectDlg.resx │ ├── FwFindReplaceDlg.cs │ ├── FwFindReplaceDlg.resx │ ├── FwFontDialog.Designer.cs │ ├── FwFontDialog.cs │ ├── FwFontDialog.resx │ ├── FwHelpAbout.cs │ ├── FwHelpAbout.resx │ ├── FwNewLangProjMoreWsControl.Designer.cs │ ├── FwNewLangProjMoreWsControl.cs │ ├── FwNewLangProjMoreWsControl.resx │ ├── FwNewLangProjWritingSystemsControl.Designer.cs │ ├── FwNewLangProjWritingSystemsControl.cs │ ├── FwNewLangProjWritingSystemsControl.resx │ ├── FwNewLangProject.Designer.cs │ ├── FwNewLangProject.cs │ ├── FwNewLangProject.resx │ ├── FwNewLangProjectModel.cs │ ├── FwNewProjectProjectNameControl.Designer.cs │ ├── FwNewProjectProjectNameControl.cs │ ├── FwNewProjectProjectNameControl.resx │ ├── FwProjPropertiesDlg.cs │ ├── FwProjPropertiesDlg.resx │ ├── FwSplashScreen.cs │ ├── FwStylesDlg.Designer.cs │ ├── FwStylesDlg.cs │ ├── FwStylesDlg.resx │ ├── FwStylesModifiedDlg.Designer.cs │ ├── FwStylesModifiedDlg.cs │ ├── FwStylesModifiedDlg.resx │ ├── FwUpdateReportDlg.Designer.cs │ ├── FwUpdateReportDlg.cs │ ├── FwUpdateReportDlg.resx │ ├── FwUserProperties.cs │ ├── FwUserProperties.resx │ ├── FwWritingSystemSetupDlg.Designer.cs │ ├── FwWritingSystemSetupDlg.cs │ ├── FwWritingSystemSetupDlg.resx │ ├── FwWritingSystemSetupModel.cs │ ├── HelperMenu.cs │ ├── IUtility.cs │ ├── MergeWritingSystemDlg.cs │ ├── MergeWritingSystemDlg.resx │ ├── MessageBoxes.cs │ ├── MissingOldFieldWorksDlg.Designer.cs │ ├── MissingOldFieldWorksDlg.cs │ ├── MissingOldFieldWorksDlg.resx │ ├── MorphBreakHelperMenu.cs │ ├── MoveOrCopyFilesController.cs │ ├── MoveOrCopyFilesDlg.Designer.cs │ ├── MoveOrCopyFilesDlg.cs │ ├── MoveOrCopyFilesDlg.resx │ ├── PicturePropertiesDialog.Designer.cs │ ├── PicturePropertiesDialog.cs │ ├── PicturePropertiesDialog.resx │ ├── ProjectLocationDlg.Designer.cs │ ├── ProjectLocationDlg.cs │ ├── ProjectLocationDlg.resx │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RealSplashScreen.cs │ ├── RealSplashScreen.resx │ ├── RegexHelperMenu.cs │ ├── Resources │ │ ├── Bullet.png │ │ ├── ButtonDropDownArrow.png │ │ ├── DownArrow.png │ │ ├── FwCopyRight.png │ │ ├── LogoForAbout.png │ │ ├── UpArrow.png │ │ ├── Warning.png │ │ ├── WizardConnectToStep.png │ │ ├── WizardNotComplete.png │ │ ├── WizardStepComplete.png │ │ ├── question.ico │ │ └── wait22trans.gif │ ├── SharedBackendServicesHelper.cs │ ├── Strings.Designer.cs │ ├── Strings.resx │ ├── UtilityDlg.cs │ ├── UtilityDlg.resx │ ├── ValidCharactersDlg.Designer.cs │ ├── ValidCharactersDlg.cs │ ├── ValidCharactersDlg.resx │ ├── ViewHiddenWritingSystemsDlg.Designer.cs │ ├── ViewHiddenWritingSystemsDlg.cs │ ├── ViewHiddenWritingSystemsDlg.resx │ ├── ViewHiddenWritingSystemsModel.cs │ ├── WarningNotUsingDefaultLinkedFilesLocation.Designer.cs │ ├── WarningNotUsingDefaultLinkedFilesLocation.cs │ ├── WarningNotUsingDefaultLinkedFilesLocation.resx │ ├── WizardStep.Designer.cs │ ├── WizardStep.cs │ ├── WizardStep.resx │ ├── chorus16.png │ ├── chorus32.png │ └── res │ │ ├── FWButtonMenuArrow.png │ │ ├── FWLangProjFileBox.png │ │ ├── FormatArrow.bmp │ │ ├── LessArrows.bmp │ │ ├── MoreArrows.bmp │ │ ├── SIL logo.svg │ │ ├── SILLogo.ico │ │ ├── WritingSystems.ico │ │ └── WritingSystems.svg ├── FwParatextLexiconPlugin │ ├── ChooseFdoProjectForm.Designer.cs │ ├── ChooseFdoProjectForm.cs │ ├── ChooseFdoProjectForm.resx │ ├── FdoLanguageText.cs │ ├── FdoLexEntryLexeme.cs │ ├── FdoLexemeAddedEventArgs.cs │ ├── FdoLexicalRelation.cs │ ├── FdoLexicon.cs │ ├── FdoLexiconGlossAddedEventArgs.cs │ ├── FdoLexiconSenseAddedEventArgs.cs │ ├── FdoSemanticDomain.cs │ ├── FdoWordAnalysis.cs │ ├── FdoWordAnalysisV2.cs │ ├── FdoWordformLexeme.cs │ ├── FilesToRestoreAreOlder.Designer.cs │ ├── FilesToRestoreAreOlder.cs │ ├── FilesToRestoreAreOlder.resx │ ├── FwLexiconPlugin.cs │ ├── FwLexiconPluginV2.cs │ ├── FwParatextLexiconPlugin.csproj │ ├── FwParatextLexiconPluginTests │ │ ├── DummyLcmUI.cs │ │ ├── FdoLexiconTests.cs │ │ ├── FwParatextLexiconPluginTests.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ILRepack.targets │ ├── LexemeKey.cs │ ├── ParatextLexiconPluginDirectoryFinder.cs │ ├── ParatextLexiconPluginLcmUI.cs │ ├── ParatextLexiconPluginProjectId.cs │ ├── ParatextLexiconPluginRegistryHelper.cs │ ├── ParatextLexiconPluginRegistryHelper.template.cs │ ├── ParatextLexiconPluginThreadedProgress.cs │ ├── ProjectExistsForm.Designer.cs │ ├── ProjectExistsForm.cs │ ├── ProjectExistsForm.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ └── question.ico │ ├── Strings.Designer.cs │ ├── Strings.resx │ └── question.ico ├── FwResources │ ├── AssemblyInfo.cs │ ├── FwFileExtensions.cs │ ├── FwResources.csproj │ ├── FwStrings.Designer.cs │ ├── FwStrings.resx │ ├── FwTMStrings.Designer.cs │ ├── FwTMStrings.resx │ ├── HelpTopicPaths.Designer.cs │ ├── HelpTopicPaths.resx │ ├── Images.Designer.cs │ ├── Images.resx │ ├── Images │ │ ├── BlankCheck.bmp │ │ ├── BlueCircleDownArrow.bmp │ │ ├── BlueCircleDownArrowTransparent.gif │ │ ├── BlueQuestionMarkk.bmp │ │ ├── CheckSpelling.bmp │ │ ├── CheckedCheckbox.bmp │ │ ├── ConfirmAllTransparent16x16.png │ │ ├── ConfirmTransparent.gif │ │ ├── ConfirmTransparent16x16.gif │ │ ├── DisabledCheckbox.bmp │ │ ├── DoubleArrowCircle.bmp │ │ ├── Edit │ │ │ ├── Copy.bmp │ │ │ ├── Cut.bmp │ │ │ ├── Delete.bmp │ │ │ ├── Delete_Project.bmp │ │ │ ├── Find.bmp │ │ │ ├── Find_Next.bmp │ │ │ ├── Find_Previous.bmp │ │ │ ├── Paste.bmp │ │ │ ├── Redo.bmp │ │ │ ├── Replace.bmp │ │ │ └── Undo.bmp │ │ ├── FWButtonMenuArrow.bmp │ │ ├── FWCharacterStyle-Small.bmp │ │ ├── FWComboMenuArrow.bmp │ │ ├── FWDataPropStyle-Small.bmp │ │ ├── FWLangProjFileBox.bmp │ │ ├── FWResetCharacterStyle-Small.bmp │ │ ├── FWResetParagraphStyle-Small.bmp │ │ ├── FWSelCharacterStyle-Small.bmp │ │ ├── FWSelParagraphStyle-Small.bmp │ │ ├── File │ │ │ ├── File-New.bmp │ │ │ ├── File-Open.bmp │ │ │ ├── File-PageSetup.bmp │ │ │ ├── File-Print.bmp │ │ │ ├── File-ProjectProperties.bmp │ │ │ └── File-Save.bmp │ │ ├── Format │ │ │ ├── Format-Borders-Left.bmp │ │ │ ├── Format-Borders-None.bmp │ │ │ ├── Format-Borders-Right.bmp │ │ │ ├── Format-Borders-Surround.bmp │ │ │ ├── Format-Borders-Top.bmp │ │ │ ├── Format-BulletList.bmp │ │ │ ├── Format-Center.bmp │ │ │ ├── Format-Indent.bmp │ │ │ ├── Format-Italic.bmp │ │ │ ├── Format-LeftAligned.bmp │ │ │ ├── Format-NumberedList.bmp │ │ │ ├── Format-OutDent.bmp │ │ │ ├── Format-ResetCharacterStyle.bmp │ │ │ ├── Format-ResetParagraphStyle.bmp │ │ │ ├── Format-RightAligned.bmp │ │ │ └── Format-TextColor.bmp │ │ ├── FwBookName.bmp │ │ ├── FwChooserButton.bmp │ │ ├── FwDivisionName.bmp │ │ ├── FwLastRef.bmp │ │ ├── FwLessArrows.bmp │ │ ├── FwMoreArrows.bmp │ │ ├── FwPageCount.bmp │ │ ├── FwPageNumber.bmp │ │ ├── FwPrintDate.bmp │ │ ├── FwProjectName.bmp │ │ ├── FwStartRef.bmp │ │ ├── GreenCheck.bmp │ │ ├── Help │ │ │ ├── Help-WhatsThis.bmp │ │ │ └── Help.bmp │ │ ├── InterlinPopupArrow.bmp │ │ ├── Link16x16.bmp │ │ ├── Link16x16Transparent.gif │ │ ├── Link32x32.bmp │ │ ├── LinkBreak16x16.bmp │ │ ├── LinkBreak16x16Transparent.gif │ │ ├── LinkBreak28x28Transparent.gif │ │ ├── LinkBreak32x32.bmp │ │ ├── PageLayout1Column-53x43.bmp │ │ ├── PageLayout1Column-Sel53x43.bmp │ │ ├── PageLayout2Column-53x43.bmp │ │ ├── PageLayout2Column-Sel53x43.bmp │ │ ├── PageLayoutBookFold-Sel53x43.bmp │ │ ├── PageLayoutBookFold53x43.bmp │ │ ├── PageLayoutLandscape-Sel53x43.bmp │ │ ├── PageLayoutLandscape53x43.bmp │ │ ├── PageLayoutPortrait-Sel53x43.bmp │ │ ├── PageLayoutPortrait53x43.bmp │ │ ├── RedXk.bmp │ │ ├── Search.png │ │ ├── SuggestLightbulb.png │ │ ├── ToggleCheckboxes.bmp │ │ ├── Tools │ │ │ └── User_Properties.bmp │ │ ├── UncheckedCheckbox.bmp │ │ ├── UndoTransparent.gif │ │ ├── UndoTransparent16x16.gif │ │ ├── UpArrow.bmp │ │ ├── View │ │ │ └── Full_Window.bmp │ │ ├── Window │ │ │ ├── Window-TileCascade.bmp │ │ │ ├── Window-TileSideBySide.bmp │ │ │ └── Window-TileStacked.bmp │ │ ├── X.png │ │ ├── arrowdown.png │ │ ├── arrowleft.png │ │ ├── arrowright.png │ │ ├── arrowup.png │ │ ├── columnChooser.bmp │ │ ├── columnChooser.ico │ │ ├── minus.bmp │ │ └── plus.bmp │ ├── ResourceHelper.cs │ ├── ResourceHelperImpl.Designer.cs │ ├── ResourceHelperImpl.cs │ ├── ResourceHelperImpl.resx │ ├── SearchingAnimation.Designer.cs │ ├── SearchingAnimation.cs │ ├── SearchingAnimation.resx │ ├── ToolBarSystemStrings.Designer.cs │ └── ToolBarSystemStrings.resx ├── GenerateHCConfig │ ├── App.config │ ├── BuildInclude.targets │ ├── ConsoleLogger.cs │ ├── GenerateHCConfig.csproj │ ├── NullFdoDirectories.cs │ ├── NullThreadedProgress.cs │ ├── Program.cs │ ├── ProjectIdentifier.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Generic │ ├── BinTree.h │ ├── BinTree_i.cpp │ ├── COMBase.h │ ├── CSupportErrorInfo.h │ ├── ComHashMap.h │ ├── ComHashMap_i.cpp │ ├── ComMultiMap.h │ ├── ComMultiMap_i.cpp │ ├── ComSmartPtr.h │ ├── ComSmartPtrImpl.h │ ├── ComVector.cpp │ ├── ComVector.h │ ├── CompileStringTable.h │ ├── DataReader.h │ ├── DataStream.cpp │ ├── DataStream.h │ ├── DataWriter.h │ ├── Database.h │ ├── Debug.cpp │ ├── DecodeUtf8_i.c │ ├── DispatchImpl.h │ ├── DllModul.cpp │ ├── FileStrm.cpp │ ├── FileStrm.h │ ├── FwSettings.cpp │ ├── FwSettings.h │ ├── GenSmartPtr.h │ ├── Generic.rc │ ├── Generic.vcxproj │ ├── Generic.vcxproj.filters │ ├── GenericFactory.cpp │ ├── GenericFactory.h │ ├── GenericInc.mak │ ├── GenericLib.mak │ ├── GenericResource.h │ ├── GpHashMap.h │ ├── GpHashMap_i.cpp │ ├── HashMap.cpp │ ├── HashMap.h │ ├── HashMap_i.cpp │ ├── LinkedList.h │ ├── MakeDir.cpp │ ├── MakeDir.h │ ├── ModuleEntry.cpp │ ├── ModuleEntry.h │ ├── MultiMap.h │ ├── MultiMap_i.cpp │ ├── Mutex.h │ ├── OleStringLiteral.cpp │ ├── OleStringLiteral.h │ ├── RedirectHKCU.h │ ├── ResourceStrm.cpp │ ├── ResourceStrm.h │ ├── Set.h │ ├── Set_i.cpp │ ├── SmartBstr.h │ ├── SmartVariant.h │ ├── StackDumper.cpp │ ├── StackDumper.h │ ├── StackDumperWin32.cpp │ ├── StackDumperWin64.cpp │ ├── StrUtil.cpp │ ├── StringStrm.cpp │ ├── StringStrm.h │ ├── StringTable.cpp │ ├── StringTable.h │ ├── StringToNumHelpers.h │ ├── Test │ │ ├── TestCOMBase.cpp │ │ ├── TestErrorHandling.h │ │ ├── TestFwSettings.h │ │ ├── TestGeneric.vcxproj │ │ ├── TestGeneric.vcxproj.filters │ │ ├── TestGenericFactory.cpp │ │ ├── TestHashMap.cpp │ │ ├── TestOleStringLiteral.cpp │ │ ├── TestSmartBstr.cpp │ │ ├── TestSmartBstr.h │ │ ├── TestStringTable.cpp │ │ ├── TestStringTable.h │ │ ├── TestUnicodeConverter.cpp │ │ ├── TestUtil.h │ │ ├── TestUtilString.h │ │ ├── TestUtilXml.h │ │ ├── strings-en.txt │ │ ├── testGeneric.cpp │ │ ├── testGenericLib.h │ │ └── testGenericLib.mak │ ├── TextProps.cpp │ ├── TextProps.h │ ├── TextProps1.cpp │ ├── Throwable.h │ ├── UnicodeConverter.cpp │ ├── UnicodeConverter.h │ ├── UnicodeString8.cpp │ ├── UnicodeString8.h │ ├── Util.cpp │ ├── UtilCom.h │ ├── UtilFile.cpp │ ├── UtilFile.h │ ├── UtilInt.h │ ├── UtilMem.h │ ├── UtilPersist.h │ ├── UtilRect.h │ ├── UtilRegistry.h │ ├── UtilSil.cpp │ ├── UtilSil.h │ ├── UtilSort.h │ ├── UtilString.cpp │ ├── UtilString.h │ ├── UtilTime.cpp │ ├── UtilTime.h │ ├── UtilTypeLib.h │ ├── UtilXml.cpp │ ├── UtilXml.h │ ├── Vector.h │ ├── Vector_i.cpp │ ├── common.h │ ├── debug.h │ ├── main.cpp │ ├── main.h │ ├── proxystub.c │ ├── proxystub.h │ └── wn95scm.h ├── InstallValidator │ ├── InstallValidator.cs │ ├── InstallValidator.csproj │ ├── InstallValidatorTests │ │ ├── InstallValidatorTests.cs │ │ └── InstallValidatorTests.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Kernel │ ├── CellarBaseConstants.h │ ├── CellarConstants.vm.h │ ├── FwKernel.def │ ├── FwKernel.mak │ ├── FwKernelPs.idl │ ├── FwKernel_GUIDs.cpp │ ├── Kernel.vcxproj │ ├── Kernel.vcxproj.filters │ └── dlldatax.c ├── LCMBrowser │ ├── App.config │ ├── BrowserProjectId.cs │ ├── BuildInclude.targets │ ├── ClassPropertySelector.Designer.cs │ ├── ClassPropertySelector.cs │ ├── ClassPropertySelector.resx │ ├── CustomFields.cs │ ├── LCMBrowser.cs │ ├── LCMBrowser.csproj │ ├── LCMBrowserForm.Designer.cs │ ├── LCMBrowserForm.cs │ ├── LCMBrowserForm.resx │ ├── LCMClassList.cs │ ├── LCMInspectorList.cs │ ├── ModelWnd.Designer.cs │ ├── ModelWnd.cs │ ├── ModelWnd.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── FDO Model.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── Show_CmObject_Properties.png │ ├── RealListChooser.Designer.cs │ ├── RealListChooser.cs │ ├── RealListChooser.resx │ ├── Resources │ │ └── LCMBrowser.png │ └── WeifenLuo.WinFormsUI.Docking.dll ├── LexText │ ├── Discourse │ │ ├── AdvancedMTDialog.Designer.cs │ │ ├── AdvancedMTDialog.cs │ │ ├── AdvancedMTDialog.resx │ │ ├── ChartLocation.cs │ │ ├── ConstChartBody.cs │ │ ├── ConstChartBody.resx │ │ ├── ConstChartRowDecorator.cs │ │ ├── ConstChartVc.cs │ │ ├── ConstituentChart.Designer.cs │ │ ├── ConstituentChart.cs │ │ ├── ConstituentChart.resx │ │ ├── ConstituentChartLogic.cs │ │ ├── Discourse.csproj │ │ ├── DiscourseExportDialog.cs │ │ ├── DiscourseExporter.cs │ │ ├── DiscourseStrings.Designer.cs │ │ ├── DiscourseStrings.resx │ │ ├── DiscourseTests │ │ │ ├── AdvancedMTDialogLogicTests.cs │ │ │ ├── ConstChartRowDecoratorTests.cs │ │ │ ├── ConstituentChartDatabaseTests.cs │ │ │ ├── ConstituentChartTests.cs │ │ │ ├── DiscourseExportTests.cs │ │ │ ├── DiscourseTestHelper.cs │ │ │ ├── DiscourseTests.csproj │ │ │ ├── InMemoryDiscourseTestBase.cs │ │ │ ├── InMemoryLogicTest.cs │ │ │ ├── InMemoryMoveEditTests.cs │ │ │ ├── InMemoryMovedTextTests.cs │ │ │ ├── InterlinRibbonTests.cs │ │ │ ├── LogicTest.cs │ │ │ ├── MultilevelHeaderModelTests.cs │ │ │ ├── NotifyChangeSpy.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── TestCCLogic.cs │ │ ├── InterlinRibbon.cs │ │ ├── InterlinRibbonDecorator.cs │ │ ├── MakeCellsMethod.cs │ │ ├── MaxStringWidthForChartColumn.cs │ │ ├── MultilevelHeaderModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SelectClausesDialog.Designer.cs │ │ ├── SelectClausesDialog.cs │ │ └── SelectClausesDialog.resx │ ├── FlexPathwayPlugin │ │ ├── AssemblyInfo.cs │ │ ├── FlexPathwayPlugin.cs │ │ ├── FlexPathwayPlugin.csproj │ │ ├── FlexPathwayPluginTests │ │ │ ├── FlexPathwayPluginTests.cs │ │ │ ├── FlexPathwayPluginTests.csproj │ │ │ ├── Input │ │ │ │ ├── T1-bad.xhtml │ │ │ │ └── T1.xhtml │ │ │ ├── MyFoldersTest.cs │ │ │ └── MyProcess.cs │ │ └── myFolders.cs │ ├── Interlinear │ │ ├── AssemblyInfo.cs │ │ ├── BIRDInterlinearImporter.cs │ │ ├── ChooseAnalysisHandler.cs │ │ ├── ChooseTextWritingSystemDlg.Designer.cs │ │ ├── ChooseTextWritingSystemDlg.cs │ │ ├── ChooseTextWritingSystemDlg.resx │ │ ├── ClosedFeatureNode.cs │ │ ├── ClosedFeatureValue.cs │ │ ├── ComplexConcControl.Designer.cs │ │ ├── ComplexConcControl.cs │ │ ├── ComplexConcControl.resx │ │ ├── ComplexConcGroupNode.cs │ │ ├── ComplexConcLeafNode.cs │ │ ├── ComplexConcMorphDlg.cs │ │ ├── ComplexConcMorphDlg.resx │ │ ├── ComplexConcMorphNode.cs │ │ ├── ComplexConcOrNode.cs │ │ ├── ComplexConcParagraphData.cs │ │ ├── ComplexConcPatternModel.cs │ │ ├── ComplexConcPatternNode.cs │ │ ├── ComplexConcPatternSda.cs │ │ ├── ComplexConcPatternVc.cs │ │ ├── ComplexConcTagDlg.cs │ │ ├── ComplexConcTagDlg.resx │ │ ├── ComplexConcTagNode.cs │ │ ├── ComplexConcWordBdryNode.cs │ │ ├── ComplexConcWordDlg.cs │ │ ├── ComplexConcWordDlg.resx │ │ ├── ComplexConcWordNode.cs │ │ ├── ComplexFeatureNode.cs │ │ ├── ConcordanceContainer.cs │ │ ├── ConcordanceControl.Designer.cs │ │ ├── ConcordanceControl.cs │ │ ├── ConcordanceControl.resx │ │ ├── ConcordanceControlBase.cs │ │ ├── ConcordanceResultsExporter.cs │ │ ├── ConcordanceWordList.cs │ │ ├── ConfigureInterlinDialog.Designer.cs │ │ ├── ConfigureInterlinDialog.cs │ │ ├── ConfigureInterlinDialog.resx │ │ ├── CreateAllomorphTypeMismatchDlg.cs │ │ ├── CreateAllomorphTypeMismatchDlg.resx │ │ ├── DuplicateAnalysisFixer.cs │ │ ├── DuplicateWordformFixer.cs │ │ ├── EditMorphBreaksDlg.cs │ │ ├── EditMorphBreaksDlg.resx │ │ ├── FilterAllTextsDialog.cs │ │ ├── FilterAllTextsDialog.resx │ │ ├── FilterTextsDialog.cs │ │ ├── FilterTextsDialog.resx │ │ ├── FlexInterlinModel │ │ │ ├── FlexInterlinear-generated.cs │ │ │ └── FlexInterlinear.cs │ │ ├── FocusBoxController.ApproveAndMove.cs │ │ ├── FocusBoxController.Designer.cs │ │ ├── FocusBoxController.cs │ │ ├── FocusBoxController.resx │ │ ├── IInterlinConfigurable.cs │ │ ├── IText.ico │ │ ├── ITextDll.csproj │ │ ├── ITextDllTests │ │ │ ├── AddWordsToLexiconTests.cs │ │ │ ├── BIRDFormatImportTests.cs │ │ │ ├── ComboHandlerTests.cs │ │ │ ├── ComplexConcPatternModelTests.cs │ │ │ ├── ConcordanceControlTests.cs │ │ │ ├── ConcordanceResultsExporterTests.cs │ │ │ ├── ConfigureInterlinearDlgTests.cs │ │ │ ├── ExportTestFiles │ │ │ │ ├── Phase1-KalabaTest.xml │ │ │ │ ├── Phase1-KalabaTestPunctuation.xml │ │ │ │ ├── Phase1-KalabaTestPunctuationWordAlignedXLingPap.xml │ │ │ │ ├── Phase1-KalabaTestWordAlignedXLingPap.xml │ │ │ │ ├── Phase1-OrizabaLesson2.xml │ │ │ │ ├── Phase1-OrizabaLesson2WordAlignedXLingPap.xml │ │ │ │ ├── Phase1-SETepehuanCorn.xml │ │ │ │ ├── SETepehuanCornSingleListExample.xml │ │ │ │ └── SETepehuanCornWordsAppendix.xml │ │ │ ├── FlexTextImport │ │ │ │ ├── FlexTextExportOutput.flextext │ │ │ │ └── FlexTextMetadataImport.flextext │ │ │ ├── GlossToolLoadsGuessContentsTests.cs │ │ │ ├── ITextDllTests.csproj │ │ │ ├── ImportInterlinearAnalysesTests.cs │ │ │ ├── InterlinDocForAnalysisTests.cs │ │ │ ├── InterlinLineChoicesTests.cs │ │ │ ├── InterlinMasterTests.cs │ │ │ ├── InterlinSfmImportTests.cs │ │ │ ├── InterlinTaggingTests.cs │ │ │ ├── InterlinearExporterTests.cs │ │ │ ├── InterlinearExporterTests.xml │ │ │ ├── InterlinearTextRecordClerkTests.cs │ │ │ ├── MorphemeBreakerTests.cs │ │ │ ├── ParagraphParserTestTexts.xml │ │ │ ├── SandboxBaseTests.cs │ │ │ ├── ShowSpaceDecoratorTests.cs │ │ │ ├── TestTaggingChild.cs │ │ │ ├── TextsTriStateTreeViewTests.cs │ │ │ ├── WordBreakGuesserTests.cs │ │ │ ├── XLingPaperExporterTests.cs │ │ │ ├── XLingPaperTransformerTestsDataFiles │ │ │ │ ├── BruceCoxEmptyOld.xml │ │ │ │ ├── Gilaki01Old.xml │ │ │ │ ├── HalbiBUD2Old.xml │ │ │ │ ├── HalbiCS3Old.xml │ │ │ │ ├── HalbiST1Old.xml │ │ │ │ ├── Jibiyal2TextsOld.xml │ │ │ │ ├── Jibiyal3TextOld.xml │ │ │ │ ├── Phase1-BruceCoxEmpty.xml │ │ │ │ ├── Phase1-Gilaki01.xml │ │ │ │ ├── Phase1-HalbiBUD2.xml │ │ │ │ ├── Phase1-HalbiCS3.xml │ │ │ │ ├── Phase1-HalbiST1.xml │ │ │ │ ├── Phase1-Jibiyal2Texts.xml │ │ │ │ ├── Phase1-Jibiyal3Text.xml │ │ │ │ ├── Phase1-SETCorn.xml │ │ │ │ ├── Phase1-Urim2Kids.xml │ │ │ │ ├── Phase1-nszEnglishWords.xml │ │ │ │ ├── SETCornOld.xml │ │ │ │ ├── Urim2KidsOld.xml │ │ │ │ └── nszEnglishWordsOld.xml │ │ │ └── toolConfigurationForITextDllTests.xml │ │ ├── ITextStrings.Designer.cs │ │ ├── ITextStrings.resx │ │ ├── ImageHolder.cs │ │ ├── ImageHolder.resx │ │ ├── InflFeatureTreeModel.cs │ │ ├── InfoPane.cs │ │ ├── InfoPane.resx │ │ ├── InterAreaBookmark.cs │ │ ├── InterlinDocChart.cs │ │ ├── InterlinDocChart.resx │ │ ├── InterlinDocForAnalysis.Designer.cs │ │ ├── InterlinDocForAnalysis.cs │ │ ├── InterlinDocForAnalysis.resx │ │ ├── InterlinDocRootSiteBase.Designer.cs │ │ ├── InterlinDocRootSiteBase.cs │ │ ├── InterlinDocRootSiteBase.resx │ │ ├── InterlinLineChoices.cs │ │ ├── InterlinMaster.Designer.cs │ │ ├── InterlinMaster.cs │ │ ├── InterlinMaster.resx │ │ ├── InterlinMasterBase.cs │ │ ├── InterlinMasterNoTitleBar.cs │ │ ├── InterlinMasterNoTitleBar.resx │ │ ├── InterlinMasterNoTitleContent.cs │ │ ├── InterlinPrintView.Designer.cs │ │ ├── InterlinPrintView.cs │ │ ├── InterlinPrintView.resx │ │ ├── InterlinTaggingChild.Designer.cs │ │ ├── InterlinTaggingChild.cs │ │ ├── InterlinTaggingChild.resx │ │ ├── InterlinTaggingVc.cs │ │ ├── InterlinVc.cs │ │ ├── InterlinViewDataCache.cs │ │ ├── InterlinearExportDialog.cs │ │ ├── InterlinearExporter.cs │ │ ├── InterlinearImportDlg.Designer.cs │ │ ├── InterlinearImportDlg.cs │ │ ├── InterlinearImportDlg.resx │ │ ├── InterlinearObjects.cs │ │ ├── InterlinearSfmImportWizard.Designer.cs │ │ ├── InterlinearSfmImportWizard.cs │ │ ├── InterlinearSfmImportWizard.resx │ │ ├── InterlinearTextsRecordClerk.cs │ │ ├── InvisibleSpaceCursor.cur │ │ ├── LinguaLinksImport.cs │ │ ├── LinguaLinksImportDlg.cs │ │ ├── LinguaLinksImportDlg.resx │ │ ├── ParseIsCurrentFixer.cs │ │ ├── PossibilityComboController.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── RawTextPane.cs │ │ ├── Sandbox.cs │ │ ├── Sandbox.resx │ │ ├── SandboxBase.ComboHandlers.cs │ │ ├── SandboxBase.GetRealyAnalysisMethod.cs │ │ ├── SandboxBase.MorphemeBreaker.cs │ │ ├── SandboxBase.SandboxVc.cs │ │ ├── SandboxBase.cs │ │ ├── SandboxBase.designer.cs │ │ ├── Sfm2FlexText.cs │ │ ├── ShowSpaceDecorator.cs │ │ ├── StatisticsView.Designer.cs │ │ ├── StatisticsView.cs │ │ ├── StatisticsView.resx │ │ ├── SymbolicValue.cs │ │ ├── TextsFilterItem.cs │ │ ├── TextsTriStateTreeView.cs │ │ ├── TextsTriStateTreeView.resx │ │ ├── TitleContentsPane.cs │ │ ├── WordBreakGuesser.cs │ │ ├── WordsSfmImportWizard.Designer.cs │ │ ├── WordsSfmImportWizard.cs │ │ ├── WordsSfmImportWizard.resx │ │ ├── WsListManager.cs │ │ ├── ZeroWidth.ico │ │ └── icons │ │ │ ├── Add Free Translation.ico │ │ │ ├── Add New Text.ico │ │ │ ├── Add a Literal Translation.ico │ │ │ ├── AddScripture.ico │ │ │ ├── ApprAndMoveNext.ico │ │ │ ├── BreakPhrase.ico │ │ │ ├── BrowseAndMoveNext.ico │ │ │ ├── Find Dictionary.ico │ │ │ ├── Find and Replace Text.ico │ │ │ ├── Insert Note.ico │ │ │ └── LinkWords.ico │ ├── LexTextControls │ │ ├── AddAllomorphDlg.cs │ │ ├── AddAllomorphDlg.resx │ │ ├── AddNewSenseDlg.cs │ │ ├── AddNewSenseDlg.resx │ │ ├── AddWritingSystemButton.Designer.cs │ │ ├── AddWritingSystemButton.cs │ │ ├── AssemblyInfo.cs │ │ ├── BaseGoDlg.cs │ │ ├── BaseGoDlg.resx │ │ ├── Bullet.bmp │ │ ├── CheckBox.bmp │ │ ├── CheckedBox.bmp │ │ ├── CombineImportDlg.Designer.cs │ │ ├── CombineImportDlg.cs │ │ ├── CombineImportDlg.resx │ │ ├── ConfigureHomographDlg.cs │ │ ├── ConfigureHomographDlg.designer.cs │ │ ├── ConfigureHomographDlg.resx │ │ ├── ContextMenuRequestedEventArgs.cs │ │ ├── DataNotebook │ │ │ ├── AnthroFieldMappingDlg.Designer.cs │ │ │ ├── AnthroFieldMappingDlg.cs │ │ │ ├── AnthroFieldMappingDlg.resx │ │ │ ├── DateFieldOptions.Designer.cs │ │ │ ├── DateFieldOptions.cs │ │ │ ├── DateFieldOptions.resx │ │ │ ├── DiscardOptions.Designer.cs │ │ │ ├── DiscardOptions.cs │ │ │ ├── DiscardOptions.resx │ │ │ ├── ImportCharMappingDlg.Designer.cs │ │ │ ├── ImportCharMappingDlg.cs │ │ │ ├── ImportCharMappingDlg.resx │ │ │ ├── ImportDateFormatDlg.Designer.cs │ │ │ ├── ImportDateFormatDlg.cs │ │ │ ├── ImportDateFormatDlg.resx │ │ │ ├── ImportEncCvtrDlg.Designer.cs │ │ │ ├── ImportEncCvtrDlg.cs │ │ │ ├── ImportEncCvtrDlg.resx │ │ │ ├── ImportMatchReplaceDlg.Designer.cs │ │ │ ├── ImportMatchReplaceDlg.cs │ │ │ ├── ImportMatchReplaceDlg.resx │ │ │ ├── LinkFieldOptions.Designer.cs │ │ │ ├── LinkFieldOptions.cs │ │ │ ├── LinkFieldOptions.resx │ │ │ ├── ListRefFieldOptions.Designer.cs │ │ │ ├── ListRefFieldOptions.cs │ │ │ ├── ListRefFieldOptions.resx │ │ │ ├── NotebookImportWiz.Designer.cs │ │ │ ├── NotebookImportWiz.cs │ │ │ ├── NotebookImportWiz.resx │ │ │ ├── StringFieldOptions.Designer.cs │ │ │ ├── StringFieldOptions.cs │ │ │ ├── StringFieldOptions.resx │ │ │ ├── TextFieldOptions.Designer.cs │ │ │ ├── TextFieldOptions.cs │ │ │ └── TextFieldOptions.resx │ │ ├── EntryDlgListener.cs │ │ ├── EntryGoDlg.cs │ │ ├── EntryGoSearchEngine.cs │ │ ├── EntryObjects.cs │ │ ├── FeatureStructureTreeView.cs │ │ ├── FeatureStructureTreeView.resx │ │ ├── IFwExtension.cs │ │ ├── IPatternControl.cs │ │ ├── InflectionClassPopupTreeManager.cs │ │ ├── InflectionFeaturePopupTreeManager.cs │ │ ├── InsertEntryDlg.cs │ │ ├── InsertEntryDlg.resx │ │ ├── InsertEntrySearchEngine.cs │ │ ├── InsertRecordDlg.cs │ │ ├── InsertRecordDlg.resx │ │ ├── InsertionControl.cs │ │ ├── InsertionControl.resx │ │ ├── LexImport.cs │ │ ├── LexImportWizard.cs │ │ ├── LexImportWizard.resx │ │ ├── LexImportWizardCharMarkerDlg.cs │ │ ├── LexImportWizardCharMarkerDlg.resx │ │ ├── LexImportWizardHelpers.cs │ │ ├── LexImportWizardLanguage.cs │ │ ├── LexImportWizardLanguage.resx │ │ ├── LexImportWizardMarker.cs │ │ ├── LexImportWizardMarker.resx │ │ ├── LexOptionsDlg.Designer.cs │ │ ├── LexOptionsDlg.cs │ │ ├── LexOptionsDlg.resx │ │ ├── LexReferenceDetailsDlg.cs │ │ ├── LexReferenceDetailsDlg.resx │ │ ├── LexTextControls.Designer.cs │ │ ├── LexTextControls.csproj │ │ ├── LexTextControls.resx │ │ ├── LexTextControlsTests │ │ │ ├── .gitignore │ │ │ ├── FeatureSystem2.xml │ │ │ ├── FeatureSystem3.xml │ │ │ ├── LDML-11723 │ │ │ │ ├── LDML-11723.lift │ │ │ │ ├── LDML-11723.lift-ranges │ │ │ │ └── WritingSystems │ │ │ │ │ ├── en.ldml │ │ │ │ │ ├── es.ldml │ │ │ │ │ ├── qaa-fonipa-x-kal-emic.ldml │ │ │ │ │ ├── qaa-fonipa-x-kal.ldml │ │ │ │ │ ├── seh.ldml │ │ │ │ │ └── x-kal.ldml │ │ │ ├── LexImportTests.cs │ │ │ ├── LexTextControlsTests.csproj │ │ │ ├── LiftExportTests.cs │ │ │ ├── LiftMergerRelationTests.cs │ │ │ ├── LiftMergerTests.cs │ │ │ ├── MasterCategoryTests.cs │ │ │ ├── MsaInflectionFeatureListDlgTests.cs │ │ │ └── WordsSfmImportTests.cs │ │ ├── LiftExporter.cs │ │ ├── LiftImportDlg.Designer.cs │ │ ├── LiftImportDlg.cs │ │ ├── LiftImportDlg.resx │ │ ├── LiftMerger.cs │ │ ├── LiftMergerRanges.cs │ │ ├── LiftMergerSupportCodeAndClasses.cs │ │ ├── LinkAllomorphDlg.cs │ │ ├── LinkAllomorphDlg.resx │ │ ├── LinkEntryOrSenseDlg.cs │ │ ├── LinkEntryOrSenseDlg.resx │ │ ├── LinkMSADlg.cs │ │ ├── LinkMSADlg.resx │ │ ├── LinkVariantToEntryOrSense.Designer.cs │ │ ├── LinkVariantToEntryOrSense.cs │ │ ├── LinkVariantToEntryOrSense.resx │ │ ├── MSAGroupBox.cs │ │ ├── MSAGroupBox.resx │ │ ├── MSAPopupTreeManager.cs │ │ ├── MasterCategory.cs │ │ ├── MasterCategoryListDlg.cs │ │ ├── MasterCategoryListDlg.resx │ │ ├── MasterInflectionFeatureListDlg.cs │ │ ├── MasterInflectionFeatureListDlg.resx │ │ ├── MasterListDlg.cs │ │ ├── MasterListDlg.resx │ │ ├── MasterPhonologicalFeatureListDlg.cs │ │ ├── MasterPhonologicalFeatureListDlg.resx │ │ ├── MergeEntryDlg.cs │ │ ├── MergeEntryDlg.resx │ │ ├── MsaCreatorDlg.cs │ │ ├── MsaCreatorDlg.resx │ │ ├── MsaInflectionFeatureListDlg.cs │ │ ├── MsaInflectionFeatureListDlg.resx │ │ ├── OccurrenceDlg.cs │ │ ├── OccurrenceDlg.resx │ │ ├── POSPopupTreeManager.cs │ │ ├── PatternVcBase.cs │ │ ├── PatternView.cs │ │ ├── PhonologicalFeatureChooserDlg.cs │ │ ├── PhonologicalFeatureChooserDlg.resx │ │ ├── PhonologicalFeaturePopupTreeManager.cs │ │ ├── PopupTreeManager.cs │ │ ├── RecordDlgListener.cs │ │ ├── RecordGoDlg.cs │ │ ├── RecordGoDlg.resx │ │ ├── RecordGoSearchEngine.cs │ │ ├── RemoveItemsRequestedEventArgs.cs │ │ ├── Resources │ │ │ ├── Create Entry.ico │ │ │ └── Find Lexical Entry.ico │ │ ├── Sfm2FlexTextWords.cs │ │ ├── SfmToTextsAndWordsMappingBaseDlg.Designer.cs │ │ ├── SfmToTextsAndWordsMappingBaseDlg.cs │ │ └── SfmToTextsAndWordsMappingBaseDlg.resx │ ├── LexTextDll │ │ ├── AreaListener.cs │ │ ├── AssemblyInfo.cs │ │ ├── FlexHelpTopicProvider.cs │ │ ├── HelpTopicPaths.resx │ │ ├── ImageHolder.cs │ │ ├── ImageHolder.resx │ │ ├── LT.ico │ │ ├── LexTextApp.cs │ │ ├── LexTextDll.csproj │ │ ├── LexTextDllTests.zip │ │ ├── LexTextDllTests │ │ │ ├── AreaListenerTests.cs │ │ │ └── LexTextDllTests.csproj │ │ ├── LexTextStrings.Designer.cs │ │ ├── LexTextStrings.resx │ │ ├── RestoreDefaultsDlg.Designer.cs │ │ ├── RestoreDefaultsDlg.cs │ │ ├── RestoreDefaultsDlg.resx │ │ ├── TransductionSample.cs │ │ └── icons │ │ │ ├── Add New Analysis.ico │ │ │ └── Find a Wordform.ico │ ├── LexTextExe │ │ ├── AssemblyInfo.cs │ │ ├── LT.ico │ │ ├── LT.png │ │ ├── LT128.png │ │ ├── LT64.png │ │ ├── LexText.cs │ │ └── LexTextExe.csproj │ ├── Lexicon │ │ ├── AssemblyInfo.cs │ │ ├── CircularRefBreaker.cs │ │ ├── DeleteEntriesSensesWithoutInterlinearization.cs │ │ ├── EntrySequenceReferenceLauncher.cs │ │ ├── EntrySequenceReferenceLauncher.resx │ │ ├── EntrySequenceReferenceSlice.cs │ │ ├── FLExBridgeFirstSendReceiveInstructionsDlg.Designer.cs │ │ ├── FLExBridgeFirstSendReceiveInstructionsDlg.cs │ │ ├── FLExBridgeFirstSendReceiveInstructionsDlg.resx │ │ ├── FLExBridgeListener.cs │ │ ├── FindExampleSentenceDlg.Designer.cs │ │ ├── FindExampleSentenceDlg.cs │ │ ├── FindExampleSentenceDlg.resx │ │ ├── GhostLexRefSlice.cs │ │ ├── GoldEticGuidFixer.cs │ │ ├── HomographResetter.cs │ │ ├── ImageHolder.cs │ │ ├── ImageHolder.resx │ │ ├── LexEd.ico │ │ ├── LexEdDll.csproj │ │ ├── LexEdDllTests │ │ │ ├── CircularRefBreakerTests.cs │ │ │ ├── DummyReversalIndexEntrySlice.cs │ │ │ ├── FlexBridgeListenerTests.cs │ │ │ ├── GoldEticGuidFixerTests.cs │ │ │ ├── LexEdDllTests.csproj │ │ │ ├── LexEntryChangeHandlerTests.cs │ │ │ ├── LexReferenceTreeRootLauncherTests.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReversalEntryBulkEditTests.cs │ │ │ ├── ReversalEntryViewTests.cs │ │ │ ├── SortReversalSubEntriesTests.cs │ │ │ └── TestUtils.cs │ │ ├── LexEdStrings.Designer.cs │ │ ├── LexEdStrings.resx │ │ ├── LexEntryChangeHandler.cs │ │ ├── LexEntryImages.cs │ │ ├── LexEntryImages.resx │ │ ├── LexEntryInflTypeConverter.cs │ │ ├── LexEntryMenuHandler.cs │ │ ├── LexReferenceCollectionLauncher.cs │ │ ├── LexReferenceCollectionSlice.cs │ │ ├── LexReferenceCollectionView.cs │ │ ├── LexReferenceMultiSlice.cs │ │ ├── LexReferencePairLauncher.cs │ │ ├── LexReferencePairSlice.cs │ │ ├── LexReferencePairView.cs │ │ ├── LexReferenceSequenceLauncher.cs │ │ ├── LexReferenceSequenceSlice.cs │ │ ├── LexReferenceSequenceView.cs │ │ ├── LexReferenceTreeBranchesLauncher.cs │ │ ├── LexReferenceTreeBranchesSlice.cs │ │ ├── LexReferenceTreeBranchesView.cs │ │ ├── LexReferenceTreeRootLauncher.cs │ │ ├── LexReferenceTreeRootLauncher.resx │ │ ├── LexReferenceTreeRootSlice.cs │ │ ├── LexReferenceTreeRootView.cs │ │ ├── LexReferenceTreeRootView.resx │ │ ├── LexReferenceUnidirectionalLauncher.cs │ │ ├── LexReferenceUnidirectionalSlice.cs │ │ ├── LexReferenceUnidirectionalView.cs │ │ ├── LiftImportFailureServices.cs │ │ ├── MSADlgLauncher.cs │ │ ├── MSADlgLauncher.resx │ │ ├── MSADlgLauncherSlice.cs │ │ ├── MSADlgLauncherSlice.resx │ │ ├── MSADlglauncherView.cs │ │ ├── MSADlglauncherView.resx │ │ ├── MessageSlice.cs │ │ ├── MsaInflectionFeatureListDlgLauncher.cs │ │ ├── MsaInflectionFeatureListDlgLauncher.resx │ │ ├── MsaInflectionFeatureListDlgLauncherSlice.cs │ │ ├── MsaInflectionFeatureListDlgLauncherSlice.resx │ │ ├── MsaInflectionFeatureListDlgLauncherView.cs │ │ ├── MsaInflectionFeatureListDlgLauncherView.resx │ │ ├── PhonologicalFeatureListDlgLauncher.cs │ │ ├── PhonologicalFeatureListDlgLauncher.resx │ │ ├── PhonologicalFeatureListDlgLauncherSlice.cs │ │ ├── PhonologicalFeatureListDlgLauncherSlice.resx │ │ ├── PhonologicalFeatureListDlgLauncherView.cs │ │ ├── RecordReferenceVectorLauncher.cs │ │ ├── RecordReferenceVectorSlice.cs │ │ ├── Resources.resx │ │ ├── RevEntrySensesCollectionReferenceLauncher.cs │ │ ├── RevEntrySensesCollectionReferenceLauncher.resx │ │ ├── RevEntrySensesCollectionReferenceSlice.cs │ │ ├── RevEntrySensesCollectionReferenceSlice.resx │ │ ├── RevEntrySensesCollectionReferenceView.cs │ │ ├── RevEntrySensesCollectionReferenceView.resx │ │ ├── ReversalEntryBulkEdit.cs │ │ ├── ReversalEntryGoDlg.cs │ │ ├── ReversalEntryGoDlg.resx │ │ ├── ReversalEntryGoSearchEngine.cs │ │ ├── ReversalEntryPOS.cs │ │ ├── ReversalIndexEntryChangeHandler.cs │ │ ├── ReversalIndexEntryMenuHandler.cs │ │ ├── ReversalIndexEntrySlice.cs │ │ ├── ReversalIndexEntrySlice.resx │ │ ├── ReversalListener.cs │ │ ├── RoledParticipantsSlice.cs │ │ ├── SortReversalSubEntries.cs │ │ ├── SwapLexemeWithAllomorphDlg.cs │ │ ├── SwapLexemeWithAllomorphDlg.resx │ │ └── icons │ │ │ ├── Create Entry.ico │ │ │ ├── Create Reversal Entry.ico │ │ │ ├── Find Lexical Entry.ico │ │ │ └── Find Reversal Entry.ico │ ├── Morphology │ │ ├── AddItem.bmp │ │ ├── AddSubItem.bmp │ │ ├── AdhocCoProhibAtomicLauncher.cs │ │ ├── AdhocCoProhibAtomicLauncher.resx │ │ ├── AdhocCoProhibAtomicReferenceSlice.cs │ │ ├── AdhocCoProhibVectorLauncher.cs │ │ ├── AdhocCoProhibVectorLauncher.resx │ │ ├── AdhocCoProhibVectorReferenceSlice.cs │ │ ├── AffixRuleFormulaControl.cs │ │ ├── AffixRuleFormulaSlice.cs │ │ ├── AffixRuleFormulaVc.cs │ │ ├── AnalysisInterlinearRS.cs │ │ ├── AnalysisInterlinearRS.resx │ │ ├── AssemblyInfo.cs │ │ ├── AssignFeaturesToPhonemes.Designer.cs │ │ ├── AssignFeaturesToPhonemes.cs │ │ ├── BasicIPASymbolSlice.cs │ │ ├── ConcordanceDlg.cs │ │ ├── ConcordanceDlg.resx │ │ ├── ImageHolder.cs │ │ ├── ImageHolder.resx │ │ ├── InflAffixTemplateControl.cs │ │ ├── InflAffixTemplateEventArgs.cs │ │ ├── InflAffixTemplateMenuHandler.cs │ │ ├── InflAffixTemplateSlice.cs │ │ ├── InterlinearSlice.cs │ │ ├── ME.ico │ │ ├── MEImages.cs │ │ ├── MEImages.resx │ │ ├── MEStrings.Designer.cs │ │ ├── MEStrings.resx │ │ ├── MGA │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CLSDFOLD.BMP │ │ │ ├── CheckBox.bmp │ │ │ ├── CheckedBox.bmp │ │ │ ├── Complex.bmp │ │ │ ├── FSType.bmp │ │ │ ├── GlossListBox.cs │ │ │ ├── GlossListBox.resx │ │ │ ├── GlossListBoxItem.cs │ │ │ ├── GlossListEventArgs.cs │ │ │ ├── GlossListTreeView.cs │ │ │ ├── GlossLists │ │ │ │ ├── CreateFeatureCatalog.xsl │ │ │ │ ├── EticGlossList.xml │ │ │ │ ├── FeatureCatalog.dtd │ │ │ │ ├── FeatureCatalog.xml │ │ │ │ ├── OriginalWayToProduceEticGlossList │ │ │ │ │ ├── DoMasterGlossListValidity.bat │ │ │ │ │ ├── MGAMaster.xml │ │ │ │ │ ├── MasterGlossList.xml │ │ │ │ │ ├── MasterGlossListValidityConstraints.xml │ │ │ │ │ ├── MasterGlossListWithValidtyFailures.xml │ │ │ │ │ ├── MasterToEticGlossList.xsl │ │ │ │ │ ├── masterGlossList.dtd │ │ │ │ │ ├── schematron-errorsWithValidityFailures.html │ │ │ │ │ ├── schematron-outWithValidityFailures.html │ │ │ │ │ ├── schematron-report.xsl │ │ │ │ │ ├── schematron1-5.xsd │ │ │ │ │ ├── skeleton1-5.xsl │ │ │ │ │ └── verbid.xsl │ │ │ │ └── eticGlossList.dtd │ │ │ ├── MGA.csproj │ │ │ ├── MGADialog.cs │ │ │ ├── MGADialog.resx │ │ │ ├── MGAHtmlHelpDialog.cs │ │ │ ├── MGAStrings.Designer.cs │ │ │ ├── MGAStrings.resx │ │ │ ├── MGATests │ │ │ │ ├── MGATests.cs │ │ │ │ └── MGATests.csproj │ │ │ ├── MasterInflectionFeature.cs │ │ │ ├── MasterItem.cs │ │ │ ├── MasterPhonologicalFeature.cs │ │ │ ├── OPENFOLD.BMP │ │ │ ├── PhonologicalFeaturesTreeView.cs │ │ │ ├── Radio.bmp │ │ │ ├── RadioSelected.bmp │ │ │ └── UserChoice.bmp │ │ ├── MasterCatDlgListener.cs │ │ ├── MasterDlgListener.cs │ │ ├── MasterInflFeatDlgListener.cs │ │ ├── MasterPhonFeatDlgListener.cs │ │ ├── MetaRuleFormulaControl.cs │ │ ├── MetaRuleFormulaSlice.cs │ │ ├── MetaRuleFormulaVc.cs │ │ ├── MorphologyEditorDll.csproj │ │ ├── MorphologyEditorDllTests │ │ │ ├── MorphologyEditorDllTests.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── RespellingTests.cs │ │ ├── MorphologyListener.cs │ │ ├── OneAnalysisSandbox.Designer.cs │ │ ├── OneAnalysisSandbox.cs │ │ ├── ParserAnalysisRemover.cs │ │ ├── ParserAnnotationRemover.cs │ │ ├── PhEnvStrRepresentationSlice.cs │ │ ├── RegRuleFormulaControl.cs │ │ ├── RegRuleFormulaSlice.cs │ │ ├── RegRuleFormulaVc.cs │ │ ├── RespellerDlg.Designer.cs │ │ ├── RespellerDlg.cs │ │ ├── RespellerDlg.resx │ │ ├── RespellerDlgListener.cs │ │ ├── RuleFormulaControl.cs │ │ ├── RuleFormulaSlice.cs │ │ ├── RuleFormulaVcBase.cs │ │ ├── UserAnalysisRemover.cs │ │ ├── WordformGoDlg.cs │ │ ├── WordformGoDlg.resx │ │ ├── WordformGoSearchEngine.cs │ │ └── icons │ │ │ ├── Environment.ico │ │ │ ├── Exception Feature.ico │ │ │ ├── Headed Comp Rule.ico │ │ │ ├── Insert Cat.ico │ │ │ ├── Insert Complex Feature.ico │ │ │ ├── Insert Feature.ico │ │ │ ├── Insert Sub-Cat.ico │ │ │ ├── Metathesis.ico │ │ │ ├── Natural Class.ico │ │ │ ├── Phoneme.ico │ │ │ ├── adhoc Allomorph rule.ico │ │ │ ├── adhoc Group.ico │ │ │ ├── adhoc Morpheme rule.ico │ │ │ └── non-Headed Comp Rule.ico │ ├── ParserCore │ │ ├── AssemblyInfo.cs │ │ ├── FwXmlTraceManager.cs │ │ ├── HCLoader.cs │ │ ├── HCParser.cs │ │ ├── IHCLoadErrorLogger.cs │ │ ├── IParser.cs │ │ ├── InvalidAffixProcessException.cs │ │ ├── InvalidReduplicationFormException.cs │ │ ├── M3ToXAmpleTransformer.cs │ │ ├── ParseFiler.cs │ │ ├── ParseResult.cs │ │ ├── ParserCore.csproj │ │ ├── ParserCoreStrings.Designer.cs │ │ ├── ParserCoreStrings.resx │ │ ├── ParserCoreTests │ │ │ ├── Failures.xml │ │ │ ├── HCLoaderTests.cs │ │ │ ├── M3ToXAmpleTransformerTests.cs │ │ │ ├── M3ToXAmpleTransformerTestsDataFiles │ │ │ │ ├── .gitattributes │ │ │ │ ├── Abaza-OrderclassPlay.xml │ │ │ │ ├── Abaza-OrderclassPlaylex.txt │ │ │ │ ├── AffixAlloFeatsAdCtl.txt │ │ │ │ ├── AffixAlloFeatsLexicon.txt │ │ │ │ ├── AffixAlloFeatsWordGrammar.txt │ │ │ │ ├── CircumfixInfixLexicon.txt │ │ │ │ ├── CircumfixInfixWordGrammar.txt │ │ │ │ ├── CliticAdCtl.txt │ │ │ │ ├── CliticEnvsLexicon.txt │ │ │ │ ├── CliticEnvsParserFxtResult.xml │ │ │ │ ├── CliticLexicon.txt │ │ │ │ ├── CliticParserFxtResult.xml │ │ │ │ ├── CliticWordGrammar.txt │ │ │ │ ├── CompundRulesWithExceptionFeatures.xml │ │ │ │ ├── CompundRulesWithExceptionFeaturesWordGrammar.txt │ │ │ │ ├── ConceptualIntroTestParserFxtResult.xml │ │ │ │ ├── ConceptualIntroTestlex.txt │ │ │ │ ├── FullRedupLexicon.txt │ │ │ │ ├── IndonCircumfixLexicon.txt │ │ │ │ ├── IndonCircumfixWordGrammar.txt │ │ │ │ ├── IrregularlyInflectedFormsAdCtl.txt │ │ │ │ ├── IrregularlyInflectedFormsLexicon.txt │ │ │ │ ├── IrregularlyInflectedFormsParserFxtResult.xml │ │ │ │ ├── LatinAdCtl.txt │ │ │ │ ├── LatinParserFxtResult.xml │ │ │ │ ├── LatinWordGrammar.txt │ │ │ │ ├── M3FXTCircumfixDump.xml │ │ │ │ ├── M3FXTCircumfixInfixDump.xml │ │ │ │ ├── M3FXTDump.xml │ │ │ │ ├── M3FXTFullRedupDump.xml │ │ │ │ ├── M3FXTStemNameDump.xml │ │ │ │ ├── OrizabaParserFxtResult.xml │ │ │ │ ├── Orizabaadctl.txt │ │ │ │ ├── Orizabagram.txt │ │ │ │ ├── Orizabalex.txt │ │ │ │ ├── QuechuaMYLFxtResult.xml │ │ │ │ ├── QuechuaMYLadctl.txt │ │ │ │ ├── QuechuaMYLgram.txt │ │ │ │ ├── QuechuaMYLlex.txt │ │ │ │ ├── RootCliticEnvParserFxtResult.xml │ │ │ │ ├── RootCliticEnvsLexicon.txt │ │ │ │ ├── StemName3ParserFxtResult.xml │ │ │ │ ├── StemName3adctl.txt │ │ │ │ ├── StemName3gram.txt │ │ │ │ ├── StemName3lex.txt │ │ │ │ ├── StemNameTestAdCtl.txt │ │ │ │ ├── StemNameTestlex.txt │ │ │ │ ├── StemNameWordGrammar.txt │ │ │ │ ├── TestAdCtl.txt │ │ │ │ ├── TestAffixAllomorphFeatsParserFxtResult.xml │ │ │ │ ├── TestLexicon.txt │ │ │ │ ├── TestWordGrammar.txt │ │ │ │ ├── emi-flexFxtResult.xml │ │ │ │ └── emi-flexlex.txt │ │ │ ├── ParseFilerProcessingTests.cs │ │ │ ├── ParseWorkerTests.cs │ │ │ ├── ParserCoreTests.csproj │ │ │ ├── ParserReportTests.cs │ │ │ └── XAmpleParserTests.cs │ │ ├── ParserModelChangeListener.cs │ │ ├── ParserReport.cs │ │ ├── ParserScheduler.cs │ │ ├── ParserWorker.cs │ │ ├── ParserXmlWriterExtensions.cs │ │ ├── TaskReport.cs │ │ ├── XAmpleCOMWrapper │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── XAmpleCOMWrapper.cpp │ │ │ ├── XAmpleCOMWrapper.rc │ │ │ ├── XAmpleCOMWrapper.rgs │ │ │ ├── XAmpleCOMWrapper.vcxproj │ │ │ ├── XAmpleCOMWrapper.vcxproj.filters │ │ │ ├── XAmpleCOMWrapperps.def │ │ │ ├── XAmpleWrapper.cpp │ │ │ ├── XAmpleWrapperCore.cpp │ │ │ ├── XAmpleWrapperCore.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── xamplewrapper.h │ │ ├── XAmpleManagedWrapper │ │ │ ├── AmpleOptions.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── BuildInclude.targets │ │ │ ├── IXAmpleWrapper.cs │ │ │ ├── XAmpleDLLWrapper.cs │ │ │ ├── XAmpleManagedWrapper.csproj │ │ │ ├── XAmpleManagedWrapperTests │ │ │ │ ├── TestXAmpleDLLWrapper.cs │ │ │ │ ├── TestXAmpleWrapper.cs │ │ │ │ └── XAmpleManagedWrapperTests.csproj │ │ │ └── XAmpleWrapper.cs │ │ ├── XAmpleParser.cs │ │ ├── XAmplePropertiesPreparer.cs │ │ └── XAmplePropertiesXAmpleDataFilesAugmenter.cs │ ├── ParserUI │ │ ├── AssemblyInfo.cs │ │ ├── FileTimeToDateTimeConverter.cs │ │ ├── HCMaxCompoundRulesDlg.Designer.cs │ │ ├── HCMaxCompoundRulesDlg.cs │ │ ├── HCMaxCompoundRulesDlg.resx │ │ ├── HCTrace.cs │ │ ├── IParserTrace.cs │ │ ├── ImportWordSetDlg.cs │ │ ├── ImportWordSetDlg.resx │ │ ├── ImportWordSetListener.cs │ │ ├── MillisecondsToTimeSpanConverter.cs │ │ ├── ParserConnection.cs │ │ ├── ParserListener.cs │ │ ├── ParserParametersBase.cs │ │ ├── ParserParametersDlg.cs │ │ ├── ParserParametersDlg.resx │ │ ├── ParserReportDialog.xaml │ │ ├── ParserReportDialog.xaml.cs │ │ ├── ParserReportViewModel.cs │ │ ├── ParserReportsDialog.xaml │ │ ├── ParserReportsDialog.xaml.cs │ │ ├── ParserReportsViewModel.cs │ │ ├── ParserTraceUITransform.cs │ │ ├── ParserUI.csproj │ │ ├── ParserUIStrings.Designer.cs │ │ ├── ParserUIStrings.resx │ │ ├── ParserUITests │ │ │ ├── ParserUITests.csproj │ │ │ ├── TestUnificationViaXSLT.xsl │ │ │ ├── WordGrammarDebuggingInputsAndResults │ │ │ │ ├── .gitattributes │ │ │ │ ├── EmptyWord.xml │ │ │ │ ├── M3FXTDump.xml │ │ │ │ ├── M3FXTDumpAffixAlloFeats.xml │ │ │ │ ├── M3FXTDumpNoCompoundRules.xml │ │ │ │ ├── M3FXTDumpStemNames.xml │ │ │ │ ├── M3FXTRequiredOptionalPrefixSlots.xml │ │ │ │ ├── RequiredOptionalPrefixSlotsWordGrammarDebugger.xsl │ │ │ │ ├── TLPSameSlotTwiceWordGrammarDebugger.xsl │ │ │ │ ├── TestFeatureStructureUnification.xml │ │ │ │ ├── biliStep00BadInflection.xml │ │ │ │ ├── biliStep01BadInflection.xml │ │ │ │ ├── biliStep02BadInflection.xml │ │ │ │ ├── bilikesziStep00.xml │ │ │ │ ├── bilikesziStep01.xml │ │ │ │ ├── bilikesziStep02.xml │ │ │ │ ├── bilikesziStep03.xml │ │ │ │ ├── bilikesziStep04.xml │ │ │ │ ├── bilikesziStep05.xml │ │ │ │ ├── bilikesziStep06.xml │ │ │ │ ├── dagslurpStep00.xml │ │ │ │ ├── dagslurpStep01.xml │ │ │ │ ├── dagslurpStep02.xml │ │ │ │ ├── dembilikesguStep00.xml │ │ │ │ ├── dembilikesguStep01.xml │ │ │ │ ├── dembilikesguStep02.xml │ │ │ │ ├── dembilikesguStep03.xml │ │ │ │ ├── dembilikesguStep04.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep00.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep00Result.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep01.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep01Result.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep02.xml │ │ │ │ ├── fpfptovAffixAlloFeatsStep02Result.xml │ │ │ │ ├── fpfstovAffixAlloFeatsStep00.xml │ │ │ │ ├── fpfstovAffixAlloFeatsStep00Result.xml │ │ │ │ ├── fpfstovAffixAlloFeatsStep01.xml │ │ │ │ ├── fpfstovAffixAlloFeatsStep01Result.xml │ │ │ │ ├── fsfptovAffixAlloFeatsStep00.xml │ │ │ │ ├── fsfptovAffixAlloFeatsStep00Result.xml │ │ │ │ ├── fsfptovAffixAlloFeatsStep01.xml │ │ │ │ ├── fsfptovAffixAlloFeatsStep01Result.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep00.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep00Result.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep01.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep01Result.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep02.xml │ │ │ │ ├── fsfstovAffixAlloFeatsStep02Result.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep00.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep00Result.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep01.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep01Result.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep02.xml │ │ │ │ ├── fsinflAffixAlloFeatsStep02Result.xml │ │ │ │ ├── kasakesPartialCatUnclassCatStep02.xml │ │ │ │ ├── kasakesPartialCatUnclassCatStep03.xml │ │ │ │ ├── katStep00.xml │ │ │ │ ├── katStep01.xml │ │ │ │ ├── katStep02.xml │ │ │ │ ├── katStep03.xml │ │ │ │ ├── katStep04.xml │ │ │ │ ├── kesuyalolozoStep00.xml │ │ │ │ ├── kesuyalolozoStep01.xml │ │ │ │ ├── kesuyalolozoStep02.xml │ │ │ │ ├── kesuyalolozoStep03.xml │ │ │ │ ├── kesuyalolozoStep04.xml │ │ │ │ ├── keyaloStep00.xml │ │ │ │ ├── keyaloStep01.xml │ │ │ │ ├── keyaloStep02.xml │ │ │ │ ├── keyaloStep03.xml │ │ │ │ ├── keyaloStep04.xml │ │ │ │ ├── manahomiaStep00.xml │ │ │ │ ├── manahomiaStep01.xml │ │ │ │ ├── mixonipustikespeStep00.xml │ │ │ │ ├── mixonipustikespeStep01.xml │ │ │ │ ├── mixonipustikespeStep02.xml │ │ │ │ ├── mixonipustikespeStep03.xml │ │ │ │ ├── mpmsAffixAlloFeatsStep00.xml │ │ │ │ ├── mpmsAffixAlloFeatsStep00Result.xml │ │ │ │ ├── mpmsAffixAlloFeatsStep01.xml │ │ │ │ ├── mpmsAffixAlloFeatsStep01Result.xml │ │ │ │ ├── msinflAffixAlloFeatsStep00.xml │ │ │ │ ├── msinflAffixAlloFeatsStep00Result.xml │ │ │ │ ├── msinflAffixAlloFeatsStep01.xml │ │ │ │ ├── msinflAffixAlloFeatsStep01Result.xml │ │ │ │ ├── msmsAffixAlloFeatsStep00.xml │ │ │ │ ├── msmsAffixAlloFeatsStep00Result.xml │ │ │ │ ├── msmsAffixAlloFeatsStep01.xml │ │ │ │ ├── msmsAffixAlloFeatsStep01Result.xml │ │ │ │ ├── msmsAffixAlloFeatsStep02.xml │ │ │ │ ├── msmsAffixAlloFeatsStep02Result.xml │ │ │ │ ├── nihimbiliguStep00.xml │ │ │ │ ├── nihimbiliguStep01.xml │ │ │ │ ├── nihimbiliguStep01BadInflectionClass.xml │ │ │ │ ├── nihimbiliguStep02.xml │ │ │ │ ├── nihimbiliguStep02BadInflectionClass.xml │ │ │ │ ├── nihimbiliguStep03.xml │ │ │ │ ├── nihimbiliguStep04.xml │ │ │ │ ├── nihimbiliraBadInflectionClassInTenseStep00.xml │ │ │ │ ├── nihimbiliraBadInflectionClassInTenseStep01.xml │ │ │ │ ├── nihimbiliraBadInflectionClassInTenseStep02.xml │ │ │ │ ├── nihimbiliraBadInflectionClassesInTenseStep00.xml │ │ │ │ ├── nihimbiliraBadInflectionClassesInTenseStep01.xml │ │ │ │ ├── nihimbiliraBadInflectionClassesInTenseStep02.xml │ │ │ │ ├── nihimbilitikoStep00.xml │ │ │ │ ├── nihimbilitikoStep01.xml │ │ │ │ ├── nihimbilitikoStep01BadFromCat.xml │ │ │ │ ├── nihimbilitikoStep01BadFromCatBadFromInflClass.xml │ │ │ │ ├── nihimbilitikoStep01BadFromInflClass.xml │ │ │ │ ├── nihimbilitikoStep02.xml │ │ │ │ ├── nihimbilitikoStep02BadFromCat.xml │ │ │ │ ├── nihimbilitikoStep02BadFromCatBadFromInflClass.xml │ │ │ │ ├── nihimbilitikoStep02BadFromInflClass.xml │ │ │ │ ├── nihinlikximuraNoCompoundRulesStep00.xml │ │ │ │ ├── nihinlikximuraNoCompoundRulesStep01.xml │ │ │ │ ├── nihinlikximuraStep00.xml │ │ │ │ ├── nihinlikximuraStep01.xml │ │ │ │ ├── nihinlikximuraStep02.xml │ │ │ │ ├── nihinlikximuraStep02BadCats.xml │ │ │ │ ├── nihinlikximuraStep03.xml │ │ │ │ ├── nihinlikximuraStep03BadCats.xml │ │ │ │ ├── nihinlikximuraStep04BadCats.xml │ │ │ │ ├── nihinxolikximukestiraNoCompoundRulesStep00.xml │ │ │ │ ├── nihinxolikximukestiraNoCompoundRulesStep01.xml │ │ │ │ ├── nixobiliraStep00.xml │ │ │ │ ├── nixobiliraStep01.xml │ │ │ │ ├── nixobiliraStep01BadFromCat.xml │ │ │ │ ├── nixobiliraStep01BadFromCatBadFromInflClass.xml │ │ │ │ ├── nixobiliraStep01BadFromInflClass.xml │ │ │ │ ├── nixobiliraStep02.xml │ │ │ │ ├── nixobiliraStep02BadFromCat.xml │ │ │ │ ├── nixobiliraStep02BadFromCatBadFromInflClass.xml │ │ │ │ ├── nixobiliraStep02BadFromInflClass.xml │ │ │ │ ├── niyalonadkoStep00.xml │ │ │ │ ├── niyalonadkoStep01.xml │ │ │ │ ├── niyalonadkoStep02.xml │ │ │ │ ├── niyalonadkoStep02BadCats.xml │ │ │ │ ├── niyalonadkoStep03.xml │ │ │ │ ├── niyalonadkoStep03BadCats.xml │ │ │ │ ├── niyaloximuraStep00.xml │ │ │ │ ├── niyaloximuraStep01.xml │ │ │ │ ├── niyaloximuraStep02.xml │ │ │ │ ├── niyaloximuraStep02BadCats.xml │ │ │ │ ├── niyaloximuraStep03.xml │ │ │ │ ├── niyaloximuraStep03BadCats.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep00.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep00Result.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep01.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep01Result.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep02.xml │ │ │ │ ├── niyuhohwusaStemNameNotSetFailStep02Result.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep00.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep00Result.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep01.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep01Result.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep02.xml │ │ │ │ ├── niyumamwupeStemNameSetNoFsStep02Result.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep00.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep00Result.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep01.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep01Result.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep02.xml │ │ │ │ ├── niyuwowwukoStemNameNotSetMultiFailStep02Result.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep00.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep00Result.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep01.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep01Result.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep02.xml │ │ │ │ ├── niyuwowwupeStemNameNotSetStep02Result.xml │ │ │ │ ├── niyuxobilitikoStep00.xml │ │ │ │ ├── niyuxobilitikoStep01.xml │ │ │ │ ├── niyuxobilitikoStep01BadFromCat.xml │ │ │ │ ├── niyuxobilitikoStep01BadFromCatBadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep01BadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep02.xml │ │ │ │ ├── niyuxobilitikoStep02BadFromCat.xml │ │ │ │ ├── niyuxobilitikoStep02BadFromCatBadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep02BadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep02aBadFromCat.xml │ │ │ │ ├── niyuxobilitikoStep02aBadFromCatBadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep02aBadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep03.xml │ │ │ │ ├── niyuxobilitikoStep03BadFromCat.xml │ │ │ │ ├── niyuxobilitikoStep03aBadFromCat.xml │ │ │ │ ├── niyuxobilitikoStep03aBadFromCatBadFromInflClass.xml │ │ │ │ ├── niyuxobilitikoStep03aBadFromInflClass.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep00.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep00Result.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep01.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep01Result.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep02.xml │ │ │ │ ├── niyuyiywupeStemNameFailStep02Result.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep00.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep00Result.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep01.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep01Result.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep02.xml │ │ │ │ ├── niyuyiywusaStemNameSetStep02Result.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep00.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep00Result.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep01.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep01Result.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep02.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep02Result.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep03.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep03Result.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep04.xml │ │ │ │ ├── niyuyiyximuwupeStemNameNotSetCompoundFailStep04Result.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep00.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep00Result.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep01.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep01Result.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep02.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep02Result.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep03.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep03Result.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep04.xml │ │ │ │ ├── niyuyiyximuwusaStemNameSetCompoundStep04Result.xml │ │ │ │ ├── pengetikanCircumfixStep00.xml │ │ │ │ ├── pengetikanCircumfixStep01.xml │ │ │ │ ├── pengetikanCircumfixStep02.xml │ │ │ │ ├── sedembilikesraStep02.xml │ │ │ │ ├── sedembilikesraStep03.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep00.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep00Result.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep01.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep01Result.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep02.xml │ │ │ │ ├── timikikwupeStemNameSetMultiFsFailStep02Result.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep00.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep00Result.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep01.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep01Result.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep02.xml │ │ │ │ ├── timikikwusaStemNameSetMultiFsStep02Result.xml │ │ │ │ ├── ximuStep00.xml │ │ │ │ ├── ximuStep01.xml │ │ │ │ ├── ximuStep02.xml │ │ │ │ ├── ximukesraStep00.xml │ │ │ │ ├── ximukesraStep01.xml │ │ │ │ ├── ximukesraStep02.xml │ │ │ │ ├── ximukesraStep03.xml │ │ │ │ ├── ximuzoStep03.xml │ │ │ │ ├── ximuzoStep04.xml │ │ │ │ ├── xokattikesraStep00.xml │ │ │ │ ├── xokattikesraStep01.xml │ │ │ │ ├── xokattikesraStep02.xml │ │ │ │ ├── yalotetuStep01.xml │ │ │ │ ├── yalotetuStep02.xml │ │ │ │ ├── yalozoStep00.xml │ │ │ │ ├── yalozoStep01.xml │ │ │ │ ├── yalozoStep02.xml │ │ │ │ ├── yalozoStep03.xml │ │ │ │ └── yalozoStep04.xml │ │ │ └── WordGrammarDebuggingTests.cs │ │ ├── PositiveIntToRedBrushConverter.cs │ │ ├── TryAWordDlg.cs │ │ ├── TryAWordDlg.resx │ │ ├── TryAWordRootSite.cs │ │ ├── TryAWordSandbox.cs │ │ ├── WebPageInteractor.cs │ │ ├── WordImporter.cs │ │ ├── XAmpleTrace.cs │ │ └── XAmpleWordGrammarDebugger.cs │ └── images │ │ ├── AlloCoprohib.bmp │ │ ├── Blank.bmp │ │ ├── BoundaryMarker.bmp │ │ ├── CLOSED.BMP │ │ ├── CircledRightArrow.bmp │ │ ├── CoprohibGroup.bmp │ │ ├── Delete.bmp │ │ ├── EndoCompound.bmp │ │ ├── Environ.bmp │ │ ├── ExoCompound.bmp │ │ ├── GotoEntry.bmp │ │ ├── GotoEntry.ico │ │ ├── GotoReversalEntry.bmp │ │ ├── HELP.BMP │ │ ├── INTL_NO.bmp │ │ ├── LeftArrow.bmp │ │ ├── MajorEntry.bmp │ │ ├── MajorEntry.ico │ │ ├── MinorEntry.bmp │ │ ├── MorphCoprohib.bmp │ │ ├── MoveUpArrow.ico │ │ ├── NatClass.bmp │ │ ├── NbkEntry.bmp │ │ ├── OPEN.BMP │ │ ├── POS.bmp │ │ ├── Phoneme.bmp │ │ ├── Pie.GIF │ │ ├── ReversalEntry.bmp │ │ ├── RightArrow.bmp │ │ ├── SpiralNoteMagnifing16x16.ico │ │ ├── SpiralNoteMagnifing16x16.png │ │ ├── SpiralNotepage16x16.ico │ │ ├── SpiralNotepage16x16.png │ │ ├── Subentry.bmp │ │ ├── TwoHalfs.GIF │ │ └── _WhatAreThese.txt ├── ManagedLgIcuCollator │ ├── LgIcuCollator.cs │ ├── ManagedLgIcuCollator.csproj │ └── ManagedLgIcuCollatorTests │ │ ├── ManagedLgIcuCollatorTests.cs │ │ └── ManagedLgIcuCollatorTests.csproj ├── ManagedVwDrawRootBuffered │ ├── AssemblyInfo.cs │ ├── ManagedVwDrawRootBuffered.csproj │ └── VwDrawRootBuffered.cs ├── ManagedVwWindow │ ├── AssemblyInfo.cs │ ├── ManagedVwWindow.cs │ ├── ManagedVwWindow.csproj │ └── ManagedVwWindowTests │ │ ├── ManagedVwWindowTests.cs │ │ └── ManagedVwWindowTests.csproj ├── MasterVersionInfo.txt ├── MigrateSqlDbs │ ├── ExistingProjectDlg.Designer.cs │ ├── ExistingProjectDlg.cs │ ├── ExistingProjectDlg.resx │ ├── FWVersionTooOld.Designer.cs │ ├── FWVersionTooOld.cs │ ├── FWVersionTooOld.resx │ ├── MigrateProjects.Designer.cs │ ├── MigrateProjects.cs │ ├── MigrateProjects.resx │ ├── MigrateSqlDbs.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Settings.cs ├── Paratext8Plugin │ ├── PT8VerseRefWrapper.cs │ ├── PTScrTextWrapper.cs │ ├── ParaText8PluginTests │ │ ├── App.config │ │ ├── Paratext8PluginTests.csproj │ │ └── ParatextDataIntegrationTests.cs │ ├── Paratext8Plugin.csproj │ ├── Paratext8Provider.cs │ ├── ParatextAlert.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Pt8VerseWrapper.cs ├── ParatextImport │ ├── BookMerger.cs │ ├── Cluster.cs │ ├── DiffLocation.cs │ ├── Difference.cs │ ├── Difference.resx │ ├── IBookVersionAgent.cs │ ├── ISCScriptureText.cs │ ├── ISCTextEnum.cs │ ├── ISCTextSegment.cs │ ├── ImportStyleProxy.cs │ ├── ImportedBooks.cs │ ├── ParatextImport.csproj │ ├── ParatextImportExtensions.cs │ ├── ParatextImportManager.cs │ ├── ParatextImportTests │ │ ├── AutoMergeTests.cs │ │ ├── BookMergerTests.cs │ │ ├── BookMergerTestsBase.cs │ │ ├── ClusterTests.cs │ │ ├── DiffTestHelper.cs │ │ ├── DifferenceTests.cs │ │ ├── EncTest.map │ │ ├── ImportTests │ │ │ ├── ImportStyleProxyTests.cs │ │ │ ├── ParatextImportBtInterleaved.cs │ │ │ ├── ParatextImportBtNonInterleaved.cs │ │ │ ├── ParatextImportManagerTests.cs │ │ │ ├── ParatextImportNoUi.cs │ │ │ ├── ParatextImportParatext6Tests.cs │ │ │ ├── ParatextImportTests.cs │ │ │ └── ParatextImportTestsBase.cs │ │ ├── ImportedBooksTests.cs │ │ ├── MockScriptureProvider.cs │ │ ├── ParatextImportTests.csproj │ │ ├── SCTextEnumTests.cs │ │ ├── SegmentedBtMergeTests.cs │ │ └── VerseIteratorTests.cs │ ├── ParatextImportUi.cs │ ├── ParatextLoadException.cs │ ├── ParatextSfmImporter.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── ReplaceInFilterFixer.cs │ ├── SCScriptureText.cs │ ├── SCTextEnum.cs │ ├── SCTextSegment.cs │ ├── ScrAnnotationInfo.cs │ ├── ScrObjWrapper.cs │ └── UndoImportManager.cs ├── ProjectUnpacker │ ├── AssemblyInfo.cs │ ├── ProjectUnpacker.csproj │ ├── RegistryData.cs │ ├── Unpacker.cs │ ├── ZippedParaPrjWithMissingFiles.resx │ ├── ZippedParatextPrj.resx │ └── ZippedTEVTitusWithUnmappedStyle.resx ├── Search.sh ├── Transforms │ ├── Application │ │ ├── BoundaryMarkerGuids.xsl │ │ ├── CalculateStemNamesUsedInLexicalEntries.xsl │ │ ├── FxtM3MorphologySketch.xsl │ │ ├── FxtM3ParserCommon.xsl │ │ ├── FxtM3ParserToGAFAWS.xsl │ │ ├── FxtM3ParserToToXAmpleGrammar.xsl │ │ ├── FxtM3ParserToXAmpleADCtl.xsl │ │ ├── FxtM3ParserToXAmpleLex.xsl │ │ ├── FxtM3ParserToXAmpleWordGrammarDebuggingXSLT.xsl │ │ ├── MorphTypeGuids.xsl │ │ ├── UnifyTwoFeatureStructures.xsl │ │ └── XAmpleTemplateVariables.xsl │ └── Presentation │ │ ├── FormatCommon.xsl │ │ ├── FormatHCTrace.xsl │ │ ├── FormatXAmpleParse.xsl │ │ ├── FormatXAmpleTrace.xsl │ │ ├── FormatXAmpleWordGrammarDebuggerResult.xsl │ │ ├── JSFunctions.xsl │ │ └── XLingPap1.xsl ├── UnicodeCharEditor │ ├── App.config │ ├── BuildInclude.targets │ ├── CharEditorWindow.Designer.cs │ ├── CharEditorWindow.cs │ ├── CharEditorWindow.resx │ ├── CustomCharDlg.cs │ ├── CustomCharDlg.resx │ ├── ErrorCodes.cs │ ├── HelpTopicPaths.Designer.cs │ ├── HelpTopicPaths.resx │ ├── IcuErrorCodes.cs │ ├── IcuLockedException.cs │ ├── LogFile.cs │ ├── PUAInstaller.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PuaException.cs │ ├── UceException.cs │ ├── UnicodeCharEditor.csproj │ └── UnicodeCharEditorTests │ │ ├── PUAInstallerTests.cs │ │ └── UnicodeCharEditorTests.csproj ├── Utilities │ ├── FixFwData │ │ ├── FixFwData.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FixFwDataDll │ │ ├── ErrorFixer.cs │ │ ├── FixErrorsDlg.Designer.cs │ │ ├── FixErrorsDlg.cs │ │ ├── FixErrorsDlg.resx │ │ ├── FixFwDataDll.csproj │ │ ├── FwData.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ └── WriteAllObjectsUtility.cs │ ├── MessageBoxExLib │ │ ├── AssemblyInfo.cs │ │ ├── Icon_2.ico │ │ ├── Icon_3.ico │ │ ├── Icon_4.ico │ │ ├── Icon_5.ico │ │ ├── MessageBoxEx.cs │ │ ├── MessageBoxExButton.cs │ │ ├── MessageBoxExButtons.cs │ │ ├── MessageBoxExForm.cs │ │ ├── MessageBoxExForm.resx │ │ ├── MessageBoxExIcon.cs │ │ ├── MessageBoxExLib.csproj │ │ ├── MessageBoxExLibTests │ │ │ ├── MessageBoxExLibTests.csproj │ │ │ └── Tests.cs │ │ ├── MessageBoxExManager.cs │ │ ├── MessageBoxExResult.cs │ │ ├── Notes.txt │ │ ├── Resources │ │ │ └── StandardButtonsText.resx │ │ └── TimeoutResult.cs │ ├── Reporting │ │ ├── App.config │ │ ├── AssemblyInfo.cs │ │ ├── DialogImage.bmp │ │ ├── ErrorReport.cs │ │ ├── ErrorReport.resx │ │ ├── Reporting.csproj │ │ ├── ReportingStrings.Designer.cs │ │ ├── ReportingStrings.resx │ │ ├── Resources │ │ │ └── cc.png │ │ ├── Usage.ico │ │ ├── UsageEmailDialog.cs │ │ └── UsageEmailDialog.resx │ ├── SfmStats │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SfmStats.csproj │ ├── SfmToXml │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── CRC.cs │ │ ├── ClsFieldDescription.cs │ │ ├── ClsHierarchyEntry.cs │ │ ├── ClsInFieldMarker.cs │ │ ├── ClsLanguage.cs │ │ ├── ConvertSFM │ │ │ ├── App.ico │ │ │ ├── ConvertSFM.cs │ │ │ ├── ConvertSFM.csproj │ │ │ └── bin │ │ │ │ └── Debug │ │ │ │ ├── Test.sfm │ │ │ │ └── TestMapping.xml │ │ ├── Converter.cs │ │ ├── FieldHierarchyInfo.cs │ │ ├── FileReader.cs │ │ ├── LanguageInfoUI.cs │ │ ├── LexImportField.cs │ │ ├── LexImportFields.cs │ │ ├── LexImportOption.cs │ │ ├── Log.cs │ │ ├── Sfm2Xml.csproj │ │ ├── Sfm2XmlStrings.Designer.cs │ │ ├── Sfm2XmlStrings.resx │ │ ├── Sfm2XmlTests │ │ │ ├── ConverterTests.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Sfm2XmlTests.csproj │ │ ├── Statics.cs │ │ └── TestData │ │ │ ├── BuildPhase2XSLT.xsl │ │ │ ├── Moe.db │ │ │ ├── MoeMap.xml │ │ │ ├── Phase3.xsl │ │ │ ├── Phase4.xsl │ │ │ ├── TestMapping.xml │ │ │ ├── YiGreen.di │ │ │ └── YiGreenMap.xml │ └── XMLUtils │ │ ├── AssemblyInfo.cs │ │ ├── DynamicLoader.cs │ │ ├── ResolveDirectory.cs │ │ ├── SILExceptions.cs │ │ ├── XMLUtils.csproj │ │ ├── XMLUtilsTests │ │ ├── DynamicLoaderTests.cs │ │ ├── XMLUtilsTests.csproj │ │ └── XmlUtilsTest.cs │ │ ├── XmlUtils.cs │ │ ├── XmlUtilsStrings.Designer.cs │ │ └── XmlUtilsStrings.resx ├── XCore │ ├── AdapterMenuItem.cs │ ├── AdapterMenuItem.resx │ ├── AreaManager.cs │ ├── AssemblyInfo.cs │ ├── BEANY.BMP │ ├── CollapsingSplitContainer.Designer.cs │ ├── CollapsingSplitContainer.cs │ ├── CollapsingSplitContainer.resx │ ├── ExpandSplitterIcon.bmp │ ├── FlexUIAdapter │ │ ├── AdapterBase.cs │ │ ├── AdapterStrings.Designer.cs │ │ ├── AdapterStrings.resx │ │ ├── AssemblyInfo.cs │ │ ├── BarAdapterBase.cs │ │ ├── ContextHelper.cs │ │ ├── FlexAccessibilityMode-Off.reg │ │ ├── FlexAccessibilityMode-On.reg │ │ ├── FlexUIAdapter.csproj │ │ ├── MenuAdapter.cs │ │ ├── NavBarAdapter.cs │ │ ├── PaneBar.cs │ │ ├── PaneBar.resx │ │ ├── PanelButton.cs │ │ ├── PanelMenu.cs │ │ ├── SidebarAdapter.cs │ │ └── ToolbarAdapter.cs │ ├── HtmlControl.cs │ ├── HtmlControl.resx │ ├── HtmlViewer.cs │ ├── HtmlViewer.resx │ ├── IconHolder.cs │ ├── IconHolder.resx │ ├── ImageCollection.cs │ ├── ImageContent.cs │ ├── ImageContent.resx │ ├── ImageDialog.cs │ ├── ImageDialog.resx │ ├── IncludeXml.cs │ ├── Inventory.cs │ ├── MockupDialogLauncher.cs │ ├── MultiPane.cs │ ├── MultiPane.resx │ ├── NotifyWindow.cs │ ├── NotifyWindow.resx │ ├── PaneBarContainer.Designer.cs │ ├── PaneBarContainer.cs │ ├── PaneBarContainer.resx │ ├── RecordBar.cs │ ├── RecordBar.resx │ ├── SilSidePane │ │ ├── Banner.cs │ │ ├── IItemArea.cs │ │ ├── Item.cs │ │ ├── LICENSE │ │ ├── ListViewItemArea.cs │ │ ├── NavPaneOptionsDlg.Designer.cs │ │ ├── NavPaneOptionsDlg.cs │ │ ├── NavPaneOptionsDlg.resx │ │ ├── OutlookBar.cs │ │ ├── OutlookBarButton.cs │ │ ├── OutlookBarButtonCollection.cs │ │ ├── OutlookBarSubButtonPanel.cs │ │ ├── OutlookButtonPanel.cs │ │ ├── OutlookButtonPanelItemArea.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── Arrow_Down.ico │ │ │ ├── Arrow_Up.ico │ │ │ ├── DefaultIcon.ico │ │ │ ├── DropDown2003.ico │ │ │ ├── DropDown2007.ico │ │ │ ├── Grip2003.ico │ │ │ └── Grip2007.ico │ │ ├── SidePane.cs │ │ ├── SidePaneItemAreaStyle.cs │ │ ├── SilSidePane.Designer.cs │ │ ├── SilSidePane.csproj │ │ ├── SilSidePane.resx │ │ ├── SilSidePaneTests │ │ │ ├── BuildInclude.targets │ │ │ ├── DefaultIcon.ico │ │ │ ├── ItemTests.cs │ │ │ ├── NavPaneOptionsDlgTests.cs │ │ │ ├── OutlookBarButtonTests.cs │ │ │ ├── SidePaneTests.cs │ │ │ ├── SilSidePaneTests.csproj │ │ │ ├── TabTests.cs │ │ │ ├── TestUtilities.cs │ │ │ └── whitepixel.bmp │ │ ├── StripListItemArea.cs │ │ └── Tab.cs │ ├── Ticker.cs │ ├── Ticker.resx │ ├── XMessageBoxExManager.cs │ ├── xCore.csproj │ ├── xCoreInterfaces │ │ ├── AssemblyInfo.cs │ │ ├── BaseContextHelper.cs │ │ ├── Choice.cs │ │ ├── ChoiceGroup.cs │ │ ├── Command.cs │ │ ├── IFeedbackInfoProvider.cs │ │ ├── IImageCollection.cs │ │ ├── IPaneBar.cs │ │ ├── IPersistenceProvider.cs │ │ ├── IPropertyRetriever.cs │ │ ├── IUIAdapter.cs │ │ ├── IxCoreColleague.cs │ │ ├── List.cs │ │ ├── Mediator.cs │ │ ├── MessageSequencer.cs │ │ ├── PersistenceProvider.cs │ │ ├── PropertyTable.cs │ │ ├── ReadOnlyPropertyTable.cs │ │ ├── RecordFilterListProvider.cs │ │ ├── Resources │ │ │ └── construction-slow.ico │ │ ├── xCoreInterfaces.Designer.cs │ │ ├── xCoreInterfaces.csproj │ │ ├── xCoreInterfaces.resx │ │ └── xCoreInterfacesTests │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ │ ├── PropertyTableTests.cs │ │ │ ├── TestMessageSequencer.cs │ │ │ ├── TestTupleComparer.cs │ │ │ ├── settingsBackup │ │ │ ├── Settings.xml │ │ │ └── db_TestLocal_Settings.xml │ │ │ └── xCoreInterfacesTests.csproj │ ├── xCoreStrings.Designer.cs │ ├── xCoreStrings.resx │ ├── xCoreTests │ │ ├── BuildInclude.targets │ │ ├── CreateOverrideTestData.xml │ │ ├── IncludeXmlTestSource.xml │ │ ├── IncludeXmlTestSourceB.xml │ │ ├── IncludeXmlTests.cs │ │ ├── InventoryBaseTestFiles │ │ │ ├── Base1Layouts.xml │ │ │ └── Base2Layouts.xml │ │ ├── InventoryLaterTestFiles │ │ │ └── Override1Layouts.xml │ │ ├── InventoryTests.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── basicTest.xml │ │ ├── food │ │ │ ├── fruit │ │ │ │ └── sortOfFruitInclude.xml │ │ │ ├── veggiesInclude.xml │ │ │ └── veggiesIncludeWithSubInclude.xml │ │ ├── includeTest.xml │ │ ├── listitems.bmp │ │ └── xCoreTests.csproj │ ├── xCoreUserControl.cs │ ├── xWindow.cs │ └── xWindow.resx ├── asInvoker.manifest ├── bldinc.h ├── fw.net.Debug.ndoc ├── fw.net.Release.ndoc ├── requireAdministrator.manifest ├── views │ ├── ExplicitInstantiation.cpp │ ├── Main.h │ ├── Render.idh │ ├── Test │ │ ├── BasicVc.h │ │ ├── DummyBaseVc.h │ │ ├── DummyRootsite.h │ │ ├── MockLgWritingSystem.h │ │ ├── MockLgWritingSystemFactory.h │ │ ├── MockRenderEngineFactory.h │ │ ├── NiceGuy.bmp │ │ ├── RenderEngineTestBase.h │ │ ├── TestGraphiteEngine.h │ │ ├── TestInsertDiffPara.h │ │ ├── TestLayoutPage.h │ │ ├── TestLazyBox.h │ │ ├── TestLgCollatingEngine.h │ │ ├── TestLgLineBreaker.h │ │ ├── TestNotifier.h │ │ ├── TestTsPropsBldr.h │ │ ├── TestTsStrBldr.h │ │ ├── TestTsString.h │ │ ├── TestTsTextProps.h │ │ ├── TestUndoStack.h │ │ ├── TestUniscribeEngine.h │ │ ├── TestViews.rc │ │ ├── TestViews.vcxproj │ │ ├── TestViews.vcxproj.filters │ │ ├── TestVirtualHandlers.h │ │ ├── TestVwEnv.h │ │ ├── TestVwGraphics.h │ │ ├── TestVwOverlay.h │ │ ├── TestVwParagraph.h │ │ ├── TestVwPattern.h │ │ ├── TestVwRootBox.h │ │ ├── TestVwSelection.h │ │ ├── TestVwSync.h │ │ ├── TestVwTableBox.h │ │ ├── TestVwTextBoxes.h │ │ ├── TestVwTextStore.h │ │ ├── TestVwTxtSrc.h │ │ ├── VirtualsCm.xml │ │ ├── resource.h │ │ ├── testViews.cpp │ │ ├── testViews.h │ │ └── testViews.mak │ ├── Views.def │ ├── Views.idh │ ├── Views.mak │ ├── Views.rc │ ├── ViewsExtra_GUIDs.cpp │ ├── ViewsGlobals.cpp │ ├── ViewsGlobals.h │ ├── ViewsPs.idl │ ├── ViewsTlb.idl │ ├── Views_GUIDs.cpp │ ├── VwAccessRoot.cpp │ ├── VwAccessRoot.h │ ├── VwEnv.cpp │ ├── VwEnv.h │ ├── VwInvertedViews.cpp │ ├── VwInvertedViews.h │ ├── VwLayoutStream.cpp │ ├── VwLayoutStream.h │ ├── VwLazyBox.cpp │ ├── VwLazyBox.h │ ├── VwNotifier.cpp │ ├── VwNotifier.h │ ├── VwOverlay.cpp │ ├── VwOverlay.h │ ├── VwPattern.cpp │ ├── VwPattern.h │ ├── VwPrintContext.cpp │ ├── VwPrintContext.h │ ├── VwPropertyStore.cpp │ ├── VwPropertyStore.h │ ├── VwResources.h │ ├── VwRootBox.cpp │ ├── VwRootBox.h │ ├── VwSelection.cpp │ ├── VwSelection.h │ ├── VwSimpleBoxes.cpp │ ├── VwSimpleBoxes.h │ ├── VwSynchronizer.cpp │ ├── VwSynchronizer.h │ ├── VwTableBox.cpp │ ├── VwTableBox.h │ ├── VwTextBoxes.cpp │ ├── VwTextBoxes.h │ ├── VwTextStore.cpp │ ├── VwTextStore.h │ ├── VwTxtSrc.cpp │ ├── VwTxtSrc.h │ ├── dlldatax.c │ ├── lib │ │ ├── ActionHandler.cpp │ │ ├── ActionHandler.h │ │ ├── DebugReport.cpp │ │ ├── DebugReport.h │ │ ├── DisplayCapsInfo.cpp │ │ ├── DisplayCapsInfo.h │ │ ├── GdiPlusMono.h │ │ ├── GraphiteEngine.cpp │ │ ├── GraphiteEngine.h │ │ ├── GraphiteSegment.cpp │ │ ├── GraphiteSegment.h │ │ ├── LgLineBreaker.cpp │ │ ├── LgLineBreaker.h │ │ ├── LgUnicodeCollateInit.h │ │ ├── LgUnicodeCollater.cpp │ │ ├── LgUnicodeCollater.h │ │ ├── TextServ.cpp │ │ ├── TextServ.h │ │ ├── TsPropsFactory.cpp │ │ ├── TsPropsFactory.h │ │ ├── TsStrFactory.cpp │ │ ├── TsStrFactory.h │ │ ├── TsString.cpp │ │ ├── TsString.h │ │ ├── TsTextProps.cpp │ │ ├── TsTextProps.h │ │ ├── UniscribeEngine.cpp │ │ ├── UniscribeEngine.h │ │ ├── UniscribeSegment.cpp │ │ ├── UniscribeSegment.h │ │ ├── UtilView.h │ │ ├── VwBaseDataAccess.cpp │ │ ├── VwBaseDataAccess.h │ │ ├── VwBaseVc.cpp │ │ ├── VwBaseVc.h │ │ ├── VwBaseVirtualHandler.cpp │ │ ├── VwBaseVirtualHandler.h │ │ ├── VwCacheDa.cpp │ │ ├── VwCacheDa.h │ │ ├── VwColor.cpp │ │ ├── VwColor.h │ │ ├── VwGraphics.cpp │ │ ├── VwGraphics.h │ │ ├── VwGraphicsCairo.cpp │ │ ├── VwGraphicsCairo.h │ │ ├── VwGraphicsReplayer │ │ │ ├── AssemblyInfo.cs │ │ │ ├── VwGraphicsReplayer.cs │ │ │ └── VwGraphicsReplayer.csproj │ │ ├── VwUndo.cpp │ │ └── VwUndo.h │ ├── views.plg │ ├── views.vcxproj │ ├── views.vcxproj.filters │ └── views2008.vcproj └── xWorks │ ├── AddCustomFieldDlg.cs │ ├── AddCustomFieldDlg.resx │ ├── Archiving │ ├── ArchivingExtensions.cs │ └── ReapRamp.cs │ ├── AssemblyInfo.cs │ ├── ConcDecorator.cs │ ├── ConfigurableDictionaryNode.cs │ ├── ConfiguredLcmGenerator.cs │ ├── CssGenerator.cs │ ├── CustomListDlg.Designer.cs │ ├── CustomListDlg.cs │ ├── CustomListDlg.resx │ ├── DTMenuHandler.cs │ ├── DataTreeImages.cs │ ├── DataTreeImages.resx │ ├── DeleteCustomList.cs │ ├── DictConfigModelExt.cs │ ├── DictionaryConfigManager.cs │ ├── DictionaryConfigMgrDlg.Designer.cs │ ├── DictionaryConfigMgrDlg.cs │ ├── DictionaryConfigMgrDlg.resx │ ├── DictionaryConfigurationController.cs │ ├── DictionaryConfigurationDlg.Designer.cs │ ├── DictionaryConfigurationDlg.cs │ ├── DictionaryConfigurationDlg.resx │ ├── DictionaryConfigurationImportController.cs │ ├── DictionaryConfigurationImportDlg.Designer.cs │ ├── DictionaryConfigurationImportDlg.cs │ ├── DictionaryConfigurationImportDlg.resx │ ├── DictionaryConfigurationListener.cs │ ├── DictionaryConfigurationManagerController.cs │ ├── DictionaryConfigurationManagerDlg.Designer.cs │ ├── DictionaryConfigurationManagerDlg.cs │ ├── DictionaryConfigurationManagerDlg.resx │ ├── DictionaryConfigurationMigrator.cs │ ├── DictionaryConfigurationMigrators │ ├── FirstAlphaMigrator.cs │ ├── FirstBetaMigrator.cs │ ├── IDictionaryConfigurationMigrator.cs │ └── PreHistoricMigrator.cs │ ├── DictionaryConfigurationModel.cs │ ├── DictionaryConfigurationNodeRenameDlg.Designer.cs │ ├── DictionaryConfigurationNodeRenameDlg.cs │ ├── DictionaryConfigurationNodeRenameDlg.resx │ ├── DictionaryConfigurationTreeControl.Designer.cs │ ├── DictionaryConfigurationTreeControl.cs │ ├── DictionaryConfigurationTreeControl.resx │ ├── DictionaryConfigurationUtils.cs │ ├── DictionaryDetailsController.cs │ ├── DictionaryDetailsView │ ├── ButtonOverPanel.Designer.cs │ ├── ButtonOverPanel.cs │ ├── ButtonOverPanel.resx │ ├── DetailsView.Designer.cs │ ├── DetailsView.cs │ ├── DetailsView.resx │ ├── GroupingOptionsView.Designer.cs │ ├── GroupingOptionsView.cs │ ├── GroupingOptionsView.resx │ ├── LabelOverPanel.Designer.cs │ ├── LabelOverPanel.cs │ ├── LabelOverPanel.resx │ ├── ListOptionsView.Designer.cs │ ├── ListOptionsView.cs │ ├── ListOptionsView.resx │ ├── PictureOptionsView.Designer.cs │ ├── PictureOptionsView.cs │ ├── PictureOptionsView.resx │ ├── SenseOptionsView.Designer.cs │ ├── SenseOptionsView.cs │ ├── SenseOptionsView.resx │ └── SpecialCharacterHandling.cs │ ├── DictionaryExportService.cs │ ├── DictionaryNodeOptions.cs │ ├── DictionaryPublicationDecorator.cs │ ├── ExportDialog.cs │ ├── ExportDialog.resx │ ├── ExportSemanticDomainsDlg.Designer.cs │ ├── ExportSemanticDomainsDlg.cs │ ├── ExportSemanticDomainsDlg.resx │ ├── ExportTranslatedListsDlg.Designer.cs │ ├── ExportTranslatedListsDlg.cs │ ├── ExportTranslatedListsDlg.resx │ ├── FileStreamXmlResolver.cs │ ├── FlexStylesXmlAccessor.cs │ ├── FwXApp.cs │ ├── FwXWindow.cs │ ├── FwXWindow.resx │ ├── GeneratedHtmlViewer.cs │ ├── GeneratedHtmlViewer.resx │ ├── GlobalSettingServices.cs │ ├── HeadWordNumbersController.cs │ ├── HeadWordNumbersDlg.cs │ ├── HeadWordNumbersDlg.designer.cs │ ├── HeadWordNumbersDlg.resx │ ├── IDictConfigPresenter.cs │ ├── IDictConfigViewer.cs │ ├── IDictionaryConfigurationView.cs │ ├── IDictionaryDetailsView.cs │ ├── IDictionaryGroupingOptionsView.cs │ ├── IDictionaryListOptionsView.cs │ ├── IDictionarySenseOptionsView.cs │ ├── IFlexMacro.cs │ ├── IHeadwordNumbersView.cs │ ├── ILayoutConverter.cs │ ├── ILcmContentGenerator.cs │ ├── IWebonaryClient.cs │ ├── ImageHolder.cs │ ├── ImageHolder.resx │ ├── InterestingTextList.cs │ ├── InterestingTextsDecorator.cs │ ├── LcmJsonGenerator.cs │ ├── LcmWordGenerator.cs │ ├── LcmXhtmlGenerator.cs │ ├── LegacyConfigurationUtils.cs │ ├── LiftExportMessageDlg.Designer.cs │ ├── LiftExportMessageDlg.cs │ ├── LiftExportMessageDlg.resx │ ├── LinkListener.cs │ ├── MacroListener.cs │ ├── NotebookExportDialog.cs │ ├── PictureConfiguration.cs │ ├── RecordBarListHandler.cs │ ├── RecordBarTreeHandler.cs │ ├── RecordBrowseView.cs │ ├── RecordBrowseView.resx │ ├── RecordClerk.cs │ ├── RecordClerkImages.cs │ ├── RecordClerkImages.resx │ ├── RecordDocView.cs │ ├── RecordEditView.cs │ ├── RecordEditView.resx │ ├── RecordList.cs │ ├── RecordView.cs │ ├── RecordView.resx │ ├── Resources │ ├── App.ico │ ├── ArrowDown.png │ ├── ArrowUp.png │ ├── AtomicSmall.bmp │ ├── CollectionSmall.bmp │ ├── Copy.png │ ├── Delete.bmp │ ├── Delete.png │ ├── ExternalLink.bmp │ ├── FWFirstArrow.bmp │ ├── FWLastArrow.bmp │ ├── FWLeftArrow.bmp │ ├── FWRightArrow.bmp │ ├── Grammar 32.ico │ ├── HistoryBack.bmp │ ├── HistoryForward.bmp │ ├── Lexicon 32.ico │ ├── Lists 32.ico │ ├── Pencil.png │ ├── Refresh.bmp │ ├── Reset.png │ ├── SendReceiveGetArrow.svg │ ├── SendReceiveGetArrow16x16.png │ ├── SendReceiveGetArrow32x32.png │ ├── SideBySideView.bmp │ ├── SpecialCharacter.bmp │ ├── Sync.png │ ├── Texts 32.ico │ ├── Words 32.ico │ ├── folderLarge.bmp │ ├── ramp.png │ ├── sendReceive.svg │ └── sendReceive16x16.png │ ├── ReversalIndexServices.cs │ ├── SemanticDomainRdeTreeBarHandler.cs │ ├── SilErrorReportingAdapter.cs │ ├── StringFragment.cs │ ├── SubitemRecordClerk.cs │ ├── TextListeners.cs │ ├── TreeBarHandlerUtils.cs │ ├── UnicodeCharacterEditingHelper.cs │ ├── UploadToWebonaryController.cs │ ├── UploadToWebonaryDlg.Designer.cs │ ├── UploadToWebonaryDlg.cs │ ├── UploadToWebonaryDlg.resx │ ├── UploadToWebonaryModel.cs │ ├── WebonaryClient.cs │ ├── WebonaryLogViewer.Designer.cs │ ├── WebonaryLogViewer.cs │ ├── WebonaryLogViewer.resx │ ├── WebonaryUploadLog.cs │ ├── WordStyleCollection.cs │ ├── WordStylesGenerator.cs │ ├── WordsUsedOnlyElsewhereFilter.cs │ ├── XWorksViewBase.cs │ ├── XWorksViewBase.resx │ ├── XhtmlDocView.cs │ ├── XhtmlRecordDocView.cs │ ├── XmlDiagnosticsDlg.Designer.cs │ ├── XmlDiagnosticsDlg.cs │ ├── XmlDiagnosticsDlg.resx │ ├── XmlDocConfigureDlg.Designer.cs │ ├── XmlDocConfigureDlg.cs │ ├── XmlDocConfigureDlg.resx │ ├── XmlDocView.cs │ ├── XmlDocView.resx │ ├── xWorks.csproj │ ├── xWorksStrings.Designer.cs │ ├── xWorksStrings.resx │ └── xWorksTests │ ├── AddCustomFieldDlgTests.cs │ ├── AllReversalEntriesRecordListTests.cs │ ├── ArchivingTests.cs │ ├── BulkEditBarTests.cs │ ├── ConfigurableDictionaryNodeTests.cs │ ├── ConfiguredLcmGeneratorTests.cs │ ├── ConfiguredLcmUsfmGeneratorTests.cs │ ├── ConfiguredXHTMLGeneratorClassifiedTests.cs │ ├── ConfiguredXHTMLGeneratorReversalTests.cs │ ├── ConfiguredXHTMLGeneratorTestHelpers.cs │ ├── ConfiguredXHTMLGeneratorTests.cs │ ├── CssGeneratorTests.cs │ ├── CustomListDlgTests.cs │ ├── DeleteCustomListTests.cs │ ├── DictConfigModelExtTests.cs │ ├── DictionaryConfigManagerTests.cs │ ├── DictionaryConfigViewerStub.cs │ ├── DictionaryConfigurationControllerTests.cs │ ├── DictionaryConfigurationImportControllerTests.cs │ ├── DictionaryConfigurationListenerTests.cs │ ├── DictionaryConfigurationManagerControllerTests.cs │ ├── DictionaryConfigurationMigrators │ ├── DictionaryConfigurationMigratorTests.cs │ ├── FirstAlphaMigratorTests.cs │ ├── FirstBetaMigratorTests.cs │ ├── PreHistoricMigratorTests.cs │ └── StubContentControlProvider.cs │ ├── DictionaryConfigurationModelTests.cs │ ├── DictionaryConfigurationUtilsTests.cs │ ├── DictionaryDetailsControllerTests.cs │ ├── DictionaryExportServiceTests.cs │ ├── DictionaryNodeOptionsTests.cs │ ├── DictionaryPublicationDecoratorTests.cs │ ├── ExportDialogTests.cs │ ├── GenericUITests.cs │ ├── HeadwordNumbersControllerTests.cs │ ├── InterestingTextsTests.cs │ ├── ItemClickedTests.cs │ ├── LcmJsonGeneratorTests.cs │ ├── LcmWordGeneratorTests.cs │ ├── MacroListenerTests.cs │ ├── RecordListTests.cs │ ├── ReversalIndexServicesTests.cs │ ├── TestData │ ├── AudioFiles │ │ └── abu2.wav │ ├── ConfigurationSettings │ │ ├── Dictionary │ │ │ ├── .gitignore │ │ │ └── ProjectDictionaryOverrides.css │ │ └── ReversalIndex │ │ │ └── ProjectReversalOverrides.css │ └── ImageFiles │ │ └── test_auth_copy_license.jpg │ ├── TreeBarHandlerUtilsTests.cs │ ├── UnicodeCharacterEditingHelperTests.cs │ ├── UploadToWebonaryControllerTests.cs │ ├── UploadToWebonaryModelTests.cs │ ├── WordsUsedOnlyElsewhereFilterTests.cs │ ├── XWorksAppTestBase.cs │ ├── XhtmlDocViewTests.cs │ ├── lubwisi-d-new-bad.zip │ ├── lubwisi-d-new.zip │ ├── strings-en.xml │ ├── strings-es-MX.xml │ ├── strings-fr.xml │ └── xWorksTests.csproj ├── TestLangProj ├── ConfigurationSettings │ ├── Settings.xml │ └── db$local$Settings.xml ├── Temp │ └── entries_SortSeq.fwss ├── TestLangProj.fwdata └── WritingSystemStore │ ├── ar-IQ.ldml │ ├── de.ldml │ ├── dv.ldml │ ├── en.ldml │ ├── es.ldml │ ├── fr-fonipa.ldml │ ├── fr.ldml │ ├── grc.ldml │ ├── hbo.ldml │ ├── pt.ldml │ ├── qaa-Zxxx-x-kal-audio.ldml │ ├── qaa-fonipa-x-kal.ldml │ ├── qaa-x-fwt.ldml │ ├── qaa-x-got.ldml │ ├── qaa-x-kal.ldml │ ├── qaa-x-pig.ldml │ ├── qaa-x-sim.ldml │ ├── qaa-x-sta.ldml │ └── zh-CN.ldml ├── acknowledgments.md ├── agent-build-fw.sh ├── crowdin.json ├── environ ├── environ-other ├── environ-xulrunner ├── fw.code-workspace ├── resources ├── App.ico └── Installer.ico └── vagrant ├── .gitignore └── Vagrantfile /.GitHub/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.GitHub/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Bin/BCopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/BCopy.exe -------------------------------------------------------------------------------- /Bin/CollectCppUnitTests.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/CollectCppUnitTests.exe -------------------------------------------------------------------------------- /Bin/CollectUnit++Tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/CollectUnit++Tests.cmd -------------------------------------------------------------------------------- /Bin/CollectUnit++Tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/CollectUnit++Tests.sh -------------------------------------------------------------------------------- /Bin/FixGenComHeaderFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/FixGenComHeaderFile.exe -------------------------------------------------------------------------------- /Bin/GenerateFwSchema.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/GenerateFwSchema.exe -------------------------------------------------------------------------------- /Bin/Interop.IWshRuntimeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/Interop.IWshRuntimeLibrary.dll -------------------------------------------------------------------------------- /Bin/LocaleStrings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/LocaleStrings.exe -------------------------------------------------------------------------------- /Bin/Mktstw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/Mktstw.bat -------------------------------------------------------------------------------- /Bin/MsHtmHstInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/MsHtmHstInterop.dll -------------------------------------------------------------------------------- /Bin/Po2Xml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/Po2Xml.exe -------------------------------------------------------------------------------- /Bin/ProcessLanguagesBld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/ProcessLanguagesBld.exe -------------------------------------------------------------------------------- /Bin/ReadKey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/ReadKey.exe -------------------------------------------------------------------------------- /Bin/RemakeFw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/RemakeFw.bat -------------------------------------------------------------------------------- /Bin/Rhino/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/Rhino/Rhino.Mocks.dll -------------------------------------------------------------------------------- /Bin/WriteKey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/WriteKey.exe -------------------------------------------------------------------------------- /Bin/WriteKey.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/WriteKey.exe.manifest -------------------------------------------------------------------------------- /Bin/_EnsureRoot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/_EnsureRoot.bat -------------------------------------------------------------------------------- /Bin/abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/abs.py -------------------------------------------------------------------------------- /Bin/ilrepack-assemblies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/ilrepack-assemblies -------------------------------------------------------------------------------- /Bin/list-assembly-references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/list-assembly-references -------------------------------------------------------------------------------- /Bin/md5sums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/md5sums.exe -------------------------------------------------------------------------------- /Bin/mkGenLib-tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkGenLib-tst.bat -------------------------------------------------------------------------------- /Bin/mkGenLib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkGenLib.bat -------------------------------------------------------------------------------- /Bin/mkaft.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkaft.bat -------------------------------------------------------------------------------- /Bin/mkall-tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkall-tst.bat -------------------------------------------------------------------------------- /Bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkdir.exe -------------------------------------------------------------------------------- /Bin/mkdp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkdp.bat -------------------------------------------------------------------------------- /Bin/mkecob.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkecob.bat -------------------------------------------------------------------------------- /Bin/mkfwk-tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkfwk-tst.bat -------------------------------------------------------------------------------- /Bin/mkfwk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkfwk.bat -------------------------------------------------------------------------------- /Bin/mkgrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkgrc.bat -------------------------------------------------------------------------------- /Bin/mkgre.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkgre.bat -------------------------------------------------------------------------------- /Bin/mkhv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkhv.bat -------------------------------------------------------------------------------- /Bin/mkhw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkhw.bat -------------------------------------------------------------------------------- /Bin/mkhwt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkhwt.bat -------------------------------------------------------------------------------- /Bin/mkhwv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkhwv.bat -------------------------------------------------------------------------------- /Bin/mkhwx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkhwx.bat -------------------------------------------------------------------------------- /Bin/mklg-tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mklg-tst.bat -------------------------------------------------------------------------------- /Bin/mklg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mklg.bat -------------------------------------------------------------------------------- /Bin/mklgt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mklgt.bat -------------------------------------------------------------------------------- /Bin/mktlbs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mktlbs.bat -------------------------------------------------------------------------------- /Bin/mktsth.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mktsth.bat -------------------------------------------------------------------------------- /Bin/mktv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mktv.bat -------------------------------------------------------------------------------- /Bin/mkvw-tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkvw-tst.bat -------------------------------------------------------------------------------- /Bin/mkvw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/mkvw.bat -------------------------------------------------------------------------------- /Bin/nmock/NMock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/NMock.dll -------------------------------------------------------------------------------- /Bin/nmock/NMock.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/NMock.pdb -------------------------------------------------------------------------------- /Bin/nmock/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/LICENSE.txt -------------------------------------------------------------------------------- /Bin/nmock/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/README.txt -------------------------------------------------------------------------------- /Bin/nmock/src/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/build.bat -------------------------------------------------------------------------------- /Bin/nmock/src/ccnet/ccnet-nmock.bat: -------------------------------------------------------------------------------- 1 | title CCNET 2 | "C:\Program Files\CruiseControl.NET\bin\ccnet.exe" -------------------------------------------------------------------------------- /Bin/nmock/src/ccnet/ccnet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/ccnet/ccnet.config -------------------------------------------------------------------------------- /Bin/nmock/src/lib/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/lib/nunit.util.dll -------------------------------------------------------------------------------- /Bin/nmock/src/nmock.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/nmock.build -------------------------------------------------------------------------------- /Bin/nmock/src/sample/build.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/sample/build.build -------------------------------------------------------------------------------- /Bin/nmock/src/sample/sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/sample/sample.csproj -------------------------------------------------------------------------------- /Bin/nmock/src/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bin/nmock/src/src/NMock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/NMock.csproj -------------------------------------------------------------------------------- /Bin/nmock/src/src/NMock/IMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/NMock/IMethod.cs -------------------------------------------------------------------------------- /Bin/nmock/src/src/NMock/IMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/NMock/IMock.cs -------------------------------------------------------------------------------- /Bin/nmock/src/src/NMock/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/NMock/Method.cs -------------------------------------------------------------------------------- /Bin/nmock/src/src/NMock/Mock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/NMock/Mock.cs -------------------------------------------------------------------------------- /Bin/nmock/src/src/src.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/src/src.csproj -------------------------------------------------------------------------------- /Bin/nmock/src/test/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/test/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bin/nmock/src/test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/test/test.csproj -------------------------------------------------------------------------------- /Bin/nmock/src/tools/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/tools/NAnt.Core.dll -------------------------------------------------------------------------------- /Bin/nmock/src/tools/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/tools/NDoc.Core.dll -------------------------------------------------------------------------------- /Bin/nmock/src/tools/nant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/tools/nant.exe -------------------------------------------------------------------------------- /Bin/nmock/src/tools/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nmock/src/tools/nunit.core.dll -------------------------------------------------------------------------------- /Bin/nunitforms/FormsTester.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/nunitforms/FormsTester.dll -------------------------------------------------------------------------------- /Bin/saxon/instant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/instant.html -------------------------------------------------------------------------------- /Bin/saxon/saxon-jdom.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/saxon-jdom.jar -------------------------------------------------------------------------------- /Bin/saxon/saxon-xml-apis.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/saxon-xml-apis.jar -------------------------------------------------------------------------------- /Bin/saxon/saxon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/saxon.exe -------------------------------------------------------------------------------- /Bin/saxon/saxon.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/saxon.jar -------------------------------------------------------------------------------- /Bin/saxon/saxon6-5-4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/saxon/saxon6-5-4.zip -------------------------------------------------------------------------------- /Bin/testWrapper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/testWrapper.cmd -------------------------------------------------------------------------------- /Bin/wrapper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bin/wrapper.cmd -------------------------------------------------------------------------------- /Bld/_init.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bld/_init.mak -------------------------------------------------------------------------------- /Bld/_mkcore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bld/_mkcore.bat -------------------------------------------------------------------------------- /Bld/_names.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bld/_names.mak -------------------------------------------------------------------------------- /Bld/_rule.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bld/_rule.mak -------------------------------------------------------------------------------- /Bld/_targ.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Bld/_targ.mak -------------------------------------------------------------------------------- /Build/Agent/install-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Agent/install-deps -------------------------------------------------------------------------------- /Build/CopyInterpret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/CopyInterpret.js -------------------------------------------------------------------------------- /Build/FieldWorks.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/FieldWorks.proj -------------------------------------------------------------------------------- /Build/FwBuildTasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/FwBuildTasks.targets -------------------------------------------------------------------------------- /Build/Installer.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Installer.targets -------------------------------------------------------------------------------- /Build/LibraryDevelopment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/LibraryDevelopment.targets -------------------------------------------------------------------------------- /Build/LocalLibrary.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/LocalLibrary.targets -------------------------------------------------------------------------------- /Build/Localize.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Localize.targets -------------------------------------------------------------------------------- /Build/NUnitReport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/NUnitReport.exe -------------------------------------------------------------------------------- /Build/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/NuGet.targets -------------------------------------------------------------------------------- /Build/RegFree.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/RegFree.targets -------------------------------------------------------------------------------- /Build/RemoveAsterisks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/RemoveAsterisks.js -------------------------------------------------------------------------------- /Build/SetupInclude.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/SetupInclude.targets -------------------------------------------------------------------------------- /Build/Src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/.editorconfig -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/**/* -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/Clouseau.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/Clouseau.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/Make.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/Make.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/Misc.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/README.md -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/RegFree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/RegFree.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/TestTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/TestTask.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/Unitpp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/Unitpp.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/WxsToWxi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/WxsToWxi.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/ZipTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/ZipTask.cs -------------------------------------------------------------------------------- /Build/Src/FwBuildTasks/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/FwBuildTasks/app.config -------------------------------------------------------------------------------- /Build/Src/NUnitReport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/NUnitReport/Program.cs -------------------------------------------------------------------------------- /Build/Src/NUnitReport/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Src/NUnitReport/app.config -------------------------------------------------------------------------------- /Build/TestTimeoutValues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/TestTimeoutValues.xml -------------------------------------------------------------------------------- /Build/Windows.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/Windows.targets -------------------------------------------------------------------------------- /Build/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/build -------------------------------------------------------------------------------- /Build/build-recent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/build-recent -------------------------------------------------------------------------------- /Build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/build.bat -------------------------------------------------------------------------------- /Build/build64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/build64.bat -------------------------------------------------------------------------------- /Build/buildLocalLibraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/buildLocalLibraries.sh -------------------------------------------------------------------------------- /Build/bumpVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/bumpVersion.py -------------------------------------------------------------------------------- /Build/mkall.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/mkall.targets -------------------------------------------------------------------------------- /Build/multitry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/multitry -------------------------------------------------------------------------------- /Build/nuget-common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/nuget-common/packages.config -------------------------------------------------------------------------------- /Build/releaseTagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/releaseTagger.py -------------------------------------------------------------------------------- /Build/run-in-environ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/run-in-environ -------------------------------------------------------------------------------- /Build/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Build/vswhere.exe -------------------------------------------------------------------------------- /DistFiles/Aga.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Aga.Controls.dll -------------------------------------------------------------------------------- /DistFiles/Arrow by character.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Arrow by character.reg -------------------------------------------------------------------------------- /DistFiles/CommonLocalizations/.gitignore: -------------------------------------------------------------------------------- 1 | *.xlf -------------------------------------------------------------------------------- /DistFiles/ConvertLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ConvertLib.dll -------------------------------------------------------------------------------- /DistFiles/ConvertLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ConvertLib.pdb -------------------------------------------------------------------------------- /DistFiles/Converter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Converter.exe -------------------------------------------------------------------------------- /DistFiles/Converter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Converter.pdb -------------------------------------------------------------------------------- /DistFiles/ConverterConsole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ConverterConsole.exe -------------------------------------------------------------------------------- /DistFiles/ConverterConsole.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ConverterConsole.pdb -------------------------------------------------------------------------------- /DistFiles/DisableSplashScreen.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/DisableSplashScreen.reg -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/eng.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/eng.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/lxx.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/lxx.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/org.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/org.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/oth.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/oth.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/rsc.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/rsc.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/rso.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/rso.vrs -------------------------------------------------------------------------------- /DistFiles/Editorial Checks/vul.vrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Editorial Checks/vul.vrs -------------------------------------------------------------------------------- /DistFiles/Fonts/Raw/Quivira.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Fonts/Raw/Quivira.otf -------------------------------------------------------------------------------- /DistFiles/Fonts/Raw/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Fonts/Raw/ReadMe.txt -------------------------------------------------------------------------------- /DistFiles/FormLanguageSwitch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/FormLanguageSwitch.dll -------------------------------------------------------------------------------- /DistFiles/FwTMDefinition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/FwTMDefinition.xml -------------------------------------------------------------------------------- /DistFiles/GAFAWSAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/GAFAWSAnalysis.dll -------------------------------------------------------------------------------- /DistFiles/Graphite/GDL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/GDL.pdf -------------------------------------------------------------------------------- /DistFiles/Graphite/ac/allcaps.gdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ac/allcaps.gdl -------------------------------------------------------------------------------- /DistFiles/Graphite/ac/makecaps.wpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ac/makecaps.wpx -------------------------------------------------------------------------------- /DistFiles/Graphite/ac/stddr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ac/stddr.ttf -------------------------------------------------------------------------------- /DistFiles/Graphite/gdlpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/gdlpp.exe -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/IPA93.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/IPA93.BMP -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/Ipa93_5.kmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/Ipa93_5.kmn -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/Ipa93_5.kmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/Ipa93_5.kmx -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/SILDU.gdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/SILDU.gdl -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/SILDUb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/SILDUb.xml -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/SILDUb2.gdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/SILDUb2.gdh -------------------------------------------------------------------------------- /DistFiles/Graphite/ipa/SILDUb3.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/ipa/SILDUb3.TTF -------------------------------------------------------------------------------- /DistFiles/Graphite/pl/piglatin.gdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/pl/piglatin.gdl -------------------------------------------------------------------------------- /DistFiles/Graphite/pl/piglatin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/pl/piglatin.ttf -------------------------------------------------------------------------------- /DistFiles/Graphite/sd/stakdiac.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/sd/stakdiac.bmp -------------------------------------------------------------------------------- /DistFiles/Graphite/sd/stakdiac.gdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/sd/stakdiac.gdl -------------------------------------------------------------------------------- /DistFiles/Graphite/sd/stakdiac.kmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/sd/stakdiac.kmn -------------------------------------------------------------------------------- /DistFiles/Graphite/sd/stakdiac.kmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/sd/stakdiac.kmx -------------------------------------------------------------------------------- /DistFiles/Graphite/sd/stakdiac.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/sd/stakdiac.ttf -------------------------------------------------------------------------------- /DistFiles/Graphite/stddef.gdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Graphite/stddef.gdh -------------------------------------------------------------------------------- /DistFiles/Language Explorer/Export Templates/Interlinear/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /DistFiles/LinqBridge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/LinqBridge.dll -------------------------------------------------------------------------------- /DistFiles/MSSQLMigration/db.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/MSSQLMigration/db.exe -------------------------------------------------------------------------------- /DistFiles/PaToFdoInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/PaToFdoInterfaces.dll -------------------------------------------------------------------------------- /DistFiles/Parts/Standard.fwlayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Parts/Standard.fwlayout -------------------------------------------------------------------------------- /DistFiles/Parts/StandardParts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Parts/StandardParts.xml -------------------------------------------------------------------------------- /DistFiles/Projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Projects/.gitignore -------------------------------------------------------------------------------- /DistFiles/QuotationLanguages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/QuotationLanguages.xml -------------------------------------------------------------------------------- /DistFiles/RngValidate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/RngValidate.exe -------------------------------------------------------------------------------- /DistFiles/SFconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/SFconv.exe -------------------------------------------------------------------------------- /DistFiles/ScrBookRef.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ScrBookRef.dtd -------------------------------------------------------------------------------- /DistFiles/ScrBookRef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ScrBookRef.xml -------------------------------------------------------------------------------- /DistFiles/Tamir.SharpSSH.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Tamir.SharpSSH.dll -------------------------------------------------------------------------------- /DistFiles/Templates/.gitignore: -------------------------------------------------------------------------------- 1 | LocalizedLists*.zip -------------------------------------------------------------------------------- /DistFiles/Templates/OCM-Frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/OCM-Frame.xml -------------------------------------------------------------------------------- /DistFiles/Templates/OCM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/OCM.xml -------------------------------------------------------------------------------- /DistFiles/Templates/ar.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ar.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/az.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/az.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/bn.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/bn.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/de.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/de.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/en.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/en.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/es.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/es.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/fa.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/fa.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/fr.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/fr.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/grc.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/grc.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/hbo.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/hbo.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/hi.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/hi.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/hu.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/hu.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/id.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/id.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/km.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/km.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ko.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ko.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ml.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ml.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ms.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ms.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/my.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/my.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ne.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ne.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/pt.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/pt.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ru.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ru.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/rw.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/rw.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/sw.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/sw.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ta.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ta.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/te.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/te.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/th.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/th.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/tr.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/tr.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/ur.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/ur.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/vi.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/vi.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/yo.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/yo.ldml -------------------------------------------------------------------------------- /DistFiles/Templates/zh-CN.ldml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Templates/zh-CN.ldml -------------------------------------------------------------------------------- /DistFiles/TextFormStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/TextFormStorage.dll -------------------------------------------------------------------------------- /DistFiles/TxtConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/TxtConv.exe -------------------------------------------------------------------------------- /DistFiles/Windows/EC Common/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /DistFiles/Windows/EC/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /DistFiles/Windows/EC/EC/Plugins/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /DistFiles/Winterdom.IO.FileMap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/Winterdom.IO.FileMap.dll -------------------------------------------------------------------------------- /DistFiles/XceedZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/XceedZip.dll -------------------------------------------------------------------------------- /DistFiles/ZEdit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ZEdit.exe -------------------------------------------------------------------------------- /DistFiles/ZeditColors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/ZeditColors.txt -------------------------------------------------------------------------------- /DistFiles/aspell-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/aspell-15.dll -------------------------------------------------------------------------------- /DistFiles/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/iconv.dll -------------------------------------------------------------------------------- /DistFiles/iso-8859-1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/iso-8859-1.map -------------------------------------------------------------------------------- /DistFiles/iso-8859-1.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/iso-8859-1.tec -------------------------------------------------------------------------------- /DistFiles/libglib-2.0-0-vs8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/libglib-2.0-0-vs8.dll -------------------------------------------------------------------------------- /DistFiles/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/libglib-2.0-0.dll -------------------------------------------------------------------------------- /DistFiles/libgmodule-2.0-0-vs8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/libgmodule-2.0-0-vs8.dll -------------------------------------------------------------------------------- /DistFiles/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /DistFiles/libxample64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/libxample64.so -------------------------------------------------------------------------------- /DistFiles/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/log4net.dll -------------------------------------------------------------------------------- /DistFiles/strings-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/strings-en.txt -------------------------------------------------------------------------------- /DistFiles/unicows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/unicows.dll -------------------------------------------------------------------------------- /DistFiles/vs_piaredist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/vs_piaredist.exe -------------------------------------------------------------------------------- /DistFiles/wrtXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/wrtXML.dll -------------------------------------------------------------------------------- /DistFiles/xample32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/xample32.dll -------------------------------------------------------------------------------- /DistFiles/xample64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/xample64.dll -------------------------------------------------------------------------------- /DistFiles/xmlparse_u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/DistFiles/xmlparse_u.dll -------------------------------------------------------------------------------- /FLExInstaller/CustomComponents.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/CustomComponents.wxi -------------------------------------------------------------------------------- /FLExInstaller/CustomFeatures.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/CustomFeatures.wxi -------------------------------------------------------------------------------- /FLExInstaller/Fonts.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/Fonts.wxi -------------------------------------------------------------------------------- /FLExInstaller/Overrides.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/Overrides.wxi -------------------------------------------------------------------------------- /FLExInstaller/Redistributables.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/Redistributables.wxi -------------------------------------------------------------------------------- /FLExInstaller/UpdateInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/UpdateInfo.xml -------------------------------------------------------------------------------- /FLExInstaller/UpdateInfoAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/UpdateInfoAlpha.xml -------------------------------------------------------------------------------- /FLExInstaller/UpdateInfoBeta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FLExInstaller/UpdateInfoBeta.xml -------------------------------------------------------------------------------- /FW.6.0.ReSharper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FW.6.0.ReSharper -------------------------------------------------------------------------------- /FW.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/FW.sln.DotSettings -------------------------------------------------------------------------------- /Include/CCDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/CCDLL.h -------------------------------------------------------------------------------- /Include/CExPat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/CExPat.h -------------------------------------------------------------------------------- /Include/CXMLDataRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/CXMLDataRec.h -------------------------------------------------------------------------------- /Include/HtmlHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/HtmlHelp.h -------------------------------------------------------------------------------- /Include/IcuCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/IcuCommon.h -------------------------------------------------------------------------------- /Include/TECkit_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/TECkit_Common.h -------------------------------------------------------------------------------- /Include/TECkit_Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/TECkit_Compiler.h -------------------------------------------------------------------------------- /Include/TECkit_Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/TECkit_Engine.h -------------------------------------------------------------------------------- /Include/unicode/.gitignore: -------------------------------------------------------------------------------- 1 | *.h -------------------------------------------------------------------------------- /Include/unicode/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/unicode/Readme.md -------------------------------------------------------------------------------- /Include/unit++/optmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/unit++/optmap.h -------------------------------------------------------------------------------- /Include/unit++/unit++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/unit++/unit++.h -------------------------------------------------------------------------------- /Include/wrtXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/wrtXML.h -------------------------------------------------------------------------------- /Include/wrtXML.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/wrtXML.tlb -------------------------------------------------------------------------------- /Include/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Include/xmlparse.h -------------------------------------------------------------------------------- /Lib/CC32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/CC32.lib -------------------------------------------------------------------------------- /Lib/Common/Interop.MSXML2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/Common/Interop.MSXML2.dll -------------------------------------------------------------------------------- /Lib/Common/Interop.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/Common/Interop.Utility.dll -------------------------------------------------------------------------------- /Lib/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/Directory.Build.targets -------------------------------------------------------------------------------- /Lib/HtmlHelp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/HtmlHelp.lib -------------------------------------------------------------------------------- /Lib/TECkit_Compiler_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/TECkit_Compiler_x86.lib -------------------------------------------------------------------------------- /Lib/TECkit_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/TECkit_x86.lib -------------------------------------------------------------------------------- /Lib/debug/ECInterfaces.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/ECInterfaces.tlb -------------------------------------------------------------------------------- /Lib/debug/ParserObject.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/ParserObject.lib -------------------------------------------------------------------------------- /Lib/debug/cport.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/cport.lib -------------------------------------------------------------------------------- /Lib/debug/wrtXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/wrtXML.dll -------------------------------------------------------------------------------- /Lib/debug/xmlparse-utf16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/xmlparse-utf16.lib -------------------------------------------------------------------------------- /Lib/debug/xmlparse-utf16.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/xmlparse-utf16.pdb -------------------------------------------------------------------------------- /Lib/debug/xmlparse.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/xmlparse.lib -------------------------------------------------------------------------------- /Lib/debug/xmlparse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/debug/xmlparse.pdb -------------------------------------------------------------------------------- /Lib/libenchant.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/libenchant.lib -------------------------------------------------------------------------------- /Lib/release/ParserObject.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/ParserObject.lib -------------------------------------------------------------------------------- /Lib/release/adodb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/adodb.dll -------------------------------------------------------------------------------- /Lib/release/cport.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/cport.lib -------------------------------------------------------------------------------- /Lib/release/wrtXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/wrtXML.dll -------------------------------------------------------------------------------- /Lib/release/xmlparse-utf16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/xmlparse-utf16.lib -------------------------------------------------------------------------------- /Lib/release/xmlparse.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/release/xmlparse.lib -------------------------------------------------------------------------------- /Lib/src/EC/README: -------------------------------------------------------------------------------- 1 | The current source for EncConverters is in hg.palaso.org/ec-main 2 | -------------------------------------------------------------------------------- /Lib/src/FormLanguageSwitch/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/FormLanguageSwitch/License -------------------------------------------------------------------------------- /Lib/src/ObjectBrowser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ObjectBrowser/Program.cs -------------------------------------------------------------------------------- /Lib/src/ObjectBrowser/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ObjectBrowser/app.config -------------------------------------------------------------------------------- /Lib/src/OpenLibFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/OpenLibFiles.bat -------------------------------------------------------------------------------- /Lib/src/ParserObject/CExPat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/CExPat.cpp -------------------------------------------------------------------------------- /Lib/src/ParserObject/CExPat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/CExPat.h -------------------------------------------------------------------------------- /Lib/src/ParserObject/CXMLDataRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/CXMLDataRec.h -------------------------------------------------------------------------------- /Lib/src/ParserObject/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/StdAfx.cpp -------------------------------------------------------------------------------- /Lib/src/ParserObject/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/StdAfx.h -------------------------------------------------------------------------------- /Lib/src/ParserObject/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/common.h -------------------------------------------------------------------------------- /Lib/src/ParserObject/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/debug.h -------------------------------------------------------------------------------- /Lib/src/ParserObject/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ParserObject/main.h -------------------------------------------------------------------------------- /Lib/src/ScrChecks/ScrChecks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ScrChecks/ScrChecks.csproj -------------------------------------------------------------------------------- /Lib/src/ScrChecks/TextInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/ScrChecks/TextInventory.cs -------------------------------------------------------------------------------- /Lib/src/cport/cport.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/cport.dsw -------------------------------------------------------------------------------- /Lib/src/cport/cportlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/cportlib.dsp -------------------------------------------------------------------------------- /Lib/src/cport/cportlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/cportlib.vcproj -------------------------------------------------------------------------------- /Lib/src/cport/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/getopt.c -------------------------------------------------------------------------------- /Lib/src/cport/strpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/strpos.c -------------------------------------------------------------------------------- /Lib/src/cport/strrpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/strrpbrk.c -------------------------------------------------------------------------------- /Lib/src/cport/strrpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/cport/strrpos.c -------------------------------------------------------------------------------- /Lib/src/graphite2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/.gitattributes -------------------------------------------------------------------------------- /Lib/src/graphite2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/Makefile -------------------------------------------------------------------------------- /Lib/src/graphite2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/README -------------------------------------------------------------------------------- /Lib/src/graphite2/graphite2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/graphite2.mak -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Bidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Bidi.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Code.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Collider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Collider.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Face.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/FileFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/FileFace.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Font.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Pass.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Position.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/SegCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/SegCache.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Segment.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Silf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Silf.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Slot.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/Sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/Sparse.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/TtfUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/TtfUtil.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/UtfCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/UtfCodec.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/files.mk -------------------------------------------------------------------------------- /Lib/src/graphite2/src/files.mk.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/files.mk.win -------------------------------------------------------------------------------- /Lib/src/graphite2/src/gr_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/gr_face.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/gr_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/gr_font.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/gr_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/gr_slot.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Bidi.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Code.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Endian.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Error.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Face.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Font.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/List.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Main.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Pass.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Rule.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Silf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Silf.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Slot.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/Sparse.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/bits.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/debug.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/inc/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/inc/json.h -------------------------------------------------------------------------------- /Lib/src/graphite2/src/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/src/json.cpp -------------------------------------------------------------------------------- /Lib/src/graphite2/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/graphite2/update.sh -------------------------------------------------------------------------------- /Lib/src/unit++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/CMakeLists.txt -------------------------------------------------------------------------------- /Lib/src/unit++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/COPYING -------------------------------------------------------------------------------- /Lib/src/unit++/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/Changelog -------------------------------------------------------------------------------- /Lib/src/unit++/GlobalSetup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/GlobalSetup.cc -------------------------------------------------------------------------------- /Lib/src/unit++/GlobalTeardown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/GlobalTeardown.cc -------------------------------------------------------------------------------- /Lib/src/unit++/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/INSTALL -------------------------------------------------------------------------------- /Lib/src/unit++/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/Makefile.in -------------------------------------------------------------------------------- /Lib/src/unit++/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/README -------------------------------------------------------------------------------- /Lib/src/unit++/Test_gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/Test_gui.cc -------------------------------------------------------------------------------- /Lib/src/unit++/Test_optmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/Test_optmap.cc -------------------------------------------------------------------------------- /Lib/src/unit++/Test_unit++.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/Test_unit++.cc -------------------------------------------------------------------------------- /Lib/src/unit++/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/aclocal.m4 -------------------------------------------------------------------------------- /Lib/src/unit++/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/configure.ac -------------------------------------------------------------------------------- /Lib/src/unit++/fw_VersionInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/fw_VersionInfo -------------------------------------------------------------------------------- /Lib/src/unit++/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/gui.cc -------------------------------------------------------------------------------- /Lib/src/unit++/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/gui.h -------------------------------------------------------------------------------- /Lib/src/unit++/guitester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/guitester.cc -------------------------------------------------------------------------------- /Lib/src/unit++/guitester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/guitester.h -------------------------------------------------------------------------------- /Lib/src/unit++/html/HIER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/HIER.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/fail.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/icon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/icon1.gif -------------------------------------------------------------------------------- /Lib/src/unit++/html/icon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/icon2.gif -------------------------------------------------------------------------------- /Lib/src/unit++/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/index.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/main.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/optmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/optmap.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/suite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/suite.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/test.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/tester.html -------------------------------------------------------------------------------- /Lib/src/unit++/html/unitpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/html/unitpp.html -------------------------------------------------------------------------------- /Lib/src/unit++/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/main.cc -------------------------------------------------------------------------------- /Lib/src/unit++/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/main.h -------------------------------------------------------------------------------- /Lib/src/unit++/optmap-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/optmap-compat.h -------------------------------------------------------------------------------- /Lib/src/unit++/optmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/optmap.cc -------------------------------------------------------------------------------- /Lib/src/unit++/optmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/optmap.h -------------------------------------------------------------------------------- /Lib/src/unit++/tester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/tester.cc -------------------------------------------------------------------------------- /Lib/src/unit++/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/tester.h -------------------------------------------------------------------------------- /Lib/src/unit++/unit++-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unit++-compat.h -------------------------------------------------------------------------------- /Lib/src/unit++/unit++.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unit++.1 -------------------------------------------------------------------------------- /Lib/src/unit++/unit++.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unit++.3 -------------------------------------------------------------------------------- /Lib/src/unit++/unit++.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unit++.cc -------------------------------------------------------------------------------- /Lib/src/unit++/unit++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unit++.h -------------------------------------------------------------------------------- /Lib/src/unit++/unitpp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/unit++/unitpp.m4 -------------------------------------------------------------------------------- /Lib/src/xmlparse/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/ascii.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/asciitab.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/copying.txt -------------------------------------------------------------------------------- /Lib/src/xmlparse/expat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/expat.html -------------------------------------------------------------------------------- /Lib/src/xmlparse/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/iasciitab.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/latin1tab.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/nametab.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/utf8tab.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmldef.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmlparse.c -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmlparse.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmlrole.c -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmlrole.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmltok.c -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmltok.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmltok_impl.c -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmltok_impl.h -------------------------------------------------------------------------------- /Lib/src/xmlparse/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/src/xmlparse/xmltok_ns.c -------------------------------------------------------------------------------- /Lib/w95scm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Lib/w95scm.lib -------------------------------------------------------------------------------- /License.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/License.htm -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Src/AppCore/AfColorTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/AfColorTable.cpp -------------------------------------------------------------------------------- /Src/AppCore/AfColorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/AfColorTable.h -------------------------------------------------------------------------------- /Src/AppCore/AfDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/AfDef.h -------------------------------------------------------------------------------- /Src/AppCore/AfGfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/AfGfx.cpp -------------------------------------------------------------------------------- /Src/AppCore/AfGfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/AfGfx.h -------------------------------------------------------------------------------- /Src/AppCore/FwStyledText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/FwStyledText.cpp -------------------------------------------------------------------------------- /Src/AppCore/FwStyledText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/FwStyledText.h -------------------------------------------------------------------------------- /Src/AppCore/Res/AfApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/AfApp.rc -------------------------------------------------------------------------------- /Src/AppCore/Res/AfAppRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/AfAppRes.h -------------------------------------------------------------------------------- /Src/AppCore/Res/HelpAbout.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/HelpAbout.bmp -------------------------------------------------------------------------------- /Src/AppCore/Res/ImagesSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/ImagesSmall.bmp -------------------------------------------------------------------------------- /Src/AppCore/Res/StdBtns.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/StdBtns.bmp -------------------------------------------------------------------------------- /Src/AppCore/Res/TBarCopy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/TBarCopy.cur -------------------------------------------------------------------------------- /Src/AppCore/Res/TBarMove.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/TBarMove.cur -------------------------------------------------------------------------------- /Src/AppCore/Res/TBarNoDrop.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppCore/Res/TBarNoDrop.cur -------------------------------------------------------------------------------- /Src/AppForTests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AppForTests.config -------------------------------------------------------------------------------- /Src/AssemblyInfoForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/AssemblyInfoForTests.cs -------------------------------------------------------------------------------- /Src/CacheLight/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/CacheLight/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/CacheLight/MetaDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/CacheLight/MetaDataCache.cs -------------------------------------------------------------------------------- /Src/CacheLight/RealDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/CacheLight/RealDataCache.cs -------------------------------------------------------------------------------- /Src/CacheLight/TsMultiString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/CacheLight/TsMultiString.cs -------------------------------------------------------------------------------- /Src/Cellar/FwXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Cellar/FwXml.cpp -------------------------------------------------------------------------------- /Src/Cellar/FwXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Cellar/FwXml.h -------------------------------------------------------------------------------- /Src/Cellar/FwXmlString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Cellar/FwXmlString.cpp -------------------------------------------------------------------------------- /Src/Common/Filters/IntFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/Filters/IntFinder.cs -------------------------------------------------------------------------------- /Src/Common/Framework/FwApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/Framework/FwApp.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/Benchmark.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/CachePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/CachePair.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/DriveUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/DriveUtil.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/Folders.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/FwSubKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/FwSubKey.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/FwUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/FwUpdater.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/FwUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/FwUtils.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/HiMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/HiMetric.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/IdleQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/IdleQueue.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/MergeSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/MergeSort.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/Property.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/Publisher.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/ShowHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/ShowHelp.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/Unicode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/Unicode.cs -------------------------------------------------------------------------------- /Src/Common/FwUtils/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/FwUtils/app.config -------------------------------------------------------------------------------- /Src/Common/RootSite/FwBaseVc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/RootSite/FwBaseVc.cs -------------------------------------------------------------------------------- /Src/Common/RootSite/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/RootSite/IApp.cs -------------------------------------------------------------------------------- /Src/Common/RootSite/RootSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/RootSite/RootSite.cs -------------------------------------------------------------------------------- /Src/Common/RootSite/StVc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Common/RootSite/StVc.cs -------------------------------------------------------------------------------- /Src/DbExtend/xp_IsMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/DbExtend/xp_IsMatch.cpp -------------------------------------------------------------------------------- /Src/DebugProcs/DebugProcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/DebugProcs/DebugProcs.cpp -------------------------------------------------------------------------------- /Src/DebugProcs/DebugProcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/DebugProcs/DebugProcs.h -------------------------------------------------------------------------------- /Src/DebugProcs/DebugProcs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/DebugProcs/DebugProcs.mak -------------------------------------------------------------------------------- /Src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Directory.Build.targets -------------------------------------------------------------------------------- /Src/Documentation.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Documentation.vcproj -------------------------------------------------------------------------------- /Src/FXT/FxtDll/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtDll/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/FXT/FxtDll/FxtDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtDll/FxtDll.csproj -------------------------------------------------------------------------------- /Src/FXT/FxtDll/XDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtDll/XDumper.cs -------------------------------------------------------------------------------- /Src/FXT/FxtDll/XUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtDll/XUpdater.cs -------------------------------------------------------------------------------- /Src/FXT/FxtExe/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtExe/App.ico -------------------------------------------------------------------------------- /Src/FXT/FxtExe/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtExe/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/FXT/FxtExe/FxtExe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtExe/FxtExe.csproj -------------------------------------------------------------------------------- /Src/FXT/FxtExe/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtExe/main.cs -------------------------------------------------------------------------------- /Src/FXT/FxtReference.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FXT/FxtReference.doc -------------------------------------------------------------------------------- /Src/FdoUi/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/FdoUi/BulkPosEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/BulkPosEditor.cs -------------------------------------------------------------------------------- /Src/FdoUi/DummyCmObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/DummyCmObject.cs -------------------------------------------------------------------------------- /Src/FdoUi/EXCLEM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/EXCLEM.ICO -------------------------------------------------------------------------------- /Src/FdoUi/FdoUi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/FdoUi.csproj -------------------------------------------------------------------------------- /Src/FdoUi/FdoUiCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/FdoUiCore.cs -------------------------------------------------------------------------------- /Src/FdoUi/FdoUiStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/FdoUiStrings.resx -------------------------------------------------------------------------------- /Src/FdoUi/FsFeatDefnUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/FsFeatDefnUi.cs -------------------------------------------------------------------------------- /Src/FdoUi/FwLcmUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/FwLcmUI.cs -------------------------------------------------------------------------------- /Src/FdoUi/LexEntryUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/LexEntryUi.cs -------------------------------------------------------------------------------- /Src/FdoUi/LexPronunciationUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/LexPronunciationUi.cs -------------------------------------------------------------------------------- /Src/FdoUi/PartOfSpeechUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/PartOfSpeechUi.cs -------------------------------------------------------------------------------- /Src/FdoUi/ProgressBarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/ProgressBarWrapper.cs -------------------------------------------------------------------------------- /Src/FdoUi/TypeAheadSupportVc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/TypeAheadSupportVc.cs -------------------------------------------------------------------------------- /Src/FdoUi/WfiWordformUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FdoUi/WfiWordformUi.cs -------------------------------------------------------------------------------- /Src/FieldWorks.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FieldWorks.snk -------------------------------------------------------------------------------- /Src/FwCoreDlgs/AddCnvtrDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/AddCnvtrDlg.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/AddCnvtrDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/AddCnvtrDlg.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/AddNewUserDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/AddNewUserDlg.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/ConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/ConverterTest.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/ErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/ErrorMessage.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwChooserDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwChooserDlg.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwCoreDlgs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwCoreDlgs.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwFontDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwFontDialog.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwHelpAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwHelpAbout.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwHelpAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwHelpAbout.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwStylesDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwStylesDlg.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/FwStylesDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/FwStylesDlg.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/HelperMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/HelperMenu.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/IUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/IUtility.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/MessageBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/MessageBoxes.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/Strings.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/UtilityDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/UtilityDlg.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/UtilityDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/UtilityDlg.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/WizardStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/WizardStep.cs -------------------------------------------------------------------------------- /Src/FwCoreDlgs/WizardStep.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/WizardStep.resx -------------------------------------------------------------------------------- /Src/FwCoreDlgs/chorus16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/chorus16.png -------------------------------------------------------------------------------- /Src/FwCoreDlgs/chorus32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/chorus32.png -------------------------------------------------------------------------------- /Src/FwCoreDlgs/res/SIL logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/res/SIL logo.svg -------------------------------------------------------------------------------- /Src/FwCoreDlgs/res/SILLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwCoreDlgs/res/SILLogo.ico -------------------------------------------------------------------------------- /Src/FwResources/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwResources/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/FwResources/FwStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwResources/FwStrings.resx -------------------------------------------------------------------------------- /Src/FwResources/Images.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwResources/Images.resx -------------------------------------------------------------------------------- /Src/FwResources/Images/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwResources/Images/X.png -------------------------------------------------------------------------------- /Src/FwResources/Images/plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/FwResources/Images/plus.bmp -------------------------------------------------------------------------------- /Src/GenerateHCConfig/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/GenerateHCConfig/App.config -------------------------------------------------------------------------------- /Src/GenerateHCConfig/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/GenerateHCConfig/Program.cs -------------------------------------------------------------------------------- /Src/Generic/BinTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/BinTree.h -------------------------------------------------------------------------------- /Src/Generic/BinTree_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/BinTree_i.cpp -------------------------------------------------------------------------------- /Src/Generic/COMBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/COMBase.h -------------------------------------------------------------------------------- /Src/Generic/CSupportErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/CSupportErrorInfo.h -------------------------------------------------------------------------------- /Src/Generic/ComHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComHashMap.h -------------------------------------------------------------------------------- /Src/Generic/ComHashMap_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComHashMap_i.cpp -------------------------------------------------------------------------------- /Src/Generic/ComMultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComMultiMap.h -------------------------------------------------------------------------------- /Src/Generic/ComMultiMap_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComMultiMap_i.cpp -------------------------------------------------------------------------------- /Src/Generic/ComSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComSmartPtr.h -------------------------------------------------------------------------------- /Src/Generic/ComSmartPtrImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComSmartPtrImpl.h -------------------------------------------------------------------------------- /Src/Generic/ComVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComVector.cpp -------------------------------------------------------------------------------- /Src/Generic/ComVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ComVector.h -------------------------------------------------------------------------------- /Src/Generic/DataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DataReader.h -------------------------------------------------------------------------------- /Src/Generic/DataStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DataStream.cpp -------------------------------------------------------------------------------- /Src/Generic/DataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DataStream.h -------------------------------------------------------------------------------- /Src/Generic/DataWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DataWriter.h -------------------------------------------------------------------------------- /Src/Generic/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Database.h -------------------------------------------------------------------------------- /Src/Generic/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Debug.cpp -------------------------------------------------------------------------------- /Src/Generic/DecodeUtf8_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DecodeUtf8_i.c -------------------------------------------------------------------------------- /Src/Generic/DispatchImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DispatchImpl.h -------------------------------------------------------------------------------- /Src/Generic/DllModul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/DllModul.cpp -------------------------------------------------------------------------------- /Src/Generic/FileStrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/FileStrm.cpp -------------------------------------------------------------------------------- /Src/Generic/FileStrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/FileStrm.h -------------------------------------------------------------------------------- /Src/Generic/FwSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/FwSettings.cpp -------------------------------------------------------------------------------- /Src/Generic/FwSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/FwSettings.h -------------------------------------------------------------------------------- /Src/Generic/GenSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenSmartPtr.h -------------------------------------------------------------------------------- /Src/Generic/Generic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Generic.rc -------------------------------------------------------------------------------- /Src/Generic/Generic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Generic.vcxproj -------------------------------------------------------------------------------- /Src/Generic/GenericFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenericFactory.cpp -------------------------------------------------------------------------------- /Src/Generic/GenericFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenericFactory.h -------------------------------------------------------------------------------- /Src/Generic/GenericInc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenericInc.mak -------------------------------------------------------------------------------- /Src/Generic/GenericLib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenericLib.mak -------------------------------------------------------------------------------- /Src/Generic/GenericResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GenericResource.h -------------------------------------------------------------------------------- /Src/Generic/GpHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GpHashMap.h -------------------------------------------------------------------------------- /Src/Generic/GpHashMap_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/GpHashMap_i.cpp -------------------------------------------------------------------------------- /Src/Generic/HashMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/HashMap.cpp -------------------------------------------------------------------------------- /Src/Generic/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/HashMap.h -------------------------------------------------------------------------------- /Src/Generic/HashMap_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/HashMap_i.cpp -------------------------------------------------------------------------------- /Src/Generic/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/LinkedList.h -------------------------------------------------------------------------------- /Src/Generic/MakeDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/MakeDir.cpp -------------------------------------------------------------------------------- /Src/Generic/MakeDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/MakeDir.h -------------------------------------------------------------------------------- /Src/Generic/ModuleEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ModuleEntry.cpp -------------------------------------------------------------------------------- /Src/Generic/ModuleEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ModuleEntry.h -------------------------------------------------------------------------------- /Src/Generic/MultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/MultiMap.h -------------------------------------------------------------------------------- /Src/Generic/MultiMap_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/MultiMap_i.cpp -------------------------------------------------------------------------------- /Src/Generic/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Mutex.h -------------------------------------------------------------------------------- /Src/Generic/OleStringLiteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/OleStringLiteral.h -------------------------------------------------------------------------------- /Src/Generic/RedirectHKCU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/RedirectHKCU.h -------------------------------------------------------------------------------- /Src/Generic/ResourceStrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ResourceStrm.cpp -------------------------------------------------------------------------------- /Src/Generic/ResourceStrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/ResourceStrm.h -------------------------------------------------------------------------------- /Src/Generic/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Set.h -------------------------------------------------------------------------------- /Src/Generic/Set_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Set_i.cpp -------------------------------------------------------------------------------- /Src/Generic/SmartBstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/SmartBstr.h -------------------------------------------------------------------------------- /Src/Generic/SmartVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/SmartVariant.h -------------------------------------------------------------------------------- /Src/Generic/StackDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StackDumper.cpp -------------------------------------------------------------------------------- /Src/Generic/StackDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StackDumper.h -------------------------------------------------------------------------------- /Src/Generic/StrUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StrUtil.cpp -------------------------------------------------------------------------------- /Src/Generic/StringStrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StringStrm.cpp -------------------------------------------------------------------------------- /Src/Generic/StringStrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StringStrm.h -------------------------------------------------------------------------------- /Src/Generic/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StringTable.cpp -------------------------------------------------------------------------------- /Src/Generic/StringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/StringTable.h -------------------------------------------------------------------------------- /Src/Generic/Test/TestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Test/TestUtil.h -------------------------------------------------------------------------------- /Src/Generic/Test/TestUtilXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Test/TestUtilXml.h -------------------------------------------------------------------------------- /Src/Generic/Test/strings-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Test/strings-en.txt -------------------------------------------------------------------------------- /Src/Generic/TextProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/TextProps.cpp -------------------------------------------------------------------------------- /Src/Generic/TextProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/TextProps.h -------------------------------------------------------------------------------- /Src/Generic/TextProps1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/TextProps1.cpp -------------------------------------------------------------------------------- /Src/Generic/Throwable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Throwable.h -------------------------------------------------------------------------------- /Src/Generic/UnicodeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UnicodeConverter.h -------------------------------------------------------------------------------- /Src/Generic/UnicodeString8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UnicodeString8.cpp -------------------------------------------------------------------------------- /Src/Generic/UnicodeString8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UnicodeString8.h -------------------------------------------------------------------------------- /Src/Generic/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Util.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilCom.h -------------------------------------------------------------------------------- /Src/Generic/UtilFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilFile.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilFile.h -------------------------------------------------------------------------------- /Src/Generic/UtilInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilInt.h -------------------------------------------------------------------------------- /Src/Generic/UtilMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilMem.h -------------------------------------------------------------------------------- /Src/Generic/UtilPersist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilPersist.h -------------------------------------------------------------------------------- /Src/Generic/UtilRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilRect.h -------------------------------------------------------------------------------- /Src/Generic/UtilRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilRegistry.h -------------------------------------------------------------------------------- /Src/Generic/UtilSil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilSil.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilSil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilSil.h -------------------------------------------------------------------------------- /Src/Generic/UtilSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilSort.h -------------------------------------------------------------------------------- /Src/Generic/UtilString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilString.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilString.h -------------------------------------------------------------------------------- /Src/Generic/UtilTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilTime.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilTime.h -------------------------------------------------------------------------------- /Src/Generic/UtilTypeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilTypeLib.h -------------------------------------------------------------------------------- /Src/Generic/UtilXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilXml.cpp -------------------------------------------------------------------------------- /Src/Generic/UtilXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/UtilXml.h -------------------------------------------------------------------------------- /Src/Generic/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Vector.h -------------------------------------------------------------------------------- /Src/Generic/Vector_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/Vector_i.cpp -------------------------------------------------------------------------------- /Src/Generic/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/common.h -------------------------------------------------------------------------------- /Src/Generic/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/debug.h -------------------------------------------------------------------------------- /Src/Generic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/main.cpp -------------------------------------------------------------------------------- /Src/Generic/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/main.h -------------------------------------------------------------------------------- /Src/Generic/proxystub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/proxystub.c -------------------------------------------------------------------------------- /Src/Generic/proxystub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/proxystub.h -------------------------------------------------------------------------------- /Src/Generic/wn95scm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Generic/wn95scm.h -------------------------------------------------------------------------------- /Src/Kernel/CellarConstants.vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/CellarConstants.vm.h -------------------------------------------------------------------------------- /Src/Kernel/FwKernel.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/FwKernel.def -------------------------------------------------------------------------------- /Src/Kernel/FwKernel.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/FwKernel.mak -------------------------------------------------------------------------------- /Src/Kernel/FwKernelPs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/FwKernelPs.idl -------------------------------------------------------------------------------- /Src/Kernel/FwKernel_GUIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/FwKernel_GUIDs.cpp -------------------------------------------------------------------------------- /Src/Kernel/Kernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/Kernel.vcxproj -------------------------------------------------------------------------------- /Src/Kernel/dlldatax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Kernel/dlldatax.c -------------------------------------------------------------------------------- /Src/LCMBrowser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/App.config -------------------------------------------------------------------------------- /Src/LCMBrowser/CustomFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/CustomFields.cs -------------------------------------------------------------------------------- /Src/LCMBrowser/LCMBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/LCMBrowser.cs -------------------------------------------------------------------------------- /Src/LCMBrowser/LCMClassList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/LCMClassList.cs -------------------------------------------------------------------------------- /Src/LCMBrowser/ModelWnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/ModelWnd.cs -------------------------------------------------------------------------------- /Src/LCMBrowser/ModelWnd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LCMBrowser/ModelWnd.resx -------------------------------------------------------------------------------- /Src/LexText/LexTextControls/LexTextControlsTests/.gitignore: -------------------------------------------------------------------------------- 1 | /LDML-11723-test/ 2 | -------------------------------------------------------------------------------- /Src/LexText/LexTextDll/LT.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/LexTextDll/LT.ico -------------------------------------------------------------------------------- /Src/LexText/LexTextExe/LT.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/LexTextExe/LT.ico -------------------------------------------------------------------------------- /Src/LexText/LexTextExe/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/LexTextExe/LT.png -------------------------------------------------------------------------------- /Src/LexText/LexTextExe/LT64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/LexTextExe/LT64.png -------------------------------------------------------------------------------- /Src/LexText/Lexicon/LexEd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/Lexicon/LexEd.ico -------------------------------------------------------------------------------- /Src/LexText/Morphology/ME.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/Morphology/ME.ico -------------------------------------------------------------------------------- /Src/LexText/ParserUI/HCTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/ParserUI/HCTrace.cs -------------------------------------------------------------------------------- /Src/LexText/ParserUI/ParserUITests/WordGrammarDebuggingInputsAndResults/.gitattributes: -------------------------------------------------------------------------------- 1 | *.xml -whitespace 2 | -------------------------------------------------------------------------------- /Src/LexText/images/Blank.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Blank.bmp -------------------------------------------------------------------------------- /Src/LexText/images/CLOSED.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/CLOSED.BMP -------------------------------------------------------------------------------- /Src/LexText/images/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Delete.bmp -------------------------------------------------------------------------------- /Src/LexText/images/Environ.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Environ.bmp -------------------------------------------------------------------------------- /Src/LexText/images/HELP.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/HELP.BMP -------------------------------------------------------------------------------- /Src/LexText/images/INTL_NO.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/INTL_NO.bmp -------------------------------------------------------------------------------- /Src/LexText/images/NatClass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/NatClass.bmp -------------------------------------------------------------------------------- /Src/LexText/images/NbkEntry.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/NbkEntry.bmp -------------------------------------------------------------------------------- /Src/LexText/images/OPEN.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/OPEN.BMP -------------------------------------------------------------------------------- /Src/LexText/images/POS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/POS.bmp -------------------------------------------------------------------------------- /Src/LexText/images/Phoneme.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Phoneme.bmp -------------------------------------------------------------------------------- /Src/LexText/images/Pie.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Pie.GIF -------------------------------------------------------------------------------- /Src/LexText/images/Subentry.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/Subentry.bmp -------------------------------------------------------------------------------- /Src/LexText/images/TwoHalfs.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/LexText/images/TwoHalfs.GIF -------------------------------------------------------------------------------- /Src/MasterVersionInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/MasterVersionInfo.txt -------------------------------------------------------------------------------- /Src/MigrateSqlDbs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/MigrateSqlDbs/Program.cs -------------------------------------------------------------------------------- /Src/MigrateSqlDbs/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/MigrateSqlDbs/Settings.cs -------------------------------------------------------------------------------- /Src/ParatextImport/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/ParatextImport/Cluster.cs -------------------------------------------------------------------------------- /Src/ProjectUnpacker/Unpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/ProjectUnpacker/Unpacker.cs -------------------------------------------------------------------------------- /Src/Search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Search.sh -------------------------------------------------------------------------------- /Src/Utilities/SfmToXml/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Utilities/SfmToXml/App.ico -------------------------------------------------------------------------------- /Src/Utilities/SfmToXml/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Utilities/SfmToXml/CRC.cs -------------------------------------------------------------------------------- /Src/Utilities/SfmToXml/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/Utilities/SfmToXml/Log.cs -------------------------------------------------------------------------------- /Src/XCore/AdapterMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/AdapterMenuItem.cs -------------------------------------------------------------------------------- /Src/XCore/AdapterMenuItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/AdapterMenuItem.resx -------------------------------------------------------------------------------- /Src/XCore/AreaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/AreaManager.cs -------------------------------------------------------------------------------- /Src/XCore/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/XCore/BEANY.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/BEANY.BMP -------------------------------------------------------------------------------- /Src/XCore/HtmlControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/HtmlControl.cs -------------------------------------------------------------------------------- /Src/XCore/HtmlControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/HtmlControl.resx -------------------------------------------------------------------------------- /Src/XCore/HtmlViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/HtmlViewer.cs -------------------------------------------------------------------------------- /Src/XCore/HtmlViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/HtmlViewer.resx -------------------------------------------------------------------------------- /Src/XCore/IconHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/IconHolder.cs -------------------------------------------------------------------------------- /Src/XCore/IconHolder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/IconHolder.resx -------------------------------------------------------------------------------- /Src/XCore/ImageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/ImageCollection.cs -------------------------------------------------------------------------------- /Src/XCore/ImageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/ImageContent.cs -------------------------------------------------------------------------------- /Src/XCore/ImageContent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/ImageContent.resx -------------------------------------------------------------------------------- /Src/XCore/ImageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/ImageDialog.cs -------------------------------------------------------------------------------- /Src/XCore/ImageDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/ImageDialog.resx -------------------------------------------------------------------------------- /Src/XCore/IncludeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/IncludeXml.cs -------------------------------------------------------------------------------- /Src/XCore/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/Inventory.cs -------------------------------------------------------------------------------- /Src/XCore/MultiPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/MultiPane.cs -------------------------------------------------------------------------------- /Src/XCore/MultiPane.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/MultiPane.resx -------------------------------------------------------------------------------- /Src/XCore/NotifyWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/NotifyWindow.cs -------------------------------------------------------------------------------- /Src/XCore/NotifyWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/NotifyWindow.resx -------------------------------------------------------------------------------- /Src/XCore/PaneBarContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/PaneBarContainer.cs -------------------------------------------------------------------------------- /Src/XCore/PaneBarContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/PaneBarContainer.resx -------------------------------------------------------------------------------- /Src/XCore/RecordBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/RecordBar.cs -------------------------------------------------------------------------------- /Src/XCore/RecordBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/RecordBar.resx -------------------------------------------------------------------------------- /Src/XCore/SilSidePane/Banner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/SilSidePane/Banner.cs -------------------------------------------------------------------------------- /Src/XCore/SilSidePane/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/SilSidePane/Item.cs -------------------------------------------------------------------------------- /Src/XCore/SilSidePane/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/SilSidePane/LICENSE -------------------------------------------------------------------------------- /Src/XCore/SilSidePane/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/SilSidePane/Tab.cs -------------------------------------------------------------------------------- /Src/XCore/Ticker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/Ticker.cs -------------------------------------------------------------------------------- /Src/XCore/Ticker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/Ticker.resx -------------------------------------------------------------------------------- /Src/XCore/xCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/xCore.csproj -------------------------------------------------------------------------------- /Src/XCore/xCoreStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/xCoreStrings.resx -------------------------------------------------------------------------------- /Src/XCore/xCoreUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/xCoreUserControl.cs -------------------------------------------------------------------------------- /Src/XCore/xWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/xWindow.cs -------------------------------------------------------------------------------- /Src/XCore/xWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/XCore/xWindow.resx -------------------------------------------------------------------------------- /Src/asInvoker.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/asInvoker.manifest -------------------------------------------------------------------------------- /Src/bldinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/bldinc.h -------------------------------------------------------------------------------- /Src/fw.net.Debug.ndoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/fw.net.Debug.ndoc -------------------------------------------------------------------------------- /Src/fw.net.Release.ndoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/fw.net.Release.ndoc -------------------------------------------------------------------------------- /Src/views/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Main.h -------------------------------------------------------------------------------- /Src/views/Render.idh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Render.idh -------------------------------------------------------------------------------- /Src/views/Test/BasicVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/BasicVc.h -------------------------------------------------------------------------------- /Src/views/Test/DummyBaseVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/DummyBaseVc.h -------------------------------------------------------------------------------- /Src/views/Test/DummyRootsite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/DummyRootsite.h -------------------------------------------------------------------------------- /Src/views/Test/NiceGuy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/NiceGuy.bmp -------------------------------------------------------------------------------- /Src/views/Test/TestLayoutPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestLayoutPage.h -------------------------------------------------------------------------------- /Src/views/Test/TestLazyBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestLazyBox.h -------------------------------------------------------------------------------- /Src/views/Test/TestNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestNotifier.h -------------------------------------------------------------------------------- /Src/views/Test/TestTsStrBldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestTsStrBldr.h -------------------------------------------------------------------------------- /Src/views/Test/TestTsString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestTsString.h -------------------------------------------------------------------------------- /Src/views/Test/TestUndoStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestUndoStack.h -------------------------------------------------------------------------------- /Src/views/Test/TestViews.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestViews.rc -------------------------------------------------------------------------------- /Src/views/Test/TestVwEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwEnv.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwGraphics.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwOverlay.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwPattern.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwRootBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwRootBox.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwSync.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwTableBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwTableBox.h -------------------------------------------------------------------------------- /Src/views/Test/TestVwTxtSrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/TestVwTxtSrc.h -------------------------------------------------------------------------------- /Src/views/Test/VirtualsCm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/VirtualsCm.xml -------------------------------------------------------------------------------- /Src/views/Test/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/resource.h -------------------------------------------------------------------------------- /Src/views/Test/testViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/testViews.cpp -------------------------------------------------------------------------------- /Src/views/Test/testViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/testViews.h -------------------------------------------------------------------------------- /Src/views/Test/testViews.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Test/testViews.mak -------------------------------------------------------------------------------- /Src/views/Views.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Views.def -------------------------------------------------------------------------------- /Src/views/Views.idh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Views.idh -------------------------------------------------------------------------------- /Src/views/Views.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Views.mak -------------------------------------------------------------------------------- /Src/views/Views.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Views.rc -------------------------------------------------------------------------------- /Src/views/ViewsExtra_GUIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/ViewsExtra_GUIDs.cpp -------------------------------------------------------------------------------- /Src/views/ViewsGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/ViewsGlobals.cpp -------------------------------------------------------------------------------- /Src/views/ViewsGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/ViewsGlobals.h -------------------------------------------------------------------------------- /Src/views/ViewsPs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/ViewsPs.idl -------------------------------------------------------------------------------- /Src/views/ViewsTlb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/ViewsTlb.idl -------------------------------------------------------------------------------- /Src/views/Views_GUIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/Views_GUIDs.cpp -------------------------------------------------------------------------------- /Src/views/VwAccessRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwAccessRoot.cpp -------------------------------------------------------------------------------- /Src/views/VwAccessRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwAccessRoot.h -------------------------------------------------------------------------------- /Src/views/VwEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwEnv.cpp -------------------------------------------------------------------------------- /Src/views/VwEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwEnv.h -------------------------------------------------------------------------------- /Src/views/VwInvertedViews.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwInvertedViews.cpp -------------------------------------------------------------------------------- /Src/views/VwInvertedViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwInvertedViews.h -------------------------------------------------------------------------------- /Src/views/VwLayoutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwLayoutStream.cpp -------------------------------------------------------------------------------- /Src/views/VwLayoutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwLayoutStream.h -------------------------------------------------------------------------------- /Src/views/VwLazyBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwLazyBox.cpp -------------------------------------------------------------------------------- /Src/views/VwLazyBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwLazyBox.h -------------------------------------------------------------------------------- /Src/views/VwNotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwNotifier.cpp -------------------------------------------------------------------------------- /Src/views/VwNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwNotifier.h -------------------------------------------------------------------------------- /Src/views/VwOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwOverlay.cpp -------------------------------------------------------------------------------- /Src/views/VwOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwOverlay.h -------------------------------------------------------------------------------- /Src/views/VwPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPattern.cpp -------------------------------------------------------------------------------- /Src/views/VwPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPattern.h -------------------------------------------------------------------------------- /Src/views/VwPrintContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPrintContext.cpp -------------------------------------------------------------------------------- /Src/views/VwPrintContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPrintContext.h -------------------------------------------------------------------------------- /Src/views/VwPropertyStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPropertyStore.cpp -------------------------------------------------------------------------------- /Src/views/VwPropertyStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwPropertyStore.h -------------------------------------------------------------------------------- /Src/views/VwResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwResources.h -------------------------------------------------------------------------------- /Src/views/VwRootBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwRootBox.cpp -------------------------------------------------------------------------------- /Src/views/VwRootBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwRootBox.h -------------------------------------------------------------------------------- /Src/views/VwSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSelection.cpp -------------------------------------------------------------------------------- /Src/views/VwSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSelection.h -------------------------------------------------------------------------------- /Src/views/VwSimpleBoxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSimpleBoxes.cpp -------------------------------------------------------------------------------- /Src/views/VwSimpleBoxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSimpleBoxes.h -------------------------------------------------------------------------------- /Src/views/VwSynchronizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSynchronizer.cpp -------------------------------------------------------------------------------- /Src/views/VwSynchronizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwSynchronizer.h -------------------------------------------------------------------------------- /Src/views/VwTableBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTableBox.cpp -------------------------------------------------------------------------------- /Src/views/VwTableBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTableBox.h -------------------------------------------------------------------------------- /Src/views/VwTextBoxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTextBoxes.cpp -------------------------------------------------------------------------------- /Src/views/VwTextBoxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTextBoxes.h -------------------------------------------------------------------------------- /Src/views/VwTextStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTextStore.cpp -------------------------------------------------------------------------------- /Src/views/VwTextStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTextStore.h -------------------------------------------------------------------------------- /Src/views/VwTxtSrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTxtSrc.cpp -------------------------------------------------------------------------------- /Src/views/VwTxtSrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/VwTxtSrc.h -------------------------------------------------------------------------------- /Src/views/dlldatax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/dlldatax.c -------------------------------------------------------------------------------- /Src/views/lib/ActionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/ActionHandler.cpp -------------------------------------------------------------------------------- /Src/views/lib/ActionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/ActionHandler.h -------------------------------------------------------------------------------- /Src/views/lib/DebugReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/DebugReport.cpp -------------------------------------------------------------------------------- /Src/views/lib/DebugReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/DebugReport.h -------------------------------------------------------------------------------- /Src/views/lib/DisplayCapsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/DisplayCapsInfo.h -------------------------------------------------------------------------------- /Src/views/lib/GdiPlusMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/GdiPlusMono.h -------------------------------------------------------------------------------- /Src/views/lib/GraphiteEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/GraphiteEngine.h -------------------------------------------------------------------------------- /Src/views/lib/GraphiteSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/GraphiteSegment.h -------------------------------------------------------------------------------- /Src/views/lib/LgLineBreaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/LgLineBreaker.cpp -------------------------------------------------------------------------------- /Src/views/lib/LgLineBreaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/LgLineBreaker.h -------------------------------------------------------------------------------- /Src/views/lib/TextServ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TextServ.cpp -------------------------------------------------------------------------------- /Src/views/lib/TextServ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TextServ.h -------------------------------------------------------------------------------- /Src/views/lib/TsPropsFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsPropsFactory.h -------------------------------------------------------------------------------- /Src/views/lib/TsStrFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsStrFactory.cpp -------------------------------------------------------------------------------- /Src/views/lib/TsStrFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsStrFactory.h -------------------------------------------------------------------------------- /Src/views/lib/TsString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsString.cpp -------------------------------------------------------------------------------- /Src/views/lib/TsString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsString.h -------------------------------------------------------------------------------- /Src/views/lib/TsTextProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsTextProps.cpp -------------------------------------------------------------------------------- /Src/views/lib/TsTextProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/TsTextProps.h -------------------------------------------------------------------------------- /Src/views/lib/UniscribeEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/UniscribeEngine.h -------------------------------------------------------------------------------- /Src/views/lib/UtilView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/UtilView.h -------------------------------------------------------------------------------- /Src/views/lib/VwBaseVc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwBaseVc.cpp -------------------------------------------------------------------------------- /Src/views/lib/VwBaseVc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwBaseVc.h -------------------------------------------------------------------------------- /Src/views/lib/VwCacheDa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwCacheDa.cpp -------------------------------------------------------------------------------- /Src/views/lib/VwCacheDa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwCacheDa.h -------------------------------------------------------------------------------- /Src/views/lib/VwColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwColor.cpp -------------------------------------------------------------------------------- /Src/views/lib/VwColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwColor.h -------------------------------------------------------------------------------- /Src/views/lib/VwGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwGraphics.cpp -------------------------------------------------------------------------------- /Src/views/lib/VwGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwGraphics.h -------------------------------------------------------------------------------- /Src/views/lib/VwGraphicsCairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwGraphicsCairo.h -------------------------------------------------------------------------------- /Src/views/lib/VwUndo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwUndo.cpp -------------------------------------------------------------------------------- /Src/views/lib/VwUndo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/lib/VwUndo.h -------------------------------------------------------------------------------- /Src/views/views.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/views.plg -------------------------------------------------------------------------------- /Src/views/views.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/views.vcxproj -------------------------------------------------------------------------------- /Src/views/views.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/views.vcxproj.filters -------------------------------------------------------------------------------- /Src/views/views2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/views/views2008.vcproj -------------------------------------------------------------------------------- /Src/xWorks/AddCustomFieldDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/AddCustomFieldDlg.cs -------------------------------------------------------------------------------- /Src/xWorks/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/xWorks/ConcDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ConcDecorator.cs -------------------------------------------------------------------------------- /Src/xWorks/CssGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/CssGenerator.cs -------------------------------------------------------------------------------- /Src/xWorks/CustomListDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/CustomListDlg.cs -------------------------------------------------------------------------------- /Src/xWorks/CustomListDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/CustomListDlg.resx -------------------------------------------------------------------------------- /Src/xWorks/DTMenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/DTMenuHandler.cs -------------------------------------------------------------------------------- /Src/xWorks/DataTreeImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/DataTreeImages.cs -------------------------------------------------------------------------------- /Src/xWorks/DataTreeImages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/DataTreeImages.resx -------------------------------------------------------------------------------- /Src/xWorks/DeleteCustomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/DeleteCustomList.cs -------------------------------------------------------------------------------- /Src/xWorks/ExportDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ExportDialog.cs -------------------------------------------------------------------------------- /Src/xWorks/ExportDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ExportDialog.resx -------------------------------------------------------------------------------- /Src/xWorks/FwXApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/FwXApp.cs -------------------------------------------------------------------------------- /Src/xWorks/FwXWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/FwXWindow.cs -------------------------------------------------------------------------------- /Src/xWorks/FwXWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/FwXWindow.resx -------------------------------------------------------------------------------- /Src/xWorks/IDictConfigViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/IDictConfigViewer.cs -------------------------------------------------------------------------------- /Src/xWorks/IFlexMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/IFlexMacro.cs -------------------------------------------------------------------------------- /Src/xWorks/ILayoutConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ILayoutConverter.cs -------------------------------------------------------------------------------- /Src/xWorks/IWebonaryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/IWebonaryClient.cs -------------------------------------------------------------------------------- /Src/xWorks/ImageHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ImageHolder.cs -------------------------------------------------------------------------------- /Src/xWorks/ImageHolder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/ImageHolder.resx -------------------------------------------------------------------------------- /Src/xWorks/LcmJsonGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/LcmJsonGenerator.cs -------------------------------------------------------------------------------- /Src/xWorks/LcmWordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/LcmWordGenerator.cs -------------------------------------------------------------------------------- /Src/xWorks/LcmXhtmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/LcmXhtmlGenerator.cs -------------------------------------------------------------------------------- /Src/xWorks/LinkListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/LinkListener.cs -------------------------------------------------------------------------------- /Src/xWorks/MacroListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/MacroListener.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordBrowseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordBrowseView.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordClerk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordClerk.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordClerkImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordClerkImages.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordDocView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordDocView.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordEditView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordEditView.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordEditView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordEditView.resx -------------------------------------------------------------------------------- /Src/xWorks/RecordList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordList.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordView.cs -------------------------------------------------------------------------------- /Src/xWorks/RecordView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/RecordView.resx -------------------------------------------------------------------------------- /Src/xWorks/Resources/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/App.ico -------------------------------------------------------------------------------- /Src/xWorks/Resources/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Copy.png -------------------------------------------------------------------------------- /Src/xWorks/Resources/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Delete.bmp -------------------------------------------------------------------------------- /Src/xWorks/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Delete.png -------------------------------------------------------------------------------- /Src/xWorks/Resources/Pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Pencil.png -------------------------------------------------------------------------------- /Src/xWorks/Resources/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Reset.png -------------------------------------------------------------------------------- /Src/xWorks/Resources/Sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/Sync.png -------------------------------------------------------------------------------- /Src/xWorks/Resources/ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/Resources/ramp.png -------------------------------------------------------------------------------- /Src/xWorks/StringFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/StringFragment.cs -------------------------------------------------------------------------------- /Src/xWorks/TextListeners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/TextListeners.cs -------------------------------------------------------------------------------- /Src/xWorks/WebonaryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/WebonaryClient.cs -------------------------------------------------------------------------------- /Src/xWorks/WebonaryLogViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/WebonaryLogViewer.cs -------------------------------------------------------------------------------- /Src/xWorks/WebonaryUploadLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/WebonaryUploadLog.cs -------------------------------------------------------------------------------- /Src/xWorks/XWorksViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XWorksViewBase.cs -------------------------------------------------------------------------------- /Src/xWorks/XWorksViewBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XWorksViewBase.resx -------------------------------------------------------------------------------- /Src/xWorks/XhtmlDocView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XhtmlDocView.cs -------------------------------------------------------------------------------- /Src/xWorks/XmlDiagnosticsDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XmlDiagnosticsDlg.cs -------------------------------------------------------------------------------- /Src/xWorks/XmlDocView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XmlDocView.cs -------------------------------------------------------------------------------- /Src/xWorks/XmlDocView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/XmlDocView.resx -------------------------------------------------------------------------------- /Src/xWorks/xWorks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/xWorks.csproj -------------------------------------------------------------------------------- /Src/xWorks/xWorksStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/Src/xWorks/xWorksStrings.resx -------------------------------------------------------------------------------- /Src/xWorks/xWorksTests/TestData/ConfigurationSettings/Dictionary/.gitignore: -------------------------------------------------------------------------------- 1 | /*.css 2 | /*.fwdictconfig 3 | -------------------------------------------------------------------------------- /acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/acknowledgments.md -------------------------------------------------------------------------------- /agent-build-fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/agent-build-fw.sh -------------------------------------------------------------------------------- /crowdin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/crowdin.json -------------------------------------------------------------------------------- /environ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/environ -------------------------------------------------------------------------------- /environ-other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/environ-other -------------------------------------------------------------------------------- /environ-xulrunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/environ-xulrunner -------------------------------------------------------------------------------- /fw.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/fw.code-workspace -------------------------------------------------------------------------------- /resources/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/resources/App.ico -------------------------------------------------------------------------------- /resources/Installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/resources/Installer.ico -------------------------------------------------------------------------------- /vagrant/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sillsdev/FieldWorks/HEAD/vagrant/Vagrantfile --------------------------------------------------------------------------------