├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── Doxyfile ├── Examples ├── PT-P700 │ ├── 12mm-1.png │ ├── 12mm.prn │ └── 12mm.ptexplain ├── PT-P710BT │ └── cv_pte550wp750wp710bt_eng_raster_101.pdf ├── PT-P900W │ ├── 12mm-Draft-1.png │ ├── 12mm-Draft.prn │ ├── 12mm-Draft.ptexplain │ ├── 12mm-Resolution-1.png │ ├── 12mm-Resolution.prn │ ├── 12mm-Resolution.ptexplain │ ├── 12mm-Standard-1.png │ ├── 12mm-Standard.prn │ └── 12mm-Standard.ptexplain └── QL-820NWB │ ├── Label-29x90mm-Quality-1.png │ ├── Label-29x90mm-Quality.prn │ ├── Label-29x90mm-Quality.ptexplain │ ├── Label-29x90mm-Resolution-1.png │ ├── Label-29x90mm-Resolution.prn │ ├── Label-29x90mm-Resolution.ptexplain │ ├── Label-29x90mm-Speed-1.png │ ├── Label-29x90mm-Speed.prn │ ├── Label-29x90mm-Speed.ptexplain │ ├── Tape-29x90mm-Quality-1.png │ ├── Tape-29x90mm-Quality.prn │ ├── Tape-29x90mm-Quality.ptexplain │ ├── Tape-29x90mm-Resolution-1.png │ ├── Tape-29x90mm-Resolution.prn │ ├── Tape-29x90mm-Resolution.ptexplain │ ├── Tape-29x90mm-Speed-1.png │ ├── Tape-29x90mm-Speed.prn │ └── Tape-29x90mm-Speed.ptexplain ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── compile ├── configure.ac ├── depcomp ├── driver ├── ptouch-pt.xml └── ptouch-ql.xml ├── explain.txt ├── foomaticalize ├── getusbprinterid ├── install-sh ├── missing ├── opt ├── Brother-PT-HalfCut.xml ├── Brother-PT-LabelRecovery.xml ├── Brother-PT-LegacyHires.xml ├── Brother-PT-LegacyTransferMode.xml ├── Brother-PT-Margin.xml ├── Brother-PT-PageSize.xml ├── Brother-PTQL-Align.xml ├── Brother-PTQL-AutoCut.xml ├── Brother-PTQL-BytesPerLine.xml ├── Brother-PTQL-ChainPrinting.xml ├── Brother-PTQL-ConcatPages.xml ├── Brother-PTQL-CutLabel.xml ├── Brother-PTQL-LabelPreamble.xml ├── Brother-PTQL-LastPageFlag.xml ├── Brother-PTQL-MinMargin.xml ├── Brother-PTQL-MirrorPrint.xml ├── Brother-PTQL-NegativePrint.xml ├── Brother-PTQL-PixelTransfer.xml ├── Brother-PTQL-Resolution.xml ├── Brother-PTQL-Series.xml ├── Brother-PTQL-SoftwareMirror.xml ├── Brother-PTQL-TransferMode.xml ├── Brother-QL-CutMark.xml ├── Brother-QL-Margin.xml ├── Brother-QL-MediaType.xml ├── Brother-QL-PageSize.xml ├── Brother-QL-PrintDensity.xml ├── Brother-QL-PrintQuality.xml ├── Brother-QL-Resolution.xml └── Brother-QL-StatusNotification.xml ├── printer ├── Brother-PT-1500PC.xml ├── Brother-PT-18R.xml ├── Brother-PT-1950.xml ├── Brother-PT-1950VP.xml ├── Brother-PT-1960.xml ├── Brother-PT-2300.xml ├── Brother-PT-2420PC.xml ├── Brother-PT-2430PC.xml ├── Brother-PT-2450DX.xml ├── Brother-PT-2500PC.xml ├── Brother-PT-2600.xml ├── Brother-PT-2610.xml ├── Brother-PT-3600.xml ├── Brother-PT-550A.xml ├── Brother-PT-9200DX.xml ├── Brother-PT-9200PC.xml ├── Brother-PT-9400.xml ├── Brother-PT-9500PC.xml ├── Brother-PT-9600.xml ├── Brother-PT-9700PC.xml ├── Brother-PT-E550W.xml ├── Brother-PT-P300BT.xml ├── Brother-PT-P700.xml ├── Brother-PT-P710BT.xml ├── Brother-PT-P900W.xml ├── Brother-PT-P950NW.xml ├── Brother-PT-PC.xml ├── Brother-QL-500.xml ├── Brother-QL-550.xml ├── Brother-QL-570.xml ├── Brother-QL-600.xml ├── Brother-QL-650TD.xml ├── Brother-QL-700.xml ├── Brother-QL-800.xml ├── Brother-QL-810W.xml └── Brother-QL-820NWB.xml ├── ptexplain.c ├── ptouch-driver-foomatic.spec.in ├── ptouch-driver.spec.in └── rastertoptch.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Doxyfile -------------------------------------------------------------------------------- /Examples/PT-P700/12mm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P700/12mm-1.png -------------------------------------------------------------------------------- /Examples/PT-P700/12mm.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P700/12mm.prn -------------------------------------------------------------------------------- /Examples/PT-P700/12mm.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P700/12mm.ptexplain -------------------------------------------------------------------------------- /Examples/PT-P710BT/cv_pte550wp750wp710bt_eng_raster_101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P710BT/cv_pte550wp750wp710bt_eng_raster_101.pdf -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Draft-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Draft-1.png -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Draft.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Draft.prn -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Draft.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Draft.ptexplain -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Resolution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Resolution-1.png -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Resolution.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Resolution.prn -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Resolution.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Resolution.ptexplain -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Standard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Standard-1.png -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Standard.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Standard.prn -------------------------------------------------------------------------------- /Examples/PT-P900W/12mm-Standard.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/PT-P900W/12mm-Standard.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Quality-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Quality-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Quality.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Quality.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Quality.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Quality.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Resolution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Resolution-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Resolution.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Resolution.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Resolution.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Resolution.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Speed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Speed-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Speed.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Speed.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Label-29x90mm-Speed.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Label-29x90mm-Speed.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Quality-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Quality-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Quality.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Quality.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Quality.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Quality.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Resolution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Resolution-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Resolution.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Resolution.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Resolution.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Resolution.ptexplain -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Speed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Speed-1.png -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Speed.prn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Speed.prn -------------------------------------------------------------------------------- /Examples/QL-820NWB/Tape-29x90mm-Speed.ptexplain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Examples/QL-820NWB/Tape-29x90mm-Speed.ptexplain -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/compile -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/depcomp -------------------------------------------------------------------------------- /driver/ptouch-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/driver/ptouch-pt.xml -------------------------------------------------------------------------------- /driver/ptouch-ql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/driver/ptouch-ql.xml -------------------------------------------------------------------------------- /explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/explain.txt -------------------------------------------------------------------------------- /foomaticalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/foomaticalize -------------------------------------------------------------------------------- /getusbprinterid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/getusbprinterid -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/missing -------------------------------------------------------------------------------- /opt/Brother-PT-HalfCut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-HalfCut.xml -------------------------------------------------------------------------------- /opt/Brother-PT-LabelRecovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-LabelRecovery.xml -------------------------------------------------------------------------------- /opt/Brother-PT-LegacyHires.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-LegacyHires.xml -------------------------------------------------------------------------------- /opt/Brother-PT-LegacyTransferMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-LegacyTransferMode.xml -------------------------------------------------------------------------------- /opt/Brother-PT-Margin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-Margin.xml -------------------------------------------------------------------------------- /opt/Brother-PT-PageSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PT-PageSize.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-Align.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-Align.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-AutoCut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-AutoCut.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-BytesPerLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-BytesPerLine.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-ChainPrinting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-ChainPrinting.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-ConcatPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-ConcatPages.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-CutLabel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-CutLabel.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-LabelPreamble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-LabelPreamble.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-LastPageFlag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-LastPageFlag.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-MinMargin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-MinMargin.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-MirrorPrint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-MirrorPrint.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-NegativePrint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-NegativePrint.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-PixelTransfer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-PixelTransfer.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-Resolution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-Resolution.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-Series.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-Series.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-SoftwareMirror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-SoftwareMirror.xml -------------------------------------------------------------------------------- /opt/Brother-PTQL-TransferMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-PTQL-TransferMode.xml -------------------------------------------------------------------------------- /opt/Brother-QL-CutMark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-CutMark.xml -------------------------------------------------------------------------------- /opt/Brother-QL-Margin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-Margin.xml -------------------------------------------------------------------------------- /opt/Brother-QL-MediaType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-MediaType.xml -------------------------------------------------------------------------------- /opt/Brother-QL-PageSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-PageSize.xml -------------------------------------------------------------------------------- /opt/Brother-QL-PrintDensity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-PrintDensity.xml -------------------------------------------------------------------------------- /opt/Brother-QL-PrintQuality.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-PrintQuality.xml -------------------------------------------------------------------------------- /opt/Brother-QL-Resolution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-Resolution.xml -------------------------------------------------------------------------------- /opt/Brother-QL-StatusNotification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/opt/Brother-QL-StatusNotification.xml -------------------------------------------------------------------------------- /printer/Brother-PT-1500PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-1500PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-18R.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-18R.xml -------------------------------------------------------------------------------- /printer/Brother-PT-1950.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-1950.xml -------------------------------------------------------------------------------- /printer/Brother-PT-1950VP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-1950VP.xml -------------------------------------------------------------------------------- /printer/Brother-PT-1960.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-1960.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2300.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2300.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2420PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2420PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2430PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2430PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2450DX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2450DX.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2500PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2500PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2600.xml -------------------------------------------------------------------------------- /printer/Brother-PT-2610.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-2610.xml -------------------------------------------------------------------------------- /printer/Brother-PT-3600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-3600.xml -------------------------------------------------------------------------------- /printer/Brother-PT-550A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-550A.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9200DX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9200DX.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9200PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9200PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9400.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9400.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9500PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9500PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9600.xml -------------------------------------------------------------------------------- /printer/Brother-PT-9700PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-9700PC.xml -------------------------------------------------------------------------------- /printer/Brother-PT-E550W.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-E550W.xml -------------------------------------------------------------------------------- /printer/Brother-PT-P300BT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-P300BT.xml -------------------------------------------------------------------------------- /printer/Brother-PT-P700.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-P700.xml -------------------------------------------------------------------------------- /printer/Brother-PT-P710BT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-P710BT.xml -------------------------------------------------------------------------------- /printer/Brother-PT-P900W.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-P900W.xml -------------------------------------------------------------------------------- /printer/Brother-PT-P950NW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-P950NW.xml -------------------------------------------------------------------------------- /printer/Brother-PT-PC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-PT-PC.xml -------------------------------------------------------------------------------- /printer/Brother-QL-500.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-500.xml -------------------------------------------------------------------------------- /printer/Brother-QL-550.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-550.xml -------------------------------------------------------------------------------- /printer/Brother-QL-570.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-570.xml -------------------------------------------------------------------------------- /printer/Brother-QL-600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-600.xml -------------------------------------------------------------------------------- /printer/Brother-QL-650TD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-650TD.xml -------------------------------------------------------------------------------- /printer/Brother-QL-700.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-700.xml -------------------------------------------------------------------------------- /printer/Brother-QL-800.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-800.xml -------------------------------------------------------------------------------- /printer/Brother-QL-810W.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-810W.xml -------------------------------------------------------------------------------- /printer/Brother-QL-820NWB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/printer/Brother-QL-820NWB.xml -------------------------------------------------------------------------------- /ptexplain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/ptexplain.c -------------------------------------------------------------------------------- /ptouch-driver-foomatic.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/ptouch-driver-foomatic.spec.in -------------------------------------------------------------------------------- /ptouch-driver.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/ptouch-driver.spec.in -------------------------------------------------------------------------------- /rastertoptch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philpem/printer-driver-ptouch/HEAD/rastertoptch.c --------------------------------------------------------------------------------