├── LICENSE ├── README.md ├── libPDFium ├── libpdfium │ ├── BUILD.gn │ ├── libpdfium.cc │ ├── libpdfium.def │ ├── libpdfium.h │ └── libpdfium.rc ├── out │ └── args.gn └── readme.md ├── printdlg.png ├── screenshot.png └── src ├── DynamicButtons.pas ├── Execute.libPDFium.pas ├── Main.dfm ├── Main.pas ├── PDFium.Frame.dfm ├── PDFium.Frame.pas ├── PDFium.PrintDlg.dfm ├── PDFium.PrintDlg.pas ├── PDFium.SearchDlg.dfm ├── PDFium.SearchDlg.pas ├── PDFiumReader.dpr ├── PDFiumReader.dproj └── PDFiumReader.res /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/README.md -------------------------------------------------------------------------------- /libPDFium/libpdfium/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/libpdfium/BUILD.gn -------------------------------------------------------------------------------- /libPDFium/libpdfium/libpdfium.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/libpdfium/libpdfium.cc -------------------------------------------------------------------------------- /libPDFium/libpdfium/libpdfium.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/libpdfium/libpdfium.def -------------------------------------------------------------------------------- /libPDFium/libpdfium/libpdfium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/libpdfium/libpdfium.h -------------------------------------------------------------------------------- /libPDFium/libpdfium/libpdfium.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/libpdfium/libpdfium.rc -------------------------------------------------------------------------------- /libPDFium/out/args.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/out/args.gn -------------------------------------------------------------------------------- /libPDFium/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/libPDFium/readme.md -------------------------------------------------------------------------------- /printdlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/printdlg.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/DynamicButtons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/DynamicButtons.pas -------------------------------------------------------------------------------- /src/Execute.libPDFium.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/Execute.libPDFium.pas -------------------------------------------------------------------------------- /src/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/Main.dfm -------------------------------------------------------------------------------- /src/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/Main.pas -------------------------------------------------------------------------------- /src/PDFium.Frame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.Frame.dfm -------------------------------------------------------------------------------- /src/PDFium.Frame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.Frame.pas -------------------------------------------------------------------------------- /src/PDFium.PrintDlg.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.PrintDlg.dfm -------------------------------------------------------------------------------- /src/PDFium.PrintDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.PrintDlg.pas -------------------------------------------------------------------------------- /src/PDFium.SearchDlg.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.SearchDlg.dfm -------------------------------------------------------------------------------- /src/PDFium.SearchDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFium.SearchDlg.pas -------------------------------------------------------------------------------- /src/PDFiumReader.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFiumReader.dpr -------------------------------------------------------------------------------- /src/PDFiumReader.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFiumReader.dproj -------------------------------------------------------------------------------- /src/PDFiumReader.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tothpaul/PDFiumReader/HEAD/src/PDFiumReader.res --------------------------------------------------------------------------------