├── Qt7z ├── .gitignore ├── Qt7z │ ├── p7zip │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── UI │ │ │ │ │ ├── GUI │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ ├── resource2.h │ │ │ │ │ │ ├── resource3.h │ │ │ │ │ │ └── HashGUI.h │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── BenchCon.h │ │ │ │ │ ├── P7ZIP │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── ClientCodec │ │ │ │ │ │ └── makefile.depend │ │ │ │ │ ├── FileManager │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ │ │ ├── ComboDialogRes.h │ │ │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ │ │ ├── HelpUtils.h │ │ │ │ │ │ ├── CopyDialogRes.h │ │ │ │ │ │ ├── SplitDialogRes.h │ │ │ │ │ │ ├── ClassDefs.cpp │ │ │ │ │ │ ├── PropertyName.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ │ │ ├── StringUtils.h │ │ │ │ │ │ ├── FormatUtils.h │ │ │ │ │ │ └── DialogSize.h │ │ │ │ │ ├── Explorer │ │ │ │ │ │ └── ContextMenu.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ └── ArchiveName.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Rar │ │ │ │ │ │ └── makefile.depend │ │ │ │ │ ├── Lzham │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── zlib.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── lzhamcomp │ │ │ │ │ │ │ └── lzham_threading.h │ │ │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ │ │ ├── XpressDecoder.h │ │ │ │ │ ├── LzOutWindow.cpp │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ ├── Lz4Register.cpp │ │ │ │ │ ├── Lz5Register.cpp │ │ │ │ │ ├── LizardRegister.cpp │ │ │ │ │ ├── FastLzma2Register.cpp │ │ │ │ │ ├── BrotliRegister.cpp │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ ├── PpmdRegister.cpp │ │ │ │ │ └── Lzma2Register.cpp │ │ │ │ ├── TEST │ │ │ │ │ └── TestUI │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── LzmaCon │ │ │ │ │ │ └── makefile.depend │ │ │ │ │ ├── SFXCon │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ │ └── Format7zFree │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile │ │ │ │ ├── Common │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Archive │ │ │ │ │ ├── DeflateProps.cpp │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ └── 7zProperties.h │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ └── FindSignature.h │ │ │ │ │ ├── DeflateProps.h │ │ │ │ │ ├── XzHandler.h │ │ │ │ │ ├── Iso │ │ │ │ │ │ ├── IsoHeader.cpp │ │ │ │ │ │ └── IsoRegister.cpp │ │ │ │ │ ├── Cab │ │ │ │ │ │ ├── CabRegister.cpp │ │ │ │ │ │ └── CabHeader.cpp │ │ │ │ │ └── Nsis │ │ │ │ │ │ └── NsisRegister.cpp │ │ │ │ ├── MyVersion.h │ │ │ │ ├── Q7Zip │ │ │ │ │ └── all.pro │ │ │ │ ├── QMAKE │ │ │ │ │ └── all.pro │ │ │ │ ├── PREMAKE │ │ │ │ │ └── generate.sh │ │ │ │ ├── Crypto │ │ │ │ │ ├── MyAesReg.cpp │ │ │ │ │ └── 7zAesRegister.cpp │ │ │ │ ├── CMAKE │ │ │ │ │ └── generate_xcode.sh │ │ │ │ └── IProgress.h │ │ │ ├── myWindows │ │ │ │ ├── makefile.depend │ │ │ │ └── initguid.h │ │ │ ├── Windows │ │ │ │ ├── Menu.h │ │ │ │ ├── ErrorMsg.h │ │ │ │ ├── System.h │ │ │ │ ├── ResourceString.h │ │ │ │ ├── Shell.h │ │ │ │ └── Control │ │ │ │ │ └── Static.h │ │ │ ├── Common │ │ │ │ ├── MyVector.cpp │ │ │ │ ├── CRC.cpp │ │ │ │ ├── XzCrc64Init.cpp │ │ │ │ ├── Random.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyException.h │ │ │ │ ├── Common.h │ │ │ │ ├── ListFileUtils.h │ │ │ │ └── UTFConvert.h │ │ │ └── ANDROID │ │ │ │ ├── Lzham │ │ │ │ ├── makefile │ │ │ │ └── jni │ │ │ │ │ └── Application.mk │ │ │ │ ├── 7z │ │ │ │ ├── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── makefile │ │ │ │ ├── MemLat │ │ │ │ ├── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── makefile │ │ │ │ ├── PipeLen │ │ │ │ ├── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── makefile │ │ │ │ ├── test_lib │ │ │ │ ├── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── makefile │ │ │ │ ├── Format7zFree │ │ │ │ ├── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── makefile │ │ │ │ ├── 7za │ │ │ │ └── jni │ │ │ │ │ └── Application.mk │ │ │ │ └── 7zr │ │ │ │ └── jni │ │ │ │ └── Application.mk │ │ ├── GUI │ │ │ ├── Contents │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ │ └── p7zip.icns │ │ │ ├── p7zip_16.png │ │ │ ├── p7zip_32.png │ │ │ ├── p7zip_16.icns │ │ │ └── p7zip_16_ok.png │ │ ├── Utils │ │ │ ├── CPUTest │ │ │ │ ├── MemLat │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── makefile.list │ │ │ │ │ └── makefile │ │ │ │ ├── PipeLen │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── MemLat │ │ │ │ │ ├── makefile.list │ │ │ │ │ └── makefile │ │ │ │ └── MyVersion.h │ │ │ └── file_TestUI.py │ │ ├── DOC │ │ │ ├── Struct.ldb │ │ │ ├── Struct.EAP │ │ │ └── MANUAL │ │ │ │ └── 7-zip.chm │ │ ├── C │ │ │ ├── hashes │ │ │ │ └── README.md │ │ │ ├── Precomp.h │ │ │ ├── fast-lzma2 │ │ │ │ └── data_block.h │ │ │ └── Sort.h │ │ ├── check │ │ │ ├── test │ │ │ │ ├── 7za.exe.lz │ │ │ │ ├── 7za.exe.xz │ │ │ │ ├── 7za.exe.lzma │ │ │ │ ├── 7za.exe.lzma86 │ │ │ │ ├── 7za433_rar.rar │ │ │ │ ├── 7za433_rar4.rar │ │ │ │ ├── 7za433_tar.tar │ │ │ │ ├── 7za.exe.lzma_eos │ │ │ │ ├── 7za433_7zip_bzip2.7z │ │ │ │ ├── 7za433_7zip_lzma.7z │ │ │ │ ├── 7za433_7zip_lzma2.7z │ │ │ │ ├── 7za433_7zip_ppmd.7z │ │ │ │ ├── 7za433_7zip_lzma2_bcj2.7z │ │ │ │ ├── 7za433_7zip_lzma_bcj2.7z │ │ │ │ ├── 7za433_7zip_ppmd_bcj2.7z │ │ │ │ ├── 7za433_7zip_lzma2_crypto.7z │ │ │ │ └── 7za433_7zip_lzma_crypto.7z │ │ │ └── clean_all.sh │ │ ├── makefile.crc32 │ │ ├── rpm │ │ │ └── make_rpm.sh │ │ ├── makefile.hpux-acc │ │ ├── makefile.beos │ │ ├── makefile.haiku │ │ ├── makefile.solaris_x86 │ │ ├── makefile.cygwin │ │ ├── makefile.gprof │ │ ├── makefile.cygwin64 │ │ ├── makefile.cygwin_clang │ │ ├── makefile.freebsd5 │ │ ├── install_local_context_menu.sh │ │ ├── makefile.hpux-gcc │ │ ├── makefile.hpux-acc_64 │ │ ├── makefile.freebsd6+ │ │ ├── makefile.djgpp │ │ └── makefile.macosx_gcc_32bits │ ├── qt7zfileinfo.cpp │ ├── 7zip │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone │ │ │ │ │ │ ├── afxres.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── SFXWin │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Fm │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Format7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Format7zF │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── LzmaCon │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── SFXCon │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── SFXSetup │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── setup.ico │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── ExtractEngine.h │ │ │ │ │ ├── Format7zExtract │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ └── makefile │ │ │ │ ├── UI │ │ │ │ │ ├── Far │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── GUI │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── FM.ico │ │ │ │ │ │ ├── resource2.h │ │ │ │ │ │ ├── resource2.rc │ │ │ │ │ │ ├── resource3.h │ │ │ │ │ │ └── resource3.rc │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── BenchCon.h │ │ │ │ │ ├── Explorer │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── MenuLogo.bmp │ │ │ │ │ │ ├── Explorer.def │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── RegistryContextMenu.h │ │ │ │ │ ├── FileManager │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── EditDialogRes.h │ │ │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ │ │ ├── Add.bmp │ │ │ │ │ │ ├── Add2.bmp │ │ │ │ │ │ ├── ComboDialogRes.h │ │ │ │ │ │ ├── Copy.bmp │ │ │ │ │ │ ├── FM.ico │ │ │ │ │ │ ├── Info.bmp │ │ │ │ │ │ ├── Move.bmp │ │ │ │ │ │ ├── Test.bmp │ │ │ │ │ │ ├── Copy2.bmp │ │ │ │ │ │ ├── Delete.bmp │ │ │ │ │ │ ├── Info2.bmp │ │ │ │ │ │ ├── Move2.bmp │ │ │ │ │ │ ├── Test2.bmp │ │ │ │ │ │ ├── 7zipLogo.ico │ │ │ │ │ │ ├── Delete2.bmp │ │ │ │ │ │ ├── Extract.bmp │ │ │ │ │ │ ├── Extract2.bmp │ │ │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ │ │ ├── HelpUtils.h │ │ │ │ │ │ ├── LangPageRes.h │ │ │ │ │ │ ├── CopyDialogRes.h │ │ │ │ │ │ ├── SplitDialogRes.h │ │ │ │ │ │ ├── AboutDialogRes.h │ │ │ │ │ │ ├── ClassDefs.cpp │ │ │ │ │ │ ├── PropertyName.h │ │ │ │ │ │ ├── EnumFormatEtc.h │ │ │ │ │ │ ├── BrowseDialogRes.h │ │ │ │ │ │ ├── SystemPageRes.h │ │ │ │ │ │ ├── EditPage.rc │ │ │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ │ │ ├── MenuPageRes.h │ │ │ │ │ │ ├── StringUtils.h │ │ │ │ │ │ ├── FormatUtils.h │ │ │ │ │ │ ├── ComboDialog.rc │ │ │ │ │ │ ├── ProgressDialog.rc │ │ │ │ │ │ ├── EditDialog.rc │ │ │ │ │ │ ├── EditPageRes.h │ │ │ │ │ │ ├── SettingsPage.rc │ │ │ │ │ │ └── MenuPage.rc │ │ │ │ │ ├── Agent │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ └── TempFiles.cpp │ │ │ │ │ └── makefile │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── 7zProperties.h │ │ │ │ │ ├── Rar │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── DeflateProps.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── FindSignature.h │ │ │ │ │ ├── Icons │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ ├── gz.ico │ │ │ │ │ │ ├── xz.ico │ │ │ │ │ │ ├── z.ico │ │ │ │ │ │ ├── arj.ico │ │ │ │ │ │ ├── bz2.ico │ │ │ │ │ │ ├── cab.ico │ │ │ │ │ │ ├── cpio.ico │ │ │ │ │ │ ├── deb.ico │ │ │ │ │ │ ├── dmg.ico │ │ │ │ │ │ ├── fat.ico │ │ │ │ │ │ ├── hfs.ico │ │ │ │ │ │ ├── iso.ico │ │ │ │ │ │ ├── lzh.ico │ │ │ │ │ │ ├── lzma.ico │ │ │ │ │ │ ├── ntfs.ico │ │ │ │ │ │ ├── rar.ico │ │ │ │ │ │ ├── rpm.ico │ │ │ │ │ │ ├── split.ico │ │ │ │ │ │ ├── tar.ico │ │ │ │ │ │ ├── vhd.ico │ │ │ │ │ │ ├── wim.ico │ │ │ │ │ │ ├── xar.ico │ │ │ │ │ │ ├── zip.ico │ │ │ │ │ │ └── squashfs.ico │ │ │ │ │ ├── DeflateProps.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Cab │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── CabRegister.cpp │ │ │ │ │ │ └── CabHeader.cpp │ │ │ │ │ ├── Chm │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Iso │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── IsoHeader.cpp │ │ │ │ │ ├── Nsis │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── NsisRegister.cpp │ │ │ │ │ ├── Tar │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Udf │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Wim │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Zip │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── XzHandler.h │ │ │ │ │ ├── Archive.def │ │ │ │ │ └── makefile │ │ │ │ ├── Common │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── SubBuild.mak │ │ │ │ ├── MyVersion.h │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ ├── Compress │ │ │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ │ │ ├── Codec.def │ │ │ │ │ ├── XpressDecoder.h │ │ │ │ │ ├── LzOutWindow.cpp │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ ├── PpmdRegister.cpp │ │ │ │ │ └── Lzma2Register.cpp │ │ │ │ ├── Crypto │ │ │ │ │ ├── Codec.def │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MyAesReg.cpp │ │ │ │ │ └── 7zAesRegister.cpp │ │ │ │ ├── LzmaDec.mak │ │ │ │ ├── makefile │ │ │ │ ├── Aes.mak │ │ │ │ ├── Crc.mak │ │ │ │ ├── Crc64.mak │ │ │ │ ├── Asm.mak │ │ │ │ └── IProgress.h │ │ │ ├── Common │ │ │ │ ├── MyVector.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── XzCrc64Init.cpp │ │ │ │ ├── Random.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyException.h │ │ │ │ └── UTFConvert.h │ │ │ └── Windows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Control │ │ │ │ ├── StdAfx.h │ │ │ │ ├── ImageList.cpp │ │ │ │ └── Edit.h │ │ │ │ ├── Console.cpp │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── FileMapping.cpp │ │ │ │ ├── ProcessMessages.h │ │ │ │ ├── ErrorMsg.h │ │ │ │ └── ResourceString.h │ │ ├── C │ │ │ ├── Util │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── resource.rc │ │ │ │ │ └── LzmaLibExports.c │ │ │ │ ├── 7zipInstall │ │ │ │ │ ├── 7zip.ico │ │ │ │ │ ├── Precomp.c │ │ │ │ │ ├── Precomp.h │ │ │ │ │ └── resource.h │ │ │ │ ├── SfxSetup │ │ │ │ │ ├── setup.ico │ │ │ │ │ ├── Precomp.c │ │ │ │ │ ├── resource.rc │ │ │ │ │ └── Precomp.h │ │ │ │ ├── 7z │ │ │ │ │ ├── Precomp.c │ │ │ │ │ └── Precomp.h │ │ │ │ └── 7zipUninstall │ │ │ │ │ ├── Precomp.c │ │ │ │ │ ├── 7zipUninstall.ico │ │ │ │ │ ├── Precomp.h │ │ │ │ │ ├── resource.h │ │ │ │ │ └── makefile │ │ │ ├── Precomp.h │ │ │ ├── DllSecur.h │ │ │ └── Sort.h │ │ └── DOC │ │ │ ├── installer.txt │ │ │ └── lzma-history.txt │ ├── windll │ │ ├── x64 │ │ │ └── 7z.dll │ │ └── x86 │ │ │ └── 7z.dll │ ├── 7z │ │ └── 7zVersion.h │ ├── qt7z_global.h │ ├── Qt7z.pro │ └── qt7zfileinfo.h ├── Qt7zTest │ ├── assets │ │ ├── image.7z │ │ ├── mixed.7z │ │ ├── text.7z │ │ ├── password.7z │ │ └── password-filename.7z │ └── Qt7zTest.qrc └── .travis.yml ├── QuickViewer ├── qt.conf ├── qt-win.conf ├── icons │ ├── 24 │ │ ├── home.png │ │ ├── sync.png │ │ ├── check.png │ │ ├── arrow-up.png │ │ ├── three-dot.png │ │ ├── check-box-empty.png │ │ ├── arrow-pointing-to-left.png │ │ └── arrow-pointing-to-right.png │ ├── exif.png │ ├── help.png │ ├── loupe.png │ ├── star.png │ ├── appicon.ico │ ├── catalog.ico │ ├── catalog.png │ ├── fitting.png │ ├── retouch.png │ ├── star_2.png │ ├── star_3.png │ ├── vote_no.png │ ├── arrow_left.png │ ├── dualview.png │ ├── fittowidth.png │ ├── folder_32.png │ ├── folder_48.png │ ├── folder_64.png │ ├── fullscreen.png │ ├── maximize.png │ ├── page_first.png │ ├── page_last.png │ ├── page_next.png │ ├── page_next2.png │ ├── power_plus.png │ ├── preference.png │ ├── rotation.png │ ├── slideshow.png │ ├── stayontop.png │ ├── stayontop2.png │ ├── subfolders.png │ ├── vote_yes.png │ ├── arrow_right.png │ ├── fullscreen2.png │ ├── loupe_cursor.png │ ├── power_minus.png │ ├── preference2.png │ ├── quickviewer.icns │ ├── volume_next.png │ ├── volume_next2.png │ ├── volume_next3.png │ ├── volume_prev.png │ ├── volume_prev2.png │ ├── volume_prev3.png │ ├── bookmark_load.png │ ├── bookmark_manage.png │ ├── bookmark_save.png │ ├── child_separate.png │ ├── education_017.png │ ├── page_next_fast.png │ ├── page_previous.png │ ├── page_previous2.png │ ├── volume_backward.png │ ├── volume_forward.png │ ├── folder_view_icon_red.png │ ├── folder_view_list_red.png │ ├── page_previous_fast.png │ ├── folder_view_icon_blue.png │ ├── folder_view_icon_green.png │ ├── folder_view_list_blue.png │ └── folder_view_list_green.png ├── translations │ ├── qt_el.qm │ ├── quickviewer_ar.qm │ ├── quickviewer_el.qm │ ├── quickviewer_en.qm │ ├── quickviewer_es.qm │ ├── quickviewer_fr.qm │ ├── quickviewer_ja.qm │ ├── quickviewer_ru.qm │ └── quickviewer_zh.qm ├── database │ ├── thumbnail.sqlite3.db │ └── recreatedb.bat ├── src │ ├── models │ │ └── timeorderdcache.cpp │ ├── widgets │ │ └── pageslider.h │ ├── folderview │ │ └── foldertreeview.cpp │ └── catalog │ │ └── qc_init.h ├── qt-linux-appimage.conf ├── qtconf-win.qrc ├── qtconf-macos.qrc ├── qt-macos.conf ├── qtconf-linux-appimage.qrc └── QuickViewer.desktop ├── docs ├── Gemfile ├── .gitignore ├── assets │ ├── css │ │ └── style.scss │ ├── images │ │ ├── hr.jpg │ │ ├── hr-2x.jpg │ │ ├── shield.png │ │ ├── site-2.png │ │ ├── bg-ramp.jpg │ │ ├── chevron.png │ │ ├── octocat.png │ │ ├── chevron-2x.png │ │ ├── footer-ramp.jpg │ │ ├── fork-sprite.png │ │ ├── octocat-2x.png │ │ ├── blockquote-gfx.png │ │ ├── download-sprite.png │ │ ├── shield-fallback.png │ │ ├── blockquote-gfx-2x.png │ │ ├── ribbon-tail-sprite.png │ │ ├── download-fallback-bg.png │ │ ├── ribbon-tail-sprite-2x.png │ │ ├── small-ribbon-tail-sprite.png │ │ └── small-ribbon-tail-sprite-2x.png │ ├── fonts │ │ ├── opensans-bold-webfont.eot │ │ ├── opensans-bold-webfont.ttf │ │ ├── opensans-bold-webfont.woff │ │ ├── opensans-italic-webfont.eot │ │ ├── opensans-italic-webfont.ttf │ │ ├── opensans-italic-webfont.woff │ │ ├── opensans-regular-webfont.eot │ │ ├── opensans-regular-webfont.ttf │ │ ├── opensans-regular-webfont.woff │ │ ├── opensans-bolditalic-webfont.eot │ │ ├── opensans-bolditalic-webfont.ttf │ │ ├── opensans-extrabold-webfont.eot │ │ ├── opensans-extrabold-webfont.ttf │ │ ├── opensans-extrabold-webfont.woff │ │ └── opensans-bolditalic-webfont.woff │ └── js │ │ └── headsmart.min.js ├── compared1.png ├── compared2.png ├── thumbnail.png ├── 62086450_p3.jpg ├── quickviewer.png ├── script │ ├── bootstrap │ └── cibuild ├── shurink-1-bilinear.png ├── shurink-2-bicubic.png ├── shurink-3-lanczos.png ├── shurink-4-bicubic-by-cpu.png ├── another-page.md ├── .travis.yml ├── _sass │ └── jekyll-theme-merlot.scss ├── _config.yml └── _layouts │ └── post.html ├── .gitignore ├── unrar ├── UNRAR_VERSION.txt └── unrar │ ├── dll.rc │ ├── rarpch.cpp │ ├── list.hpp │ ├── global.cpp │ ├── smallfn.hpp │ ├── resource.cpp │ ├── rarlang.hpp │ ├── volume.hpp │ ├── version.hpp │ ├── resource.hpp │ ├── ui.cpp │ ├── global.hpp │ ├── dll.def │ ├── dll_nocrypt.def │ ├── log.hpp │ ├── smallfn.cpp │ ├── filcreat.hpp │ ├── savepos.hpp │ ├── crc.hpp │ ├── isnt.hpp │ └── filestr.hpp ├── .gitattributes ├── qvtest └── data │ ├── deflate-mbcs.zip │ ├── deflate-utf8.zip │ ├── deflate64-mbcs.zip │ └── deflate64-utf8.zip ├── luminor ├── luminor-linux-x64 │ ├── luminor.o │ ├── halide_runtime.a │ └── luminor_rgba.o ├── luminor-macos-x64 │ ├── luminor.o │ ├── halide_runtime.a │ └── luminor_rgba.o ├── luminor-msvc2015-x64 │ ├── luminor.lib │ ├── halide_runtime.lib │ └── luminor_rgba.lib ├── luminor-msvc2015-x86 │ ├── luminor.lib │ ├── halide_runtime.lib │ └── luminor_rgba.lib └── qluminor.h ├── AssociateFilesWithQuickViewer ├── app_icon2.ico ├── icons │ ├── qv_apng.ico │ ├── qv_bmp.ico │ ├── qv_dds.ico │ ├── qv_gif.ico │ ├── qv_icon.ico │ ├── qv_jpeg.ico │ ├── qv_png.ico │ ├── qv_raw.ico │ ├── qv_tga.ico │ ├── qv_tiff.ico │ └── qv_webp.ico ├── resources.qrc └── main.cpp ├── zimg └── StdAfx.h └── .github └── FUNDING.yml /Qt7z/.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/GUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/myWindows/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaONe -------------------------------------------------------------------------------- /QuickViewer/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Plugins = . 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Rar/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/TEST/TestUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Client7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Console/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/P7ZIP/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/MemLat/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/PipeLen/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Alone/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Alone7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/LzmaCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/SFXCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lzham/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/ClientCodec/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/qt7zfileinfo.cpp: -------------------------------------------------------------------------------- 1 | #include "qt7zfileinfo.h" 2 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Format7zFree/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | QuickViewer-* 3 | .svn 4 | build/* 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/Menu.h: -------------------------------------------------------------------------------- 1 | 2 | /* TODO */ 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | Gemfile.lock 4 | *.gem 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXWin/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_ICON 1 2 | -------------------------------------------------------------------------------- /unrar/UNRAR_VERSION.txt: -------------------------------------------------------------------------------- 1 | http://www.rarlab.com/rar/unrarsrc-5.5.2.tar.gz 2 | -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import 'jekyll-theme-merlot'; 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Explorer/ContextMenu.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* TODO */ 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .gitattributes 2 | Qt7z/* linguist-vendored 3 | doc/* linguist-vendored 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Far/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /QuickViewer/qt-win.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix=. 3 | Binaries=. 4 | Libraries=. 5 | Plugins=. 6 | -------------------------------------------------------------------------------- /docs/compared1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/compared1.png -------------------------------------------------------------------------------- /docs/compared2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/compared2.png -------------------------------------------------------------------------------- /docs/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/thumbnail.png -------------------------------------------------------------------------------- /unrar/unrar/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/unrar/unrar/dll.rc -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Rar/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Fm/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/SubBuild.mak: -------------------------------------------------------------------------------- 1 | cd $(@D) 2 | $(MAKE) -nologo $(TARGETS) 3 | cd .. 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "stdafx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/DOC/Struct.ldb: -------------------------------------------------------------------------------- 1 | DESKTOP-2OMGI22 admin -------------------------------------------------------------------------------- /docs/62086450_p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/62086450_p3.jpg -------------------------------------------------------------------------------- /docs/quickviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/quickviewer.png -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zF/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/LzmaCon/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXCon/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXWin/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/LockedStream.cpp: -------------------------------------------------------------------------------- 1 | // LockedStream.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/myWindows/initguid.h: -------------------------------------------------------------------------------- 1 | // initguid.h 2 | 3 | #include "Common/MyInitGuid.h" 4 | 5 | -------------------------------------------------------------------------------- /docs/script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | gem install bundler 6 | bundle install 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtract/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/MyVersionInfo.rc: -------------------------------------------------------------------------------- 1 | #include "MyVersion.h" 2 | #include "..\..\C\7zVersion.rc" 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lzham/include/zlib.h: -------------------------------------------------------------------------------- 1 | #define LZHAM_DEFINE_ZLIB_API 2 | #include "lzham.h" -------------------------------------------------------------------------------- /Qt7z/Qt7z/windll/x64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/windll/x64/7z.dll -------------------------------------------------------------------------------- /Qt7z/Qt7z/windll/x86/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/windll/x86/7z.dll -------------------------------------------------------------------------------- /QuickViewer/icons/exif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/exif.png -------------------------------------------------------------------------------- /QuickViewer/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/help.png -------------------------------------------------------------------------------- /QuickViewer/icons/loupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/loupe.png -------------------------------------------------------------------------------- /QuickViewer/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/star.png -------------------------------------------------------------------------------- /docs/assets/images/hr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/hr.jpg -------------------------------------------------------------------------------- /docs/shurink-1-bilinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/shurink-1-bilinear.png -------------------------------------------------------------------------------- /docs/shurink-2-bicubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/shurink-2-bicubic.png -------------------------------------------------------------------------------- /docs/shurink-3-lanczos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/shurink-3-lanczos.png -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/EditDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_EDIT_DLG 94 2 | #define IDE_EDIT 100 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/assets/image.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7zTest/assets/image.7z -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/assets/mixed.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7zTest/assets/mixed.7z -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/assets/text.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7zTest/assets/text.7z -------------------------------------------------------------------------------- /QuickViewer/icons/24/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/home.png -------------------------------------------------------------------------------- /QuickViewer/icons/24/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/sync.png -------------------------------------------------------------------------------- /QuickViewer/icons/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/appicon.ico -------------------------------------------------------------------------------- /QuickViewer/icons/catalog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/catalog.ico -------------------------------------------------------------------------------- /QuickViewer/icons/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/catalog.png -------------------------------------------------------------------------------- /QuickViewer/icons/fitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/fitting.png -------------------------------------------------------------------------------- /QuickViewer/icons/retouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/retouch.png -------------------------------------------------------------------------------- /QuickViewer/icons/star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/star_2.png -------------------------------------------------------------------------------- /QuickViewer/icons/star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/star_3.png -------------------------------------------------------------------------------- /QuickViewer/icons/vote_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/vote_no.png -------------------------------------------------------------------------------- /docs/assets/images/hr-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/hr-2x.jpg -------------------------------------------------------------------------------- /docs/assets/images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/shield.png -------------------------------------------------------------------------------- /docs/assets/images/site-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/site-2.png -------------------------------------------------------------------------------- /qvtest/data/deflate-mbcs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/qvtest/data/deflate-mbcs.zip -------------------------------------------------------------------------------- /qvtest/data/deflate-utf8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/qvtest/data/deflate-utf8.zip -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ListViewDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_LISTVIEW 99 2 | #define IDL_LISTVIEW 100 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/DOC/installer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/DOC/installer.txt -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/C/hashes/README.md: -------------------------------------------------------------------------------- 1 | 2 | Taken from lib/crypto/* of samba-4.5.8.tar.gz. 3 | 4 | /TR 2018-11-15 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ListViewDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_LISTVIEW 99 2 | #define IDL_LISTVIEW 100 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/DOC/Struct.EAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/DOC/Struct.EAP -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/p7zip_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/GUI/p7zip_16.png -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/p7zip_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/GUI/p7zip_32.png -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/assets/password.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7zTest/assets/password.7z -------------------------------------------------------------------------------- /QuickViewer/icons/24/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/check.png -------------------------------------------------------------------------------- /QuickViewer/icons/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/arrow_left.png -------------------------------------------------------------------------------- /QuickViewer/icons/dualview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/dualview.png -------------------------------------------------------------------------------- /QuickViewer/icons/fittowidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/fittowidth.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_32.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_48.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_64.png -------------------------------------------------------------------------------- /QuickViewer/icons/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/fullscreen.png -------------------------------------------------------------------------------- /QuickViewer/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/maximize.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_first.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_last.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_next.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_next2.png -------------------------------------------------------------------------------- /QuickViewer/icons/power_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/power_plus.png -------------------------------------------------------------------------------- /QuickViewer/icons/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/preference.png -------------------------------------------------------------------------------- /QuickViewer/icons/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/rotation.png -------------------------------------------------------------------------------- /QuickViewer/icons/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/slideshow.png -------------------------------------------------------------------------------- /QuickViewer/icons/stayontop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/stayontop.png -------------------------------------------------------------------------------- /QuickViewer/icons/stayontop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/stayontop2.png -------------------------------------------------------------------------------- /QuickViewer/icons/subfolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/subfolders.png -------------------------------------------------------------------------------- /QuickViewer/icons/vote_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/vote_yes.png -------------------------------------------------------------------------------- /docs/assets/images/bg-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/bg-ramp.jpg -------------------------------------------------------------------------------- /docs/assets/images/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/chevron.png -------------------------------------------------------------------------------- /docs/assets/images/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/octocat.png -------------------------------------------------------------------------------- /qvtest/data/deflate64-mbcs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/qvtest/data/deflate64-mbcs.zip -------------------------------------------------------------------------------- /qvtest/data/deflate64-utf8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/qvtest/data/deflate64-utf8.zip -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Q7Zip/all.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = util7zip Q7Zip 3 | Q7Zip.depends = util7zip 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/Lzham/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=lzham 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/p7zip_16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/GUI/p7zip_16.icns -------------------------------------------------------------------------------- /QuickViewer/icons/24/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/arrow-up.png -------------------------------------------------------------------------------- /QuickViewer/icons/24/three-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/three-dot.png -------------------------------------------------------------------------------- /QuickViewer/icons/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/arrow_right.png -------------------------------------------------------------------------------- /QuickViewer/icons/fullscreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/fullscreen2.png -------------------------------------------------------------------------------- /QuickViewer/icons/loupe_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/loupe_cursor.png -------------------------------------------------------------------------------- /QuickViewer/icons/power_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/power_minus.png -------------------------------------------------------------------------------- /QuickViewer/icons/preference2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/preference2.png -------------------------------------------------------------------------------- /QuickViewer/icons/quickviewer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/quickviewer.icns -------------------------------------------------------------------------------- /QuickViewer/icons/volume_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_next.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_next2.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_next3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_next3.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_prev.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_prev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_prev2.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_prev3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_prev3.png -------------------------------------------------------------------------------- /QuickViewer/translations/qt_el.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/qt_el.qm -------------------------------------------------------------------------------- /docs/assets/images/chevron-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/chevron-2x.png -------------------------------------------------------------------------------- /docs/assets/images/footer-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/footer-ramp.jpg -------------------------------------------------------------------------------- /docs/assets/images/fork-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/fork-sprite.png -------------------------------------------------------------------------------- /docs/assets/images/octocat-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/octocat-2x.png -------------------------------------------------------------------------------- /docs/shurink-4-bicubic-by-cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/shurink-4-bicubic-by-cpu.png -------------------------------------------------------------------------------- /unrar/unrar/rarpch.cpp: -------------------------------------------------------------------------------- 1 | // We use rarpch.cpp to create precompiled headers for MS Visual C++. 2 | #include "rar.hpp" 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ProgressDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_PROGRESS 97 2 | 3 | #define IDC_PROGRESS1 100 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/FM.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/DOC/lzma-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/DOC/lzma-history.txt -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ProgressDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_PROGRESS 97 2 | 3 | #define IDC_PROGRESS1 100 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/DOC/MANUAL/7-zip.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/DOC/MANUAL/7-zip.chm -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/p7zip_16_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/GUI/p7zip_16_ok.png -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za.exe.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za.exe.lz -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za.exe.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za.exe.xz -------------------------------------------------------------------------------- /QuickViewer/icons/bookmark_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/bookmark_load.png -------------------------------------------------------------------------------- /QuickViewer/icons/bookmark_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/bookmark_manage.png -------------------------------------------------------------------------------- /QuickViewer/icons/bookmark_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/bookmark_save.png -------------------------------------------------------------------------------- /QuickViewer/icons/child_separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/child_separate.png -------------------------------------------------------------------------------- /QuickViewer/icons/education_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/education_017.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_next_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_next_fast.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_previous.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_previous2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_previous2.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_backward.png -------------------------------------------------------------------------------- /QuickViewer/icons/volume_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/volume_forward.png -------------------------------------------------------------------------------- /docs/assets/images/blockquote-gfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/blockquote-gfx.png -------------------------------------------------------------------------------- /docs/script/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | bundle exec jekyll build 6 | gem build jekyll-theme-merlot.gemspec 7 | -------------------------------------------------------------------------------- /luminor/luminor-linux-x64/luminor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-linux-x64/luminor.o -------------------------------------------------------------------------------- /luminor/luminor-macos-x64/luminor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-macos-x64/luminor.o -------------------------------------------------------------------------------- /unrar/unrar/list.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_LIST_ 2 | #define _RAR_LIST_ 3 | 4 | void ListArchive(CommandData *Cmd); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../7zVersion.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- 1 | #define IDS_PROGRESS_COMPRESSING 3301 2 | #define IDS_ARCHIVES_COLON 3907 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- 1 | #define IDS_PROGRESS_COMPRESSING 3301 2 | #define IDS_ARCHIVES_COLON 3907 3 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma -------------------------------------------------------------------------------- /docs/assets/images/download-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/download-sprite.png -------------------------------------------------------------------------------- /docs/assets/images/shield-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/shield-fallback.png -------------------------------------------------------------------------------- /unrar/unrar/global.cpp: -------------------------------------------------------------------------------- 1 | #define INCLUDEGLOBAL 2 | 3 | #ifdef _MSC_VER 4 | #pragma hdrstop 5 | #endif 6 | 7 | #include "rar.hpp" 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipInstall/7zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/C/Util/7zipInstall/7zip.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/SfxSetup/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/C/Util/SfxSetup/setup.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/LzmaCon/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("LZMA", "lzma") 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma86 -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_rar.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_rar.rar -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_rar4.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_rar4.rar -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_tar.tar -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/assets/password-filename.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7zTest/assets/password-filename.7z -------------------------------------------------------------------------------- /QuickViewer/database/thumbnail.sqlite3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/database/thumbnail.sqlite3.db -------------------------------------------------------------------------------- /QuickViewer/icons/24/check-box-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/check-box-empty.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_icon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_icon_red.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_list_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_list_red.png -------------------------------------------------------------------------------- /QuickViewer/icons/page_previous_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/page_previous_fast.png -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_ar.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_el.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_el.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_en.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_es.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_fr.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_ja.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_ru.qm -------------------------------------------------------------------------------- /QuickViewer/translations/quickviewer_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/translations/quickviewer_zh.qm -------------------------------------------------------------------------------- /docs/another-page.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | ## Welcome to another page 6 | 7 | _yay_ 8 | 9 | [back](./) 10 | -------------------------------------------------------------------------------- /docs/assets/images/blockquote-gfx-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/blockquote-gfx-2x.png -------------------------------------------------------------------------------- /docs/assets/images/ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/ribbon-tail-sprite.png -------------------------------------------------------------------------------- /luminor/luminor-linux-x64/halide_runtime.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-linux-x64/halide_runtime.a -------------------------------------------------------------------------------- /luminor/luminor-linux-x64/luminor_rgba.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-linux-x64/luminor_rgba.o -------------------------------------------------------------------------------- /luminor/luminor-macos-x64/halide_runtime.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-macos-x64/halide_runtime.a -------------------------------------------------------------------------------- /luminor/luminor-macos-x64/luminor_rgba.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-macos-x64/luminor_rgba.o -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x64/luminor.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x64/luminor.lib -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x86/luminor.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x86/luminor.lib -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/app_icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/app_icon2.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7z/Precomp.c: -------------------------------------------------------------------------------- 1 | /* Precomp.c -- StdAfx 2 | 2013-01-21 : Igor Pavlov : Public domain */ 3 | 4 | #include "Precomp.h" 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/gz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/gz.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/xz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/xz.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/z.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Client7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip client" , "7zcl") 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ComboDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_COMBO 98 2 | 3 | #define IDT_COMBO 100 4 | #define IDC_COMBO 101 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/PipeLen/MemLat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/Utils/CPUTest/PipeLen/MemLat -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma_eos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za.exe.lzma_eos -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_icon_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_icon_blue.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_icon_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_icon_green.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_list_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_list_blue.png -------------------------------------------------------------------------------- /QuickViewer/icons/folder_view_list_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/folder_view_list_green.png -------------------------------------------------------------------------------- /QuickViewer/src/models/timeorderdcache.cpp: -------------------------------------------------------------------------------- 1 | #include "timeorderdcache.h" 2 | 3 | //TimeOrderdCache::TimeOrderdCache() 4 | //{ 5 | 6 | //} 7 | -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bold-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bold-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bold-webfont.woff -------------------------------------------------------------------------------- /docs/assets/images/download-fallback-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/download-fallback-bg.png -------------------------------------------------------------------------------- /docs/assets/images/ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_apng.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_apng.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_bmp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_bmp.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_dds.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_dds.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_gif.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_gif.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_icon.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_jpeg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_jpeg.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_png.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_png.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_raw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_raw.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_tga.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_tga.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_tiff.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_tiff.ico -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/icons/qv_webp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/AssociateFilesWithQuickViewer/icons/qv_webp.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/arj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/arj.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/bz2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/bz2.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/cab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/cab.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/cpio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/cpio.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/deb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/deb.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/dmg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/dmg.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/fat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/fat.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/hfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/hfs.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/iso.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/iso.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/lzh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/lzh.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/lzma.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/lzma.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/ntfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/ntfs.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/rar.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/rpm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/rpm.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/split.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/split.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/tar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/tar.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/vhd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/vhd.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/wim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/wim.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/xar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/xar.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/zip.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXCon/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXCon/7z.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXWin/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXWin/7z.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Crypto/Codec.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetNumberOfMethods PRIVATE 4 | GetMethodProperty PRIVATE 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Add.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Add2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Add2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ComboDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_COMBO 98 2 | 3 | #define IDT_COMBO 100 4 | #define IDC_COMBO 101 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Copy.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/FM.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Info.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Move.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Move.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Test.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_bzip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_bzip2.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_ppmd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_ppmd.7z -------------------------------------------------------------------------------- /QuickViewer/icons/24/arrow-pointing-to-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/arrow-pointing-to-left.png -------------------------------------------------------------------------------- /docs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | cache: bundler 3 | sudo: false 4 | rvm: 2.2 5 | 6 | install: script/bootstrap 7 | script: script/cibuild 8 | -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-italic-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-italic-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-italic-webfont.woff -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-regular-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-regular-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-regular-webfont.woff -------------------------------------------------------------------------------- /docs/assets/images/small-ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/small-ribbon-tail-sprite.png -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x64/halide_runtime.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x64/halide_runtime.lib -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x64/luminor_rgba.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x64/luminor_rgba.lib -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x86/halide_runtime.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x86/halide_runtime.lib -------------------------------------------------------------------------------- /luminor/luminor-msvc2015-x86/luminor_rgba.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/luminor/luminor-msvc2015-x86/luminor_rgba.lib -------------------------------------------------------------------------------- /zimg/StdAfx.h: -------------------------------------------------------------------------------- 1 | #ifndef STDAFX_H 2 | #define STDAFX_H 3 | 4 | #include 5 | 6 | using size_t = std::size_t; 7 | 8 | #endif // STDAFX_H 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipInstall/Precomp.c: -------------------------------------------------------------------------------- 1 | /* Precomp.c -- StdAfx 2 | 2013-01-21 : Igor Pavlov : Public domain */ 3 | 4 | #include "Precomp.h" 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/SfxSetup/Precomp.c: -------------------------------------------------------------------------------- 1 | /* Precomp.c -- StdAfx 2 | 2013-01-21 : Igor Pavlov : Public domain */ 3 | 4 | #include "Precomp.h" 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/MenuLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/MenuLogo.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Copy2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Copy2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Delete.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Info2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Info2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Move2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Move2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Test2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/DeflateProps.h: -------------------------------------------------------------------------------- 1 | // DeflateProps.h 2 | 3 | #ifndef __DEFLATE_PROPS_H 4 | #define __DEFLATE_PROPS_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/MessagesDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_MESSAGES 6602 2 | #define IDS_MESSAGE 6603 3 | #define IDL_MESSAGE 100 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/GUI/Contents/Resources/p7zip.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/GUI/Contents/Resources/p7zip.icns -------------------------------------------------------------------------------- /QuickViewer/icons/24/arrow-pointing-to-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/QuickViewer/icons/24/arrow-pointing-to-right.png -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bolditalic-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-extrabold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-extrabold-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-extrabold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-extrabold-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-extrabold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-extrabold-webfont.woff -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipUninstall/Precomp.c: -------------------------------------------------------------------------------- 1 | /* Precomp.c -- StdAfx 2 | 2013-01-21 : Igor Pavlov : Public domain */ 3 | 4 | #include "Precomp.h" 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/DeflateProps.h: -------------------------------------------------------------------------------- 1 | // DeflateProps.h 2 | 3 | #ifndef __DEFLATE_PROPS_H 4 | #define __DEFLATE_PROPS_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/squashfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Archive/Icons/squashfs.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/setup.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/LockedStream.h: -------------------------------------------------------------------------------- 1 | // LockedStream.h 2 | 3 | #ifndef __LOCKED_STREAM_H 4 | #define __LOCKED_STREAM_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/makefile: -------------------------------------------------------------------------------- 1 | DIRS = \ 2 | LZMA_Alone\~ \ 3 | 4 | all: $(DIRS) 5 | 6 | $(DIRS): 7 | !include "../SubBuild.mak" 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Far/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7-Zip Plugin for FAR Manager", "7-ZipFar") 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/7zipLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/7zipLogo.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Delete2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Delete2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Extract.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Extract.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Extract2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/Extract2.bmp -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/MessagesDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_MESSAGES 6602 2 | #define IDS_MESSAGE 6603 3 | #define IDL_MESSAGE 100 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2_bcj2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2_bcj2.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma_bcj2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma_bcj2.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_ppmd_bcj2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_ppmd_bcj2.7z -------------------------------------------------------------------------------- /QuickViewer/qt-linux-appimage.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix=../ 3 | Binaries=bin 4 | Libraries=lib 5 | Plugins=plugins 6 | Translations=../translations 7 | 8 | -------------------------------------------------------------------------------- /QuickViewer/qtconf-win.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | qt-win.conf 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/fonts/opensans-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/fonts/opensans-bolditalic-webfont.woff -------------------------------------------------------------------------------- /docs/assets/images/small-ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/docs/assets/images/small-ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipUninstall/7zipUninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/7zip/C/Util/7zipUninstall/7zipUninstall.ico -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2_crypto.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma2_crypto.7z -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma_crypto.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanryu/quickviewer/HEAD/Qt7z/Qt7z/p7zip/check/test/7za433_7zip_lzma_crypto.7z -------------------------------------------------------------------------------- /QuickViewer/database/recreatedb.bat: -------------------------------------------------------------------------------- 1 | del thumbnail.sqlite3.db 2 | sqlite3 thumbnail.sqlite3.db < schema.sql 3 | sqlite3 thumbnail.sqlite3.db vacuum 4 | pause 5 | -------------------------------------------------------------------------------- /QuickViewer/qtconf-macos.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | qt-macos.conf 4 | 5 | 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /QuickViewer/qt-macos.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix=../ 3 | Binaries=MacOS 4 | Libraries=Frameworks 5 | Plugins=plugins 6 | Translations=Contents/Resources/translations 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/SfxSetup/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../7zVersion.rc" 2 | 3 | MY_VERSION_INFO_APP("7z Setup SFX small", "7zS2.sfx") 4 | 5 | 1 ICON "setup.ico" 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXCon/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7z Console SFX", "7z.sfx") 4 | 5 | 101 ICON "7z.ico" -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Crypto/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/LzmaDec.mak: -------------------------------------------------------------------------------- 1 | !IF "$(PLATFORM)" == "x64" 2 | CFLAGS_C_SPEC = -D_LZMA_DEC_OPT 3 | ASM_OBJS = $(ASM_OBJS) \ 4 | $O\LzmaDecOpt.obj 5 | !ENDIF 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Common/ParseProperties.h: -------------------------------------------------------------------------------- 1 | // ParseProperties.h 2 | 3 | #ifndef __PARSE_PROPERTIES_H 4 | #define __PARSE_PROPERTIES_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ProgramLocation.h: -------------------------------------------------------------------------------- 1 | // ProgramLocation.h 2 | 3 | #ifndef __PROGRAM_LOCATION_H 4 | #define __PROGRAM_LOCATION_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Common/ParseProperties.h: -------------------------------------------------------------------------------- 1 | // ParseProperties.h 2 | 3 | #ifndef __PARSE_PROPERTIES_H 4 | #define __PARSE_PROPERTIES_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Agent/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Far/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ProgramLocation.h: -------------------------------------------------------------------------------- 1 | // ProgramLocation.h 2 | 3 | #ifndef __PROGRAM_LOCATION_H 4 | #define __PROGRAM_LOCATION_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/Control/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /unrar/unrar/smallfn.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_SMALLFN_ 2 | #define _RAR_SMALLFN_ 3 | 4 | int ToPercent(int64 N1,int64 N2); 5 | int ToPercentUnlim(int64 N1,int64 N2); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | app_icon2.ico 4 | 5 | 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Cab/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Chm/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Iso/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Nsis/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Rar/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Tar/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Udf/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Wim/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Zip/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXCon/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /QuickViewer/qtconf-linux-appimage.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | qt-linux-appimage.conf 4 | 5 | 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zF/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/LzmaCon/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/makefile: -------------------------------------------------------------------------------- 1 | DIRS = \ 2 | UI\~ \ 3 | Bundles\~ \ 4 | 5 | all: $(DIRS) 6 | 7 | $(DIRS): 8 | cd $(@D) 9 | $(MAKE) -nologo 10 | cd .. 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/PipeLen/makefile.list: -------------------------------------------------------------------------------- 1 | 2 | all: $(PCH_NAME) $(PROG) 3 | 4 | SRCS=PipeLen.cpp 5 | 6 | PipeLen.o : PipeLen.cpp 7 | $(CXX) $(CXXFLAGS) PipeLen.cpp 8 | 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtract/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "Common.h" 7 | #include "MyWindows.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.h: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.h 2 | 3 | #ifndef __IMPLODE_HUFFMAN_DECODER_H 4 | #define __IMPLODE_HUFFMAN_DECODER_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/7z/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /unrar/unrar/resource.cpp: -------------------------------------------------------------------------------- 1 | #include "rar.hpp" 2 | 3 | 4 | 5 | 6 | 7 | #ifndef RARDLL 8 | const wchar* St(MSGID StringId) 9 | { 10 | return StringId; 11 | } 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/ImplodeHuffmanDecoder.h: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.h 2 | 3 | #ifndef __IMPLODE_HUFFMAN_DECODER_H 4 | #define __IMPLODE_HUFFMAN_DECODER_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/Lzham/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/MemLat/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/PipeLen/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/test_lib/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/Format7zFree/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi # armeabi-v7a 3 | #APP_PLATFORM := android-8 4 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7za") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/Codec.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetNumberOfMethods PRIVATE 4 | GetMethodProperty PRIVATE 5 | CreateDecoder PRIVATE 6 | CreateEncoder PRIVATE 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/test_lib/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=test_lib 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | 9 | test: install 10 | adb shell $(DEVICE_DIR)/$(TARGET) 11 | 12 | -------------------------------------------------------------------------------- /unrar/unrar/rarlang.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_LANG_ 2 | #define _RAR_LANG_ 3 | 4 | #ifdef USE_RC 5 | #include "rarres.hpp" 6 | #else 7 | #include "loclang.hpp" 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /unrar/unrar/volume.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_VOLUME_ 2 | #define _RAR_VOLUME_ 3 | 4 | bool MergeArchive(Archive &Arc,ComprDataIO *DataIO,bool ShowFileName, 5 | wchar Command); 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/Console.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Console.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Console.h" 6 | 7 | namespace NWindows{ 8 | namespace NConsole{ 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- 1 | // XzHandler.h 2 | 3 | #ifndef __XZ_HANDLER_H 4 | #define __XZ_HANDLER_H 5 | 6 | namespace NArchive { 7 | namespace NXz { 8 | 9 | }} 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../C/7zCrc.h" 6 | 7 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 8 | -------------------------------------------------------------------------------- /unrar/unrar/version.hpp: -------------------------------------------------------------------------------- 1 | #define RARVER_MAJOR 7 2 | #define RARVER_MINOR 20 3 | #define RARVER_BETA 2 4 | #define RARVER_DAY 20 5 | #define RARVER_MONTH 11 6 | #define RARVER_YEAR 2025 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../../../C/7zVersion.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Reduced Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/PasswordDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_PASSWORD 3800 2 | #define IDT_PASSWORD_ENTER 3801 3 | #define IDX_PASSWORD_SHOW 3803 4 | 5 | #define IDE_PASSWORD_PASSWORD 120 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../C/7zCrc.h" 6 | 7 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/PasswordDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_PASSWORD 3800 2 | #define IDT_PASSWORD_ENTER 3801 3 | #define IDX_PASSWORD_SHOW 3803 4 | 5 | #define IDE_PASSWORD_PASSWORD 120 6 | -------------------------------------------------------------------------------- /docs/_sass/jekyll-theme-merlot.scss: -------------------------------------------------------------------------------- 1 | @import "screen"; 2 | @import "rouge-base16-solarized"; 3 | @import url("non-screen.css") handheld; 4 | @import url("non-screen.css") only screen and (max-device-width:640px); 5 | -------------------------------------------------------------------------------- /unrar/unrar/resource.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_RESOURCE_ 2 | #define _RAR_RESOURCE_ 3 | 4 | #ifdef RARDLL 5 | #define St(x) (L"") 6 | #else 7 | const wchar *St(MSGID StringId); 8 | #endif 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /unrar/unrar/ui.cpp: -------------------------------------------------------------------------------- 1 | #include "rar.hpp" 2 | 3 | #include "uicommon.cpp" 4 | 5 | #ifdef SILENT 6 | #include "uisilent.cpp" 7 | #else 8 | 9 | 10 | 11 | 12 | #include "uiconsole.cpp" 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- 1 | // XzHandler.h 2 | 3 | #ifndef __XZ_HANDLER_H 4 | #define __XZ_HANDLER_H 5 | 6 | namespace NArchive { 7 | namespace NXz { 8 | 9 | }} 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtract/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxa") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.crc32: -------------------------------------------------------------------------------- 1 | 2 | # CRC32, C version 3 | OBJ_CRC32_C=7zCrcOpt.o # 7zCrc.o 4 | 5 | # CRC32, ASM version 6 | OBJ_CRC32_x86=7zCrcOpt_asm.o # 7zCrc.o 7 | OBJ_CRC32_x86_64=7zCrcOpt_asm.o # 7zCrc.o 8 | 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Console/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Console" , "7z") 4 | 5 | #ifndef UNDER_CE 6 | 1 24 MOVEABLE PURE "Console.manifest" 7 | #endif 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/MyTypes.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/Format7zFree/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=lib7z.so 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | install:: 9 | adb shell mv $(DEVICE_DIR)/$(TARGET) $(DEVICE_DIR)/7z.so 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/XzCrc64Init.cpp: -------------------------------------------------------------------------------- 1 | // XzCrc64Init.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../C/XzCrc64.h" 6 | 7 | static struct CCrc64Gen { CCrc64Gen() { Crc64GenerateTable(); } } g_Crc64TableInit; 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/XzCrc64Init.cpp: -------------------------------------------------------------------------------- 1 | // XzCrc64Init.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../C/XzCrc64.h" 6 | 7 | static struct CCrc64Gen { CCrc64Gen() { Crc64GenerateTable(); } } g_Crc64TableInit; 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../../../C/7zVersion.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Extracting Reduced Standalone Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/MyTypes.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/Control/ImageList.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Control/ImageList.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "ImageList.h" 6 | 7 | namespace NWindows { 8 | namespace NControl { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/QMAKE/all.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = subdirs 3 | SUBDIRS = 7za \ 4 | 7zr \ 5 | 7z_ \ 6 | Format7zFree \ 7 | Rar \ 8 | Lzham \ 9 | test_lib 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define MY_VERSION "11.00" 2 | #define MY_DATE "2011-05-12" 3 | #define MY_COPYRIGHT ": Igor Pavlov : Public domain" 4 | #define MY_VERSION_COPYRIGHT_DATE MY_VERSION " " MY_COPYRIGHT " : " MY_DATE 5 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/rpm/make_rpm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rpmbuild -bb p7zip.spec --define "_makedir $PWD/../" --define "_tempplace $PWD" 4 | 5 | # lists are written here and for debugging one can uncomment the following line 6 | rm -f *_list 7 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: QuickViewer Project 2 | title_suffix: "- QuickViewer" 3 | description: Introducing the application, manual, distribution 4 | show_downloads: true 5 | google_analytics: UA-96340937-1 6 | theme: jekyll-theme-merlot 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/MemLat/makefile.list: -------------------------------------------------------------------------------- 1 | 2 | all: $(PCH_NAME) $(PROG) 3 | 4 | SRCS=MemLat.cpp 5 | 6 | MemLat.o : MemLat.cpp 7 | $(CXX) $(CXXFLAGS) MemLat.cpp 8 | 9 | Walk.o : Walk.c 10 | $(CC) $(CFLAGS) Walk.c 11 | 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Plugin", "7z") 4 | 5 | 0 ICON "../Icons/7z.ico" 6 | 7 | STRINGTABLE 8 | BEGIN 9 | 100 "7z:0" 10 | END 11 | 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/Explorer.def: -------------------------------------------------------------------------------- 1 | ; 7-zip.def 2 | 3 | LIBRARY "7-zip" 4 | 5 | EXPORTS 6 | DllCanUnloadNow PRIVATE 7 | DllGetClassObject PRIVATE 8 | DllRegisterServer PRIVATE 9 | DllUnregisterServer PRIVATE 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/makefile: -------------------------------------------------------------------------------- 1 | DIRS = \ 2 | Client7z\~ \ 3 | Console\~ \ 4 | Explorer\~ \ 5 | Far\~ \ 6 | FileManager\~ \ 7 | GUI\~ \ 8 | 9 | all: $(DIRS) 10 | 11 | $(DIRS): 12 | !include "../SubBuild.mak" 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/C/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2013-11-12 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "Compiler.h" 8 | /* #include "7zTypes.h" */ 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Aes.mak: -------------------------------------------------------------------------------- 1 | C_OBJS = $(C_OBJS) \ 2 | $O\Aes.obj 3 | 4 | !IF "$(PLATFORM)" != "ia64" && "$(PLATFORM)" != "mips" && "$(PLATFORM)" != "arm" && "$(PLATFORM)" != "arm64" 5 | ASM_OBJS = $(ASM_OBJS) \ 6 | $O\AesOpt.obj 7 | !ENDIF 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | 5 | #ifndef UNDER_CE 6 | 1 24 MOVEABLE PURE "../../UI/Console/Console.manifest" 7 | #endif 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | }}} 13 | -------------------------------------------------------------------------------- /unrar/unrar/global.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_GLOBAL_ 2 | #define _RAR_GLOBAL_ 3 | 4 | #ifdef INCLUDEGLOBAL 5 | #define EXTVAR 6 | #else 7 | #define EXTVAR extern 8 | #endif 9 | 10 | EXTVAR ErrorHandler ErrHandler; 11 | 12 | 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2013-11-12 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "Compiler.h" 8 | /* #include "7zTypes.h" */ 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/HelpUtils.h: -------------------------------------------------------------------------------- 1 | // HelpUtils.h 2 | 3 | #ifndef __HELP_UTILS_H 4 | #define __HELP_UTILS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void ShowHelpWindow(LPCSTR topicFile); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/LangPageRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_LANG 2101 2 | #define IDD_LANG_2 12101 3 | 4 | #define IDS_LANG_ENGLISH 1 5 | #define IDS_LANG_NATIVE 2 6 | 7 | #define IDT_LANG_LANG 2102 8 | #define IDC_LANG_LANG 100 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/HelpUtils.h: -------------------------------------------------------------------------------- 1 | // HelpUtils.h 2 | 3 | #ifndef __HELP_UTILS_H 4 | #define __HELP_UTILS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | #include "resource2.rc" 3 | 4 | MY_VERSION_INFO_DLL("7-Zip Shell Extension", "7-zip") 5 | 6 | #ifndef UNDER_CE 7 | 1 24 MOVEABLE PURE "7-zip.dll.manifest" 8 | #endif 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Alone/makefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../../../makefile.crc32 3 | include ../../../../makefile.machine 4 | 5 | TARGET_FLAGS=$(CC_EXE) 6 | LOCAL_LINK=$(LINK_EXE) 7 | LIBS=$(LOCAL_LIBS) 8 | 9 | include ../../../../makefile.glb 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Alone7z/makefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../../../makefile.crc32 3 | include ../../../../makefile.machine 4 | 5 | TARGET_FLAGS=$(CC_EXE) 6 | LOCAL_LINK=$(LINK_EXE) 7 | LIBS=$(LOCAL_LIBS) 8 | 9 | include ../../../../makefile.glb 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Client7z/makefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../../../makefile.crc32 3 | include ../../../../makefile.machine 4 | 5 | TARGET_FLAGS=$(CC_EXE) 6 | LOCAL_LINK=$(LINK_EXE) 7 | LIBS=$(LOCAL_LIBS_DLL) 8 | 9 | include ../../../../makefile.glb 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/CopyDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_COPY 96 2 | 3 | #define IDT_COPY 100 4 | #define IDC_COPY 101 5 | #define IDB_COPY_SET_PATH 102 6 | #define IDT_COPY_INFO 103 7 | 8 | #define IDS_SET_FOLDER 6007 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/MemLat/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=MemLat 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | 9 | test: install 10 | adb shell $(DEVICE_DIR)/$(TARGET) 4 p5 n 11 | 12 | # simple memlat test: 13 | # MemLat 4 p5 n 14 | 15 | -------------------------------------------------------------------------------- /QuickViewer/src/widgets/pageslider.h: -------------------------------------------------------------------------------- 1 | #ifndef PAGESLIDER_H 2 | #define PAGESLIDER_H 3 | 4 | #include 5 | 6 | class PageSlider : public QSlider 7 | { 8 | public: 9 | PageSlider(QWidget* parent); 10 | }; 11 | 12 | #endif // PAGESLIDER_H 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7z/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2013-06-16 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "../../Compiler.h" 8 | #include "../../7zTypes.h" 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../../../C/7zVersion.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Reduced Standalone Console", "7zr") 4 | 5 | #ifndef UNDER_CE 6 | 1 24 MOVEABLE PURE "../../UI/Console/Console.manifest" 7 | #endif 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/CopyDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_COPY 96 2 | 3 | #define IDT_COPY 100 4 | #define IDC_COPY 101 5 | #define IDB_COPY_SET_PATH 102 6 | #define IDT_COPY_INFO 103 7 | 8 | #define IDS_SET_FOLDER 6007 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/SFXCon/makefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../../../makefile.crc32 3 | include ../../../../makefile.machine 4 | 5 | TARGET_FLAGS=$(CC_EXE) 6 | LOCAL_LINK=$(LINK_EXE) 7 | LIBS=$(LOCAL_LIBS) 8 | 9 | include ../../../../makefile.glb 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Console/makefile: -------------------------------------------------------------------------------- 1 | 2 | include ../../../../makefile.crc32 3 | include ../../../../makefile.machine 4 | 5 | TARGET_FLAGS=$(CC_EXE) 6 | LOCAL_LINK=$(LINK_EXE) 7 | LIBS=$(LOCAL_LIBS_DLL) 8 | 9 | include ../../../../makefile.glb 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/SplitDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_SPLIT 7300 2 | 3 | #define IDT_SPLIT_PATH 7301 4 | #define IDT_SPLIT_VOLUME 7302 5 | 6 | #define IDC_SPLIT_PATH 100 7 | #define IDB_SPLIT_PATH 101 8 | #define IDC_SPLIT_VOLUME 102 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_ICON 1 2 | 3 | #define IDS_EXTRACTION_ERROR_TITLE 7 4 | #define IDS_EXTRACTION_ERROR_MESSAGE 8 5 | #define IDS_CANNOT_CREATE_FOLDER 3003 6 | #define IDS_PROGRESS_EXTRACTING 3300 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/SplitDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_SPLIT 7300 2 | 3 | #define IDT_SPLIT_PATH 7301 4 | #define IDT_SPLIT_VOLUME 7302 5 | 6 | #define IDC_SPLIT_PATH 100 7 | #define IDB_SPLIT_PATH 101 8 | #define IDC_SPLIT_VOLUME 102 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORT_UTLS_H 4 | #define __SORT_UTLS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CUIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/SfxSetup/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2013-06-16 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "../../Compiler.h" 8 | #include "../../7zTypes.h" 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/AboutDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_ABOUT 2900 2 | 3 | #define IDT_ABOUT_INFO 2901 4 | 5 | #define IDI_LOGO 100 6 | #define IDT_ABOUT_VERSION 101 7 | #define IDT_ABOUT_DATE 102 8 | #define IDB_ABOUT_HOMEPAGE 110 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- 1 | // Property.h 2 | 3 | #ifndef __7Z_PROPERTY_H 4 | #define __7Z_PROPERTY_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | struct CProperty 9 | { 10 | UString Name; 11 | UString Value; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORT_UTLS_H 4 | #define __SORT_UTLS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CUIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/ProcessMessages.h: -------------------------------------------------------------------------------- 1 | // Windows/ProcessMessages.h 2 | 3 | #ifndef __WINDOWS_PROCESSMESSAGES_H 4 | #define __WINDOWS_PROCESSMESSAGES_H 5 | 6 | namespace NWindows { 7 | 8 | void ProcessMessages(HWND window); 9 | 10 | } 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/ClassDefs.cpp: -------------------------------------------------------------------------------- 1 | // ClassDefs.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../../Common/MyWindows.h" 6 | 7 | #include "../../../Common/MyInitGuid.h" 8 | 9 | #include "../Agent/Agent.h" 10 | 11 | #include "MyWindowsNew.h" 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/PropertyName.h: -------------------------------------------------------------------------------- 1 | // PropertyName.h 2 | 3 | #ifndef __PROPERTY_NAME_H 4 | #define __PROPERTY_NAME_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | UString GetNameOfProperty(PROPID propID, const wchar_t *name); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/Random.h: -------------------------------------------------------------------------------- 1 | // Common/Random.h 2 | 3 | #ifndef __COMMON_RANDOM_H 4 | #define __COMMON_RANDOM_H 5 | 6 | class CRandom 7 | { 8 | public: 9 | void Init(); 10 | void Init(unsigned int seed); 11 | int Generate() const; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipInstall/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2015-05-24 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "../../Compiler.h" 8 | 9 | #include "../../7zTypes.h" 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipUninstall/Precomp.h: -------------------------------------------------------------------------------- 1 | /* Precomp.h -- StdAfx 2 | 2015-05-24 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_PRECOMP_H 5 | #define __7Z_PRECOMP_H 6 | 7 | #include "../../Compiler.h" 8 | 9 | #include "../../7zTypes.h" 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Crc.mak: -------------------------------------------------------------------------------- 1 | C_OBJS = $(C_OBJS) \ 2 | $O\7zCrc.obj 3 | !IF "$(PLATFORM)" == "ia64" || "$(PLATFORM)" == "mips" || "$(PLATFORM)" == "arm" || "$(PLATFORM)" == "arm64" 4 | C_OBJS = $(C_OBJS) \ 5 | !ELSE 6 | ASM_OBJS = $(ASM_OBJS) \ 7 | !ENDIF 8 | $O\7zCrcOpt.obj 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Common/FilePathAutoRename.h: -------------------------------------------------------------------------------- 1 | // FilePathAutoRename.h 2 | 3 | #ifndef __FILE_PATH_AUTO_RENAME_H 4 | #define __FILE_PATH_AUTO_RENAME_H 5 | 6 | #include "../../Common/MyString.h" 7 | 8 | bool AutoRenamePath(FString &fullProcessedPath); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/SetProperties.h: -------------------------------------------------------------------------------- 1 | // SetProperties.h 2 | 3 | #ifndef __SETPROPERTIES_H 4 | #define __SETPROPERTIES_H 5 | 6 | #include "Property.h" 7 | 8 | HRESULT SetProperties(IUnknown *unknown, const CObjectVector &properties); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |

6 | {{ page.title }} 7 | {% if page.date %} 8 | {{ page.date | date_to_string }} 9 | {% endif %} 10 |

11 | 12 | {{ content }} 13 | 14 | {% include disqus.html %} -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- 1 | // Property.h 2 | 3 | #ifndef __7Z_PROPERTY_H 4 | #define __7Z_PROPERTY_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | struct CProperty 9 | { 10 | UString Name; 11 | UString Value; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ClassDefs.cpp: -------------------------------------------------------------------------------- 1 | // ClassDefs.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../../Common/MyWindows.h" 6 | 7 | #include "../../../Common/MyInitGuid.h" 8 | 9 | #include "../Agent/Agent.h" 10 | 11 | #include "MyWindowsNew.h" 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/PropertyName.h: -------------------------------------------------------------------------------- 1 | // PropertyName.h 2 | 3 | #ifndef __PROPERTY_NAME_H 4 | #define __PROPERTY_NAME_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | UString GetNameOfProperty(PROPID propID, const wchar_t *name); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/Random.h: -------------------------------------------------------------------------------- 1 | // Common/Random.h 2 | 3 | #ifndef __COMMON_RANDOM_H 4 | #define __COMMON_RANDOM_H 5 | 6 | class CRandom 7 | { 8 | public: 9 | void Init(); 10 | void Init(unsigned int seed); 11 | int Generate() const; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/7za/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi 3 | # p7zip armeabi and armeabi-v7a run at the same speed (p7zip does not use FPU) 4 | # APP_ABI := armeabi armeabi-v7a 5 | #APP_PLATFORM := android-8 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/7zr/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # The ARMv7 is significanly faster due to the use of the hardware FPU 2 | APP_ABI := armeabi 3 | # p7zip armeabi and armeabi-v7a run at the same speed (p7zip does not use FPU) 4 | # APP_ABI := armeabi armeabi-v7a 5 | #APP_PLATFORM := android-8 6 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipUninstall/resource.h: -------------------------------------------------------------------------------- 1 | #define IDD_INSTALL 100 2 | 3 | #define IDT_EXTRACT_EXTRACT_TO 110 4 | #define IDE_EXTRACT_PATH 111 5 | 6 | #define IDT_CUR_FILE 113 7 | #define IDC_PROGRESS 114 8 | 9 | #define IDI_ICON 1 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Common/FilePathAutoRename.h: -------------------------------------------------------------------------------- 1 | // FilePathAutoRename.h 2 | 3 | #ifndef __FILE_PATH_AUTO_RENAME_H 4 | #define __FILE_PATH_AUTO_RENAME_H 5 | 6 | #include "../../Common/MyString.h" 7 | 8 | bool AutoRenamePath(FString &fullProcessedPath); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Crc64.mak: -------------------------------------------------------------------------------- 1 | C_OBJS = $(C_OBJS) \ 2 | $O\XzCrc64.obj 3 | !IF "$(PLATFORM)" == "ia64" || "$(PLATFORM)" == "mips" || "$(PLATFORM)" == "arm" || "$(PLATFORM)" == "arm64" 4 | C_OBJS = $(C_OBJS) \ 5 | !ELSE 6 | ASM_OBJS = $(ASM_OBJS) \ 7 | !ENDIF 8 | $O\XzCrc64Opt.obj 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/SetProperties.h: -------------------------------------------------------------------------------- 1 | // SetProperties.h 2 | 3 | #ifndef __SETPROPERTIES_H 4 | #define __SETPROPERTIES_H 5 | 6 | #include "Property.h" 7 | 8 | HRESULT SetProperties(IUnknown *unknown, const CObjectVector &properties); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7z/7zVersion.h: -------------------------------------------------------------------------------- 1 | #define MY_VER_MAJOR 9 2 | #define MY_VER_MINOR 20 3 | #define MY_VER_BUILD 0 4 | #define MY_VERSION "9.20" 5 | #define MY_DATE "2010-11-18" 6 | #define MY_COPYRIGHT ": Igor Pavlov : Public domain" 7 | #define MY_VERSION_COPYRIGHT_DATE MY_VERSION " " MY_COPYRIGHT " : " MY_DATE 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Iso/IsoHeader.cpp: -------------------------------------------------------------------------------- 1 | // Archive/Iso/Header.h 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "IsoHeader.h" 6 | 7 | namespace NArchive { 8 | namespace NIso { 9 | 10 | const char * const kElToritoSpec = "EL TORITO SPECIFICATION\0\0\0\0\0\0\0\0\0"; 11 | 12 | }} 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/PREMAKE/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -x 4 | 5 | doit() 6 | { 7 | rm -fr P7ZIP.$1 8 | mkdir P7ZIP.$1 9 | cd P7ZIP.$1 10 | cp ../premake4.lua premake4.lua 11 | premake4 $1 12 | cd .. 13 | } 14 | 15 | doit codeblocks 16 | doit codelite 17 | doit gmake 18 | 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/P7ZIP/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET_FLAGS=`wx-config --unicode=yes --cxxflags` 3 | 4 | include ../../../../makefile.crc32 5 | include ../../../../makefile.machine 6 | 7 | LIBS=`wx-config --unicode=yes --libs` $(LOCAL_LIBS_DLL) 8 | 9 | include ../../../../makefile.glb 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/check/clean_all.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | rm -fr 7za433_ref 7za433_7zip_bzip2 7za433_7zip_lzma 7za433_7zip_lzma_crypto 7za433_7zip_ppmd 7za433_tar 4 | rm -fr 7za433_7zip_bzip2.7z 7za433_7zip_lzma.7z 7za433_7zip_lzma_crypto.7z 7za433_7zip_ppmd.7z 7za433_tar.tar 5 | rm -fr last_error TMP_* 6 | 7 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Iso/IsoHeader.cpp: -------------------------------------------------------------------------------- 1 | // Archive/Iso/Header.h 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "IsoHeader.h" 6 | 7 | namespace NArchive { 8 | namespace NIso { 9 | 10 | const char * const kElToritoSpec = "EL TORITO SPECIFICATION\0\0\0\0\0\0\0\0\0"; 11 | 12 | }} 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/resource2.rc: -------------------------------------------------------------------------------- 1 | #include "ExtractDialog.rc" 2 | #include "CompressDialog.rc" 3 | #include "BenchmarkDialog.rc" 4 | #include "resource2.h" 5 | 6 | STRINGTABLE 7 | BEGIN 8 | IDS_PROGRESS_COMPRESSING "Compressing" 9 | IDS_ARCHIVES_COLON "Archives:" 10 | END 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET_FLAGS=`wx-config --unicode=yes --cxxflags` 3 | 4 | include ../../../../makefile.crc32 5 | include ../../../../makefile.machine 6 | 7 | LIBS=`wx-config --unicode=yes --libs` $(LOCAL_LIBS_DLL) 8 | 9 | include ../../../../makefile.glb 10 | 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/PipeLen/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=PipeLen 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | 9 | test: install 10 | adb shell $(DEVICE_DIR)/$(TARGET) r0 n 11 | 12 | # One pipelen test: 13 | # pipelen r0 n 14 | # All pipelen tests (too long) : 15 | # pipelen n 16 | 17 | -------------------------------------------------------------------------------- /unrar/unrar/dll.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | RAROpenArchive 3 | RAROpenArchiveEx 4 | RARCloseArchive 5 | RARReadHeader 6 | RARReadHeaderEx 7 | RARProcessFile 8 | RARProcessFileW 9 | RARSetCallback 10 | RARSetChangeVolProc 11 | RARSetProcessDataProc 12 | RARSetPassword 13 | RARGetDllVersion 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #include 9 | 10 | // #define printf(x) NO_PRINTF_(x) 11 | // #define sprintf(x) NO_SPRINTF_(x) 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/EnumFormatEtc.h: -------------------------------------------------------------------------------- 1 | // EnumFormatEtc.h 2 | 3 | #ifndef __ENUMFORMATETC_H 4 | #define __ENUMFORMATETC_H 5 | 6 | #include 7 | 8 | HRESULT CreateEnumFormatEtc(UINT numFormats, const FORMATETC *formats, IEnumFORMATETC **enumFormat); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/XpressDecoder.h: -------------------------------------------------------------------------------- 1 | // XpressDecoder.h 2 | 3 | #ifndef __XPRESS_DECODER_H 4 | #define __XPRESS_DECODER_H 5 | 6 | namespace NCompress { 7 | namespace NXpress { 8 | 9 | HRESULT Decode(const Byte *in, size_t inSize, Byte *out, size_t outSize); 10 | 11 | }} 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- 1 | // MyUnknown.h 2 | 3 | #ifndef __MY_UNKNOWN_H 4 | #define __MY_UNKNOWN_H 5 | 6 | #include "MyWindows.h" 7 | 8 | /* 9 | #ifdef _WIN32 10 | #include 11 | #include 12 | #else 13 | #include "MyWindows.h" 14 | #endif 15 | */ 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Asm.mak: -------------------------------------------------------------------------------- 1 | !IFDEF ASM_OBJS 2 | !IF "$(CPU)" == "ARM" 3 | $(ASM_OBJS): ../../../../Asm/Arm/$(*B).asm 4 | $(COMPL_ASM) 5 | !ELSEIF "$(CPU)" != "IA64" && "$(CPU)" != "MIPS" && "$(CPU)" != "ARM64" 6 | $(ASM_OBJS): ../../../../Asm/x86/$(*B).asm 7 | $(COMPL_ASM) 8 | !ENDIF 9 | !ENDIF 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/BrowseDialogRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_BROWSE 95 2 | 3 | #define IDL_BROWSE 100 4 | #define IDT_BROWSE_FOLDER 101 5 | #define IDE_BROWSE_PATH 102 6 | #define IDC_BROWSE_FILTER 103 7 | 8 | #define IDB_BROWSE_PARENT 110 9 | #define IDB_BROWSE_CREATE_DIR 112 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/LzOutWindow.cpp: -------------------------------------------------------------------------------- 1 | // LzOutWindow.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "LzOutWindow.h" 6 | 7 | void CLzOutWindow::Init(bool solid) throw() 8 | { 9 | if (!solid) 10 | COutBuffer::Init(); 11 | #ifdef _NO_EXCEPTIONS 12 | ErrorCode = S_OK; 13 | #endif 14 | } 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- 1 | // Windows/ErrorMsg.h 2 | 3 | #ifndef __WINDOWS_ERROR_MSG_H 4 | #define __WINDOWS_ERROR_MSG_H 5 | 6 | #include "../Common/MyString.h" 7 | 8 | namespace NWindows { 9 | namespace NError { 10 | 11 | UString MyFormatMessage(DWORD errorCode); 12 | 13 | }} 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7zTest/Qt7zTest.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | assets/image.7z 4 | assets/mixed.7z 5 | assets/text.7z 6 | assets/password.7z 7 | assets/password-filename.7z 8 | 9 | 10 | -------------------------------------------------------------------------------- /unrar/unrar/dll_nocrypt.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | RAROpenArchive 3 | RAROpenArchiveEx 4 | RARCloseArchive 5 | RARReadHeader 6 | RARReadHeaderEx 7 | RARProcessFile 8 | RARProcessFileW 9 | RARSetCallback 10 | RARSetChangeVolProc 11 | RARSetProcessDataProc 12 | ; RARSetPassword 13 | RARGetDllVersion 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | 4 | GetHandlerProperty PRIVATE 5 | GetNumberOfFormats PRIVATE 6 | GetHandlerProperty2 PRIVATE 7 | GetIsArc PRIVATE 8 | 9 | SetCodecs PRIVATE 10 | 11 | SetLargePageMode PRIVATE 12 | SetCaseSensitive PRIVATE 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/XpressDecoder.h: -------------------------------------------------------------------------------- 1 | // XpressDecoder.h 2 | 3 | #ifndef __XPRESS_DECODER_H 4 | #define __XPRESS_DECODER_H 5 | 6 | namespace NCompress { 7 | namespace NXpress { 8 | 9 | HRESULT Decode(const Byte *in, size_t inSize, Byte *out, size_t outSize); 10 | 11 | }} 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/ArchiveName.h: -------------------------------------------------------------------------------- 1 | // ArchiveName.h 2 | 3 | #ifndef __ARCHIVE_NAME_H 4 | #define __ARCHIVE_NAME_H 5 | 6 | #include "../../../Windows/FileFind.h" 7 | 8 | UString CreateArchiveName(const UStringVector &paths, const NWindows::NFile::NFind::CFileInfo *fi = NULL); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/TEST/TestUI/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET_FLAGS=\ 3 | -I. \ 4 | `wx-config --unicode=yes --cxxflags` 5 | 6 | include ../../../../makefile.crc32 7 | include ../../../../makefile.machine 8 | 9 | LIBS=`wx-config --unicode=yes --libs` $(LOCAL_LIBS_DLL) 10 | 11 | include ../../../../makefile.glb 12 | 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/DefaultName.h: -------------------------------------------------------------------------------- 1 | // DefaultName.h 2 | 3 | #ifndef __DEFAULT_NAME_H 4 | #define __DEFAULT_NAME_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | UString GetDefaultName2(const UString &fileName, 9 | const UString &extension, const UString &addSubExtension); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/PipeLen/makefile: -------------------------------------------------------------------------------- 1 | PROG=PipeLen 2 | 3 | # -D_USE_ASM 4 | LOCAL_FLAGS=-I. 5 | 6 | include ../../../makefile.machine 7 | 8 | TARGET_FLAGS=$(CC_EXE) 9 | LOCAL_LINK=$(LINK_EXE) 10 | LIBS=$(LOCAL_LIBS) 11 | 12 | # pl.o 13 | OBJS=PipeLen.o 14 | 15 | 16 | include ../../../makefile.glb 17 | 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipInstall/resource.h: -------------------------------------------------------------------------------- 1 | #define IDD_INSTALL 100 2 | 3 | #define IDT_EXTRACT_EXTRACT_TO 110 4 | #define IDE_EXTRACT_PATH 111 5 | #define IDB_EXTRACT_SET_PATH 112 6 | #define IDT_CUR_FILE 113 7 | #define IDC_PROGRESS 114 8 | 9 | #define IDI_ICON 1 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #define _WIN32_WINNT 0x0400 7 | #define _WIN32_WINNT 0x0500 8 | #define WINVER _WIN32_WINNT 9 | 10 | #include "../../../Common/Common.h" 11 | 12 | #include 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- 1 | // MyUnknown.h 2 | 3 | #ifndef __MY_UNKNOWN_H 4 | #define __MY_UNKNOWN_H 5 | 6 | #include "MyWindows.h" 7 | 8 | /* 9 | #ifdef _WIN32 10 | #include 11 | #include 12 | #else 13 | #include "MyWindows.h" 14 | #endif 15 | */ 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/TempFiles.h: -------------------------------------------------------------------------------- 1 | // TempFiles.h 2 | 3 | #ifndef __TEMP_FILES_H 4 | #define __TEMP_FILES_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | class CTempFiles 9 | { 10 | void Clear(); 11 | public: 12 | FStringVector Paths; 13 | ~CTempFiles() { Clear(); } 14 | }; 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/ANDROID/7z/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=7z 3 | 4 | include ../makefile.inc 5 | 6 | test: install 7 | adb shell $(DEVICE_DIR)/$(TARGET) b 8 | 9 | test_all: install 10 | adb push ../../../check/test/7za433_7zip_lzma.7z $(DEVICE_DIR) 11 | adb shell $(DEVICE_DIR)/7za t $(DEVICE_DIR)/7za433_7zip_lzma.7z 12 | 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/MyException.h: -------------------------------------------------------------------------------- 1 | // Common/Exception.h 2 | 3 | #ifndef __COMMON_EXCEPTION_H 4 | #define __COMMON_EXCEPTION_H 5 | 6 | #include "MyWindows.h" 7 | 8 | struct CSystemException 9 | { 10 | HRESULT ErrorCode; 11 | CSystemException(HRESULT errorCode): ErrorCode(errorCode) {} 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/Fm/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../UI/FileManager/resource.rc" 2 | #include "../../UI/GUI/resource2.rc" 3 | 4 | STRINGTABLE 5 | BEGIN 6 | 100 "7z zip rar 001 cab iso xz txz lzma tar cpio bz2 bzip2 tbz2 tbz gz gzip tgz tpz z taz lzh lha rpm deb arj vhd wim swm fat ntfs dmg hfs xar squashfs" 7 | END 8 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/LzOutWindow.cpp: -------------------------------------------------------------------------------- 1 | // LzOutWindow.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "LzOutWindow.h" 6 | 7 | void CLzOutWindow::Init(bool solid) throw() 8 | { 9 | if (!solid) 10 | COutBuffer::Init(); 11 | #ifdef _NO_EXCEPTIONS 12 | ErrorCode = S_OK; 13 | #endif 14 | } 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/DefaultName.h: -------------------------------------------------------------------------------- 1 | // DefaultName.h 2 | 3 | #ifndef __DEFAULT_NAME_H 4 | #define __DEFAULT_NAME_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | UString GetDefaultName2(const UString &fileName, 9 | const UString &extension, const UString &addSubExtension); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/SystemPageRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_SYSTEM 2200 2 | #define IDD_SYSTEM_2 12200 3 | 4 | #define IDT_SYSTEM_ASSOCIATE 2201 5 | #define IDS_SYSTEM_ALL_USERS 2202 6 | 7 | #define IDL_SYSTEM_ASSOCIATE 100 8 | #define IDB_SYSTEM_CURRENT 101 9 | #define IDB_SYSTEM_ALL 102 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- 1 | // Windows/ErrorMsg.h 2 | 3 | #ifndef __WINDOWS_ERROR_MSG_H 4 | #define __WINDOWS_ERROR_MSG_H 5 | 6 | #include "../Common/MyString.h" 7 | 8 | namespace NWindows { 9 | namespace NError { 10 | 11 | UString MyFormatMessage(DWORD errorCode); 12 | 13 | }} 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXWin/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/Common.h" 7 | 8 | #include 9 | #include 10 | 11 | // #define printf(x) NO_PRINTF_(x) 12 | // #define sprintf(x) NO_SPRINTF_(x) 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/TempFiles.h: -------------------------------------------------------------------------------- 1 | // TempFiles.h 2 | 3 | #ifndef __TEMP_FILES_H 4 | #define __TEMP_FILES_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | class CTempFiles 9 | { 10 | void Clear(); 11 | public: 12 | FStringVector Paths; 13 | ~CTempFiles() { Clear(); } 14 | }; 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/MyException.h: -------------------------------------------------------------------------------- 1 | // Common/Exception.h 2 | 3 | #ifndef __COMMON_EXCEPTION_H 4 | #define __COMMON_EXCEPTION_H 5 | 6 | #include "MyWindows.h" 7 | 8 | struct CSystemException 9 | { 10 | HRESULT ErrorCode; 11 | CSystemException(HRESULT errorCode): ErrorCode(errorCode) {} 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- 1 | // MyAesReg.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "MyAes.h" 8 | 9 | namespace NCrypto { 10 | 11 | REGISTER_FILTER_E(AES256CBC, 12 | CAesCbcDecoder(32), 13 | CAesCbcEncoder(32), 14 | 0x6F00181, "AES256CBC") 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Bundles/Format7zFree/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET_FLAGS=$(CC_SHARED) -DRegisterArc=DllRegisterArc -DRegisterCodec=DllRegisterCodec 3 | 4 | include ../../../../makefile.crc32 5 | include ../../../../makefile.machine 6 | 7 | LOCAL_LINK=$(LINK_SHARED) 8 | LIBS=$(LOCAL_LIBS_DLL) 9 | 10 | include ../../../../makefile.glb 11 | 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Crypto/7zAesRegister.cpp: -------------------------------------------------------------------------------- 1 | // 7zAesRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "7zAes.h" 8 | 9 | namespace NCrypto { 10 | namespace N7z { 11 | 12 | REGISTER_FILTER_E(7zAES, 13 | CDecoder(), 14 | CEncoder(), 15 | 0x6F10701, "7zAES") 16 | 17 | }} 18 | -------------------------------------------------------------------------------- /QuickViewer/QuickViewer.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=QuickViewer 3 | Comment=A image viewer application for folders/archives, it can show images very fast 4 | Keywords=viewer;commic;manga;opengl; 5 | Exec=usr/bin/QuickViewer %F 6 | Icon=quickviewer 7 | Terminal=false 8 | Type=Application 9 | Categories=Graphics;Qt; 10 | StartupNotify=true 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/BcjRegister.cpp: -------------------------------------------------------------------------------- 1 | // BcjRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "BcjCoder.h" 8 | 9 | namespace NCompress { 10 | namespace NBcj { 11 | 12 | REGISTER_FILTER_E(BCJ, 13 | CCoder(false), 14 | CCoder(true), 15 | 0x3030103, "BCJ") 16 | 17 | }} 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lzham/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET_FLAGS=$(CC_SHARED) -DRegisterCodec=DllRegisterCodec -Iinclude -Ilzhamdecomp -Ilzhamcomp -I../../../../ 3 | 4 | include ../../../../makefile.crc32 5 | include ../../../../makefile.machine 6 | 7 | LOCAL_LINK=$(LINK_SHARED) 8 | LIBS=$(LOCAL_LIBS) 9 | 10 | include ../../../../makefile.glb 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- 1 | // MyAesReg.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "MyAes.h" 8 | 9 | namespace NCrypto { 10 | 11 | REGISTER_FILTER_E(AES256CBC, 12 | CAesCbcDecoder(32), 13 | CAesCbcEncoder(32), 14 | 0x6F00181, "AES256CBC") 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/CopyRegister.cpp: -------------------------------------------------------------------------------- 1 | // CopyRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "CopyCoder.h" 8 | 9 | namespace NCompress { 10 | 11 | REGISTER_CODEC_CREATE(CreateCodec, CCopyCoder()) 12 | 13 | REGISTER_CODEC_2(Copy, CreateCodec, CreateCodec, 0, "Copy") 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/Common.h: -------------------------------------------------------------------------------- 1 | // Common.h 2 | 3 | #ifndef __COMMON_COMMON_H 4 | #define __COMMON_COMMON_H 5 | 6 | #include "../../C/Compiler.h" 7 | 8 | #include "MyWindows.h" 9 | #include "NewHandler.h" 10 | 11 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[1])) 12 | 13 | #define MY_ARRAY_NEW(p, T, size) p = new T[size]; 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /unrar/unrar/log.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_LOG_ 2 | #define _RAR_LOG_ 3 | 4 | void InitLogOptions(const std::wstring &LogFileName,RAR_CHARSET CSet); 5 | void CloseLogOptions(); 6 | 7 | #ifdef SILENT 8 | inline void Log(const wchar *ArcName,const wchar *fmt,...) {} 9 | #else 10 | void Log(const wchar *ArcName,const wchar *fmt,...); 11 | #endif 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /unrar/unrar/smallfn.cpp: -------------------------------------------------------------------------------- 1 | #include "rar.hpp" 2 | 3 | int ToPercent(int64 N1,int64 N2) 4 | { 5 | if (N2 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/System.h: -------------------------------------------------------------------------------- 1 | // Windows/System.h 2 | 3 | #ifndef __WINDOWS_SYSTEM_H 4 | #define __WINDOWS_SYSTEM_H 5 | 6 | #include "../Common/MyTypes.h" 7 | 8 | namespace NWindows { 9 | namespace NSystem { 10 | 11 | UInt32 GetNumberOfProcessors(); 12 | 13 | bool GetRamSize(UInt64 &size); // returns false, if unknown ram size 14 | 15 | }} 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Common/FindSignature.h: -------------------------------------------------------------------------------- 1 | // FindSignature.h 2 | 3 | #ifndef __FIND_SIGNATURE_H 4 | #define __FIND_SIGNATURE_H 5 | 6 | #include "../../IStream.h" 7 | 8 | HRESULT FindSignatureInStream(ISequentialInStream *stream, 9 | const Byte *signature, unsigned signatureSize, 10 | const UInt64 *limit, UInt64 &resPos); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/makefile: -------------------------------------------------------------------------------- 1 | DIRS = \ 2 | Alone\~ \ 3 | Alone7z\~ \ 4 | Fm\~ \ 5 | Format7z\~ \ 6 | Format7zF\~ \ 7 | Format7zR\~ \ 8 | Format7zExtract\~ \ 9 | Format7zExtractR\~ \ 10 | LzmaCon\~ \ 11 | SFXCon\~ \ 12 | SFXSetup\~ \ 13 | SFXWin\~ \ 14 | 15 | all: $(DIRS) 16 | 17 | $(DIRS): 18 | !include "../SubBuild.mak" 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- 1 | #define IDS_PROGRESS_REMOVE 3305 2 | 3 | #define IDS_PROGRESS_ADD 3320 4 | #define IDS_PROGRESS_UPDATE 3321 5 | #define IDS_PROGRESS_ANALYZE 3322 6 | #define IDS_PROGRESS_REPLICATE 3323 7 | #define IDS_PROGRESS_REPACK 3324 8 | 9 | #define IDS_PROGRESS_DELETE 3326 10 | #define IDS_PROGRESS_HEADER 3327 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/CPUTest/MemLat/makefile: -------------------------------------------------------------------------------- 1 | PROG=MemLat 2 | 3 | 4 | # ./MemLat 4 p5 n 5 | 6 | # -DLARGE_PAGES 7 | LOCAL_FLAGS=-I. -DNUM_DIRECT_TESTS=6 -DNUM_PAR_TESTS=5 8 | 9 | include ../../../makefile.machine 10 | 11 | TARGET_FLAGS=$(CC_EXE) 12 | LOCAL_LINK=$(LINK_EXE) 13 | LIBS=$(LOCAL_LIBS) 14 | 15 | OBJS=MemLat.o Walk.o 16 | 17 | include ../../../makefile.glb 18 | 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.hpux-acc: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O 3 | 4 | ALLFLAGS=${OPTFLAGS} -mt -DD64 +Z +Ww2101 \ 5 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 6 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 7 | $(LOCAL_FLAGS) 8 | 9 | CXX=aCC -AA 10 | CC=aCC -Ae 11 | 12 | LINK_SHARED=-b 13 | LOCAL_LIBS= 14 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 15 | 16 | OBJ_CRC32=$(OBJ_CRC32_C) 17 | OBJ_AES= 18 | 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Bundles/SFXSetup/ExtractEngine.h: -------------------------------------------------------------------------------- 1 | // ExtractEngine.h 2 | 3 | #ifndef __EXTRACT_ENGINE_H 4 | #define __EXTRACT_ENGINE_H 5 | 6 | #include "../../UI/Common/LoadCodecs.h" 7 | 8 | HRESULT ExtractArchive(CCodecs *codecs, const FString &fileName, const FString &destFolder, 9 | bool showProgress, bool &isCorrupt, UString &errorMessage); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- 1 | #define IDS_PROGRESS_REMOVE 3305 2 | 3 | #define IDS_PROGRESS_ADD 3320 4 | #define IDS_PROGRESS_UPDATE 3321 5 | #define IDS_PROGRESS_ANALYZE 3322 6 | #define IDS_PROGRESS_REPLICATE 3323 7 | #define IDS_PROGRESS_REPACK 3324 8 | 9 | #define IDS_PROGRESS_DELETE 3326 10 | #define IDS_PROGRESS_HEADER 3327 11 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Cab/CabRegister.cpp: -------------------------------------------------------------------------------- 1 | // CabRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../Common/RegisterArc.h" 6 | 7 | #include "CabHandler.h" 8 | 9 | namespace NArchive { 10 | namespace NCab { 11 | 12 | REGISTER_ARC_I( 13 | "Cab", "cab", 0, 8, 14 | NHeader::kMarker, 15 | 0, 16 | NArcInfoFlags::kFindSignature, 17 | NULL) 18 | 19 | }} 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.beos: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -s 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -DENV_BEOS \ 6 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 7 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=g++ 11 | CC=gcc 12 | LINK_SHARED=-nostart 13 | 14 | LOCAL_LIBS=-lbe 15 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 16 | 17 | OBJ_CRC32=$(OBJ_CRC32_C) 18 | OBJ_AES= 19 | 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/EditPage.rc: -------------------------------------------------------------------------------- 1 | #include "EditPageRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 240 5 | #define yc 80 6 | 7 | IDD_EDIT MY_PAGE 8 | #include "EditPage2.rc" 9 | 10 | #ifdef UNDER_CE 11 | 12 | #undef xc 13 | 14 | #define xc SMALL_PAGE_SIZE_X 15 | 16 | IDD_EDIT_2 MY_PAGE 17 | #include "EditPage2.rc" 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lz4Register.cpp: -------------------------------------------------------------------------------- 1 | // (C) 2016 Tino Reichardt 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "Lz4Decoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "Lz4Encoder.h" 11 | #endif 12 | 13 | REGISTER_CODEC_E( 14 | LZ4, 15 | NCompress::NLZ4::CDecoder(), 16 | NCompress::NLZ4::CEncoder(), 17 | 0x4F71104, "LZ4") 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lz5Register.cpp: -------------------------------------------------------------------------------- 1 | // (C) 2016 Tino Reichardt 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "Lz5Decoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "Lz5Encoder.h" 11 | #endif 12 | 13 | REGISTER_CODEC_E( 14 | LZ5, 15 | NCompress::NLZ5::CDecoder(), 16 | NCompress::NLZ5::CEncoder(), 17 | 0x4F71105, "LZ5") 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lzham/lzhamcomp/lzham_threading.h: -------------------------------------------------------------------------------- 1 | // File: lzham_threading.h 2 | // See Copyright Notice and license at the end of include/lzham.h 3 | 4 | #if LZHAM_USE_WIN32_API 5 | #include "lzham_win32_threading.h" 6 | #elif LZHAM_USE_PTHREADS_API 7 | #include "lzham_pthreads_threading.h" 8 | #else 9 | #include "lzham_null_threading.h" 10 | #endif 11 | 12 | 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Console/BenchCon.h: -------------------------------------------------------------------------------- 1 | // BenchCon.h 2 | 3 | #ifndef __BENCH_CON_H 4 | #define __BENCH_CON_H 5 | 6 | #include 7 | 8 | #include "../../Common/CreateCoder.h" 9 | #include "../../UI/Common/Property.h" 10 | 11 | HRESULT BenchCon(DECL_EXTERNAL_CODECS_LOC_VARS 12 | const CObjectVector &props, UInt32 numIterations, FILE *f); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Explorer/RegistryContextMenu.h: -------------------------------------------------------------------------------- 1 | // RegistryContextMenu.h 2 | 3 | #ifndef __REGISTRY_CONTEXT_MENU_H 4 | #define __REGISTRY_CONTEXT_MENU_H 5 | 6 | #ifndef UNDER_CE 7 | 8 | bool CheckContextMenuHandler(const UString &path, UInt32 wow = 0); 9 | LONG SetContextMenuHandler(bool setMode, const UString &path, UInt32 wow = 0); 10 | 11 | #endif 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/C/fast-lzma2/data_block.h: -------------------------------------------------------------------------------- 1 | #include "mem.h" 2 | 3 | #ifndef FL2_DATA_BLOCK_H_ 4 | #define FL2_DATA_BLOCK_H_ 5 | 6 | #if defined (__cplusplus) 7 | extern "C" { 8 | #endif 9 | 10 | typedef struct { 11 | const BYTE* data; 12 | size_t start; 13 | size_t end; 14 | } FL2_dataBlock; 15 | 16 | #if defined (__cplusplus) 17 | } 18 | #endif 19 | 20 | #endif /* FL2_DATA_BLOCK_H_ */ -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.haiku: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -s 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -DENV_BEOS -DENV_HAIKU \ 6 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 7 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=g++ 11 | CC=gcc 12 | LINK_SHARED=-nostart 13 | 14 | LOCAL_LIBS=-lbe 15 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 16 | 17 | OBJ_CRC32=$(OBJ_CRC32_C) 18 | OBJ_AES= 19 | 20 | -------------------------------------------------------------------------------- /docs/assets/js/headsmart.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a.fn.headsmart=function(){var c=a(this);d();function d(){var e=[],g="";if(b("h1")){e.push("h1")}if(b("h2")){e.push("h2")}if(b("h3")){e.push("h3")}if(b("h4")){e.push("h4")}if(b("h5")){e.push("h5")}if(b("h6")){e.push("h6")}for(var f=0;f0)?true:false}}})(jQuery); -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/7zipUninstall/makefile: -------------------------------------------------------------------------------- 1 | PROG = 7zipUninstall.exe 2 | MY_FIXED = 1 3 | 4 | !IFDEF _64BIT_INSTALLER 5 | CFLAGS = $(CFLAGS) -D_64BIT_INSTALLER 6 | !ENDIF 7 | 8 | MAIN_OBJS = \ 9 | $O\7zipUninstall.obj \ 10 | 11 | OBJS = \ 12 | $(MAIN_OBJS) \ 13 | $O\resource.res 14 | 15 | !include "../../../CPP/Build.mak" 16 | 17 | $(MAIN_OBJS): $(*B).c 18 | $(COMPL_O1) 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Cab/CabRegister.cpp: -------------------------------------------------------------------------------- 1 | // CabRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../Common/RegisterArc.h" 6 | 7 | #include "CabHandler.h" 8 | 9 | namespace NArchive { 10 | namespace NCab { 11 | 12 | REGISTER_ARC_I( 13 | "Cab", "cab", 0, 8, 14 | NHeader::kMarker, 15 | 0, 16 | NArcInfoFlags::kFindSignature, 17 | NULL) 18 | 19 | }} 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/makefile: -------------------------------------------------------------------------------- 1 | DIRS = \ 2 | 7z\~ \ 3 | Arj\~ \ 4 | BZip2\~ \ 5 | Cab\~ \ 6 | Chm\~ \ 7 | Cpio\~ \ 8 | Deb\~ \ 9 | GZip\~ \ 10 | Iso\~ \ 11 | Lzh\~ \ 12 | Nsis\~ \ 13 | Rar\~ \ 14 | RPM\~ \ 15 | Split\~ \ 16 | Tar\~ \ 17 | Z\~ \ 18 | Zip\~ \ 19 | 20 | all: $(DIRS) 21 | 22 | $(DIRS): 23 | !include "../SubBuild.mak" 24 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Console/BenchCon.h: -------------------------------------------------------------------------------- 1 | // BenchCon.h 2 | 3 | #ifndef __BENCH_CON_H 4 | #define __BENCH_CON_H 5 | 6 | #include 7 | 8 | #include "../../Common/CreateCoder.h" 9 | #include "../../UI/Common/Property.h" 10 | 11 | HRESULT BenchCon(DECL_EXTERNAL_CODECS_LOC_VARS 12 | const CObjectVector &props, UInt32 numIterations, FILE *f); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- 1 | // Common/ListFileUtils.h 2 | 3 | #ifndef __COMMON_LIST_FILE_UTILS_H 4 | #define __COMMON_LIST_FILE_UTILS_H 5 | 6 | #include "MyString.h" 7 | #include "MyTypes.h" 8 | 9 | #define MY__CP_UTF16 1200 10 | #define MY__CP_UTF16BE 1201 11 | 12 | bool ReadNamesFromListFile(CFSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /unrar/unrar/filcreat.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_FILECREATE_ 2 | #define _RAR_FILECREATE_ 3 | 4 | bool FileCreate(CommandData *Cmd,File *NewFile,std::wstring &Name, 5 | bool *UserReject,int64 FileSize=INT64NDF, 6 | RarTime *FileTime=NULL,bool WriteOnly=false); 7 | 8 | #if defined(_WIN_ALL) 9 | bool UpdateExistingShortName(const std::wstring &Name); 10 | #endif 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/FileFolderPluginOpen.h: -------------------------------------------------------------------------------- 1 | // FileFolderPluginOpen.h 2 | 3 | #ifndef __FILE_FOLDER_PLUGIN_OPEN_H 4 | #define __FILE_FOLDER_PLUGIN_OPEN_H 5 | 6 | HRESULT OpenFileFolderPlugin(IInStream *inStream, const FString &path, const UString &arcFormat, 7 | HMODULE *module, IFolderFolder **resultFolder, HWND parentWindow, bool &encrypted, UString &password); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /QuickViewer/src/folderview/foldertreeview.cpp: -------------------------------------------------------------------------------- 1 | #include "foldertreeview.h" 2 | 3 | FolderTreeView::FolderTreeView(QWidget *parent) 4 | : QTreeView(parent) 5 | { 6 | 7 | } 8 | 9 | void FolderTreeView::selectionChanged(const QItemSelection &selection, const QItemSelection &) 10 | { 11 | auto list = selection.indexes(); 12 | if(list.size() > 0) 13 | emit selected(list.first()); 14 | } 15 | -------------------------------------------------------------------------------- /unrar/unrar/savepos.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_SAVEPOS_ 2 | #define _RAR_SAVEPOS_ 3 | 4 | class SaveFilePos 5 | { 6 | private: 7 | File *SaveFile; 8 | int64 SavePos; 9 | public: 10 | SaveFilePos(File &Src) 11 | { 12 | SaveFile=&Src; 13 | SavePos=Src.Tell(); 14 | } 15 | ~SaveFilePos() 16 | { 17 | SaveFile->Seek(SavePos,SEEK_SET); 18 | } 19 | }; 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /AssociateFilesWithQuickViewer/main.cpp: -------------------------------------------------------------------------------- 1 | #include "fileassocdialog.h" 2 | #include 3 | #include "qlanguageselector.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | QApplication a(argc, argv); 8 | QLanguageSelector selector("quickviewer_", "translations/"); 9 | selector.resetTranslator(""); 10 | 11 | FileAssocDialog w; 12 | w.show(); 13 | 14 | return a.exec(); 15 | } 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/DllSecur.h: -------------------------------------------------------------------------------- 1 | /* DllSecur.h -- DLL loading for security 2 | 2018-02-19 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __DLL_SECUR_H 5 | #define __DLL_SECUR_H 6 | 7 | #include "7zTypes.h" 8 | 9 | EXTERN_C_BEGIN 10 | 11 | #ifdef _WIN32 12 | 13 | void My_SetDefaultDllDirectories(); 14 | void LoadSecurityDlls(); 15 | 16 | #endif 17 | 18 | EXTERN_C_END 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/FileFolderPluginOpen.h: -------------------------------------------------------------------------------- 1 | // FileFolderPluginOpen.h 2 | 3 | #ifndef __FILE_FOLDER_PLUGIN_OPEN_H 4 | #define __FILE_FOLDER_PLUGIN_OPEN_H 5 | 6 | HRESULT OpenFileFolderPlugin(IInStream *inStream, const FString &path, const UString &arcFormat, 7 | HMODULE *module, IFolderFolder **resultFolder, HWND parentWindow, bool &encrypted, UString &password); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Cab/CabHeader.cpp: -------------------------------------------------------------------------------- 1 | // CabHeader.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "CabHeader.h" 6 | 7 | namespace NArchive { 8 | namespace NCab { 9 | namespace NHeader { 10 | 11 | const Byte kMarker[kMarkerSize] = {'M', 'S', 'C', 'F', 0, 0, 0, 0 }; 12 | 13 | // struct CSignatureInitializer { CSignatureInitializer() { kMarker[0]--; } } g_SignatureInitializer; 14 | 15 | }}} 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/LizardRegister.cpp: -------------------------------------------------------------------------------- 1 | // (C) 2017 Tino Reichardt 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "LizardDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "LizardEncoder.h" 11 | #endif 12 | 13 | REGISTER_CODEC_E( 14 | LIZARD, 15 | NCompress::NLIZARD::CDecoder(), 16 | NCompress::NLIZARD::CEncoder(), 17 | 0x4F71106, "LIZARD") 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/TempFiles.cpp: -------------------------------------------------------------------------------- 1 | // TempFiles.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../../Windows/FileDir.h" 6 | 7 | #include "TempFiles.h" 8 | 9 | using namespace NWindows; 10 | using namespace NFile; 11 | 12 | void CTempFiles::Clear() 13 | { 14 | while (!Paths.IsEmpty()) 15 | { 16 | NDir::DeleteFileAlways(Paths.Back()); 17 | Paths.DeleteBack(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/qt7z_global.h: -------------------------------------------------------------------------------- 1 | #ifndef QT7Z_GLOBAL_H 2 | #define QT7Z_GLOBAL_H 3 | 4 | #include 5 | 6 | #ifdef QT7Z_STATIC 7 | 8 | #define QT7ZSHARED_EXPORT 9 | 10 | #else 11 | 12 | #if defined(QT7Z_LIBRARY) 13 | # define QT7ZSHARED_EXPORT Q_DECL_EXPORT 14 | #else 15 | # define QT7ZSHARED_EXPORT Q_DECL_IMPORT 16 | #endif 17 | 18 | #endif // QT7Z_STATIC 19 | 20 | #endif // QT7Z_GLOBAL_H 21 | -------------------------------------------------------------------------------- /Qt7z/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | dist: trusty 3 | 4 | before_install: 5 | - sudo add-apt-repository --yes ppa:beineri/opt-qt591-trusty 6 | - sudo apt-get update -qq 7 | 8 | install: 9 | - sudo apt-get -y install qt59base qt59imageformats 10 | 11 | script: 12 | - source /opt/qt59/bin/qt59-env.sh 13 | - env 14 | - mkdir build 15 | - cd build 16 | - cmake .. 17 | - make -j 18 | - make test 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/MenuPageRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_MENU 2300 2 | #define IDD_MENU_2 12300 3 | 4 | #define IDX_SYSTEM_INTEGRATE_TO_MENU 2301 5 | #define IDX_SYSTEM_CASCADED_MENU 2302 6 | #define IDT_SYSTEM_CONTEXT_MENU_ITEMS 2303 7 | #define IDX_SYSTEM_ICON_IN_MENU 2304 8 | 9 | #define IDX_SYSTEM_INTEGRATE_TO_MENU_2 2310 10 | 11 | #define IDL_SYSTEM_OPTIONS 100 12 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/C/Sort.h: -------------------------------------------------------------------------------- 1 | /* Sort.h -- Sort functions 2 | 2014-04-05 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_SORT_H 5 | #define __7Z_SORT_H 6 | 7 | #include "7zTypes.h" 8 | 9 | EXTERN_C_BEGIN 10 | 11 | void HeapSort(UInt32 *p, size_t size); 12 | void HeapSort64(UInt64 *p, size_t size); 13 | 14 | /* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */ 15 | 16 | EXTERN_C_END 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/7z/7zProperties.h: -------------------------------------------------------------------------------- 1 | // 7zProperties.h 2 | 3 | #ifndef __7Z_PROPERTIES_H 4 | #define __7Z_PROPERTIES_H 5 | 6 | #include "../../PropID.h" 7 | 8 | namespace NArchive { 9 | namespace N7z { 10 | 11 | enum 12 | { 13 | kpidPackedSize0 = kpidUserDefined, 14 | kpidPackedSize1, 15 | kpidPackedSize2, 16 | kpidPackedSize3, 17 | kpidPackedSize4 18 | }; 19 | 20 | }} 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/CMAKE/generate_xcode.sh: -------------------------------------------------------------------------------- 1 | 2 | doit() 3 | { 4 | cd .. 5 | rm -fr "P7ZIP.$1" 6 | mkdir "P7ZIP.$1" 7 | cd "P7ZIP.$1" 8 | 9 | cmake -G "$2" -DCMAKE_BUILD_TYPE=Debug ../CMAKE/ 10 | #cmake -G "$2" -DCMAKE_BUILD_TYPE=Release ../CMAKE/ 11 | } 12 | 13 | CURDIR=$PWD 14 | 15 | cd $CURDIR 16 | CMAKE_OSX_ARCHITECTURES=i386 17 | export CMAKE_OSX_ARCHITECTURES 18 | doit "Xcode" "Xcode" 19 | 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/FastLzma2Register.cpp: -------------------------------------------------------------------------------- 1 | // FastLzma2Register.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "Lzma2Decoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "Lzma2Encoder.h" 11 | #endif 12 | 13 | REGISTER_CODEC_E( 14 | FLZMA2, 15 | NCompress::NLzma2::CDecoder(), 16 | NCompress::NLzma2::CFastEncoder(), 17 | 0x21, 18 | "FLZMA2") 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.solaris_x86: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -s 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 6 | -DENV_UNIX \ 7 | -DNDEBUG -D_REENTRANT \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=g++ 11 | CC=gcc 12 | CC_SHARED=-fPIC 13 | LINK_SHARED=-fPIC -shared 14 | 15 | LOCAL_LIBS=-lpthread -lrt 16 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) -ldl 17 | 18 | OBJ_CRC32=$(OBJ_CRC32_C) 19 | OBJ_AES= 20 | 21 | -------------------------------------------------------------------------------- /unrar/unrar/crc.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_CRC_ 2 | #define _RAR_CRC_ 3 | 4 | // This function is only to intialize external CRC tables. We do not need to 5 | // call it before calculating CRC32. 6 | void InitCRC32(uint *CRCTab); 7 | 8 | uint CRC32(uint StartCRC,const void *Addr,size_t Size); 9 | 10 | #ifndef SFX_MODULE 11 | ushort Checksum14(ushort StartCRC,const void *Addr,size_t Size); 12 | #endif 13 | 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Cab/CabHeader.cpp: -------------------------------------------------------------------------------- 1 | // CabHeader.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "CabHeader.h" 6 | 7 | namespace NArchive { 8 | namespace NCab { 9 | namespace NHeader { 10 | 11 | const Byte kMarker[kMarkerSize] = {'M', 'S', 'C', 'F', 0, 0, 0, 0 }; 12 | 13 | // struct CSignatureInitializer { CSignatureInitializer() { kMarker[0]--; } } g_SignatureInitializer; 14 | 15 | }}} 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- 1 | // Windows/Control/Edit.h 2 | 3 | #ifndef __WINDOWS_CONTROL_EDIT_H 4 | #define __WINDOWS_CONTROL_EDIT_H 5 | 6 | #include "../Window.h" 7 | 8 | namespace NWindows { 9 | namespace NControl { 10 | 11 | class CEdit: public CWindow 12 | { 13 | public: 14 | void SetPasswordChar(WPARAM c) { SendMsg(EM_SETPASSWORDCHAR, c); } 15 | }; 16 | 17 | }} 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/Common/ArchiveName.h: -------------------------------------------------------------------------------- 1 | // ArchiveName.h 2 | 3 | #ifndef __ARCHIVE_NAME_H 4 | #define __ARCHIVE_NAME_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | #include "../../../Windows/FileFind.h" 9 | 10 | UString CreateArchiveName(const UString &path, bool fromPrev, bool keepName); 11 | UString CreateArchiveName(const NWindows::NFile::NFind::CFileInfo &fileInfo, bool keepName); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- 1 | // Common/UTFConvert.h 2 | 3 | #ifndef __COMMON_UTF_CONVERT_H 4 | #define __COMMON_UTF_CONVERT_H 5 | 6 | #include "MyString.h" 7 | 8 | bool CheckUTF8(const char *src, bool allowReduced = false) throw(); 9 | bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString); 10 | void ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /unrar/unrar/isnt.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_ISNT_ 2 | #define _RAR_ISNT_ 3 | 4 | enum WINNT_VERSION { 5 | WNT_NONE=0,WNT_NT351=0x0333,WNT_NT4=0x0400,WNT_W2000=0x0500, 6 | WNT_WXP=0x0501,WNT_W2003=0x0502,WNT_VISTA=0x0600,WNT_W7=0x0601, 7 | WNT_W8=0x0602,WNT_W81=0x0603,WNT_W10=0x0a00 8 | }; 9 | 10 | DWORD WinNT(); 11 | 12 | 13 | // Replace it with actual check when available. 14 | bool IsWindows11OrGreater(); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Util/LzmaLib/LzmaLibExports.c: -------------------------------------------------------------------------------- 1 | /* LzmaLibExports.c -- LZMA library DLL Entry point 2 | 2015-11-08 : Igor Pavlov : Public domain */ 3 | 4 | #include "../../Precomp.h" 5 | 6 | #include 7 | 8 | BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) 9 | { 10 | UNUSED_VAR(hInstance); 11 | UNUSED_VAR(dwReason); 12 | UNUSED_VAR(lpReserved); 13 | return TRUE; 14 | } 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/Common/TempFiles.cpp: -------------------------------------------------------------------------------- 1 | // TempFiles.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../../Windows/FileDir.h" 6 | 7 | #include "TempFiles.h" 8 | 9 | using namespace NWindows; 10 | using namespace NFile; 11 | 12 | void CTempFiles::Clear() 13 | { 14 | while (!Paths.IsEmpty()) 15 | { 16 | NDir::DeleteFileAlways(Paths.Back()); 17 | Paths.DeleteBack(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Nsis/NsisRegister.cpp: -------------------------------------------------------------------------------- 1 | // NsisRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../Common/RegisterArc.h" 6 | 7 | #include "NsisHandler.h" 8 | 9 | namespace NArchive { 10 | namespace NNsis { 11 | 12 | REGISTER_ARC_I( 13 | "Nsis", "nsis", 0, 0x9, 14 | kSignature, 15 | 4, 16 | NArcInfoFlags::kFindSignature | 17 | NArcInfoFlags::kUseGlobalOffset, 18 | NULL) 19 | 20 | }} 21 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/BrotliRegister.cpp: -------------------------------------------------------------------------------- 1 | // (C) 2017 Tino Reichardt 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "BrotliDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "BrotliEncoder.h" 11 | #endif 12 | 13 | REGISTER_CODEC_E( 14 | BROTLI, 15 | NCompress::NBROTLI::CDecoder(), 16 | NCompress::NBROTLI::CEncoder(), 17 | 0x4F71102, "BROTLI") 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/LzmaRegister.cpp: -------------------------------------------------------------------------------- 1 | // LzmaRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "LzmaDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "LzmaEncoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NLzma { 15 | 16 | REGISTER_CODEC_E(LZMA, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x30101, 20 | "LZMA") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/PpmdRegister.cpp: -------------------------------------------------------------------------------- 1 | // PpmdRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "PpmdDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "PpmdEncoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NPpmd { 15 | 16 | REGISTER_CODEC_E(PPMD, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x30401, 20 | "PPMD") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/StringUtils.h: -------------------------------------------------------------------------------- 1 | // StringUtils.h 2 | 3 | #ifndef __STRING_UTILS_H 4 | #define __STRING_UTILS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void SplitStringToTwoStrings(const UString &src, UString &dest1, UString &dest2); 9 | 10 | void SplitString(const UString &srcString, UStringVector &destStrings); 11 | UString JoinStrings(const UStringVector &srcStrings); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.cygwin: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -s 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 6 | -DNDEBUG -D_REENTRANT \ 7 | -DENV_UNIX \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=g++ 11 | CC=gcc 12 | CC_SHARED= 13 | LINK_SHARED=-shared 14 | 15 | # Cygwin does not need -ldl 16 | LOCAL_LIBS=-lpthread 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.gprof: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -g -pg 3 | ALLFLAGS=${OPTFLAGS} \ 4 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 5 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 6 | $(LOCAL_FLAGS) 7 | 8 | CXX=g++ 9 | CC=gcc 10 | LINK_SHARED=-shared 11 | 12 | LOCAL_LIBS=-lpthread 13 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) -ldl 14 | # static linkage 15 | # LOCAL_LIBS=-static -lpthread 16 | 17 | OBJ_CRC32=$(OBJ_CRC32_C) 18 | OBJ_AES= 19 | 20 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: quickviewer 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | custom: # Replace with a single custom sponsorship URL 9 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/C/Sort.h: -------------------------------------------------------------------------------- 1 | /* Sort.h -- Sort functions 2 | 2014-04-05 : Igor Pavlov : Public domain */ 3 | 4 | #ifndef __7Z_SORT_H 5 | #define __7Z_SORT_H 6 | 7 | #include "7zTypes.h" 8 | 9 | EXTERN_C_BEGIN 10 | 11 | void HeapSort(UInt32 *p, size_t size); 12 | void HeapSort64(UInt64 *p, size_t size); 13 | 14 | /* void HeapSortRef(UInt32 *p, UInt32 *vals, size_t size); */ 15 | 16 | EXTERN_C_END 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/7z/7zProperties.h: -------------------------------------------------------------------------------- 1 | // 7zProperties.h 2 | 3 | #ifndef __7Z_PROPERTIES_H 4 | #define __7Z_PROPERTIES_H 5 | 6 | #include "../../PropID.h" 7 | 8 | namespace NArchive { 9 | namespace N7z { 10 | 11 | enum 12 | { 13 | kpidPackedSize0 = kpidUserDefined, 14 | kpidPackedSize1, 15 | kpidPackedSize2, 16 | kpidPackedSize3, 17 | kpidPackedSize4 18 | }; 19 | 20 | }} 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- 1 | // Common/UTFConvert.h 2 | 3 | #ifndef __COMMON_UTF_CONVERT_H 4 | #define __COMMON_UTF_CONVERT_H 5 | 6 | #include "MyString.h" 7 | 8 | bool CheckUTF8(const char *src, bool allowReduced = false) throw(); 9 | bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString); 10 | void ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Compress/Lzma2Register.cpp: -------------------------------------------------------------------------------- 1 | // Lzma2Register.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "Lzma2Decoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "Lzma2Encoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NLzma2 { 15 | 16 | REGISTER_CODEC_E(LZMA2, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x21, 20 | "LZMA2") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- 1 | // IProgress.h 2 | 3 | #ifndef __IPROGRESS_H 4 | #define __IPROGRESS_H 5 | 6 | #include "../Common/MyTypes.h" 7 | 8 | #include "IDecl.h" 9 | 10 | #define INTERFACE_IProgress(x) \ 11 | STDMETHOD(SetTotal)(UInt64 total) x; \ 12 | STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \ 13 | 14 | DECL_INTERFACE(IProgress, 0, 5) 15 | { 16 | INTERFACE_IProgress(PURE) 17 | }; 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/FormatUtils.h: -------------------------------------------------------------------------------- 1 | // FormatUtils.h 2 | 3 | #ifndef __FORMAT_UTILS_H 4 | #define __FORMAT_UTILS_H 5 | 6 | #include "../../../Common/MyTypes.h" 7 | #include "../../../Common/MyString.h" 8 | 9 | UString NumberToString(UInt64 number); 10 | 11 | UString MyFormatNew(const UString &format, const UString &argument); 12 | UString MyFormatNew(UINT resourceID, const UString &argument); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/Utils/file_TestUI.py: -------------------------------------------------------------------------------- 1 | 2 | files_c=[ 3 | 'C/Threads.c', 4 | ] 5 | 6 | files_cpp=[ 7 | 'CPP/7zip/TEST/TestUI/TestUI.cpp', 8 | 'CPP/7zip/UI/FileManager/PasswordDialog.cpp', 9 | 'CPP/7zip/UI/FileManager/PasswordDialog_rc.cpp', 10 | 'CPP/Common/MyString.cpp', 11 | 'CPP/Common/MyWindows.cpp', 12 | 'CPP/Windows/Control/Controls.cpp', 13 | 'CPP/Windows/Control/Dialog.cpp', 14 | 'CPP/Windows/Window.cpp', 15 | ] 16 | 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.cygwin64: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O -s -m64 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 6 | -DNDEBUG -D_REENTRANT \ 7 | -DENV_UNIX \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=g++ 11 | CC=gcc 12 | CC_SHARED= 13 | LINK_SHARED=-shared 14 | 15 | # Cygwin does not need -ldl 16 | LOCAL_LIBS=-lpthread 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.cygwin_clang: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O 3 | 4 | ALLFLAGS=${OPTFLAGS} \ 5 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 6 | -DNDEBUG -D_REENTRANT \ 7 | -DENV_UNIX \ 8 | $(LOCAL_FLAGS) 9 | 10 | CXX=clang++ 11 | CC=clang 12 | CC_SHARED= 13 | LINK_SHARED=-shared 14 | 15 | # Cygwin does not need -ldl 16 | LOCAL_LIBS=-lpthread 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.freebsd5: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for FreeBSD 5 (x86, PPC, alpha ...) 3 | # 4 | 5 | OPTFLAGS=-O -s 6 | 7 | ALLFLAGS=${OPTFLAGS} \ 8 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 9 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 10 | $(LOCAL_FLAGS) 11 | 12 | CXX=g++ 13 | CC=gcc 14 | LINK_SHARED=-shared 15 | 16 | LOCAL_LIBS=-lc_r 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/StringUtils.h: -------------------------------------------------------------------------------- 1 | // StringUtils.h 2 | 3 | #ifndef __STRING_UTILS_H 4 | #define __STRING_UTILS_H 5 | 6 | #include "../../../Common/MyString.h" 7 | 8 | void SplitStringToTwoStrings(const UString &src, UString &dest1, UString &dest2); 9 | 10 | void SplitString(const UString &srcString, UStringVector &destStrings); 11 | UString JoinStrings(const UStringVector &srcStrings); 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- 1 | // Windows/ResourceString.h 2 | 3 | #ifndef __WINDOWS_RESOURCE_STRING_H 4 | #define __WINDOWS_RESOURCE_STRING_H 5 | 6 | #include "../Common/MyString.h" 7 | 8 | namespace NWindows { 9 | 10 | UString MyLoadString(UINT resourceID); 11 | void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest); 12 | void MyLoadString(UINT resourceID, UString &dest); 13 | 14 | } 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /unrar/unrar/filestr.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _RAR_FILESTR_ 2 | #define _RAR_FILESTR_ 3 | 4 | bool ReadTextFile( 5 | const std::wstring &Name, 6 | StringList *List, 7 | bool Config, 8 | bool AbortOnError=false, 9 | RAR_CHARSET SrcCharset=RCH_DEFAULT, 10 | bool Unquote=false, 11 | bool SkipComments=false, 12 | bool ExpandEnvStr=false 13 | ); 14 | 15 | RAR_CHARSET DetectTextEncoding(const byte *Data,size_t DataSize); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Archive/Nsis/NsisRegister.cpp: -------------------------------------------------------------------------------- 1 | // NsisRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../Common/RegisterArc.h" 6 | 7 | #include "NsisHandler.h" 8 | 9 | namespace NArchive { 10 | namespace NNsis { 11 | 12 | REGISTER_ARC_I( 13 | "Nsis", "nsis", 0, 0x9, 14 | kSignature, 15 | 4, 16 | NArcInfoFlags::kFindSignature | 17 | NArcInfoFlags::kUseGlobalOffset, 18 | NULL) 19 | 20 | }} 21 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/FormatUtils.h: -------------------------------------------------------------------------------- 1 | // FormatUtils.h 2 | 3 | #ifndef __FORMAT_UTILS_H 4 | #define __FORMAT_UTILS_H 5 | 6 | #include "../../../Common/MyTypes.h" 7 | #include "../../../Common/MyString.h" 8 | 9 | UString NumberToString(UInt64 number); 10 | 11 | UString MyFormatNew(const UString &format, const UString &argument); 12 | UString MyFormatNew(UINT resourceID, const UString &argument); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/Shell.h: -------------------------------------------------------------------------------- 1 | // Windows/Shell.h 2 | 3 | #ifndef __WINDOWS_SHELL_H 4 | #define __WINDOWS_SHELL_H 5 | 6 | #include 7 | // #include 8 | 9 | #include "Common/MyString.h" 10 | #include "Windows/Defs.h" 11 | 12 | 13 | namespace NWindows{ 14 | namespace NShell{ 15 | 16 | bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &resultPath); 17 | 18 | }} 19 | 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/install_local_context_menu.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | tryInstall() 4 | { 5 | prg=$1 6 | 7 | if [ -d ${HOME}/.kde/share/apps/${prg} ] 8 | then 9 | echo "Installing menus for ${prg} ..." 10 | mkdir -p ${HOME}/.kde/share/apps/${prg}/servicemenus 11 | cp GUI/kde/*.desktop ${HOME}/.kde/share/apps/${prg}/servicemenus/ 12 | fi 13 | } 14 | 15 | tryInstall d3lphin 16 | tryInstall dolphin 17 | tryInstall konqueror 18 | 19 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.hpux-gcc: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for HP-UX 11 3 | # 4 | 5 | OPTFLAGS=-O -s 6 | 7 | ALLFLAGS=${OPTFLAGS} \ 8 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 9 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 10 | $(LOCAL_FLAGS) 11 | 12 | CXX=g++ 13 | CC=gcc 14 | CC_SHARED=-fPIC 15 | LINK_SHARED=-fPIC -shared 16 | 17 | LOCAL_LIBS=-lpthread 18 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 19 | 20 | OBJ_CRC32=$(OBJ_CRC32_C) 21 | OBJ_AES= 22 | 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/LzmaRegister.cpp: -------------------------------------------------------------------------------- 1 | // LzmaRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "LzmaDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "LzmaEncoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NLzma { 15 | 16 | REGISTER_CODEC_E(LZMA, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x30101, 20 | "LZMA") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/PpmdRegister.cpp: -------------------------------------------------------------------------------- 1 | // PpmdRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "PpmdDecoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "PpmdEncoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NPpmd { 15 | 16 | REGISTER_CODEC_E(PPMD, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x30401, 20 | "PPMD") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ComboDialog.rc: -------------------------------------------------------------------------------- 1 | #include "ComboDialogRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 240 5 | #define yc 64 6 | 7 | IDD_COMBO DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT 8 | CAPTION "Combo" 9 | { 10 | LTEXT "", IDT_COMBO, m, m, xc, 8 11 | COMBOBOX IDC_COMBO, m, 20, xc, 65, MY_COMBO_WITH_EDIT 12 | OK_CANCEL 13 | } 14 | 15 | #undef xc 16 | #undef yc 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/ProgressDialog.rc: -------------------------------------------------------------------------------- 1 | #include "ProgressDialogRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 172 5 | #define yc 44 6 | 7 | IDD_PROGRESS DIALOG 0, 0, xs, ys MY_MODAL_DIALOG_STYLE MY_FONT 8 | CAPTION "Progress" 9 | BEGIN 10 | PUSHBUTTON "Cancel", IDCANCEL, bx, by, bxs, bys 11 | CONTROL "Progress1", IDC_PROGRESS1, "msctls_progress32", PBS_SMOOTH | WS_BORDER, m, m, xc, 14 12 | END 13 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/Qt7z.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 2014-02-08T18:57:16 4 | # 5 | #------------------------------------------------- 6 | 7 | QT -= gui 8 | 9 | TARGET = Qt7z 10 | TEMPLATE = lib 11 | CONFIG += staticlib 12 | CONFIG += warn_off 13 | 14 | include("Qt7z.pri") 15 | 16 | #unix { 17 | # target.path = /usr/lib 18 | # INSTALLS += target 19 | #} 20 | DESTDIR = ../../lib 21 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- 1 | // HashGUI.h 2 | 3 | #ifndef __HASH_GUI_H 4 | #define __HASH_GUI_H 5 | 6 | #include "../Common/HashCalc.h" 7 | 8 | HRESULT HashCalcGUI( 9 | DECL_EXTERNAL_CODECS_LOC_VARS 10 | const NWildcard::CCensor &censor, 11 | const CHashOptions &options, 12 | bool &messageWasDisplayed); 13 | 14 | void AddHashBundleRes(UString &s, const CHashBundle &hb, const UString &firstFileName); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.hpux-acc_64: -------------------------------------------------------------------------------- 1 | 2 | # build 64 bits program (Tested on HPUX with Itanium CPU) 3 | 4 | OPTFLAGS=-O 5 | 6 | ALLFLAGS=${OPTFLAGS} -mt +DD64 +Z +Ww2101 \ 7 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 8 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 9 | $(LOCAL_FLAGS) 10 | 11 | CXX=aCC -AA 12 | CC=aCC -Ae 13 | 14 | LINK_SHARED=-b 15 | LOCAL_LIBS= 16 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 17 | 18 | OBJ_CRC32=$(OBJ_CRC32_C) 19 | OBJ_AES= 20 | 21 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/Compress/Lzma2Register.cpp: -------------------------------------------------------------------------------- 1 | // Lzma2Register.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../Common/RegisterCodec.h" 6 | 7 | #include "Lzma2Decoder.h" 8 | 9 | #ifndef EXTRACT_ONLY 10 | #include "Lzma2Encoder.h" 11 | #endif 12 | 13 | namespace NCompress { 14 | namespace NLzma2 { 15 | 16 | REGISTER_CODEC_E(LZMA2, 17 | CDecoder(), 18 | CEncoder(), 19 | 0x21, 20 | "LZMA2") 21 | 22 | }} 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- 1 | // IProgress.h 2 | 3 | #ifndef __IPROGRESS_H 4 | #define __IPROGRESS_H 5 | 6 | #include "../Common/MyTypes.h" 7 | 8 | #include "IDecl.h" 9 | 10 | #define INTERFACE_IProgress(x) \ 11 | STDMETHOD(SetTotal)(UInt64 total) x; \ 12 | STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \ 13 | 14 | DECL_INTERFACE(IProgress, 0, 5) 15 | { 16 | INTERFACE_IProgress(PURE) 17 | }; 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- 1 | // Windows/ResourceString.h 2 | 3 | #ifndef __WINDOWS_RESOURCE_STRING_H 4 | #define __WINDOWS_RESOURCE_STRING_H 5 | 6 | #include "../Common/MyString.h" 7 | 8 | namespace NWindows { 9 | 10 | UString MyLoadString(UINT resourceID); 11 | void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest); 12 | void MyLoadString(UINT resourceID, UString &dest); 13 | 14 | } 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/qt7zfileinfo.h: -------------------------------------------------------------------------------- 1 | #ifndef QT7ZFILEINFO_H 2 | #define QT7ZFILEINFO_H 3 | 4 | #include 5 | #include 6 | 7 | #include "qt7z_global.h" 8 | 9 | struct QT7ZSHARED_EXPORT Qt7zFileInfo 10 | { 11 | QString fileName; 12 | QString arcName; 13 | quint64 size; 14 | size_t pre_total; 15 | bool isDir; 16 | bool isCrcDefined; 17 | quint32 crc; 18 | bool isEncrypted; 19 | }; 20 | 21 | #endif // QT7ZFILEINFO_H 22 | -------------------------------------------------------------------------------- /QuickViewer/src/catalog/qc_init.h: -------------------------------------------------------------------------------- 1 | #ifndef QC_INIT_H 2 | #define QC_INIT_H 3 | 4 | #define APP_ORGANIZATION "KATO Kanryu(k.kanryu@gmail.com)" 5 | #define APP_COPYRIGHT "Copyright 2017 KATO Kanryu" 6 | 7 | #define ISO_DATETIMEFMT "yyyy/MM/dd hh:mm:ss" 8 | #define THUMB_WIDTH 96 9 | #define MAX_WIDTH 4096 10 | #define MAX_HEIGHT MAX_WIDTH 11 | 12 | #define QUICKVIEWER "QuickViewer" 13 | #define TURBO_JPEG_FMT "turbojpeg" 14 | 15 | #endif // QC_INIT_H 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/EditDialog.rc: -------------------------------------------------------------------------------- 1 | #include "EditDialogRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 320 5 | #define yc 240 6 | 7 | IDD_EDIT_DLG DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT 8 | CAPTION "Edit" 9 | { 10 | // OK_CANCEL 11 | MY_BUTTON__CLOSE 12 | 13 | EDITTEXT IDE_EDIT, m, m, xc, yc - bys - m, 14 | ES_MULTILINE | ES_READONLY | WS_VSCROLL | WS_HSCROLL | ES_WANTRETURN 15 | } 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/EditPageRes.h: -------------------------------------------------------------------------------- 1 | #define IDD_EDIT 2103 2 | #define IDD_EDIT_2 12103 3 | 4 | #define IDT_EDIT_VIEWER 543 5 | #define IDT_EDIT_EDITOR 2104 6 | #define IDT_EDIT_DIFF 2105 7 | 8 | #define IDE_EDIT_VIEWER 100 9 | #define IDB_EDIT_VIEWER 101 10 | 11 | #define IDE_EDIT_EDITOR 102 12 | #define IDB_EDIT_EDITOR 103 13 | 14 | #define IDE_EDIT_DIFF 104 15 | #define IDB_EDIT_DIFF 105 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/SettingsPage.rc: -------------------------------------------------------------------------------- 1 | #include "SettingsPageRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 240 5 | #define yc 120 6 | 7 | IDD_SETTINGS MY_PAGE 8 | #include "SettingsPage2.rc" 9 | 10 | 11 | #ifdef UNDER_CE 12 | 13 | #undef m 14 | #undef xc 15 | 16 | #define m 4 17 | #define xc (SMALL_PAGE_SIZE_X + 8) 18 | 19 | IDD_SETTINGS_2 MY_PAGE 20 | #include "SettingsPage2.rc" 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/Archive/Iso/IsoRegister.cpp: -------------------------------------------------------------------------------- 1 | // IsoRegister.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "../../Common/RegisterArc.h" 6 | 7 | #include "IsoHandler.h" 8 | 9 | namespace NArchive { 10 | namespace NIso { 11 | 12 | static const Byte k_Signature[] = { 'C', 'D', '0', '0', '1' }; 13 | 14 | REGISTER_ARC_I( 15 | "Iso", "iso img", 0, 0xE7, 16 | k_Signature, 17 | NArchive::NIso::kStartPos + 1, 18 | 0, 19 | NULL) 20 | 21 | }} 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.freebsd6+: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for FreeBSD 6, 7, 8, 9, 10, ... (x86, PPC, alpha ...) 3 | # 4 | 5 | OPTFLAGS=-O -s 6 | 7 | ALLFLAGS=${OPTFLAGS} \ 8 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 9 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 10 | $(LOCAL_FLAGS) 11 | 12 | CXX=g++ 13 | CC=gcc 14 | LINK_SHARED=-shared 15 | 16 | LOCAL_LIBS=-lpthread 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/7zip/UI/FileManager/DialogSize.h: -------------------------------------------------------------------------------- 1 | // DialogSize.h 2 | 3 | #ifndef __DIALOG_SIZE_H 4 | #define __DIALOG_SIZE_H 5 | 6 | #include "../../../Windows/Control/Dialog.h" 7 | 8 | #ifdef UNDER_CE 9 | #define BIG_DIALOG_SIZE(x, y) bool isBig = NWindows::NControl::IsDialogSizeOK(x, y); 10 | #define SIZED_DIALOG(big) (isBig ? big : big ## _2) 11 | #else 12 | #define BIG_DIALOG_SIZE(x, y) 13 | #define SIZED_DIALOG(big) big 14 | #endif 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /luminor/qluminor.h: -------------------------------------------------------------------------------- 1 | #ifndef QLUMINOR_H 2 | #define QLUMINOR_H 3 | 4 | #include 5 | 6 | class QLuminor : public QObject 7 | { 8 | Q_OBJECT 9 | public: 10 | explicit QLuminor(QObject *parent = nullptr); 11 | 12 | static QImage toLuminor(const QImage& src, float brightness, float contrast, float gamma); 13 | static QImage toLuminorRGBA(const QImage& src, float brightness, float contrast, float gamma); 14 | }; 15 | 16 | #endif // QLUMINOR_H 17 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/FileManager/MenuPage.rc: -------------------------------------------------------------------------------- 1 | #include "MenuPageRes.h" 2 | #include "../../GuiCommon.rc" 3 | 4 | #define xc 240 5 | #define yc 224 6 | 7 | IDD_MENU MY_PAGE 8 | #include "MenuPage2.rc" 9 | 10 | #ifdef UNDER_CE 11 | 12 | #undef m 13 | #undef xc 14 | #undef yc 15 | 16 | #define m 4 17 | #define xc (SMALL_PAGE_SIZE_X + 8) 18 | 19 | #define yc 112 20 | 21 | IDD_MENU_2 MY_PAGE 22 | #include "MenuPage2.rc" 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/7zip/CPP/7zip/UI/GUI/resource3.rc: -------------------------------------------------------------------------------- 1 | #include "resource3.h" 2 | 3 | STRINGTABLE 4 | BEGIN 5 | IDS_PROGRESS_REMOVE "Removing" 6 | 7 | IDS_PROGRESS_ADD "Adding" 8 | IDS_PROGRESS_UPDATE "Updating" 9 | IDS_PROGRESS_ANALYZE "Analyzing" 10 | IDS_PROGRESS_REPLICATE "Replicating" 11 | IDS_PROGRESS_REPACK "Repacking" 12 | 13 | IDS_PROGRESS_DELETE "Deleting" 14 | IDS_PROGRESS_HEADER "Header creating" 15 | END 16 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/CPP/Windows/Control/Static.h: -------------------------------------------------------------------------------- 1 | // Windows/Control/Static.h 2 | 3 | #ifndef __WINDOWS_CONTROL_STATIC_H 4 | #define __WINDOWS_CONTROL_STATIC_H 5 | 6 | #include "Windows/Window.h" 7 | #include "Windows/Defs.h" 8 | 9 | typedef void * HICON; 10 | 11 | namespace NWindows { 12 | namespace NControl { 13 | 14 | class CStatic : public CWindow 15 | { 16 | public: 17 | 18 | HICON SetIcon(HICON icon) { return 0; } // FIXME 19 | }; 20 | 21 | }} 22 | 23 | #endif 24 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.djgpp: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for DJGPP 3 | # (available targets for DJGPP : all test clean) 4 | # 5 | 6 | OPTFLAGS=-O -s 7 | 8 | ALLFLAGS=${OPTFLAGS} \ 9 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 10 | -DNDEBUG -D_REENTRANT -DENV_UNIX \ 11 | $(LOCAL_FLAGS) 12 | 13 | CXX=gpp 14 | CC=gcc 15 | LINK_SHARED=-shared 16 | 17 | LOCAL_LIBS=-lpthread -lsocket 18 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 19 | 20 | OBJ_CRC32=$(OBJ_CRC32_C) 21 | OBJ_AES= 22 | 23 | -------------------------------------------------------------------------------- /Qt7z/Qt7z/p7zip/makefile.macosx_gcc_32bits: -------------------------------------------------------------------------------- 1 | 2 | OPTFLAGS=-O 3 | 4 | # don't use -DNDEBUG in order to use MacOSX wxWidgets 5 | 6 | ALLFLAGS=-m32 ${OPTFLAGS} \ 7 | -DENV_MACOSX \ 8 | -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ 9 | -D_REENTRANT -DENV_UNIX \ 10 | $(LOCAL_FLAGS) 11 | 12 | CXX=c++ 13 | CC=cc 14 | LINK_SHARED=-bundle 15 | 16 | LOCAL_LIBS=-framework CoreFoundation 17 | LOCAL_LIBS_DLL=$(LOCAL_LIBS) 18 | 19 | OBJ_CRC32=$(OBJ_CRC32_C) 20 | OBJ_AES= 21 | 22 | --------------------------------------------------------------------------------