├── .gitignore ├── Editor.html ├── Example_Files.zip ├── LICENSE ├── README.md ├── dependencies ├── jszip.min.js └── papaparse.min.js ├── examples ├── Checkerboard │ ├── Layout.save │ ├── README.md │ └── Result.xlsx ├── DRC │ ├── Layout.save │ ├── README.md │ └── Result.csv ├── DRC2 │ ├── Definition.txt │ ├── Layout.save │ ├── README.md │ └── Result.xlsx ├── DRC3 │ ├── Definition.txt │ ├── Layout.save │ ├── README.md │ └── Result.xlsx ├── Grouping │ ├── Definition_Groups.txt │ ├── Layout_Groups.save │ ├── README.md │ └── Results_Groups.xlsx ├── Infection │ ├── Layout.save │ ├── README.md │ └── Result.xlsx ├── MultiParam │ ├── Definition_extra.txt │ ├── Definition_items.txt │ ├── Definition_things.txt │ ├── Layout.save │ ├── Results_extra.xlsx │ ├── Results_items.xlsx │ └── Results_things.xlsx ├── Screening │ ├── Definition.csv │ ├── Layout.save │ ├── README.md │ └── Result.xlsx ├── Screening2 │ ├── Definition.txt │ ├── Layout.save │ ├── README.md │ └── Result.txt └── Simple │ ├── Layout.save │ ├── README.md │ └── Results_example1.txt ├── gulpfile.js ├── images ├── Icon_set.png ├── github.jpg └── sourceforge.png ├── package.json ├── src ├── analyzer │ ├── analyzer-css │ │ ├── analyzer-styles.css │ │ └── report-styles.css │ └── analyzer-objects │ │ ├── Analyzer.js │ │ ├── Bloc.js │ │ ├── CustomTable.js │ │ ├── Group.js │ │ ├── GroupTable.js │ │ ├── Report.js │ │ ├── Report │ │ ├── Report_Controls.js │ │ ├── Report_Grouped.js │ │ └── Report_Hits.js │ │ ├── Section.js │ │ ├── StatsTable.js │ │ └── WrapTable.js ├── editor │ ├── editor-css │ │ └── editor-styles.css │ └── editor-objects │ │ ├── Area.js │ │ ├── Console.js │ │ ├── Definition.js │ │ ├── Editor.js │ │ ├── Layer.js │ │ ├── Parameter.js │ │ ├── Plate.js │ │ ├── Result.js │ │ ├── ResultManager.js │ │ ├── TypeMap.js │ │ └── Well.js ├── shared │ ├── shared-css │ │ ├── Form_Color.css │ │ ├── Form_Import.css │ │ └── SharedStyles.css │ ├── shared-forms │ │ ├── Form_Color.js │ │ └── Form_Import.js │ ├── shared-objects │ │ ├── CSSCOLORS.js │ │ ├── Coordinate.js │ │ ├── Decimal.js │ │ ├── Helper.js.bak │ │ ├── InputObject.js │ │ ├── InputObject │ │ │ ├── InputObject_File.js │ │ │ └── InputObject_Manual.js │ │ ├── InputParser.js │ │ ├── InputParser │ │ │ ├── InputParser_Papa.js │ │ │ ├── InputParser_XLS.js │ │ │ └── InputParser_XLSX.js │ │ ├── Mapper.js │ │ ├── Mapper │ │ │ ├── Mapper_Direct.js │ │ │ ├── Mapper_Plate.js │ │ │ ├── Mapper_PlateWell.js │ │ │ └── Mapper_Well.js │ │ ├── Pair.js │ │ ├── Pairing.js │ │ ├── Reporter.js │ │ ├── Unit.js │ │ └── WorkerGroup.js │ └── shared-tools │ │ └── GetId.js └── ui │ ├── ui-css │ ├── Form.css │ ├── LinkCtrl.css │ └── RespTable.css │ └── ui-objects │ ├── Form.js │ ├── LinkCtrl.js │ ├── LinkCtrl │ ├── LinkCtrl_Button.js │ ├── LinkCtrl_ButtonBar.js │ ├── LinkCtrl_Checkbox.js │ ├── LinkCtrl_Color.js │ ├── LinkCtrl_File.js │ ├── LinkCtrl_Number.js │ ├── LinkCtrl_Radio.js │ ├── LinkCtrl_Select.js │ ├── LinkCtrl_Text.js │ └── LinkCtrl_TextArea.js │ ├── RespTable.js │ ├── TabControl.js │ └── TabPanel.js └── tests ├── Big.txt ├── Big.xls ├── Big.xlsx ├── Definition.txt ├── Error.xls ├── Error.xlsx ├── Formula.xls ├── Formula.xlsx ├── Heatmap.txt ├── Heatmap.xls ├── Heatmap.xlsx ├── Layout_Error.save ├── Old.xls ├── Range_Layout.save └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.ini 2 | /dist 3 | /node_modules -------------------------------------------------------------------------------- /Editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/Editor.html -------------------------------------------------------------------------------- /Example_Files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/Example_Files.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/dependencies/jszip.min.js -------------------------------------------------------------------------------- /dependencies/papaparse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/dependencies/papaparse.min.js -------------------------------------------------------------------------------- /examples/Checkerboard/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Checkerboard/Layout.save -------------------------------------------------------------------------------- /examples/Checkerboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Checkerboard/README.md -------------------------------------------------------------------------------- /examples/Checkerboard/Result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Checkerboard/Result.xlsx -------------------------------------------------------------------------------- /examples/DRC/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC/Layout.save -------------------------------------------------------------------------------- /examples/DRC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC/README.md -------------------------------------------------------------------------------- /examples/DRC/Result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC/Result.csv -------------------------------------------------------------------------------- /examples/DRC2/Definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC2/Definition.txt -------------------------------------------------------------------------------- /examples/DRC2/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC2/Layout.save -------------------------------------------------------------------------------- /examples/DRC2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC2/README.md -------------------------------------------------------------------------------- /examples/DRC2/Result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC2/Result.xlsx -------------------------------------------------------------------------------- /examples/DRC3/Definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC3/Definition.txt -------------------------------------------------------------------------------- /examples/DRC3/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC3/Layout.save -------------------------------------------------------------------------------- /examples/DRC3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC3/README.md -------------------------------------------------------------------------------- /examples/DRC3/Result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/DRC3/Result.xlsx -------------------------------------------------------------------------------- /examples/Grouping/Definition_Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Grouping/Definition_Groups.txt -------------------------------------------------------------------------------- /examples/Grouping/Layout_Groups.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Grouping/Layout_Groups.save -------------------------------------------------------------------------------- /examples/Grouping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Grouping/README.md -------------------------------------------------------------------------------- /examples/Grouping/Results_Groups.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Grouping/Results_Groups.xlsx -------------------------------------------------------------------------------- /examples/Infection/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Infection/Layout.save -------------------------------------------------------------------------------- /examples/Infection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Infection/README.md -------------------------------------------------------------------------------- /examples/Infection/Result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Infection/Result.xlsx -------------------------------------------------------------------------------- /examples/MultiParam/Definition_extra.txt: -------------------------------------------------------------------------------- 1 | Name 2 | Trunk 3 | Leave 4 | Flower 5 | Cat 6 | Dog 7 | Bird 8 | Farm 9 | Castle 10 | House 11 | -------------------------------------------------------------------------------- /examples/MultiParam/Definition_items.txt: -------------------------------------------------------------------------------- 1 | Name 2 | Pen 3 | Book 4 | Paper 5 | Glass 6 | Spoon 7 | Plate 8 | Car 9 | Bus 10 | Truck 11 | -------------------------------------------------------------------------------- /examples/MultiParam/Definition_things.txt: -------------------------------------------------------------------------------- 1 | Name 2 | River 3 | Lake 4 | Sea 5 | Meadows 6 | Hills 7 | Mountains 8 | Bush 9 | Forest 10 | Tree 11 | -------------------------------------------------------------------------------- /examples/MultiParam/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/MultiParam/Layout.save -------------------------------------------------------------------------------- /examples/MultiParam/Results_extra.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/MultiParam/Results_extra.xlsx -------------------------------------------------------------------------------- /examples/MultiParam/Results_items.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/MultiParam/Results_items.xlsx -------------------------------------------------------------------------------- /examples/MultiParam/Results_things.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/MultiParam/Results_things.xlsx -------------------------------------------------------------------------------- /examples/Screening/Definition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening/Definition.csv -------------------------------------------------------------------------------- /examples/Screening/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening/Layout.save -------------------------------------------------------------------------------- /examples/Screening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening/README.md -------------------------------------------------------------------------------- /examples/Screening/Result.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening/Result.xlsx -------------------------------------------------------------------------------- /examples/Screening2/Definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening2/Definition.txt -------------------------------------------------------------------------------- /examples/Screening2/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening2/Layout.save -------------------------------------------------------------------------------- /examples/Screening2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening2/README.md -------------------------------------------------------------------------------- /examples/Screening2/Result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Screening2/Result.txt -------------------------------------------------------------------------------- /examples/Simple/Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Simple/Layout.save -------------------------------------------------------------------------------- /examples/Simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Simple/README.md -------------------------------------------------------------------------------- /examples/Simple/Results_example1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/examples/Simple/Results_example1.txt -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/Icon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/images/Icon_set.png -------------------------------------------------------------------------------- /images/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/images/github.jpg -------------------------------------------------------------------------------- /images/sourceforge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/images/sourceforge.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/package.json -------------------------------------------------------------------------------- /src/analyzer/analyzer-css/analyzer-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-css/analyzer-styles.css -------------------------------------------------------------------------------- /src/analyzer/analyzer-css/report-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-css/report-styles.css -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Analyzer.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Bloc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Bloc.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/CustomTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/CustomTable.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Group.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/GroupTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/GroupTable.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Report.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Report/Report_Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Report/Report_Controls.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Report/Report_Grouped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Report/Report_Grouped.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Report/Report_Hits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Report/Report_Hits.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/Section.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/StatsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/StatsTable.js -------------------------------------------------------------------------------- /src/analyzer/analyzer-objects/WrapTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/analyzer/analyzer-objects/WrapTable.js -------------------------------------------------------------------------------- /src/editor/editor-css/editor-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-css/editor-styles.css -------------------------------------------------------------------------------- /src/editor/editor-objects/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Area.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Console.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Definition.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Editor.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Layer.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Parameter.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Plate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Plate.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Result.js -------------------------------------------------------------------------------- /src/editor/editor-objects/ResultManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/ResultManager.js -------------------------------------------------------------------------------- /src/editor/editor-objects/TypeMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/TypeMap.js -------------------------------------------------------------------------------- /src/editor/editor-objects/Well.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/editor/editor-objects/Well.js -------------------------------------------------------------------------------- /src/shared/shared-css/Form_Color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-css/Form_Color.css -------------------------------------------------------------------------------- /src/shared/shared-css/Form_Import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-css/Form_Import.css -------------------------------------------------------------------------------- /src/shared/shared-css/SharedStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-css/SharedStyles.css -------------------------------------------------------------------------------- /src/shared/shared-forms/Form_Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-forms/Form_Color.js -------------------------------------------------------------------------------- /src/shared/shared-forms/Form_Import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-forms/Form_Import.js -------------------------------------------------------------------------------- /src/shared/shared-objects/CSSCOLORS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/CSSCOLORS.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Coordinate.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Decimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Decimal.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Helper.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Helper.js.bak -------------------------------------------------------------------------------- /src/shared/shared-objects/InputObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputObject.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputObject/InputObject_File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputObject/InputObject_File.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputObject/InputObject_Manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputObject/InputObject_Manual.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputParser.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputParser/InputParser_Papa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputParser/InputParser_Papa.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputParser/InputParser_XLS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputParser/InputParser_XLS.js -------------------------------------------------------------------------------- /src/shared/shared-objects/InputParser/InputParser_XLSX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/InputParser/InputParser_XLSX.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Mapper.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Mapper/Mapper_Direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Mapper/Mapper_Direct.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Mapper/Mapper_Plate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Mapper/Mapper_Plate.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Mapper/Mapper_PlateWell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Mapper/Mapper_PlateWell.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Mapper/Mapper_Well.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Mapper/Mapper_Well.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Pair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Pair.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Pairing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Pairing.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Reporter.js -------------------------------------------------------------------------------- /src/shared/shared-objects/Unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/Unit.js -------------------------------------------------------------------------------- /src/shared/shared-objects/WorkerGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-objects/WorkerGroup.js -------------------------------------------------------------------------------- /src/shared/shared-tools/GetId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/shared/shared-tools/GetId.js -------------------------------------------------------------------------------- /src/ui/ui-css/Form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-css/Form.css -------------------------------------------------------------------------------- /src/ui/ui-css/LinkCtrl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-css/LinkCtrl.css -------------------------------------------------------------------------------- /src/ui/ui-css/RespTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-css/RespTable.css -------------------------------------------------------------------------------- /src/ui/ui-objects/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/Form.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Button.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_ButtonBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_ButtonBar.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Checkbox.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Color.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_File.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Number.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Radio.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Select.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_Text.js -------------------------------------------------------------------------------- /src/ui/ui-objects/LinkCtrl/LinkCtrl_TextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/LinkCtrl/LinkCtrl_TextArea.js -------------------------------------------------------------------------------- /src/ui/ui-objects/RespTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/RespTable.js -------------------------------------------------------------------------------- /src/ui/ui-objects/TabControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/TabControl.js -------------------------------------------------------------------------------- /src/ui/ui-objects/TabPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/src/ui/ui-objects/TabPanel.js -------------------------------------------------------------------------------- /tests/Big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Big.txt -------------------------------------------------------------------------------- /tests/Big.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Big.xls -------------------------------------------------------------------------------- /tests/Big.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Big.xlsx -------------------------------------------------------------------------------- /tests/Definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Definition.txt -------------------------------------------------------------------------------- /tests/Error.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Error.xls -------------------------------------------------------------------------------- /tests/Error.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Error.xlsx -------------------------------------------------------------------------------- /tests/Formula.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Formula.xls -------------------------------------------------------------------------------- /tests/Formula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Formula.xlsx -------------------------------------------------------------------------------- /tests/Heatmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Heatmap.txt -------------------------------------------------------------------------------- /tests/Heatmap.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Heatmap.xls -------------------------------------------------------------------------------- /tests/Heatmap.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Heatmap.xlsx -------------------------------------------------------------------------------- /tests/Layout_Error.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Layout_Error.save -------------------------------------------------------------------------------- /tests/Old.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Old.xls -------------------------------------------------------------------------------- /tests/Range_Layout.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Range_Layout.save -------------------------------------------------------------------------------- /tests/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vindelorme/PlateEditor/HEAD/tests/Readme.md --------------------------------------------------------------------------------