├── .clang-format ├── .dir-locals.el ├── .github └── workflows │ └── cmake-multi-platform.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── NEWS ├── README.md ├── ScreenShots ├── apvlv-0.0.6-9-dir-and-content-open.jpg ├── apvlv-0.0.6-9-dir-and-content.jpg ├── apvlv-0.0.6-9-dirview.jpg ├── apvlv-0.4.0-annot-comment.png └── apvlv-0.4.0-annot-underline.png ├── Startup.pdf ├── THANKS ├── TODO ├── apvlv.1 ├── apvlvrc.example ├── cmake ├── CompileFlags.cmake ├── Dependencies.cmake └── Options.cmake ├── scripts └── build.sh ├── share ├── applications │ └── apvlv.desktop ├── doc │ └── apvlv │ │ └── icons │ │ ├── dir.png │ │ ├── pdf.png │ │ └── reg.png └── scripts │ └── internal.js ├── src ├── ApvlvCmds.cc ├── ApvlvCmds.h ├── ApvlvCompletion.cc ├── ApvlvCompletion.h ├── ApvlvDirectory.cc ├── ApvlvDirectory.h ├── ApvlvDired.cc ├── ApvlvDired.h ├── ApvlvEditor.cc ├── ApvlvEditor.h ├── ApvlvFile.cc ├── ApvlvFile.h ├── ApvlvFileIndex.cc ├── ApvlvFileIndex.h ├── ApvlvFileWidget.cc ├── ApvlvFileWidget.h ├── ApvlvFrame.cc ├── ApvlvFrame.h ├── ApvlvImageWidget.cc ├── ApvlvImageWidget.h ├── ApvlvInfo.cc ├── ApvlvInfo.h ├── ApvlvLab.cc ├── ApvlvLab.h ├── ApvlvLog.cc ├── ApvlvLog.h ├── ApvlvMarkdown.cc ├── ApvlvMarkdown.h ├── ApvlvNote.cc ├── ApvlvNote.h ├── ApvlvNoteWidget.cc ├── ApvlvNoteWidget.h ├── ApvlvOCR.cc ├── ApvlvOCR.h ├── ApvlvParams.cc ├── ApvlvParams.h ├── ApvlvQueue.cc ├── ApvlvQueue.h ├── ApvlvSearch.cc ├── ApvlvSearch.h ├── ApvlvSearchDialog.cc ├── ApvlvSearchDialog.h ├── ApvlvUtil.cc ├── ApvlvUtil.h ├── ApvlvView.cc ├── ApvlvView.h ├── ApvlvWeb.cc ├── ApvlvWeb.h ├── ApvlvWebViewWidget.cc ├── ApvlvWebViewWidget.h ├── ApvlvWidget.cc ├── ApvlvWidget.h ├── ApvlvWindow.cc ├── ApvlvWindow.h ├── CMakeLists.txt ├── Engines.cmake ├── Sources.cmake ├── WindowsEngines.cmake ├── config.h.in ├── file │ ├── ApvlvAxOffice.cc │ ├── ApvlvAxOffice.h │ ├── ApvlvDjvu.cc │ ├── ApvlvDjvu.h │ ├── ApvlvEpub.cc │ ├── ApvlvEpub.h │ ├── ApvlvFb2.cc │ ├── ApvlvFb2.h │ ├── ApvlvHtm.cc │ ├── ApvlvHtm.h │ ├── ApvlvImage.cc │ ├── ApvlvImage.h │ ├── ApvlvLibreOffice.cc │ ├── ApvlvLibreOffice.h │ ├── ApvlvMuPdf.cc │ ├── ApvlvMuPdf.h │ ├── ApvlvPopplerPdf.cc │ ├── ApvlvPopplerPdf.h │ ├── ApvlvQtPdf.cc │ ├── ApvlvQtPdf.h │ ├── ApvlvTxt.cc │ └── ApvlvTxt.h ├── main.cc └── testNote.cc └── zh_CN.ts /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/.clang-format -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/cmake-multi-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/.github/workflows/cmake-multi-platform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Alf 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/COPYING -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/apvlv-0.0.6-9-dir-and-content-open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/ScreenShots/apvlv-0.0.6-9-dir-and-content-open.jpg -------------------------------------------------------------------------------- /ScreenShots/apvlv-0.0.6-9-dir-and-content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/ScreenShots/apvlv-0.0.6-9-dir-and-content.jpg -------------------------------------------------------------------------------- /ScreenShots/apvlv-0.0.6-9-dirview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/ScreenShots/apvlv-0.0.6-9-dirview.jpg -------------------------------------------------------------------------------- /ScreenShots/apvlv-0.4.0-annot-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/ScreenShots/apvlv-0.4.0-annot-comment.png -------------------------------------------------------------------------------- /ScreenShots/apvlv-0.4.0-annot-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/ScreenShots/apvlv-0.4.0-annot-underline.png -------------------------------------------------------------------------------- /Startup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/Startup.pdf -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/TODO -------------------------------------------------------------------------------- /apvlv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/apvlv.1 -------------------------------------------------------------------------------- /apvlvrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/apvlvrc.example -------------------------------------------------------------------------------- /cmake/CompileFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/cmake/CompileFlags.cmake -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/cmake/Options.cmake -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /share/applications/apvlv.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/share/applications/apvlv.desktop -------------------------------------------------------------------------------- /share/doc/apvlv/icons/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/share/doc/apvlv/icons/dir.png -------------------------------------------------------------------------------- /share/doc/apvlv/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/share/doc/apvlv/icons/pdf.png -------------------------------------------------------------------------------- /share/doc/apvlv/icons/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/share/doc/apvlv/icons/reg.png -------------------------------------------------------------------------------- /share/scripts/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/share/scripts/internal.js -------------------------------------------------------------------------------- /src/ApvlvCmds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvCmds.cc -------------------------------------------------------------------------------- /src/ApvlvCmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvCmds.h -------------------------------------------------------------------------------- /src/ApvlvCompletion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvCompletion.cc -------------------------------------------------------------------------------- /src/ApvlvCompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvCompletion.h -------------------------------------------------------------------------------- /src/ApvlvDirectory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvDirectory.cc -------------------------------------------------------------------------------- /src/ApvlvDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvDirectory.h -------------------------------------------------------------------------------- /src/ApvlvDired.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvDired.cc -------------------------------------------------------------------------------- /src/ApvlvDired.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvDired.h -------------------------------------------------------------------------------- /src/ApvlvEditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvEditor.cc -------------------------------------------------------------------------------- /src/ApvlvEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvEditor.h -------------------------------------------------------------------------------- /src/ApvlvFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFile.cc -------------------------------------------------------------------------------- /src/ApvlvFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFile.h -------------------------------------------------------------------------------- /src/ApvlvFileIndex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFileIndex.cc -------------------------------------------------------------------------------- /src/ApvlvFileIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFileIndex.h -------------------------------------------------------------------------------- /src/ApvlvFileWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFileWidget.cc -------------------------------------------------------------------------------- /src/ApvlvFileWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFileWidget.h -------------------------------------------------------------------------------- /src/ApvlvFrame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFrame.cc -------------------------------------------------------------------------------- /src/ApvlvFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvFrame.h -------------------------------------------------------------------------------- /src/ApvlvImageWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvImageWidget.cc -------------------------------------------------------------------------------- /src/ApvlvImageWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvImageWidget.h -------------------------------------------------------------------------------- /src/ApvlvInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvInfo.cc -------------------------------------------------------------------------------- /src/ApvlvInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvInfo.h -------------------------------------------------------------------------------- /src/ApvlvLab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvLab.cc -------------------------------------------------------------------------------- /src/ApvlvLab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvLab.h -------------------------------------------------------------------------------- /src/ApvlvLog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvLog.cc -------------------------------------------------------------------------------- /src/ApvlvLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvLog.h -------------------------------------------------------------------------------- /src/ApvlvMarkdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvMarkdown.cc -------------------------------------------------------------------------------- /src/ApvlvMarkdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvMarkdown.h -------------------------------------------------------------------------------- /src/ApvlvNote.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvNote.cc -------------------------------------------------------------------------------- /src/ApvlvNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvNote.h -------------------------------------------------------------------------------- /src/ApvlvNoteWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvNoteWidget.cc -------------------------------------------------------------------------------- /src/ApvlvNoteWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvNoteWidget.h -------------------------------------------------------------------------------- /src/ApvlvOCR.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvOCR.cc -------------------------------------------------------------------------------- /src/ApvlvOCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvOCR.h -------------------------------------------------------------------------------- /src/ApvlvParams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvParams.cc -------------------------------------------------------------------------------- /src/ApvlvParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvParams.h -------------------------------------------------------------------------------- /src/ApvlvQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvQueue.cc -------------------------------------------------------------------------------- /src/ApvlvQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvQueue.h -------------------------------------------------------------------------------- /src/ApvlvSearch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvSearch.cc -------------------------------------------------------------------------------- /src/ApvlvSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvSearch.h -------------------------------------------------------------------------------- /src/ApvlvSearchDialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvSearchDialog.cc -------------------------------------------------------------------------------- /src/ApvlvSearchDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvSearchDialog.h -------------------------------------------------------------------------------- /src/ApvlvUtil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvUtil.cc -------------------------------------------------------------------------------- /src/ApvlvUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvUtil.h -------------------------------------------------------------------------------- /src/ApvlvView.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvView.cc -------------------------------------------------------------------------------- /src/ApvlvView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvView.h -------------------------------------------------------------------------------- /src/ApvlvWeb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWeb.cc -------------------------------------------------------------------------------- /src/ApvlvWeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWeb.h -------------------------------------------------------------------------------- /src/ApvlvWebViewWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWebViewWidget.cc -------------------------------------------------------------------------------- /src/ApvlvWebViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWebViewWidget.h -------------------------------------------------------------------------------- /src/ApvlvWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWidget.cc -------------------------------------------------------------------------------- /src/ApvlvWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWidget.h -------------------------------------------------------------------------------- /src/ApvlvWindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWindow.cc -------------------------------------------------------------------------------- /src/ApvlvWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/ApvlvWindow.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Engines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/Engines.cmake -------------------------------------------------------------------------------- /src/Sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/Sources.cmake -------------------------------------------------------------------------------- /src/WindowsEngines.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/WindowsEngines.cmake -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/file/ApvlvAxOffice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvAxOffice.cc -------------------------------------------------------------------------------- /src/file/ApvlvAxOffice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvAxOffice.h -------------------------------------------------------------------------------- /src/file/ApvlvDjvu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvDjvu.cc -------------------------------------------------------------------------------- /src/file/ApvlvDjvu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvDjvu.h -------------------------------------------------------------------------------- /src/file/ApvlvEpub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvEpub.cc -------------------------------------------------------------------------------- /src/file/ApvlvEpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvEpub.h -------------------------------------------------------------------------------- /src/file/ApvlvFb2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvFb2.cc -------------------------------------------------------------------------------- /src/file/ApvlvFb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvFb2.h -------------------------------------------------------------------------------- /src/file/ApvlvHtm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvHtm.cc -------------------------------------------------------------------------------- /src/file/ApvlvHtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvHtm.h -------------------------------------------------------------------------------- /src/file/ApvlvImage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvImage.cc -------------------------------------------------------------------------------- /src/file/ApvlvImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvImage.h -------------------------------------------------------------------------------- /src/file/ApvlvLibreOffice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvLibreOffice.cc -------------------------------------------------------------------------------- /src/file/ApvlvLibreOffice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvLibreOffice.h -------------------------------------------------------------------------------- /src/file/ApvlvMuPdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvMuPdf.cc -------------------------------------------------------------------------------- /src/file/ApvlvMuPdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvMuPdf.h -------------------------------------------------------------------------------- /src/file/ApvlvPopplerPdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvPopplerPdf.cc -------------------------------------------------------------------------------- /src/file/ApvlvPopplerPdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvPopplerPdf.h -------------------------------------------------------------------------------- /src/file/ApvlvQtPdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvQtPdf.cc -------------------------------------------------------------------------------- /src/file/ApvlvQtPdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvQtPdf.h -------------------------------------------------------------------------------- /src/file/ApvlvTxt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvTxt.cc -------------------------------------------------------------------------------- /src/file/ApvlvTxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/file/ApvlvTxt.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/testNote.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/src/testNote.cc -------------------------------------------------------------------------------- /zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihe2010/apvlv/HEAD/zh_CN.ts --------------------------------------------------------------------------------