├── CMakeLists.txt ├── COPYING ├── MLBookProc ├── CMakeLists.txt ├── MLBookProc │ ├── COPYING │ ├── genre_groups.csv │ └── genres.csv ├── MLBookProcConfig.cmake.in ├── XMLParserCPP │ ├── CMakeLists.txt │ ├── COPYING │ ├── XMLParserCPPConfig.cmake.in │ ├── include │ │ ├── CMakeLists.txt │ │ ├── XMLAlgorithms.h │ │ ├── XMLElement.h │ │ ├── XMLElementAttribute.h │ │ ├── XMLParserCPP.h │ │ └── XMLTextEncoding.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── XMLAlgorithms.cpp │ │ ├── XMLElement.cpp │ │ ├── XMLElementAttribute.cpp │ │ ├── XMLParserCPP.cpp │ │ └── XMLTextEncoding.cpp ├── cmake_modules │ └── FindDJVU.cmake ├── include │ ├── ARCHParser.h │ ├── AddBook.h │ ├── ArchEntry.h │ ├── ArchiveFileEntry.h │ ├── ArchiveRemoveEntry.h │ ├── AuxFunc.h │ ├── BaseKeeper.h │ ├── BookBaseEntry.h │ ├── BookInfo.h │ ├── BookInfoEntry.h │ ├── BookMarks.h │ ├── BookParseEntry.h │ ├── ByteOrder.h │ ├── CMakeLists.txt │ ├── CreateCollection.h │ ├── DCParser.h │ ├── DJVUParser.h │ ├── DublinCoreParser.h │ ├── EPUBParser.h │ ├── ElectroBookInfoEntry.h │ ├── FB2Parser.h │ ├── FileParseEntry.h │ ├── FormatAnnotation.h │ ├── Genre.h │ ├── GenreGroup.h │ ├── Hasher.h │ ├── LibArchive.h │ ├── MLException.h │ ├── NotesBaseEntry.h │ ├── NotesKeeper.h │ ├── ODTParser.h │ ├── OmpLockGuard.h │ ├── OpenBook.h │ ├── PDFParser.h │ ├── PaperBookInfoEntry.h │ ├── RefreshCollection.h │ ├── RemoveBook.h │ ├── ReplaceTagItem.h │ ├── SelfRemovingPath.h │ ├── TXTParser.h │ ├── XMLParser.h │ └── XMLTag.h ├── omp_test │ ├── CMakeLists.txt │ └── main.cpp ├── pthread_test │ ├── CMakeLists.txt │ └── main.cpp ├── src │ ├── ARCHParser.cpp │ ├── AddBook.cpp │ ├── ArchEntry.cpp │ ├── ArchiveFileEntry.cpp │ ├── ArchiveRemoveEntry.cpp │ ├── AuxFunc.cpp │ ├── BaseKeeper.cpp │ ├── BookBaseEntry.cpp │ ├── BookInfo.cpp │ ├── BookInfoEntry.cpp │ ├── BookMarks.cpp │ ├── BookParseEntry.cpp │ ├── ByteOrder.cpp │ ├── CMakeLists.txt │ ├── CreateCollection.cpp │ ├── DCParser.cpp │ ├── DJVUParser.cpp │ ├── DublinCoreParser.cpp │ ├── EPUBParser.cpp │ ├── ElectroBookInfoEntry.cpp │ ├── FB2Parser.cpp │ ├── FileParseEntry.cpp │ ├── FormatAnnotation.cpp │ ├── Genre.cpp │ ├── GenreGroup.cpp │ ├── Hasher.cpp │ ├── LibArchive.cpp │ ├── MLException.cpp │ ├── NotesBaseEntry.cpp │ ├── NotesKeeper.cpp │ ├── ODTParser.cpp │ ├── OmpLockGuard.cpp │ ├── OpenBook.cpp │ ├── PDFParser.cpp │ ├── PaperBookInfoEntry.cpp │ ├── RefreshCollection.cpp │ ├── RemoveBook.cpp │ ├── ReplaceTagItem.cpp │ ├── SelfRemovingPath.cpp │ ├── TXTParser.cpp │ ├── XMLParser.cpp │ └── XMLTag.cpp └── stdexecution_test │ ├── CMakeLists.txt │ └── main.cpp ├── MLPluginIfc ├── CMakeLists.txt ├── MLPluginIfcConfig.cmake.in ├── examples │ ├── ExamplePlugin.cpp │ └── ExamplePlugin.h ├── include │ ├── CMakeLists.txt │ └── MLPlugin.h └── src │ ├── CMakeLists.txt │ └── MLPlugin.cpp ├── MyLibrary ├── COPYING └── MLStyles.css ├── README.md ├── README_RU.md ├── include ├── AddBookGui.h ├── AddBookModelItem.h ├── BookInfoGui.h ├── BookMarksGui.h ├── BookMarksModelItem.h ├── BookMarksShow.h ├── BooksWindow.h ├── CMakeLists.txt ├── CollectionCrProcessGui.h ├── CopyBookGui.h ├── CoverPixBuf.h ├── CreateCollectionGui.h ├── EditBookGenreModelItem.h ├── EditBookGui.h ├── EmptyCollectionGui.h ├── ExportCollectionGui.h ├── FullSizeCover.h ├── ImportCollectionGui.h ├── LeftGrid.h ├── MagickModelItem.h ├── MainWindow.h ├── MyLibraryApplication.h ├── NotesGui.h ├── PluginsKeeper.h ├── RefreshCollectionGui.h ├── RemoveBookGui.h ├── RemoveCollectionGui.h ├── RightGrid.h ├── SaveCover.h ├── SearchProcessGui.h ├── SearchResultModelItem.h ├── SearchResultModelItemAuth.h ├── SearchResultModelItemFL.h ├── SearchResultShow.h ├── SettingsWindow.h └── TransferBookGui.h ├── mylibrary.ico ├── mylibrary.svg ├── po └── MyLibrary.po ├── ru.mail.bobilev_yury.MyLibrary.desktop ├── ru.mail.bobilev_yury.MyLibrary.omp.desktop └── src ├── AddBookGui.cpp ├── AddBookModelItem.cpp ├── BookInfoGui.cpp ├── BookMarksGui.cpp ├── BookMarksModelItem.cpp ├── BookMarksShow.cpp ├── BooksWindow.cpp ├── CMakeLists.txt ├── CollectionCrProcessGui.cpp ├── CopyBookGui.cpp ├── CoverPixBuf.cpp ├── CreateCollectionGui.cpp ├── EditBookGenreModelItem.cpp ├── EditBookGui.cpp ├── EmptyCollectionGui.cpp ├── ExportCollectionGui.cpp ├── FullSizeCover.cpp ├── ImportCollectionGui.cpp ├── LeftGrid.cpp ├── MagickModelItem.cpp ├── MainWindow.cpp ├── MyLibraryApplication.cpp ├── NotesGui.cpp ├── PluginsKeeper.cpp ├── RefreshCollectionGui.cpp ├── RemoveBookGui.cpp ├── RemoveCollectionGui.cpp ├── RightGrid.cpp ├── SaveCover.cpp ├── SearchProcessGui.cpp ├── SearchResultModelItem.cpp ├── SearchResultModelItemAuth.cpp ├── SearchResultModelItemFL.cpp ├── SearchResultShow.cpp ├── SettingsWindow.cpp ├── TransferBookGui.cpp └── main.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/COPYING -------------------------------------------------------------------------------- /MLBookProc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/MLBookProc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/MLBookProc/COPYING -------------------------------------------------------------------------------- /MLBookProc/MLBookProc/genre_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/MLBookProc/genre_groups.csv -------------------------------------------------------------------------------- /MLBookProc/MLBookProc/genres.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/MLBookProc/genres.csv -------------------------------------------------------------------------------- /MLBookProc/MLBookProcConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/MLBookProcConfig.cmake.in -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/COPYING -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/XMLParserCPPConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/XMLParserCPPConfig.cmake.in -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/XMLAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/XMLAlgorithms.h -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/XMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/XMLElement.h -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/XMLElementAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/XMLElementAttribute.h -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/XMLParserCPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/XMLParserCPP.h -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/include/XMLTextEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/include/XMLTextEncoding.h -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/XMLAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/XMLAlgorithms.cpp -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/XMLElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/XMLElement.cpp -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/XMLElementAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/XMLElementAttribute.cpp -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/XMLParserCPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/XMLParserCPP.cpp -------------------------------------------------------------------------------- /MLBookProc/XMLParserCPP/src/XMLTextEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/XMLParserCPP/src/XMLTextEncoding.cpp -------------------------------------------------------------------------------- /MLBookProc/cmake_modules/FindDJVU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/cmake_modules/FindDJVU.cmake -------------------------------------------------------------------------------- /MLBookProc/include/ARCHParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ARCHParser.h -------------------------------------------------------------------------------- /MLBookProc/include/AddBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/AddBook.h -------------------------------------------------------------------------------- /MLBookProc/include/ArchEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ArchEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/ArchiveFileEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ArchiveFileEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/ArchiveRemoveEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ArchiveRemoveEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/AuxFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/AuxFunc.h -------------------------------------------------------------------------------- /MLBookProc/include/BaseKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BaseKeeper.h -------------------------------------------------------------------------------- /MLBookProc/include/BookBaseEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BookBaseEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/BookInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BookInfo.h -------------------------------------------------------------------------------- /MLBookProc/include/BookInfoEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BookInfoEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/BookMarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BookMarks.h -------------------------------------------------------------------------------- /MLBookProc/include/BookParseEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/BookParseEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ByteOrder.h -------------------------------------------------------------------------------- /MLBookProc/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/include/CreateCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/CreateCollection.h -------------------------------------------------------------------------------- /MLBookProc/include/DCParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/DCParser.h -------------------------------------------------------------------------------- /MLBookProc/include/DJVUParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/DJVUParser.h -------------------------------------------------------------------------------- /MLBookProc/include/DublinCoreParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/DublinCoreParser.h -------------------------------------------------------------------------------- /MLBookProc/include/EPUBParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/EPUBParser.h -------------------------------------------------------------------------------- /MLBookProc/include/ElectroBookInfoEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ElectroBookInfoEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/FB2Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/FB2Parser.h -------------------------------------------------------------------------------- /MLBookProc/include/FileParseEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/FileParseEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/FormatAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/FormatAnnotation.h -------------------------------------------------------------------------------- /MLBookProc/include/Genre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/Genre.h -------------------------------------------------------------------------------- /MLBookProc/include/GenreGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/GenreGroup.h -------------------------------------------------------------------------------- /MLBookProc/include/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/Hasher.h -------------------------------------------------------------------------------- /MLBookProc/include/LibArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/LibArchive.h -------------------------------------------------------------------------------- /MLBookProc/include/MLException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/MLException.h -------------------------------------------------------------------------------- /MLBookProc/include/NotesBaseEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/NotesBaseEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/NotesKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/NotesKeeper.h -------------------------------------------------------------------------------- /MLBookProc/include/ODTParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ODTParser.h -------------------------------------------------------------------------------- /MLBookProc/include/OmpLockGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/OmpLockGuard.h -------------------------------------------------------------------------------- /MLBookProc/include/OpenBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/OpenBook.h -------------------------------------------------------------------------------- /MLBookProc/include/PDFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/PDFParser.h -------------------------------------------------------------------------------- /MLBookProc/include/PaperBookInfoEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/PaperBookInfoEntry.h -------------------------------------------------------------------------------- /MLBookProc/include/RefreshCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/RefreshCollection.h -------------------------------------------------------------------------------- /MLBookProc/include/RemoveBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/RemoveBook.h -------------------------------------------------------------------------------- /MLBookProc/include/ReplaceTagItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/ReplaceTagItem.h -------------------------------------------------------------------------------- /MLBookProc/include/SelfRemovingPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/SelfRemovingPath.h -------------------------------------------------------------------------------- /MLBookProc/include/TXTParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/TXTParser.h -------------------------------------------------------------------------------- /MLBookProc/include/XMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/XMLParser.h -------------------------------------------------------------------------------- /MLBookProc/include/XMLTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/include/XMLTag.h -------------------------------------------------------------------------------- /MLBookProc/omp_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/omp_test/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/omp_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/omp_test/main.cpp -------------------------------------------------------------------------------- /MLBookProc/pthread_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/pthread_test/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/pthread_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/pthread_test/main.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ARCHParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ARCHParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/AddBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/AddBook.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ArchEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ArchEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ArchiveFileEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ArchiveFileEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ArchiveRemoveEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ArchiveRemoveEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/AuxFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/AuxFunc.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BaseKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BaseKeeper.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BookBaseEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BookBaseEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BookInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BookInfo.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BookInfoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BookInfoEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BookMarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BookMarks.cpp -------------------------------------------------------------------------------- /MLBookProc/src/BookParseEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/BookParseEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ByteOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ByteOrder.cpp -------------------------------------------------------------------------------- /MLBookProc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/src/CreateCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/CreateCollection.cpp -------------------------------------------------------------------------------- /MLBookProc/src/DCParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/DCParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/DJVUParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/DJVUParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/DublinCoreParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/DublinCoreParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/EPUBParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/EPUBParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ElectroBookInfoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ElectroBookInfoEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/FB2Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/FB2Parser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/FileParseEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/FileParseEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/FormatAnnotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/FormatAnnotation.cpp -------------------------------------------------------------------------------- /MLBookProc/src/Genre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/Genre.cpp -------------------------------------------------------------------------------- /MLBookProc/src/GenreGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/GenreGroup.cpp -------------------------------------------------------------------------------- /MLBookProc/src/Hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/Hasher.cpp -------------------------------------------------------------------------------- /MLBookProc/src/LibArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/LibArchive.cpp -------------------------------------------------------------------------------- /MLBookProc/src/MLException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/MLException.cpp -------------------------------------------------------------------------------- /MLBookProc/src/NotesBaseEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/NotesBaseEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/NotesKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/NotesKeeper.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ODTParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ODTParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/OmpLockGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/OmpLockGuard.cpp -------------------------------------------------------------------------------- /MLBookProc/src/OpenBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/OpenBook.cpp -------------------------------------------------------------------------------- /MLBookProc/src/PDFParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/PDFParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/PaperBookInfoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/PaperBookInfoEntry.cpp -------------------------------------------------------------------------------- /MLBookProc/src/RefreshCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/RefreshCollection.cpp -------------------------------------------------------------------------------- /MLBookProc/src/RemoveBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/RemoveBook.cpp -------------------------------------------------------------------------------- /MLBookProc/src/ReplaceTagItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/ReplaceTagItem.cpp -------------------------------------------------------------------------------- /MLBookProc/src/SelfRemovingPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/SelfRemovingPath.cpp -------------------------------------------------------------------------------- /MLBookProc/src/TXTParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/TXTParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/XMLParser.cpp -------------------------------------------------------------------------------- /MLBookProc/src/XMLTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/src/XMLTag.cpp -------------------------------------------------------------------------------- /MLBookProc/stdexecution_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/stdexecution_test/CMakeLists.txt -------------------------------------------------------------------------------- /MLBookProc/stdexecution_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLBookProc/stdexecution_test/main.cpp -------------------------------------------------------------------------------- /MLPluginIfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/CMakeLists.txt -------------------------------------------------------------------------------- /MLPluginIfc/MLPluginIfcConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/MLPluginIfcConfig.cmake.in -------------------------------------------------------------------------------- /MLPluginIfc/examples/ExamplePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/examples/ExamplePlugin.cpp -------------------------------------------------------------------------------- /MLPluginIfc/examples/ExamplePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/examples/ExamplePlugin.h -------------------------------------------------------------------------------- /MLPluginIfc/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/include/CMakeLists.txt -------------------------------------------------------------------------------- /MLPluginIfc/include/MLPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/include/MLPlugin.h -------------------------------------------------------------------------------- /MLPluginIfc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/src/CMakeLists.txt -------------------------------------------------------------------------------- /MLPluginIfc/src/MLPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MLPluginIfc/src/MLPlugin.cpp -------------------------------------------------------------------------------- /MyLibrary/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MyLibrary/COPYING -------------------------------------------------------------------------------- /MyLibrary/MLStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/MyLibrary/MLStyles.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/README.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/README_RU.md -------------------------------------------------------------------------------- /include/AddBookGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/AddBookGui.h -------------------------------------------------------------------------------- /include/AddBookModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/AddBookModelItem.h -------------------------------------------------------------------------------- /include/BookInfoGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/BookInfoGui.h -------------------------------------------------------------------------------- /include/BookMarksGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/BookMarksGui.h -------------------------------------------------------------------------------- /include/BookMarksModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/BookMarksModelItem.h -------------------------------------------------------------------------------- /include/BookMarksShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/BookMarksShow.h -------------------------------------------------------------------------------- /include/BooksWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/BooksWindow.h -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/CollectionCrProcessGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/CollectionCrProcessGui.h -------------------------------------------------------------------------------- /include/CopyBookGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/CopyBookGui.h -------------------------------------------------------------------------------- /include/CoverPixBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/CoverPixBuf.h -------------------------------------------------------------------------------- /include/CreateCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/CreateCollectionGui.h -------------------------------------------------------------------------------- /include/EditBookGenreModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/EditBookGenreModelItem.h -------------------------------------------------------------------------------- /include/EditBookGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/EditBookGui.h -------------------------------------------------------------------------------- /include/EmptyCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/EmptyCollectionGui.h -------------------------------------------------------------------------------- /include/ExportCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/ExportCollectionGui.h -------------------------------------------------------------------------------- /include/FullSizeCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/FullSizeCover.h -------------------------------------------------------------------------------- /include/ImportCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/ImportCollectionGui.h -------------------------------------------------------------------------------- /include/LeftGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/LeftGrid.h -------------------------------------------------------------------------------- /include/MagickModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/MagickModelItem.h -------------------------------------------------------------------------------- /include/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/MainWindow.h -------------------------------------------------------------------------------- /include/MyLibraryApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/MyLibraryApplication.h -------------------------------------------------------------------------------- /include/NotesGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/NotesGui.h -------------------------------------------------------------------------------- /include/PluginsKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/PluginsKeeper.h -------------------------------------------------------------------------------- /include/RefreshCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/RefreshCollectionGui.h -------------------------------------------------------------------------------- /include/RemoveBookGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/RemoveBookGui.h -------------------------------------------------------------------------------- /include/RemoveCollectionGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/RemoveCollectionGui.h -------------------------------------------------------------------------------- /include/RightGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/RightGrid.h -------------------------------------------------------------------------------- /include/SaveCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SaveCover.h -------------------------------------------------------------------------------- /include/SearchProcessGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SearchProcessGui.h -------------------------------------------------------------------------------- /include/SearchResultModelItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SearchResultModelItem.h -------------------------------------------------------------------------------- /include/SearchResultModelItemAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SearchResultModelItemAuth.h -------------------------------------------------------------------------------- /include/SearchResultModelItemFL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SearchResultModelItemFL.h -------------------------------------------------------------------------------- /include/SearchResultShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SearchResultShow.h -------------------------------------------------------------------------------- /include/SettingsWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/SettingsWindow.h -------------------------------------------------------------------------------- /include/TransferBookGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/include/TransferBookGui.h -------------------------------------------------------------------------------- /mylibrary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/mylibrary.ico -------------------------------------------------------------------------------- /mylibrary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/mylibrary.svg -------------------------------------------------------------------------------- /po/MyLibrary.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/po/MyLibrary.po -------------------------------------------------------------------------------- /ru.mail.bobilev_yury.MyLibrary.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/ru.mail.bobilev_yury.MyLibrary.desktop -------------------------------------------------------------------------------- /ru.mail.bobilev_yury.MyLibrary.omp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/ru.mail.bobilev_yury.MyLibrary.omp.desktop -------------------------------------------------------------------------------- /src/AddBookGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/AddBookGui.cpp -------------------------------------------------------------------------------- /src/AddBookModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/AddBookModelItem.cpp -------------------------------------------------------------------------------- /src/BookInfoGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/BookInfoGui.cpp -------------------------------------------------------------------------------- /src/BookMarksGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/BookMarksGui.cpp -------------------------------------------------------------------------------- /src/BookMarksModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/BookMarksModelItem.cpp -------------------------------------------------------------------------------- /src/BookMarksShow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/BookMarksShow.cpp -------------------------------------------------------------------------------- /src/BooksWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/BooksWindow.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CollectionCrProcessGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/CollectionCrProcessGui.cpp -------------------------------------------------------------------------------- /src/CopyBookGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/CopyBookGui.cpp -------------------------------------------------------------------------------- /src/CoverPixBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/CoverPixBuf.cpp -------------------------------------------------------------------------------- /src/CreateCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/CreateCollectionGui.cpp -------------------------------------------------------------------------------- /src/EditBookGenreModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/EditBookGenreModelItem.cpp -------------------------------------------------------------------------------- /src/EditBookGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/EditBookGui.cpp -------------------------------------------------------------------------------- /src/EmptyCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/EmptyCollectionGui.cpp -------------------------------------------------------------------------------- /src/ExportCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/ExportCollectionGui.cpp -------------------------------------------------------------------------------- /src/FullSizeCover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/FullSizeCover.cpp -------------------------------------------------------------------------------- /src/ImportCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/ImportCollectionGui.cpp -------------------------------------------------------------------------------- /src/LeftGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/LeftGrid.cpp -------------------------------------------------------------------------------- /src/MagickModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/MagickModelItem.cpp -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MyLibraryApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/MyLibraryApplication.cpp -------------------------------------------------------------------------------- /src/NotesGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/NotesGui.cpp -------------------------------------------------------------------------------- /src/PluginsKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/PluginsKeeper.cpp -------------------------------------------------------------------------------- /src/RefreshCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/RefreshCollectionGui.cpp -------------------------------------------------------------------------------- /src/RemoveBookGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/RemoveBookGui.cpp -------------------------------------------------------------------------------- /src/RemoveCollectionGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/RemoveCollectionGui.cpp -------------------------------------------------------------------------------- /src/RightGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/RightGrid.cpp -------------------------------------------------------------------------------- /src/SaveCover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SaveCover.cpp -------------------------------------------------------------------------------- /src/SearchProcessGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SearchProcessGui.cpp -------------------------------------------------------------------------------- /src/SearchResultModelItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SearchResultModelItem.cpp -------------------------------------------------------------------------------- /src/SearchResultModelItemAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SearchResultModelItemAuth.cpp -------------------------------------------------------------------------------- /src/SearchResultModelItemFL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SearchResultModelItemFL.cpp -------------------------------------------------------------------------------- /src/SearchResultShow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SearchResultShow.cpp -------------------------------------------------------------------------------- /src/SettingsWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/SettingsWindow.cpp -------------------------------------------------------------------------------- /src/TransferBookGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/TransferBookGui.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProfessorNavigator/mylibrary/HEAD/src/main.cpp --------------------------------------------------------------------------------