├── .gitignore ├── .gitmodules ├── .script ├── qt.supp └── valgrind.sh ├── .travis.yml ├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake └── FindMuPDF.cmake ├── doc ├── Doxyfile └── Mainpage.dox ├── examples ├── CMakeLists.txt ├── mupdf-qt │ ├── CMakeLists.txt │ ├── simpleviewer │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── test_document │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── test_outline │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── test_page │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── test_text │ │ ├── CMakeLists.txt │ │ └── main.cpp └── mupdf │ ├── CMakeLists.txt │ ├── countpages │ ├── CMakeLists.txt │ └── main.c │ ├── exportpage │ ├── CMakeLists.txt │ └── main.c │ ├── outline │ ├── CMakeLists.txt │ └── main.c │ ├── qimage │ ├── CMakeLists.txt │ └── main.cpp │ ├── showinfo │ ├── CMakeLists.txt │ └── main.c │ └── showtext │ ├── CMakeLists.txt │ └── main.c ├── include ├── mupdf-document.h ├── mupdf-link.h ├── mupdf-outline.h ├── mupdf-page.h ├── mupdf-qt.h └── mupdf-textbox.h └── src ├── mupdf-document.cpp ├── mupdf-link.cpp ├── mupdf-outline.cpp ├── mupdf-page.cpp ├── mupdf-textbox.cpp └── private ├── mupdf-document_p.h ├── mupdf-link_p.h ├── mupdf-outline_p.h ├── mupdf-page_p.h └── mupdf-textbox_p.h /.gitignore: -------------------------------------------------------------------------------- 1 | build* 2 | tags 3 | mupdf-*-source 4 | CMakeLists.txt.user 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.script/qt.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/.script/qt.supp -------------------------------------------------------------------------------- /.script/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/.script/valgrind.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindMuPDF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/cmake/FindMuPDF.cmake -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/doc/Mainpage.dox -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/simpleviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/simpleviewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/simpleviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/simpleviewer/main.cpp -------------------------------------------------------------------------------- /examples/mupdf-qt/simpleviewer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/simpleviewer/mainwindow.cpp -------------------------------------------------------------------------------- /examples/mupdf-qt/simpleviewer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/simpleviewer/mainwindow.h -------------------------------------------------------------------------------- /examples/mupdf-qt/test_document/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_document/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/test_document/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_document/main.cpp -------------------------------------------------------------------------------- /examples/mupdf-qt/test_outline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_outline/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/test_outline/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_outline/main.cpp -------------------------------------------------------------------------------- /examples/mupdf-qt/test_page/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_page/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/test_page/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_page/main.cpp -------------------------------------------------------------------------------- /examples/mupdf-qt/test_text/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_text/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf-qt/test_text/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf-qt/test_text/main.cpp -------------------------------------------------------------------------------- /examples/mupdf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/countpages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/countpages/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/countpages/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/countpages/main.c -------------------------------------------------------------------------------- /examples/mupdf/exportpage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/exportpage/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/exportpage/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/exportpage/main.c -------------------------------------------------------------------------------- /examples/mupdf/outline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/outline/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/outline/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/outline/main.c -------------------------------------------------------------------------------- /examples/mupdf/qimage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/qimage/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/qimage/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/qimage/main.cpp -------------------------------------------------------------------------------- /examples/mupdf/showinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/showinfo/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/showinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/showinfo/main.c -------------------------------------------------------------------------------- /examples/mupdf/showtext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/showtext/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mupdf/showtext/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/examples/mupdf/showtext/main.c -------------------------------------------------------------------------------- /include/mupdf-document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-document.h -------------------------------------------------------------------------------- /include/mupdf-link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-link.h -------------------------------------------------------------------------------- /include/mupdf-outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-outline.h -------------------------------------------------------------------------------- /include/mupdf-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-page.h -------------------------------------------------------------------------------- /include/mupdf-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-qt.h -------------------------------------------------------------------------------- /include/mupdf-textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/include/mupdf-textbox.h -------------------------------------------------------------------------------- /src/mupdf-document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/mupdf-document.cpp -------------------------------------------------------------------------------- /src/mupdf-link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/mupdf-link.cpp -------------------------------------------------------------------------------- /src/mupdf-outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/mupdf-outline.cpp -------------------------------------------------------------------------------- /src/mupdf-page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/mupdf-page.cpp -------------------------------------------------------------------------------- /src/mupdf-textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/mupdf-textbox.cpp -------------------------------------------------------------------------------- /src/private/mupdf-document_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/private/mupdf-document_p.h -------------------------------------------------------------------------------- /src/private/mupdf-link_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/private/mupdf-link_p.h -------------------------------------------------------------------------------- /src/private/mupdf-outline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/private/mupdf-outline_p.h -------------------------------------------------------------------------------- /src/private/mupdf-page_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/private/mupdf-page_p.h -------------------------------------------------------------------------------- /src/private/mupdf-textbox_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangxw/mupdf-qt/HEAD/src/private/mupdf-textbox_p.h --------------------------------------------------------------------------------