├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG ├── INSTALL.md ├── LICENSE ├── Makefile.am ├── README.md ├── TROUBLESHOOTING.md ├── configure.ac ├── docs ├── DYMO_SDK_for_Linux.rtf ├── Makefile.am ├── SAMPLES ├── TestImage.png ├── longtest.txt ├── test.ps ├── test.txt └── testprint.ps ├── dymo-cups-drivers.spec ├── install-sh ├── missing ├── mkinstalldirs ├── ppd ├── Makefile.am ├── lm400.ppd ├── lm450.ppd ├── lmmls.ppd ├── lmpc.ppd ├── lmpc2.ppd ├── lmpnp.ppd ├── lmwpnp.ppd ├── lp350.ppd ├── lw300.ppd ├── lw310.ppd ├── lw315.ppd ├── lw320.ppd ├── lw330.ppd ├── lw330t.ppd ├── lw400.ppd ├── lw400t.ppd ├── lw450.ppd ├── lw450dl.ppd ├── lw450dt.ppd ├── lw450t.ppd ├── lw450tt.ppd ├── lw4xl.ppd ├── lw550.ppd ├── lw550p.ppd ├── lw550t.ppd ├── lw550tp.ppd ├── lw5xl.ppd ├── lw5xlp.ppd ├── lwduol.ppd ├── lwduot.ppd ├── lwduot2.ppd ├── lwtt.ppd ├── lww.ppd └── se450.ppd ├── samples ├── Makefile.am ├── custom_paper │ ├── CairoUtils.h │ ├── CustomPaper.cpp │ └── Makefile.am ├── custom_paper_tape │ ├── CairoUtils.h │ ├── CustomPaperTape.cpp │ └── Makefile.am ├── paper_bounds │ ├── CairoUtils.h │ ├── Makefile.am │ └── PaperBounds.cpp ├── paper_list │ ├── Makefile.am │ └── PaperList.cpp └── test_label │ ├── CairoUtils.h │ ├── Makefile.am │ ├── TestLabel.cpp │ ├── barcode.png │ ├── photo.png │ └── tel.png ├── src ├── Makefile.am ├── common │ ├── CommonTypedefs.h │ ├── CupsFilter.h │ ├── CupsPrintEnvironment.cpp │ ├── CupsPrintEnvironment.h │ ├── DummyLanguageMonitor.cpp │ ├── DummyLanguageMonitor.h │ ├── ErrorDiffusionHalftoning.cpp │ ├── ErrorDiffusionHalftoning.h │ ├── Halftoning.cpp │ ├── Halftoning.h │ ├── NonLinearLaplacianHalftoning.cpp │ ├── NonLinearLaplacianHalftoning.h │ ├── PrinterDriver.h │ └── tests │ │ ├── MOCK_PrintEnvironment.cpp │ │ ├── MOCK_PrintEnvironment.h │ │ ├── Makefile.am │ │ ├── TestCommon.cpp │ │ ├── TestCommon.h │ │ ├── TestErrorDiffusionHalftoning.cpp │ │ ├── TestErrorDiffusionHalftoning.h │ │ ├── TestNLLHalftoning.cpp │ │ ├── TestNLLHalftoning.h │ │ └── testsMain.cpp ├── lm │ ├── CupsFilterLabelManager.cpp │ ├── CupsFilterLabelManager.h │ ├── LabelManagerDriver.cpp │ ├── LabelManagerDriver.h │ ├── LabelManagerLanguageMonitor.cpp │ ├── LabelManagerLanguageMonitor.h │ ├── Makefile.am │ ├── raster2dymolm.cpp │ └── tests │ │ ├── Makefile.am │ │ ├── TestLabelManagerDriver.cpp │ │ ├── TestLabelManagerDriver.h │ │ ├── TestLabelManagerFilter.cpp │ │ └── TestLabelManagerFilter.h └── lw │ ├── CupsFilterLabelWriter.cpp │ ├── CupsFilterLabelWriter.h │ ├── LabelWriterDriver.cpp │ ├── LabelWriterDriver.h │ ├── LabelWriterLanguageMonitor.cpp │ ├── LabelWriterLanguageMonitor.h │ ├── Makefile.am │ ├── raster2dymolw.cpp │ └── tests │ ├── MOCK_LWLMPrintEnvironment.cpp │ ├── MOCK_LWLMPrintEnvironment.h │ ├── Makefile.am │ ├── TestLabelWriterDriver.cpp │ ├── TestLabelWriterDriver.h │ ├── TestLabelWriterFilter.cpp │ ├── TestLabelWriterFilter.h │ ├── TestLabelWriterLanguageMonitor.cpp │ └── TestLabelWriterLanguageMonitor.h └── src_v2 ├── Makefile.am ├── common ├── CommonTypedefs.h ├── CupsFilter.h ├── CupsPrintEnvironment.cpp ├── CupsPrintEnvironment.h ├── CupsUtils.cpp ├── CupsUtils.h ├── DummyLanguageMonitor.h ├── ErrorDiffusionHalftoning.h ├── Halftoning.h ├── NonLinearLaplacianHalftoning.cpp ├── NonLinearLaplacianHalftoning.h ├── PrinterDriver.h └── tests │ ├── MOCK_PrintEnvironment.cpp │ ├── MOCK_PrintEnvironment.h │ ├── Makefile.am │ ├── TestCommon.cpp │ ├── TestCommon.h │ ├── TestErrorDiffusionHalftoning.cpp │ ├── TestErrorDiffusionHalftoning.h │ ├── TestNLLHalftoning.cpp │ ├── TestNLLHalftoning.h │ └── testsMain.cpp ├── lm ├── LabelManagerDriver.h ├── LabelManagerDriverInitializer.cpp ├── LabelManagerDriverInitializer.h ├── LabelManagerDriverV2.cpp ├── LabelManagerDriverV2.h ├── LabelManagerLanguageMonitor.h ├── LabelManagerLanguageMonitorV2.cpp ├── LabelManagerLanguageMonitorV2.h ├── Makefile.am ├── raster2dymolm.cpp └── tests │ ├── Makefile.am │ ├── TestLabelManagerDriver.cpp │ ├── TestLabelManagerDriver.h │ ├── TestLabelManagerFilter.cpp │ └── TestLabelManagerFilter.h └── lw ├── LabelWriterDriver.h ├── LabelWriterDriverInitializer.cpp ├── LabelWriterDriverInitializer.h ├── LabelWriterDriverV2.cpp ├── LabelWriterDriverV2.h ├── LabelWriterLanguageMonitor.h ├── LabelWriterLanguageMonitorV2.cpp ├── LabelWriterLanguageMonitorV2.h ├── Makefile.am ├── raster2dymolw.cpp └── tests ├── MOCK_LWLMPrintEnvironment.cpp ├── MOCK_LWLMPrintEnvironment.h ├── Makefile.am ├── TestLabelWriterDriver.cpp ├── TestLabelWriterDriver.h ├── TestLabelWriterFilter.cpp ├── TestLabelWriterFilter.h ├── TestLabelWriterLanguageMonitor.cpp └── TestLabelWriterLanguageMonitor.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/CHANGELOG -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/DYMO_SDK_for_Linux.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/DYMO_SDK_for_Linux.rtf -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/SAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/SAMPLES -------------------------------------------------------------------------------- /docs/TestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/TestImage.png -------------------------------------------------------------------------------- /docs/longtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/longtest.txt -------------------------------------------------------------------------------- /docs/test.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/test.ps -------------------------------------------------------------------------------- /docs/test.txt: -------------------------------------------------------------------------------- 1 | Printer Test Page 2 | Hello, World! -------------------------------------------------------------------------------- /docs/testprint.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/docs/testprint.ps -------------------------------------------------------------------------------- /dymo-cups-drivers.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/dymo-cups-drivers.spec -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /ppd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/Makefile.am -------------------------------------------------------------------------------- /ppd/lm400.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lm400.ppd -------------------------------------------------------------------------------- /ppd/lm450.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lm450.ppd -------------------------------------------------------------------------------- /ppd/lmmls.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lmmls.ppd -------------------------------------------------------------------------------- /ppd/lmpc.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lmpc.ppd -------------------------------------------------------------------------------- /ppd/lmpc2.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lmpc2.ppd -------------------------------------------------------------------------------- /ppd/lmpnp.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lmpnp.ppd -------------------------------------------------------------------------------- /ppd/lmwpnp.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lmwpnp.ppd -------------------------------------------------------------------------------- /ppd/lp350.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lp350.ppd -------------------------------------------------------------------------------- /ppd/lw300.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw300.ppd -------------------------------------------------------------------------------- /ppd/lw310.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw310.ppd -------------------------------------------------------------------------------- /ppd/lw315.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw315.ppd -------------------------------------------------------------------------------- /ppd/lw320.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw320.ppd -------------------------------------------------------------------------------- /ppd/lw330.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw330.ppd -------------------------------------------------------------------------------- /ppd/lw330t.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw330t.ppd -------------------------------------------------------------------------------- /ppd/lw400.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw400.ppd -------------------------------------------------------------------------------- /ppd/lw400t.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw400t.ppd -------------------------------------------------------------------------------- /ppd/lw450.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw450.ppd -------------------------------------------------------------------------------- /ppd/lw450dl.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw450dl.ppd -------------------------------------------------------------------------------- /ppd/lw450dt.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw450dt.ppd -------------------------------------------------------------------------------- /ppd/lw450t.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw450t.ppd -------------------------------------------------------------------------------- /ppd/lw450tt.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw450tt.ppd -------------------------------------------------------------------------------- /ppd/lw4xl.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw4xl.ppd -------------------------------------------------------------------------------- /ppd/lw550.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw550.ppd -------------------------------------------------------------------------------- /ppd/lw550p.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw550p.ppd -------------------------------------------------------------------------------- /ppd/lw550t.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw550t.ppd -------------------------------------------------------------------------------- /ppd/lw550tp.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw550tp.ppd -------------------------------------------------------------------------------- /ppd/lw5xl.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw5xl.ppd -------------------------------------------------------------------------------- /ppd/lw5xlp.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lw5xlp.ppd -------------------------------------------------------------------------------- /ppd/lwduol.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lwduol.ppd -------------------------------------------------------------------------------- /ppd/lwduot.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lwduot.ppd -------------------------------------------------------------------------------- /ppd/lwduot2.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lwduot2.ppd -------------------------------------------------------------------------------- /ppd/lwtt.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lwtt.ppd -------------------------------------------------------------------------------- /ppd/lww.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/lww.ppd -------------------------------------------------------------------------------- /ppd/se450.ppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/ppd/se450.ppd -------------------------------------------------------------------------------- /samples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/Makefile.am -------------------------------------------------------------------------------- /samples/custom_paper/CairoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper/CairoUtils.h -------------------------------------------------------------------------------- /samples/custom_paper/CustomPaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper/CustomPaper.cpp -------------------------------------------------------------------------------- /samples/custom_paper/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper/Makefile.am -------------------------------------------------------------------------------- /samples/custom_paper_tape/CairoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper_tape/CairoUtils.h -------------------------------------------------------------------------------- /samples/custom_paper_tape/CustomPaperTape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper_tape/CustomPaperTape.cpp -------------------------------------------------------------------------------- /samples/custom_paper_tape/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/custom_paper_tape/Makefile.am -------------------------------------------------------------------------------- /samples/paper_bounds/CairoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/paper_bounds/CairoUtils.h -------------------------------------------------------------------------------- /samples/paper_bounds/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/paper_bounds/Makefile.am -------------------------------------------------------------------------------- /samples/paper_bounds/PaperBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/paper_bounds/PaperBounds.cpp -------------------------------------------------------------------------------- /samples/paper_list/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/paper_list/Makefile.am -------------------------------------------------------------------------------- /samples/paper_list/PaperList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/paper_list/PaperList.cpp -------------------------------------------------------------------------------- /samples/test_label/CairoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/CairoUtils.h -------------------------------------------------------------------------------- /samples/test_label/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/Makefile.am -------------------------------------------------------------------------------- /samples/test_label/TestLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/TestLabel.cpp -------------------------------------------------------------------------------- /samples/test_label/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/barcode.png -------------------------------------------------------------------------------- /samples/test_label/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/photo.png -------------------------------------------------------------------------------- /samples/test_label/tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/samples/test_label/tel.png -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/common/CommonTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/CommonTypedefs.h -------------------------------------------------------------------------------- /src/common/CupsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/CupsFilter.h -------------------------------------------------------------------------------- /src/common/CupsPrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/CupsPrintEnvironment.cpp -------------------------------------------------------------------------------- /src/common/CupsPrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/CupsPrintEnvironment.h -------------------------------------------------------------------------------- /src/common/DummyLanguageMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/DummyLanguageMonitor.cpp -------------------------------------------------------------------------------- /src/common/DummyLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/DummyLanguageMonitor.h -------------------------------------------------------------------------------- /src/common/ErrorDiffusionHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/ErrorDiffusionHalftoning.cpp -------------------------------------------------------------------------------- /src/common/ErrorDiffusionHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/ErrorDiffusionHalftoning.h -------------------------------------------------------------------------------- /src/common/Halftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/Halftoning.cpp -------------------------------------------------------------------------------- /src/common/Halftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/Halftoning.h -------------------------------------------------------------------------------- /src/common/NonLinearLaplacianHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/NonLinearLaplacianHalftoning.cpp -------------------------------------------------------------------------------- /src/common/NonLinearLaplacianHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/NonLinearLaplacianHalftoning.h -------------------------------------------------------------------------------- /src/common/PrinterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/PrinterDriver.h -------------------------------------------------------------------------------- /src/common/tests/MOCK_PrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/MOCK_PrintEnvironment.cpp -------------------------------------------------------------------------------- /src/common/tests/MOCK_PrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/MOCK_PrintEnvironment.h -------------------------------------------------------------------------------- /src/common/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/Makefile.am -------------------------------------------------------------------------------- /src/common/tests/TestCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestCommon.cpp -------------------------------------------------------------------------------- /src/common/tests/TestCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestCommon.h -------------------------------------------------------------------------------- /src/common/tests/TestErrorDiffusionHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestErrorDiffusionHalftoning.cpp -------------------------------------------------------------------------------- /src/common/tests/TestErrorDiffusionHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestErrorDiffusionHalftoning.h -------------------------------------------------------------------------------- /src/common/tests/TestNLLHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestNLLHalftoning.cpp -------------------------------------------------------------------------------- /src/common/tests/TestNLLHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/TestNLLHalftoning.h -------------------------------------------------------------------------------- /src/common/tests/testsMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/common/tests/testsMain.cpp -------------------------------------------------------------------------------- /src/lm/CupsFilterLabelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/CupsFilterLabelManager.cpp -------------------------------------------------------------------------------- /src/lm/CupsFilterLabelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/CupsFilterLabelManager.h -------------------------------------------------------------------------------- /src/lm/LabelManagerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/LabelManagerDriver.cpp -------------------------------------------------------------------------------- /src/lm/LabelManagerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/LabelManagerDriver.h -------------------------------------------------------------------------------- /src/lm/LabelManagerLanguageMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/LabelManagerLanguageMonitor.cpp -------------------------------------------------------------------------------- /src/lm/LabelManagerLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/LabelManagerLanguageMonitor.h -------------------------------------------------------------------------------- /src/lm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/Makefile.am -------------------------------------------------------------------------------- /src/lm/raster2dymolm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/raster2dymolm.cpp -------------------------------------------------------------------------------- /src/lm/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/tests/Makefile.am -------------------------------------------------------------------------------- /src/lm/tests/TestLabelManagerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/tests/TestLabelManagerDriver.cpp -------------------------------------------------------------------------------- /src/lm/tests/TestLabelManagerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/tests/TestLabelManagerDriver.h -------------------------------------------------------------------------------- /src/lm/tests/TestLabelManagerFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/tests/TestLabelManagerFilter.cpp -------------------------------------------------------------------------------- /src/lm/tests/TestLabelManagerFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lm/tests/TestLabelManagerFilter.h -------------------------------------------------------------------------------- /src/lw/CupsFilterLabelWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/CupsFilterLabelWriter.cpp -------------------------------------------------------------------------------- /src/lw/CupsFilterLabelWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/CupsFilterLabelWriter.h -------------------------------------------------------------------------------- /src/lw/LabelWriterDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/LabelWriterDriver.cpp -------------------------------------------------------------------------------- /src/lw/LabelWriterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/LabelWriterDriver.h -------------------------------------------------------------------------------- /src/lw/LabelWriterLanguageMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/LabelWriterLanguageMonitor.cpp -------------------------------------------------------------------------------- /src/lw/LabelWriterLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/LabelWriterLanguageMonitor.h -------------------------------------------------------------------------------- /src/lw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/Makefile.am -------------------------------------------------------------------------------- /src/lw/raster2dymolw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/raster2dymolw.cpp -------------------------------------------------------------------------------- /src/lw/tests/MOCK_LWLMPrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/MOCK_LWLMPrintEnvironment.cpp -------------------------------------------------------------------------------- /src/lw/tests/MOCK_LWLMPrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/MOCK_LWLMPrintEnvironment.h -------------------------------------------------------------------------------- /src/lw/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/Makefile.am -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterDriver.cpp -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterDriver.h -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterFilter.cpp -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterFilter.h -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterLanguageMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterLanguageMonitor.cpp -------------------------------------------------------------------------------- /src/lw/tests/TestLabelWriterLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src/lw/tests/TestLabelWriterLanguageMonitor.h -------------------------------------------------------------------------------- /src_v2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/Makefile.am -------------------------------------------------------------------------------- /src_v2/common/CommonTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CommonTypedefs.h -------------------------------------------------------------------------------- /src_v2/common/CupsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CupsFilter.h -------------------------------------------------------------------------------- /src_v2/common/CupsPrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CupsPrintEnvironment.cpp -------------------------------------------------------------------------------- /src_v2/common/CupsPrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CupsPrintEnvironment.h -------------------------------------------------------------------------------- /src_v2/common/CupsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CupsUtils.cpp -------------------------------------------------------------------------------- /src_v2/common/CupsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/CupsUtils.h -------------------------------------------------------------------------------- /src_v2/common/DummyLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/DummyLanguageMonitor.h -------------------------------------------------------------------------------- /src_v2/common/ErrorDiffusionHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/ErrorDiffusionHalftoning.h -------------------------------------------------------------------------------- /src_v2/common/Halftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/Halftoning.h -------------------------------------------------------------------------------- /src_v2/common/NonLinearLaplacianHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/NonLinearLaplacianHalftoning.cpp -------------------------------------------------------------------------------- /src_v2/common/NonLinearLaplacianHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/NonLinearLaplacianHalftoning.h -------------------------------------------------------------------------------- /src_v2/common/PrinterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/PrinterDriver.h -------------------------------------------------------------------------------- /src_v2/common/tests/MOCK_PrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/MOCK_PrintEnvironment.cpp -------------------------------------------------------------------------------- /src_v2/common/tests/MOCK_PrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/MOCK_PrintEnvironment.h -------------------------------------------------------------------------------- /src_v2/common/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/Makefile.am -------------------------------------------------------------------------------- /src_v2/common/tests/TestCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestCommon.cpp -------------------------------------------------------------------------------- /src_v2/common/tests/TestCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestCommon.h -------------------------------------------------------------------------------- /src_v2/common/tests/TestErrorDiffusionHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestErrorDiffusionHalftoning.cpp -------------------------------------------------------------------------------- /src_v2/common/tests/TestErrorDiffusionHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestErrorDiffusionHalftoning.h -------------------------------------------------------------------------------- /src_v2/common/tests/TestNLLHalftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestNLLHalftoning.cpp -------------------------------------------------------------------------------- /src_v2/common/tests/TestNLLHalftoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/TestNLLHalftoning.h -------------------------------------------------------------------------------- /src_v2/common/tests/testsMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/common/tests/testsMain.cpp -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerDriver.h -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerDriverInitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerDriverInitializer.cpp -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerDriverInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerDriverInitializer.h -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerDriverV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerDriverV2.cpp -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerDriverV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerDriverV2.h -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerLanguageMonitor.h -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerLanguageMonitorV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerLanguageMonitorV2.cpp -------------------------------------------------------------------------------- /src_v2/lm/LabelManagerLanguageMonitorV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/LabelManagerLanguageMonitorV2.h -------------------------------------------------------------------------------- /src_v2/lm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/Makefile.am -------------------------------------------------------------------------------- /src_v2/lm/raster2dymolm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/raster2dymolm.cpp -------------------------------------------------------------------------------- /src_v2/lm/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/tests/Makefile.am -------------------------------------------------------------------------------- /src_v2/lm/tests/TestLabelManagerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/tests/TestLabelManagerDriver.cpp -------------------------------------------------------------------------------- /src_v2/lm/tests/TestLabelManagerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/tests/TestLabelManagerDriver.h -------------------------------------------------------------------------------- /src_v2/lm/tests/TestLabelManagerFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/tests/TestLabelManagerFilter.cpp -------------------------------------------------------------------------------- /src_v2/lm/tests/TestLabelManagerFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lm/tests/TestLabelManagerFilter.h -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterDriver.h -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterDriverInitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterDriverInitializer.cpp -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterDriverInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterDriverInitializer.h -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterDriverV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterDriverV2.cpp -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterDriverV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterDriverV2.h -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterLanguageMonitor.h -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterLanguageMonitorV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterLanguageMonitorV2.cpp -------------------------------------------------------------------------------- /src_v2/lw/LabelWriterLanguageMonitorV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/LabelWriterLanguageMonitorV2.h -------------------------------------------------------------------------------- /src_v2/lw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/Makefile.am -------------------------------------------------------------------------------- /src_v2/lw/raster2dymolw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/raster2dymolw.cpp -------------------------------------------------------------------------------- /src_v2/lw/tests/MOCK_LWLMPrintEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/MOCK_LWLMPrintEnvironment.cpp -------------------------------------------------------------------------------- /src_v2/lw/tests/MOCK_LWLMPrintEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/MOCK_LWLMPrintEnvironment.h -------------------------------------------------------------------------------- /src_v2/lw/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/Makefile.am -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterDriver.cpp -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterDriver.h -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterFilter.cpp -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterFilter.h -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterLanguageMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterLanguageMonitor.cpp -------------------------------------------------------------------------------- /src_v2/lw/tests/TestLabelWriterLanguageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/dymo-cups-drivers/HEAD/src_v2/lw/tests/TestLabelWriterLanguageMonitor.h --------------------------------------------------------------------------------