├── .gitignore ├── FlapLabel.dcr ├── FlapLabel.pas ├── FlapLabelGroup.groupproj ├── FlapLabelPkg.dpk ├── FlapLabelPkg.dproj ├── FlapLabelPkg.res ├── Images ├── Airlines.png ├── ArrowsCharset.png ├── FlapLabelTestShot.png ├── LettersNumbersCharset.png └── NumbersCharset.png ├── LICENSE ├── README.md ├── TestFlapLabel.dpr ├── TestFlapLabel.dproj ├── TestFlapLabel.res ├── fTestFlapLabel.fmx ├── fTestFlapLabel.pas ├── painelIndoor.jpeg └── painelSolari.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /FlapLabel.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabel.dcr -------------------------------------------------------------------------------- /FlapLabel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabel.pas -------------------------------------------------------------------------------- /FlapLabelGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabelGroup.groupproj -------------------------------------------------------------------------------- /FlapLabelPkg.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabelPkg.dpk -------------------------------------------------------------------------------- /FlapLabelPkg.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabelPkg.dproj -------------------------------------------------------------------------------- /FlapLabelPkg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/FlapLabelPkg.res -------------------------------------------------------------------------------- /Images/Airlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/Images/Airlines.png -------------------------------------------------------------------------------- /Images/ArrowsCharset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/Images/ArrowsCharset.png -------------------------------------------------------------------------------- /Images/FlapLabelTestShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/Images/FlapLabelTestShot.png -------------------------------------------------------------------------------- /Images/LettersNumbersCharset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/Images/LettersNumbersCharset.png -------------------------------------------------------------------------------- /Images/NumbersCharset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/Images/NumbersCharset.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/README.md -------------------------------------------------------------------------------- /TestFlapLabel.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/TestFlapLabel.dpr -------------------------------------------------------------------------------- /TestFlapLabel.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/TestFlapLabel.dproj -------------------------------------------------------------------------------- /TestFlapLabel.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/TestFlapLabel.res -------------------------------------------------------------------------------- /fTestFlapLabel.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/fTestFlapLabel.fmx -------------------------------------------------------------------------------- /fTestFlapLabel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/fTestFlapLabel.pas -------------------------------------------------------------------------------- /painelIndoor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/painelIndoor.jpeg -------------------------------------------------------------------------------- /painelSolari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarreis/FlapLabel/HEAD/painelSolari.png --------------------------------------------------------------------------------