├── .editorconfig ├── .gitignore ├── Build Instructions.txt ├── CommonProjDefinitions.props ├── LICENSE ├── README.md ├── Shutter.sln ├── Shutter编译步骤.doc ├── SlideShowApp ├── Bitmap.cpp ├── Bitmap.h ├── DC.cpp ├── DC.h ├── Dib.cpp ├── Dib.h ├── JPEGDataSource.cpp ├── JPEGDataSource.h ├── JPEGException.cpp ├── JPEGException.h ├── JpegDecoder.cpp ├── JpegDecoder.h ├── MemoryDataSource.cpp ├── MemoryDataSource.h ├── PhotoInfo.cpp ├── PhotoInfo.h ├── Photos.cpp ├── Photos.h ├── Rect.cpp ├── Rect.h ├── Size.cpp ├── Size.h ├── SlideShowApp.cpp ├── SlideShowApp.rc ├── SlideShowApp.vcxproj ├── SlideShowApp.vcxproj.filters ├── StdAfx.cpp ├── StdAfx.h ├── res │ ├── image.bmp │ └── manifest.txt ├── resource.h └── slide_show.ico ├── Templates ├── FrameImage.html ├── FrameSet.html ├── Frames.html ├── Grid.html └── GridImage.html ├── info └── screenshot.jpg ├── libs ├── XMP-Toolkit │ ├── XMPCore │ │ └── source │ │ │ ├── ExpatAdapter.cpp │ │ │ ├── ParseRDF.cpp │ │ │ ├── WXMPIterator.cpp │ │ │ ├── WXMPMeta.cpp │ │ │ ├── WXMPUtils.cpp │ │ │ ├── XMPCore_Impl.cpp │ │ │ ├── XMPCore_Impl.hpp │ │ │ ├── XMPIterator.cpp │ │ │ ├── XMPIterator.hpp │ │ │ ├── XMPMeta-GetSet.cpp │ │ │ ├── XMPMeta-Parse.cpp │ │ │ ├── XMPMeta-Serialize.cpp │ │ │ ├── XMPMeta.cpp │ │ │ ├── XMPMeta.hpp │ │ │ ├── XMPUtils-FileInfo.cpp │ │ │ ├── XMPUtils.cpp │ │ │ └── XMPUtils.hpp │ ├── build │ │ ├── XMP_BuildInfo.h │ │ └── vc │ │ │ ├── XMPCore.vcxproj │ │ │ ├── XMPCore.vcxproj.filters │ │ │ ├── XMPFiles.vcxproj │ │ │ ├── XMPFiles.vcxproj.filters │ │ │ └── expat_config.h │ ├── public │ │ └── include │ │ │ ├── TXMPFiles.hpp │ │ │ ├── TXMPIterator.hpp │ │ │ ├── TXMPMeta.hpp │ │ │ ├── TXMPUtils.hpp │ │ │ ├── XMP.hpp │ │ │ ├── XMP.incl_cpp │ │ │ ├── XMP_Const.h │ │ │ ├── XMP_Environment.h │ │ │ ├── XMP_IO.hpp │ │ │ ├── XMP_Version.h │ │ │ └── client-glue │ │ │ ├── TXMPFiles.incl_cpp │ │ │ ├── TXMPIterator.incl_cpp │ │ │ ├── TXMPMeta.incl_cpp │ │ │ ├── TXMPUtils.incl_cpp │ │ │ ├── WXMPFiles.hpp │ │ │ ├── WXMPIterator.hpp │ │ │ ├── WXMPMeta.hpp │ │ │ ├── WXMPUtils.hpp │ │ │ └── WXMP_Common.hpp │ ├── source │ │ ├── Endian.h │ │ ├── EndianUtils.hpp │ │ ├── ExpatAdapter.hpp │ │ ├── Host_IO-Mac.cpp │ │ ├── Host_IO-POSIX.cpp │ │ ├── Host_IO-UNIX.cpp │ │ ├── Host_IO-Win.cpp │ │ ├── Host_IO.hpp │ │ ├── UnicodeConversions.cpp │ │ ├── UnicodeConversions.hpp │ │ ├── UnicodeInlines.incl_cpp │ │ ├── XIO.cpp │ │ ├── XIO.hpp │ │ ├── XMLParserAdapter.hpp │ │ ├── XML_Node.cpp │ │ ├── XMPFiles_IO.cpp │ │ ├── XMPFiles_IO.hpp │ │ ├── XMP_LibUtils.cpp │ │ └── XMP_LibUtils.hpp │ └── third-party │ │ ├── expat │ │ ├── ReadMe.txt │ │ └── lib │ │ │ ├── amigaconfig.h │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── expat.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.h │ │ │ ├── internal.h │ │ │ ├── latin1tab.h │ │ │ ├── macconfig.h │ │ │ ├── nametab.h │ │ │ ├── utf8tab.h │ │ │ ├── winconfig.h │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ │ ├── zlib │ │ └── ReadMe.txt │ │ └── zuid │ │ └── interfaces │ │ ├── MD5.cpp │ │ └── MD5.h ├── coolsb │ ├── coolsb.vcxproj │ ├── coolsb.vcxproj.filters │ ├── coolsb_internal.h │ ├── coolsblib.c │ ├── coolsblib.h │ ├── coolscroll.c │ ├── coolscroll.h │ └── userdefs.h ├── giflib │ ├── Version.txt │ ├── dgif_lib.c │ ├── gif_err.c │ ├── gif_font.c │ ├── gif_hash.c │ ├── gif_hash.h │ ├── gif_lib.h │ ├── gif_lib_private.h │ ├── gifalloc.c │ ├── giflib.vcxproj │ └── giflib.vcxproj.filters ├── lcms │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── Projects │ │ └── VC7 │ │ │ ├── Python.vcproj │ │ │ ├── Testbed.vcproj │ │ │ ├── icc2ps.vcproj │ │ │ ├── icclink.vcproj │ │ │ ├── icctrans.vcproj │ │ │ ├── jpegicc.vcproj │ │ │ ├── lcms.rc │ │ │ ├── lcms.sln │ │ │ ├── lcms.vcproj │ │ │ ├── lcms111.vcproj │ │ │ ├── lcms111.vcxproj │ │ │ ├── lcms111.vcxproj.filters │ │ │ ├── lcmsdll.vcproj │ │ │ ├── resource.h │ │ │ ├── tiffdiff.vcproj │ │ │ └── tifficc.vcproj │ ├── README.1ST │ ├── aclocal.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── filter.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── icc34.h │ │ ├── icc34.h.in │ │ └── lcms.h │ ├── install-sh │ ├── install.gcc │ ├── jpegicc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── iccjpeg.c │ │ ├── iccjpeg.h │ │ ├── jpegicc.1 │ │ ├── jpegicc.c │ │ └── makefile.simple │ ├── lcms.pc.in │ ├── ltmain.sh │ ├── makefile.simple │ ├── missing │ ├── mkinstalldirs │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cmscam02.c │ │ ├── cmscam97.c │ │ ├── cmscam97.c.rej │ │ ├── cmscgats.c │ │ ├── cmscnvrt.c │ │ ├── cmserr.c │ │ ├── cmsgamma.c │ │ ├── cmsgmt.c │ │ ├── cmsintrp.c │ │ ├── cmsio0.c │ │ ├── cmsio1.c │ │ ├── cmslut.c │ │ ├── cmsmatsh.c │ │ ├── cmsmtrx.c │ │ ├── cmsnamed.c │ │ ├── cmspack.c │ │ ├── cmspcs.c │ │ ├── cmsps2.c │ │ ├── cmssamp.c │ │ ├── cmsvirt.c │ │ ├── cmswtpnt.c │ │ ├── cmsxform.c │ │ ├── cmsxform.c.orig │ │ ├── lcms.def │ │ └── makefile.simple │ ├── tifficc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── getopt.c │ │ ├── makefile.simple │ │ ├── tiffdiff.c │ │ ├── tifficc.1 │ │ └── tifficc.c │ └── version-1.19.txt ├── libjpeg-turbo │ ├── BUILDING.md │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE.md │ ├── README.ijg │ ├── README.md │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── cmakescripts │ │ ├── BuildPackages.cmake │ │ ├── GNUInstallDirs.cmake │ │ ├── PackageInfo.cmake │ │ ├── cmake_uninstall.cmake.in │ │ └── testclean.cmake │ ├── cmyk.h │ ├── coderules.txt │ ├── croptest.in │ ├── djpeg.1 │ ├── djpeg.c │ ├── doc │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── doc.png │ │ │ ├── doxygen-extra.css │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── group___turbo_j_p_e_g.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.svg │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── groups_0.html │ │ │ ├── groups_0.js │ │ │ ├── mag_sel.svg │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ └── variables_9.js │ │ │ ├── splitbar.png │ │ │ ├── structtjregion.html │ │ │ ├── structtjscalingfactor.html │ │ │ ├── structtjtransform.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── doxygen-extra.css │ ├── doxygen.config │ ├── example.txt │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ ├── cjpeg.cc │ │ ├── compress.cc │ │ ├── compress_yuv.cc │ │ ├── decompress.cc │ │ ├── decompress_yuv.cc │ │ └── transform.cc │ ├── jaricom.c │ ├── java │ │ ├── CMakeLists.txt │ │ ├── MANIFEST.MF │ │ ├── README │ │ ├── TJBench.java │ │ ├── TJExample.java │ │ ├── TJUnitTest.java │ │ ├── doc │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── org │ │ │ │ └── libjpegturbo │ │ │ │ │ └── turbojpeg │ │ │ │ │ ├── TJ.html │ │ │ │ │ ├── TJCompressor.html │ │ │ │ │ ├── TJCustomFilter.html │ │ │ │ │ ├── TJDecompressor.html │ │ │ │ │ ├── TJException.html │ │ │ │ │ ├── TJScalingFactor.html │ │ │ │ │ ├── TJTransform.html │ │ │ │ │ ├── TJTransformer.html │ │ │ │ │ ├── YUVImage.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ ├── background.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── titlebar.gif │ │ │ │ └── titlebar_end.gif │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── org │ │ │ └── libjpegturbo │ │ │ │ └── turbojpeg │ │ │ │ ├── TJ.java │ │ │ │ ├── TJCompressor.java │ │ │ │ ├── TJCustomFilter.java │ │ │ │ ├── TJDecompressor.java │ │ │ │ ├── TJException.java │ │ │ │ ├── TJLoader-unix.java.in │ │ │ │ ├── TJLoader-win.java.in │ │ │ │ ├── TJScalingFactor.java │ │ │ │ ├── TJTransform.java │ │ │ │ ├── TJTransformer.java │ │ │ │ └── YUVImage.java │ │ ├── org_libjpegturbo_turbojpeg_TJ.h │ │ ├── org_libjpegturbo_turbojpeg_TJCompressor.h │ │ ├── org_libjpegturbo_turbojpeg_TJDecompressor.h │ │ └── org_libjpegturbo_turbojpeg_TJTransformer.h │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolext.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcicc.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jconfig.h.in │ ├── jconfig.txt │ ├── jconfigint.h │ ├── jconfigint.h.in │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jcstest.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst-tj.c │ ├── jdatadst.c │ ├── jdatasrc-tj.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcoefct.h │ ├── jdcol565.c │ ├── jdcolext.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdicc.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmainct.h │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmaster.h │ ├── jdmerge.c │ ├── jdmerge.h │ ├── jdmrg565.c │ ├── jdmrgext.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdsample.h │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpeg_nbits_table.h │ ├── jpegcomp.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jsimd.h │ ├── jsimd_none.c │ ├── jsimddct.h │ ├── jstdhuff.c │ ├── jutils.c │ ├── jversion.h │ ├── jversion.h.in │ ├── libjpeg.map.in │ ├── libjpeg.txt │ ├── md5 │ │ ├── CMakeLists.txt │ │ ├── md5.c │ │ ├── md5.h │ │ ├── md5cmp.c │ │ └── md5hl.c │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── release │ │ ├── Config.cmake.in │ │ ├── Distribution.xml.in │ │ ├── License.rtf │ │ ├── ReadMe.txt │ │ ├── Welcome.rtf.in │ │ ├── deb-control.in │ │ ├── installer.nsi.in │ │ ├── libjpeg.pc.in │ │ ├── libturbojpeg.pc.in │ │ ├── makedpkg.in │ │ ├── makemacpkg.in │ │ ├── makerpm.in │ │ ├── makesrpm.in │ │ ├── maketarball.in │ │ ├── rpm.spec.in │ │ └── uninstall.in │ ├── sharedlib │ │ └── CMakeLists.txt │ ├── simd │ │ ├── CMakeLists.txt │ │ ├── arm │ │ │ ├── aarch32 │ │ │ │ ├── jccolext-neon.c │ │ │ │ ├── jchuff-neon.c │ │ │ │ ├── jsimd.c │ │ │ │ └── jsimd_neon.S │ │ │ ├── aarch64 │ │ │ │ ├── jccolext-neon.c │ │ │ │ ├── jchuff-neon.c │ │ │ │ ├── jsimd.c │ │ │ │ └── jsimd_neon.S │ │ │ ├── align.h │ │ │ ├── jccolor-neon.c │ │ │ ├── jcgray-neon.c │ │ │ ├── jcgryext-neon.c │ │ │ ├── jchuff.h │ │ │ ├── jcphuff-neon.c │ │ │ ├── jcsample-neon.c │ │ │ ├── jdcolext-neon.c │ │ │ ├── jdcolor-neon.c │ │ │ ├── jdmerge-neon.c │ │ │ ├── jdmrgext-neon.c │ │ │ ├── jdsample-neon.c │ │ │ ├── jfdctfst-neon.c │ │ │ ├── jfdctint-neon.c │ │ │ ├── jidctfst-neon.c │ │ │ ├── jidctint-neon.c │ │ │ ├── jidctred-neon.c │ │ │ ├── jquanti-neon.c │ │ │ └── neon-compat.h.in │ │ ├── i386 │ │ │ ├── jccolext-avx2.asm │ │ │ ├── jccolext-mmx.asm │ │ │ ├── jccolext-sse2.asm │ │ │ ├── jccolor-avx2.asm │ │ │ ├── jccolor-mmx.asm │ │ │ ├── jccolor-sse2.asm │ │ │ ├── jcgray-avx2.asm │ │ │ ├── jcgray-mmx.asm │ │ │ ├── jcgray-sse2.asm │ │ │ ├── jcgryext-avx2.asm │ │ │ ├── jcgryext-mmx.asm │ │ │ ├── jcgryext-sse2.asm │ │ │ ├── jchuff-sse2.asm │ │ │ ├── jcphuff-sse2.asm │ │ │ ├── jcsample-avx2.asm │ │ │ ├── jcsample-mmx.asm │ │ │ ├── jcsample-sse2.asm │ │ │ ├── jdcolext-avx2.asm │ │ │ ├── jdcolext-mmx.asm │ │ │ ├── jdcolext-sse2.asm │ │ │ ├── jdcolor-avx2.asm │ │ │ ├── jdcolor-mmx.asm │ │ │ ├── jdcolor-sse2.asm │ │ │ ├── jdmerge-avx2.asm │ │ │ ├── jdmerge-mmx.asm │ │ │ ├── jdmerge-sse2.asm │ │ │ ├── jdmrgext-avx2.asm │ │ │ ├── jdmrgext-mmx.asm │ │ │ ├── jdmrgext-sse2.asm │ │ │ ├── jdsample-avx2.asm │ │ │ ├── jdsample-mmx.asm │ │ │ ├── jdsample-sse2.asm │ │ │ ├── jfdctflt-3dn.asm │ │ │ ├── jfdctflt-sse.asm │ │ │ ├── jfdctfst-mmx.asm │ │ │ ├── jfdctfst-sse2.asm │ │ │ ├── jfdctint-avx2.asm │ │ │ ├── jfdctint-mmx.asm │ │ │ ├── jfdctint-sse2.asm │ │ │ ├── jidctflt-3dn.asm │ │ │ ├── jidctflt-sse.asm │ │ │ ├── jidctflt-sse2.asm │ │ │ ├── jidctfst-mmx.asm │ │ │ ├── jidctfst-sse2.asm │ │ │ ├── jidctint-avx2.asm │ │ │ ├── jidctint-mmx.asm │ │ │ ├── jidctint-sse2.asm │ │ │ ├── jidctred-mmx.asm │ │ │ ├── jidctred-sse2.asm │ │ │ ├── jquant-3dn.asm │ │ │ ├── jquant-mmx.asm │ │ │ ├── jquant-sse.asm │ │ │ ├── jquantf-sse2.asm │ │ │ ├── jquanti-avx2.asm │ │ │ ├── jquanti-sse2.asm │ │ │ ├── jsimd.c │ │ │ └── jsimdcpu.asm │ │ ├── jsimd.h │ │ ├── mips │ │ │ ├── jsimd.c │ │ │ ├── jsimd_dspr2.S │ │ │ └── jsimd_dspr2_asm.h │ │ ├── mips64 │ │ │ ├── jccolext-mmi.c │ │ │ ├── jccolor-mmi.c │ │ │ ├── jcgray-mmi.c │ │ │ ├── jcgryext-mmi.c │ │ │ ├── jcsample-mmi.c │ │ │ ├── jcsample.h │ │ │ ├── jdcolext-mmi.c │ │ │ ├── jdcolor-mmi.c │ │ │ ├── jdmerge-mmi.c │ │ │ ├── jdmrgext-mmi.c │ │ │ ├── jdsample-mmi.c │ │ │ ├── jfdctfst-mmi.c │ │ │ ├── jfdctint-mmi.c │ │ │ ├── jidctfst-mmi.c │ │ │ ├── jidctint-mmi.c │ │ │ ├── jquanti-mmi.c │ │ │ ├── jsimd.c │ │ │ ├── jsimd_mmi.h │ │ │ └── loongson-mmintrin.h │ │ ├── nasm │ │ │ ├── jcolsamp.inc │ │ │ ├── jdct.inc │ │ │ ├── jsimdcfg.inc │ │ │ ├── jsimdcfg.inc.h │ │ │ └── jsimdext.inc │ │ ├── powerpc │ │ │ ├── jccolext-altivec.c │ │ │ ├── jccolor-altivec.c │ │ │ ├── jcgray-altivec.c │ │ │ ├── jcgryext-altivec.c │ │ │ ├── jcsample-altivec.c │ │ │ ├── jcsample.h │ │ │ ├── jdcolext-altivec.c │ │ │ ├── jdcolor-altivec.c │ │ │ ├── jdmerge-altivec.c │ │ │ ├── jdmrgext-altivec.c │ │ │ ├── jdsample-altivec.c │ │ │ ├── jfdctfst-altivec.c │ │ │ ├── jfdctint-altivec.c │ │ │ ├── jidctfst-altivec.c │ │ │ ├── jidctint-altivec.c │ │ │ ├── jquanti-altivec.c │ │ │ ├── jsimd.c │ │ │ └── jsimd_altivec.h │ │ └── x86_64 │ │ │ ├── jccolext-avx2.asm │ │ │ ├── jccolext-sse2.asm │ │ │ ├── jccolor-avx2.asm │ │ │ ├── jccolor-sse2.asm │ │ │ ├── jcgray-avx2.asm │ │ │ ├── jcgray-sse2.asm │ │ │ ├── jcgryext-avx2.asm │ │ │ ├── jcgryext-sse2.asm │ │ │ ├── jchuff-sse2.asm │ │ │ ├── jcphuff-sse2.asm │ │ │ ├── jcsample-avx2.asm │ │ │ ├── jcsample-sse2.asm │ │ │ ├── jdcolext-avx2.asm │ │ │ ├── jdcolext-sse2.asm │ │ │ ├── jdcolor-avx2.asm │ │ │ ├── jdcolor-sse2.asm │ │ │ ├── jdmerge-avx2.asm │ │ │ ├── jdmerge-sse2.asm │ │ │ ├── jdmrgext-avx2.asm │ │ │ ├── jdmrgext-sse2.asm │ │ │ ├── jdsample-avx2.asm │ │ │ ├── jdsample-sse2.asm │ │ │ ├── jfdctflt-sse.asm │ │ │ ├── jfdctfst-sse2.asm │ │ │ ├── jfdctint-avx2.asm │ │ │ ├── jfdctint-sse2.asm │ │ │ ├── jidctflt-sse2.asm │ │ │ ├── jidctfst-sse2.asm │ │ │ ├── jidctint-avx2.asm │ │ │ ├── jidctint-sse2.asm │ │ │ ├── jidctred-sse2.asm │ │ │ ├── jquantf-sse2.asm │ │ │ ├── jquanti-avx2.asm │ │ │ ├── jquanti-sse2.asm │ │ │ ├── jsimd.c │ │ │ └── jsimdcpu.asm │ ├── strtest.c │ ├── structure.txt │ ├── testimages │ │ ├── nightshot_iso_100.bmp │ │ ├── nightshot_iso_100.txt │ │ ├── test.scan │ │ ├── test1.icc │ │ ├── test1.icc.txt │ │ ├── test2.icc │ │ ├── test2.icc.txt │ │ ├── testimgari.jpg │ │ ├── testimgint.jpg │ │ ├── testorig.jpg │ │ ├── testorig.ppm │ │ ├── testorig12.jpg │ │ ├── vgl_5674_0098.bmp │ │ ├── vgl_6434_0018a.bmp │ │ └── vgl_6548_0026a.bmp │ ├── tjbench.c │ ├── tjbenchtest.in │ ├── tjbenchtest.java.in │ ├── tjexample.c │ ├── tjexampletest.in │ ├── tjexampletest.java.in │ ├── tjunittest.c │ ├── tjutil.c │ ├── tjutil.h │ ├── transupp.c │ ├── transupp.h │ ├── turbojpeg-jni.c │ ├── turbojpeg-mapfile │ ├── turbojpeg-mapfile.jni │ ├── turbojpeg.c │ ├── turbojpeg.h │ ├── usage.txt │ ├── win │ │ ├── gcc │ │ │ └── projectTargets-release.cmake.in │ │ ├── jconfig.h.in │ │ ├── jpeg.rc.in │ │ ├── jpeg62-memsrcdst.def │ │ ├── jpeg62.def │ │ ├── jpeg7-memsrcdst.def │ │ ├── jpeg7.def │ │ ├── jpeg8.def │ │ ├── projectTargets.cmake.in │ │ ├── turbojpeg.rc.in │ │ └── vc │ │ │ └── projectTargets-release.cmake.in │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ └── wrtarga.c ├── pnglib │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglib-1.6.39.txt │ ├── pnglib.vcxproj │ ├── pnglib.vcxproj.filters │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── scintilla │ ├── License.txt │ ├── README │ ├── Scintilla │ │ ├── Scintilla.sln │ │ ├── Scintilla.vcproj │ │ ├── Scintilla.vcxproj │ │ └── Scintilla.vcxproj.filters │ ├── include │ │ ├── Face.py │ │ ├── HFacer.py │ │ ├── ILexer.h │ │ ├── Platform.h │ │ ├── SciLexer.h │ │ ├── Scintilla.h │ │ ├── Scintilla.iface │ │ └── ScintillaWidget.h │ ├── lexers │ │ └── LexLua.cxx │ ├── lexlib │ │ ├── Accessor.cxx │ │ ├── Accessor.h │ │ ├── CharacterSet.cxx │ │ ├── CharacterSet.h │ │ ├── LexAccessor.h │ │ ├── LexerBase.cxx │ │ ├── LexerBase.h │ │ ├── LexerModule.cxx │ │ ├── LexerModule.h │ │ ├── LexerNoExceptions.cxx │ │ ├── LexerNoExceptions.h │ │ ├── LexerSimple.cxx │ │ ├── LexerSimple.h │ │ ├── OptionSet.h │ │ ├── PropSetSimple.cxx │ │ ├── PropSetSimple.h │ │ ├── SparseState.h │ │ ├── StyleContext.cxx │ │ ├── StyleContext.h │ │ ├── SubStyles.h │ │ ├── WordList.cxx │ │ └── WordList.h │ ├── src │ │ ├── AutoComplete.cxx │ │ ├── AutoComplete.h │ │ ├── CallTip.cxx │ │ ├── CallTip.h │ │ ├── Catalogue.cxx │ │ ├── Catalogue.h │ │ ├── CellBuffer.cxx │ │ ├── CellBuffer.h │ │ ├── CharClassify.cxx │ │ ├── CharClassify.h │ │ ├── ContractionState.cxx │ │ ├── ContractionState.h │ │ ├── Decoration.cxx │ │ ├── Decoration.h │ │ ├── Document.cxx │ │ ├── Document.h │ │ ├── Editor.cxx │ │ ├── Editor.h │ │ ├── ExternalLexer.cxx │ │ ├── ExternalLexer.h │ │ ├── FontQuality.h │ │ ├── Indicator.cxx │ │ ├── Indicator.h │ │ ├── KeyMap.cxx │ │ ├── KeyMap.h │ │ ├── LexGen.py │ │ ├── LineMarker.cxx │ │ ├── LineMarker.h │ │ ├── Partitioning.h │ │ ├── PerLine.cxx │ │ ├── PerLine.h │ │ ├── PositionCache.cxx │ │ ├── PositionCache.h │ │ ├── RESearch.cxx │ │ ├── RESearch.h │ │ ├── RunStyles.cxx │ │ ├── RunStyles.h │ │ ├── SVector.h │ │ ├── SciTE.properties │ │ ├── ScintillaBase.cxx │ │ ├── ScintillaBase.h │ │ ├── Selection.cxx │ │ ├── Selection.h │ │ ├── SplitVector.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── UniConversion.cxx │ │ ├── UniConversion.h │ │ ├── ViewStyle.cxx │ │ ├── ViewStyle.h │ │ ├── XPM.cxx │ │ └── XPM.h │ ├── version.txt │ └── win32 │ │ ├── PlatWin.cxx │ │ ├── PlatWin.h │ │ ├── SciTE.properties │ │ ├── ScintRes.rc │ │ ├── Scintilla.def │ │ └── ScintillaWin.cxx ├── tifflib-backup │ ├── libtiff │ │ ├── precomp.c │ │ └── tif_fax3sm.c │ ├── old │ │ ├── 4.1.0 │ │ │ └── tif_fax3sm.c │ │ └── 4.3.0 │ │ │ └── tif_fax3sm.c │ ├── tifflib.vcproj │ ├── tifflib.vcxproj │ └── tifflib.vcxproj.filters ├── tifflib │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── ChangeLog │ ├── HOWTO-RELEASE │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── RELEASE-DATE │ ├── TODO │ ├── VERSION │ ├── aclocal.m4 │ ├── autogen.sh │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── test-driver │ ├── configure │ ├── configure.ac │ ├── libtiff-4.pc.in │ ├── libtiff │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libtiff.def │ │ ├── libtiff.map │ │ ├── libtiffxx.map │ │ ├── mkg3states.c │ │ ├── precomp.c │ │ ├── t4.h │ │ ├── tif_aux.c │ │ ├── tif_close.c │ │ ├── tif_codec.c │ │ ├── tif_color.c │ │ ├── tif_compress.c │ │ ├── tif_config.h │ │ ├── tif_config.h.cmake.in │ │ ├── tif_config.h.in │ │ ├── tif_dir.c │ │ ├── tif_dir.h │ │ ├── tif_dirinfo.c │ │ ├── tif_dirread.c │ │ ├── tif_dirwrite.c │ │ ├── tif_dumpmode.c │ │ ├── tif_error.c │ │ ├── tif_extension.c │ │ ├── tif_fax3.c │ │ ├── tif_fax3.h │ │ ├── tif_fax3sm.c │ │ ├── tif_flush.c │ │ ├── tif_getimage.c │ │ ├── tif_jbig.c │ │ ├── tif_jpeg.c │ │ ├── tif_jpeg_12.c │ │ ├── tif_lerc.c │ │ ├── tif_luv.c │ │ ├── tif_lzma.c │ │ ├── tif_lzw.c │ │ ├── tif_next.c │ │ ├── tif_ojpeg.c │ │ ├── tif_open.c │ │ ├── tif_packbits.c │ │ ├── tif_pixarlog.c │ │ ├── tif_predict.c │ │ ├── tif_predict.h │ │ ├── tif_print.c │ │ ├── tif_read.c │ │ ├── tif_stream.cxx │ │ ├── tif_strip.c │ │ ├── tif_swab.c │ │ ├── tif_thunder.c │ │ ├── tif_tile.c │ │ ├── tif_unix.c │ │ ├── tif_version.c │ │ ├── tif_warning.c │ │ ├── tif_webp.c │ │ ├── tif_win32.c │ │ ├── tif_write.c │ │ ├── tif_zip.c │ │ ├── tif_zstd.c │ │ ├── tiff.h │ │ ├── tiffconf.h │ │ ├── tiffconf.h.cmake.in │ │ ├── tiffconf.h.in │ │ ├── tiffio.h │ │ ├── tiffio.hxx │ │ ├── tiffiop.h │ │ ├── tiffvers.h │ │ └── uvcode.h │ ├── m4 │ │ ├── acinclude.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── placeholder.h │ ├── port │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dummy.c │ │ ├── getopt.c │ │ ├── libport.h │ │ ├── libport_config.h.cmake.in │ │ └── libport_config.h.in │ ├── tifflib.vcproj │ ├── tifflib.vcxproj │ └── tifflib.vcxproj.filters ├── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib.vcxproj │ ├── zlib.vcxproj.filters │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h └── 说明.txt ├── lua ├── COPYRIGHT ├── HISTORY ├── INSTALL ├── Makefile ├── README ├── luavc │ ├── ReadMe.txt │ ├── luavc.cpp │ ├── luavc.vcxproj │ ├── luavc.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── src │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── src ├── ACListWnd.cpp ├── ACListWnd.h ├── AboutDlg.cpp ├── AboutDlg.h ├── AboutLibs.cpp ├── AboutLibs.h ├── Accelerator.cpp ├── Accelerator.h ├── AddFavoriteDlg.cpp ├── AddFavoriteDlg.h ├── AddressBox.cpp ├── AddressBox.h ├── AlphaBlend.cpp ├── AnyPointer.h ├── AppColors.cpp ├── AppColors.h ├── AppSettings.cpp ├── AppSettings.h ├── ApplyMetadataThread.cpp ├── ApplyMetadataThread.h ├── ArrowButton.cpp ├── ArrowButton.h ├── Attributes.cpp ├── Attributes.h ├── AutoComplete.cpp ├── AutoComplete.h ├── AutoPtr.h ├── BMPDecoder.cpp ├── BMPDecoder.h ├── BMPReader.cpp ├── BMPReader.h ├── BalloonMsg.cpp ├── BalloonMsg.h ├── Block.h ├── BlockPhotoDelete.h ├── BmpAlpha .cpp ├── BmpAlpha.h ├── BmpFunc.cpp ├── BmpFunc.h ├── BoldFont.cpp ├── BoldFont.h ├── BrowserFrame.cpp ├── BrowserFrame.h ├── BrowserToolbar.cpp ├── BrowserToolbar.h ├── Cache.cpp ├── Cache.h ├── CalibrationDlg.cpp ├── CalibrationDlg.h ├── CalibrationWnd.cpp ├── CalibrationWnd.h ├── CatalogDlg.cpp ├── CatalogDlg.h ├── CatalogFile.cpp ├── CatalogFile.h ├── CatalogFolder.cpp ├── CatalogFolder.h ├── CatalogHeader.cpp ├── CatalogHeader.h ├── CatalogHelpDlg.cpp ├── CatalogHelpDlg.h ├── CatalogImages.cpp ├── CatalogImages.h ├── CatalogImgRecord.cpp ├── CatalogImgRecord.h ├── CatalogOptionsDlg.cpp ├── CatalogOptionsDlg.h ├── CatalogPath.cpp ├── CatalogPath.h ├── CatalogScanner.cpp ├── CatalogScanner.h ├── CatalogTool.cpp ├── CatalogTool.h ├── CatchAll.cpp ├── CatchAll.h ├── CircularFifo.h ├── CloseBar.cpp ├── CloseBar.h ├── CmdLineInfo.cpp ├── CmdLineInfo.h ├── Color.cpp ├── Color.h ├── ColorButton.cpp ├── ColorButton.h ├── ColorConfiguration.cpp ├── ColorConfiguration.h ├── ColorMenu.cpp ├── ColorMenu.h ├── ColorMngDlg.cpp ├── ColorMngDlg.h ├── ColorProfile.cpp ├── ColorProfile.h ├── ColorProfileForward.h ├── ColorSets.cpp ├── ColorSets.h ├── ColumnTree.cpp ├── ColumnTree.h ├── Columns.cpp ├── Columns.h ├── Config.cpp ├── Config.h ├── ConnectionPoint.cpp ├── ConnectionPoint.h ├── CoolScrollBar.cpp ├── CoolScrollBar.h ├── CopyMoveDlg.cpp ├── CopyMoveDlg.h ├── CopyPhoto.cpp ├── CopyPhoto.h ├── CopyProgressDlg.cpp ├── CopyProgressDlg.h ├── CopyTaggedDlg.cpp ├── CopyTaggedDlg.h ├── CreateDecoderJob.cpp ├── CreateDecoderJob.h ├── CtrlDraw.cpp ├── CtrlDraw.h ├── CustomColumns.cpp ├── CustomColumns.h ├── CustomColumnsDlg.cpp ├── CustomColumnsDlg.h ├── CustomFilter.cpp ├── CustomFilter.h ├── CustomFilters.cpp ├── CustomFilters.h ├── CustomTabCtrl.cpp ├── CustomTabCtrl.h ├── Data.cpp ├── Data.h ├── DataExchange.h ├── Database │ ├── Database.cpp │ ├── Database.h │ ├── ImageDatabase.cpp │ ├── ImageDatabase.h │ ├── StdFile.cpp │ ├── StdFile.h │ ├── StorageFile.cpp │ └── StorageFile.h ├── Date.h ├── DateAdjustDlg.cpp ├── DateAdjustDlg.h ├── DateTimeAdjThread.cpp ├── DateTimeAdjThread.h ├── DateTimeUtils.cpp ├── DateTimeUtils.h ├── DbOperations.cpp ├── DbOperations.h ├── DecoderJob.cpp ├── DecoderJob.h ├── DecoderJobInterface.h ├── DecoderProgress.cpp ├── DecoderProgress.h ├── DefaultColors.cpp ├── DefaultColors.h ├── DelayedDirectoryChangeHandler.cpp ├── DelayedDirectoryChangeHandler.h ├── DeleteArray.h ├── DeleteConfirmationDlg.cpp ├── DeleteConfirmationDlg.h ├── DescriptionDlg.cpp ├── DescriptionDlg.h ├── DescriptionPane.cpp ├── DescriptionPane.h ├── DialogBase.cpp ├── DialogBase.h ├── DialogChild.cpp ├── DialogChild.h ├── DialogHostCtrl.cpp ├── DialogHostCtrl.h ├── Dib.cpp ├── Dib.h ├── DibCache.cpp ├── DibCache.h ├── DibColorTransform.cpp ├── DibColorTransform.h ├── DibDC.cpp ├── DibDC.h ├── DibDispMethod.h ├── DirScanner.cpp ├── DirScanner.h ├── Direct2D.cpp ├── Direct2D.h ├── DirectRender.cpp ├── DirectRender.h ├── DirectoryChangeWatcher.cpp ├── DirectoryChangeWatcher.h ├── DirectoryChanges.cpp ├── DirectoryChanges.h ├── DirectoryPath.cpp ├── DirectoryPath.h ├── DistributionBar.cpp ├── DistributionBar.h ├── DlgAutoResize.cpp ├── DlgAutoResize.h ├── DlgListCtrl.cpp ├── DlgListCtrl.h ├── DlgTemplateEx.h ├── DockedPane.cpp ├── DockedPane.h ├── DockingBar.h ├── DragAndDrop.cpp ├── DragAndDrop.h ├── DrawAlphaRect.cpp ├── DrawBmpEffects.cpp ├── DrawBmpEffects.h ├── DrawFields.cpp ├── DrawFields.h ├── DrawFunctions.cpp ├── DrawFunctions.h ├── EditCombo.cpp ├── EditCombo.h ├── EditEsc.cpp ├── EditEsc.h ├── EditFileInfo.cpp ├── EditFileInfo.h ├── EditFilterDlg.cpp ├── EditFilterDlg.h ├── EditFld.cpp ├── EditFld.h ├── EditHistory.h ├── EnableCtrl.cpp ├── EnableCtrl.h ├── ErrorDlg.cpp ├── ErrorDlg.h ├── EstimatedTime.cpp ├── EstimatedTime.h ├── Exception.cpp ├── Exception.h ├── ExifBlock.cpp ├── ExifBlock.h ├── ExifFields.h ├── ExifInfo.h ├── ExifPro.cpp ├── ExifPro.h ├── ExifProView.cpp ├── ExifProView.h ├── ExifStatusBar.cpp ├── ExifStatusBar.h ├── ExifTags.cpp ├── ExifTags.h ├── ExifViewReBar.cpp ├── ExifViewReBar.h ├── ExprCalculator.cpp ├── ExprCalculator.h ├── ExtTreeCtrl.cpp ├── ExtTreeCtrl.h ├── ExtTreeItem.cpp ├── ExtTreeItem.h ├── ExtTreeNode.cpp ├── ExtTreeNode.h ├── ExtTreeRow.cpp ├── ExtTreeRow.h ├── ExtractExifBlock.cpp ├── ExtractJpegDlg.cpp ├── ExtractJpegDlg.h ├── ExtractingThread.cpp ├── ExtractingThread.h ├── FavoritesFolders.cpp ├── FavoritesFolders.h ├── File.cpp ├── File.h ├── FileCopyMove.cpp ├── FileCopyMove.h ├── FileDataDestination.cpp ├── FileDataDestination.h ├── FileDataSource.cpp ├── FileDataSource.h ├── FileErrorDlg.cpp ├── FileErrorDlg.h ├── FileFilterCallback.h ├── FileGuard.cpp ├── FileGuard.h ├── FileInfo.h ├── FileListCtrl.cpp ├── FileListCtrl.h ├── FilePaneWnd.cpp ├── FilePaneWnd.h ├── FileRenameDlg.cpp ├── FileRenameDlg.h ├── FileSend.cpp ├── FileSend.h ├── FileStatus.cpp ├── FileStatus.h ├── FileTypeIndex.h ├── FilterBar.cpp ├── FilterBar.h ├── FilterData.cpp ├── FilterData.h ├── FilterDialogs.cpp ├── FilterDialogs.h ├── FilterPanelDlg.cpp ├── FilterPanelDlg.h ├── FilterRules.cpp ├── FilterRules.h ├── FindTabCtrl.cpp ├── FindTabCtrl.h ├── FixRotatedPhoto.cpp ├── FolderListCtrl.cpp ├── FolderListCtrl.h ├── FolderPane.cpp ├── FolderPane.h ├── FolderPath.h ├── FolderPathHelpers.cpp ├── FolderPathHelpers.h ├── FolderSelect.cpp ├── FolderSelect.h ├── FolderView.cpp ├── FolderView.h ├── FormatFileSize.cpp ├── FormatFileSize.h ├── Frame.h ├── FrameList.h ├── FramePrepareDC.h ├── FrameRect.h ├── GIFDecoder.cpp ├── GIFDecoder.h ├── GIFReader.cpp ├── GIFReader.h ├── GPSData.cpp ├── GPSData.h ├── GenHTMLAlbumDlg.cpp ├── GenHTMLAlbumDlg.h ├── GenSlideShowDlg.cpp ├── GenSlideShowDlg.h ├── GenThumbMode.h ├── GetDateTime.cpp ├── GetDateTime.h ├── GetDefaultGuiFont.cpp ├── GetDefaultGuiFont.h ├── GetDefaultLineHeight.cpp ├── GetDefaultLineHeight.h ├── GetPhysicalMemoryStatus.cpp ├── GlobalAlloc.h ├── GlobalLock.h ├── GridCtrl.cpp ├── GridCtrl.h ├── HeaderDialog.cpp ├── HeaderDialog.h ├── HeaderDlg.h ├── Histogram.cpp ├── Histogram.h ├── HistogramCtrl.cpp ├── HistogramCtrl.h ├── HistogramDlg.cpp ├── HistogramDlg.h ├── HistogramImg.cpp ├── HistogramImg.h ├── HistogramPane.cpp ├── HistogramPane.h ├── HorzReBar.cpp ├── HorzReBar.h ├── ICCScanner.cpp ├── ICCScanner.h ├── ICMProfile.cpp ├── ICMProfile.h ├── IPTCReadWrite.cpp ├── IPTCReadWrite.h ├── IPTCRecord.cpp ├── IPTCRecord.h ├── ImageCtrl.cpp ├── ImageCtrl.h ├── ImageDecoder.cpp ├── ImageDecoder.h ├── ImageDraw.cpp ├── ImageDraw.h ├── ImageInfoDlg.cpp ├── ImageInfoDlg.h ├── ImageLabelDlg.cpp ├── ImageLabelDlg.h ├── ImageListCtrl.cpp ├── ImageListCtrl.h ├── ImageLoader.cpp ├── ImageLoader.h ├── ImageManipulationDlg.cpp ├── ImageManipulationDlg.h ├── ImageProcessorDlg.cpp ├── ImageProcessorDlg.h ├── ImageSaveOptions.cpp ├── ImageSaveOptions.h ├── ImageScanner.cpp ├── ImageScanner.h ├── ImageStat.cpp ├── ImageStat.h ├── ImgBatchModeDlg.cpp ├── ImgBatchModeDlg.h ├── ImgBrightnessPage.cpp ├── ImgBrightnessPage.h ├── ImgColorBalancePage.cpp ├── ImgColorBalancePage.h ├── ImgCropPage.cpp ├── ImgCropPage.h ├── ImgDb.cpp ├── ImgDb.h ├── ImgLevelsPage.cpp ├── ImgLevelsPage.h ├── ImgLogger.cpp ├── ImgLogger.h ├── ImgManipulation.cpp ├── ImgManipulation.h ├── ImgPage.cpp ├── ImgPage.h ├── ImgProcessingPool.cpp ├── ImgProcessingPool.h ├── ImgProcessingThread.cpp ├── ImgProcessingThread.h ├── ImgScanner.cpp ├── ImgScanner.h ├── Index.cpp ├── Index.h ├── InfoBand.cpp ├── InfoBand.h ├── InfoDisplay.cpp ├── InfoDisplay.h ├── InfoPane.cpp ├── InfoPane.h ├── InfoPaneBar.cpp ├── InfoPaneBar.h ├── InfoToolbar.cpp ├── InfoToolbar.h ├── IsDialogResizable.cpp ├── IsDialogResizable.h ├── IsMMXAvailable.cpp ├── IsMMXAvailable.h ├── IsWhistlerLookAvailable.h ├── ItemIdList.cpp ├── ItemIdList.h ├── JPEGDataDestination.cpp ├── JPEGDataDestination.h ├── JPEGDataSource.cpp ├── JPEGDataSource.h ├── JPEGDecoder.cpp ├── JPEGDecoder.h ├── JPEGDecoderMethod.h ├── JPEGEncoder.cpp ├── JPEGEncoder.h ├── JPEGException.cpp ├── JPEGException.h ├── Jpeg.cpp ├── Jpeg.h ├── JpegDescription.cpp ├── LightTable.cpp ├── LightTable.h ├── LineSeparatorCtrl.cpp ├── LineSeparatorCtrl.h ├── LinkList.cpp ├── LinkList.h ├── LinkWnd.cpp ├── LinkWnd.h ├── ListViewCtrl.cpp ├── ListViewCtrl.h ├── LoadErrorsDlg.cpp ├── LoadErrorsDlg.h ├── LoadImageList.cpp ├── LoadImageList.h ├── LoadJpeg.cpp ├── Logger.cpp ├── Logger.h ├── Lua.cpp ├── Lua.h ├── MagnifierWnd.cpp ├── MagnifierWnd.h ├── MainFrm.cpp ├── MainFrm.h ├── MakerNote.cpp ├── MakerNote.h ├── ManagePaneLayouts.cpp ├── ManagePaneLayouts.h ├── Markers.h ├── MemMappedFile.cpp ├── MemMappedFile.h ├── MemPointer.cpp ├── MemPointer.h ├── MemoryDC.cpp ├── MemoryDC.h ├── MemoryDataDestination.cpp ├── MemoryDataDestination.h ├── MemoryDataSource.cpp ├── MemoryDataSource.h ├── MemoryDataSource2.cpp ├── MemoryDataSource2.h ├── MemoryStatus │ ├── MemoryStatDlg.cpp │ ├── MemoryStatDlg.h │ ├── Toolhelp.h │ └── cmnhdr.h ├── MenuBar.cpp ├── MenuBar.h ├── MenuFolders.cpp ├── MenuFolders.h ├── Messages.h ├── MonitorCtrl.cpp ├── MonitorCtrl.h ├── MultiMonitor.cpp ├── MultiMonitor.h ├── NEFDecoder.cpp ├── NEFDecoder.h ├── NEFReader.cpp ├── NEFReader.h ├── NameToNumber.cpp ├── NewFolderDlg.cpp ├── NewFolderDlg.h ├── OptionsAdvanced.cpp ├── OptionsAdvanced.h ├── OptionsAppearance.cpp ├── OptionsAppearance.h ├── OptionsBalloons.cpp ├── OptionsBalloons.h ├── OptionsCache.cpp ├── OptionsCache.h ├── OptionsColumns.cpp ├── OptionsColumns.h ├── OptionsDescription.cpp ├── OptionsDescription.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── OptionsFileTypes.cpp ├── OptionsFileTypes.h ├── OptionsGeneral.cpp ├── OptionsGeneral.h ├── OptionsViewer.cpp ├── OptionsViewer.h ├── OutputStr.cpp ├── OutputStr.h ├── PNGDecoder.cpp ├── PNGDecoder.h ├── PNGImage.cpp ├── PNGImage.h ├── PNGReader.cpp ├── PNGReader.h ├── PSDDecoder.cpp ├── PSDDecoder.h ├── PSDReader.cpp ├── PSDReader.h ├── PagerCtrl.cpp ├── PagerCtrl.h ├── Pane.cpp ├── Pane.h ├── PaneNotification.h ├── ParseRange.cpp ├── ParseRange.h ├── Path.cpp ├── Path.h ├── PathEdit.cpp ├── PathEdit.h ├── PhotoAttr.cpp ├── PhotoAttr.h ├── PhotoAttrAccess.cpp ├── PhotoAttrAccess.h ├── PhotoCache.cpp ├── PhotoCache.h ├── PhotoCollection.cpp ├── PhotoCollection.h ├── PhotoCtrl.cpp ├── PhotoCtrl.h ├── PhotoDecoder.h ├── PhotoFactory.cpp ├── PhotoFactory.h ├── PhotoInfo.cpp ├── PhotoInfo.h ├── PhotoInfoARW.cpp ├── PhotoInfoARW.h ├── PhotoInfoBMP.cpp ├── PhotoInfoBMP.h ├── PhotoInfoCR2.cpp ├── PhotoInfoCR2.h ├── PhotoInfoCRW.cpp ├── PhotoInfoCRW.h ├── PhotoInfoCatalog.cpp ├── PhotoInfoCatalog.h ├── PhotoInfoDNG.cpp ├── PhotoInfoDNG.h ├── PhotoInfoGIF.cpp ├── PhotoInfoGIF.h ├── PhotoInfoJPEG.cpp ├── PhotoInfoJPEG.h ├── PhotoInfoNEF.cpp ├── PhotoInfoNEF.h ├── PhotoInfoORF.cpp ├── PhotoInfoORF.h ├── PhotoInfoPEF.cpp ├── PhotoInfoPEF.h ├── PhotoInfoPNG.cpp ├── PhotoInfoPNG.h ├── PhotoInfoPSD.cpp ├── PhotoInfoPSD.h ├── PhotoInfoPtr.h ├── PhotoInfoRAF.cpp ├── PhotoInfoRAF.h ├── PhotoInfoRW2.cpp ├── PhotoInfoRW2.h ├── PhotoInfoSRW.cpp ├── PhotoInfoSRW.h ├── PhotoInfoStorage.cpp ├── PhotoInfoStorage.h ├── PhotoInfoTIFF.cpp ├── PhotoInfoTIFF.h ├── PhotoInfoX3F.cpp ├── PhotoInfoX3F.h ├── PhotoInfo_XMP.cpp ├── PhotoInfo_XMP.h ├── PhotoList.cpp ├── PhotoList.h ├── PhotoQueue.cpp ├── PhotoQueue.h ├── PhotoTags.cpp ├── PhotoTags.h ├── PhotoTagsCollection.cpp ├── PhotoTagsCollection.h ├── PhotoVector.cpp ├── PhotoVector.h ├── Pixels.h ├── PopupMenuCtrl.cpp ├── PopupMenuCtrl.h ├── PreviewBar.cpp ├── PreviewBar.h ├── PreviewCtrl.cpp ├── PreviewCtrl.h ├── PreviewPane.cpp ├── PreviewPane.h ├── PrintDlg.cpp ├── PrintDlg.h ├── PrintEngine.cpp ├── PrintEngine.h ├── PrintPhotos.cpp ├── PrintPhotos.h ├── PrintPreviewWnd.cpp ├── PrintPreviewWnd.h ├── PrintThumbnails.cpp ├── PrintThumbnails.h ├── PrinterList.cpp ├── PrinterList.h ├── PrnPageRangeDlg.cpp ├── PrnPageRangeDlg.h ├── PrnPhotoOptionsDlg.cpp ├── PrnPhotoOptionsDlg.h ├── PrnThumbsOptionsDlg.cpp ├── PrnThumbsOptionsDlg.h ├── PrnUserParams.cpp ├── PrnUserParams.h ├── ProcessingProgressDlg.cpp ├── ProcessingProgressDlg.h ├── ProcessorCropForm.cpp ├── ProcessorCropForm.h ├── ProcessorResizeForm.cpp ├── ProcessorResizeForm.h ├── ProcessorSharpenForm.cpp ├── ProcessorSharpenForm.h ├── Profile.cpp ├── Profile.h ├── ProfileVector.h ├── PropField.cpp ├── PropField.h ├── PropertyDlg.cpp ├── PropertyDlg.h ├── PropertyField.cpp ├── PropertyField.h ├── PropertyFormStar.cpp ├── PropertyFormStar.h ├── PropertyPane.cpp ├── PropertyPane.h ├── Queue.h ├── RDialog.cpp ├── RDialog.h ├── RGB_to_BGR.cpp ├── RGB_to_BGR.h ├── RMenu.cpp ├── RMenu.h ├── RPropertyPage.cpp ├── RPropertyPage.h ├── RString.cpp ├── RString.h ├── RadioListBox.cpp ├── RadioListBox.h ├── Rational.cpp ├── Rational.h ├── ReadMarker.h ├── RecentPaths.cpp ├── RecentPaths.h ├── RecentStrings.cpp ├── RecentStrings.h ├── ReloadJob.cpp ├── ReloadJob.h ├── RenameFileThread.cpp ├── RenameFileThread.h ├── RenamePage.h ├── RenamePanelAdvanced.cpp ├── RenamePanelAdvanced.h ├── RenamePanelBasic.cpp ├── RenamePanelBasic.h ├── RenamePhoto.cpp ├── RenameRule.h ├── RenameToolDlg.cpp ├── RenameToolDlg.h ├── ResizeDlg.cpp ├── ResizeDlg.h ├── ResizeOptionsDlg.cpp ├── ResizeOptionsDlg.h ├── ResizeWnd.cpp ├── ResizeWnd.h ├── ResizingThread.cpp ├── ResizingThread.h ├── RotateDlg.cpp ├── RotateDlg.h ├── SEException.cpp ├── SEException.h ├── SamplePhoto.cpp ├── SamplePhoto.h ├── ScintillaCtrl.cpp ├── ScintillaCtrl.h ├── ScriptEditCtrl.cpp ├── ScriptEditCtrl.h ├── SendEMailDlg.cpp ├── SendEMailDlg.h ├── SeparatorWnd.cpp ├── SeparatorWnd.h ├── SetCacheSize.cpp ├── SetWallpaper.cpp ├── SetWindowSize.cpp ├── SetWindowSize.h ├── Settings.cpp ├── Settings.h ├── SetupFavoritesDlg.cpp ├── SetupFavoritesDlg.h ├── ShellFolder.cpp ├── ShellFolder.h ├── ShellItem.cpp ├── ShellItem.h ├── Shutter.rc ├── Shutter.vcxproj ├── Shutter.vcxproj.filters ├── Signals.h ├── SlideShowGenerator.cpp ├── SlideShowGenerator.h ├── SlideShowOptDlg.cpp ├── SlideShowOptDlg.h ├── SliderCtrlEx.cpp ├── SliderCtrlEx.h ├── SliderEditForm.cpp ├── SliderEditForm.h ├── SliderToolBar.h ├── SmoothScroll.cpp ├── SmoothScroll.h ├── SnapFrame │ ├── AutoPtr.h │ ├── CaptionWindow.cpp │ ├── CaptionWindow.h │ ├── DockingBar.cpp │ ├── DockingBar.h │ ├── DragControl.cpp │ ├── DragControl.h │ ├── MDIFrame.cpp │ ├── MDIFrame.h │ ├── MemPointers.h │ ├── SnapFrame.cpp │ ├── SnapFrame.h │ ├── SnapMsg.h │ ├── SnapView.cpp │ └── SnapView.h ├── SortingOptions.cpp ├── SortingOptions.h ├── SpecificData.cpp ├── SpecificData.h ├── StackInfo.h ├── StarCtrl.cpp ├── StarCtrl.h ├── StdAfx.cpp ├── StdAfx.h ├── StringConversions.cpp ├── StringConversions.h ├── StringFormat.cpp ├── StringFormat.h ├── StringFormatter.h ├── Subclass.cpp ├── Subclass.h ├── TIFFDecoder.cpp ├── TIFFDecoder.h ├── TIFFReader.cpp ├── TIFFReader.h ├── TODO list.txt ├── TagBarView.cpp ├── TagBarView.h ├── TaggedValues.cpp ├── TaggedValues.h ├── TaggingPopup.cpp ├── TaggingPopup.h ├── TagsBar.cpp ├── TagsBar.h ├── TagsBarCommon.cpp ├── TagsBarCommon.h ├── TagsCommonCode.cpp ├── TagsCommonCode.h ├── TagsManageDlg.cpp ├── TagsManageDlg.h ├── TaskToolbar.cpp ├── TaskToolbar.h ├── Tasks.cpp ├── Tasks.h ├── ThumbnailDecoder.cpp ├── ThumbnailDecoder.h ├── ThumbnailSize.h ├── TimeLimit.h ├── ToolBarPopup.cpp ├── ToolBarPopup.h ├── ToolBarWnd.cpp ├── ToolBarWnd.h ├── ToolDlg.cpp ├── ToolDlg.h ├── TopSeparatorCtrl.cpp ├── TopSeparatorCtrl.h ├── TransferDlg.cpp ├── TransferDlg.h ├── TransferExDlg.cpp ├── TransferExDlg.h ├── TransferFiles.cpp ├── TransferFiles.h ├── TransferOptionsDlg.cpp ├── TransferOptionsDlg.h ├── Transform.cpp ├── Transform.h ├── TransformationThread.cpp ├── TransformationThread.h ├── TransparentBar.cpp ├── TransparentBar.h ├── TwoFilePanesWnd.cpp ├── TwoFilePanesWnd.h ├── UIElements.cpp ├── UIElements.h ├── UniqueLetter.cpp ├── UniqueLetter.h ├── VectPhotoInfo.h ├── ViewPane.cpp ├── ViewPane.h ├── ViewerDlg.cpp ├── ViewerDlg.h ├── ViewerDlgNotifications.h ├── ViewerExampleWnd.cpp ├── ViewerExampleWnd.h ├── ViewerTagPane.cpp ├── ViewerTagPane.h ├── WhistlerLook.cpp ├── WhistlerLook.h ├── WndTimer.cpp ├── WndTimer.h ├── XMPAccess.cpp ├── XMPAccess.h ├── XmpData.cpp ├── XmpData.h ├── XmpInclude.h ├── YCbCr_to_BGR.cpp ├── YCbCr_to_BGR.h ├── YellowText.cpp ├── YellowText.h ├── adaptCString.h ├── adapters.h ├── clamp.h ├── graphics │ └── base-types.h ├── intrusive_ptr.h ├── jpeglib.h ├── jpegtran.cpp ├── nouse │ ├── FileOperDlg.cpp │ ├── FileOperDlg.h │ ├── HelpButton.cpp │ ├── HelpButton.h │ └── flip_vertically.png ├── res │ ├── BrowserToolBar.png │ ├── CatalogHelp_1.png │ ├── CatalogHelp_2.png │ ├── CatalogHelp_3.png │ ├── CatalogHelp_4.png │ ├── CatalogHelp_arrow.png │ ├── Envelope.bmp │ ├── ExifProVista.ico │ ├── FilePaneFilterTb.png │ ├── FilePaneTb.png │ ├── FileTypeIndicators.png │ ├── FolderViewCtrlTb.png │ ├── GroupHeaderIcons.png │ ├── HighRes PNGs.txt │ ├── InfoToolbar.png │ ├── RunSlideShow.bmp │ ├── Shutter.rc2 │ ├── SingleStarFont.ttf │ ├── SlideShow.app │ ├── Stars.png │ ├── TaggedSeparateDirs.bmp │ ├── TaggedSingleDir.bmp │ ├── TagsToolbar.png │ ├── TaskTools.png │ ├── TimeLineTb.png │ ├── TransferToolOper1.png │ ├── TransferToolOper2.png │ ├── TransferToolOper3.png │ ├── Triangles.png │ ├── ViewerToolbar.png │ ├── ZoomBar.png │ ├── about-alpha.png │ ├── active_view_marker.png │ ├── address_tb.png │ ├── arrow_down.bmp │ ├── arrow_up.bmp │ ├── ascending.bmp │ ├── auto-complete.png │ ├── cancel-filter.png │ ├── cancel.png │ ├── character.bmp │ ├── chevron.png │ ├── close_tb.png │ ├── closebar.png │ ├── copy-anim.avi │ ├── cross.cur │ ├── ctrl_draw_images.bmp │ ├── descending.bmp │ ├── empty.bmp │ ├── empty2.bmp │ ├── empty_bmp.bmp │ ├── enter_tb.png │ ├── eye_drop.bmp │ ├── eye_drop.cur │ ├── file_icons.png │ ├── find_tb.png │ ├── flip_horizontally.png │ ├── folder_pane_tb.png │ ├── folder_popup.png │ ├── funnel-small.png │ ├── funnel.png │ ├── grip.bmp │ ├── horz_line_res.cur │ ├── horz_resize.cur │ ├── icm_icons.bmp │ ├── icm_toolbar.bmp │ ├── img_effects.bmp │ ├── img_error.bmp │ ├── img_manip_icons.bmp │ ├── info_band_opt.png │ ├── layouts.png │ ├── light-bulb.png │ ├── light_table_tb.png │ ├── link.cur │ ├── manifest.txt │ ├── manifest64.txt │ ├── marked.bmp │ ├── menu-btn-right.bmp │ ├── menu_btn.bmp │ ├── monitor.ico │ ├── move.cur │ ├── move_pane.cur │ ├── noExif.png │ ├── nodrop.cur │ ├── pane_toolbar.png │ ├── pattern.bmp │ ├── photo_1.bmp │ ├── photo_2.bmp │ ├── photo_3.bmp │ ├── photo_4.bmp │ ├── photo_5.bmp │ ├── photo_6.bmp │ ├── photo_7.bmp │ ├── photo_8.bmp │ ├── photos_tb.png │ ├── pointing.cur │ ├── pointing_hand.cur │ ├── pointing_hand_inv.cur │ ├── print_dlg_tb.bmp │ ├── progress.avi │ ├── rainbow.ico │ ├── rotate_180.png │ ├── rotate_automatically.png │ ├── rotate_left.png │ ├── rotate_right.png │ ├── scroll.cur │ ├── small_arrow_down.png │ ├── task_bar.png │ ├── tb_edit.bmp │ ├── template_frames.bmp │ ├── template_grid.bmp │ ├── templates.bmp │ ├── trashcan.png │ ├── vert_resize.cur │ ├── viewer.ico │ └── warning.ico ├── resource.h ├── scan.cpp ├── scan.h ├── set.h ├── transupp.cpp ├── viewer │ ├── BmpRoutines.cpp │ ├── BmpRoutines.h │ ├── DarkCloseBar.cpp │ ├── DarkCloseBar.h │ ├── DrawParentBkgnd.cpp │ ├── DrawSeparatorBar.cpp │ ├── LoadPing.cpp │ ├── PreviewBandWnd.cpp │ ├── PreviewBandWnd.h │ ├── SeparatorWnd2.cpp │ ├── SeparatorWnd2.h │ ├── SimpleReBar.cpp │ ├── SimpleReBar.h │ ├── ViewCaption.cpp │ └── ViewCaption.h └── w2a.h └── switchgit.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /Build Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Build Instructions.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/README.md -------------------------------------------------------------------------------- /Shutter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Shutter.sln -------------------------------------------------------------------------------- /Shutter编译步骤.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Shutter编译步骤.doc -------------------------------------------------------------------------------- /SlideShowApp/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Bitmap.cpp -------------------------------------------------------------------------------- /SlideShowApp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Bitmap.h -------------------------------------------------------------------------------- /SlideShowApp/DC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/DC.cpp -------------------------------------------------------------------------------- /SlideShowApp/DC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/DC.h -------------------------------------------------------------------------------- /SlideShowApp/Dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Dib.cpp -------------------------------------------------------------------------------- /SlideShowApp/Dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Dib.h -------------------------------------------------------------------------------- /SlideShowApp/Photos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Photos.cpp -------------------------------------------------------------------------------- /SlideShowApp/Photos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Photos.h -------------------------------------------------------------------------------- /SlideShowApp/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Rect.cpp -------------------------------------------------------------------------------- /SlideShowApp/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Rect.h -------------------------------------------------------------------------------- /SlideShowApp/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Size.cpp -------------------------------------------------------------------------------- /SlideShowApp/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/Size.h -------------------------------------------------------------------------------- /SlideShowApp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/StdAfx.cpp -------------------------------------------------------------------------------- /SlideShowApp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/StdAfx.h -------------------------------------------------------------------------------- /SlideShowApp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/SlideShowApp/resource.h -------------------------------------------------------------------------------- /Templates/FrameSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Templates/FrameSet.html -------------------------------------------------------------------------------- /Templates/Frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Templates/Frames.html -------------------------------------------------------------------------------- /Templates/Grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/Templates/Grid.html -------------------------------------------------------------------------------- /info/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/info/screenshot.jpg -------------------------------------------------------------------------------- /libs/coolsb/coolsblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/coolsb/coolsblib.c -------------------------------------------------------------------------------- /libs/coolsb/coolsblib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/coolsb/coolsblib.h -------------------------------------------------------------------------------- /libs/coolsb/userdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/coolsb/userdefs.h -------------------------------------------------------------------------------- /libs/giflib/Version.txt: -------------------------------------------------------------------------------- 1 | 4.2.3 -------------------------------------------------------------------------------- /libs/giflib/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/dgif_lib.c -------------------------------------------------------------------------------- /libs/giflib/gif_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gif_err.c -------------------------------------------------------------------------------- /libs/giflib/gif_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gif_font.c -------------------------------------------------------------------------------- /libs/giflib/gif_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gif_hash.c -------------------------------------------------------------------------------- /libs/giflib/gif_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gif_hash.h -------------------------------------------------------------------------------- /libs/giflib/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gif_lib.h -------------------------------------------------------------------------------- /libs/giflib/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/giflib/gifalloc.c -------------------------------------------------------------------------------- /libs/lcms/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/AUTHORS -------------------------------------------------------------------------------- /libs/lcms/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/COPYING -------------------------------------------------------------------------------- /libs/lcms/ChangeLog: -------------------------------------------------------------------------------- 1 | Maintenance version -------------------------------------------------------------------------------- /libs/lcms/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/INSTALL -------------------------------------------------------------------------------- /libs/lcms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/Makefile.am -------------------------------------------------------------------------------- /libs/lcms/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/Makefile.in -------------------------------------------------------------------------------- /libs/lcms/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/NEWS -------------------------------------------------------------------------------- /libs/lcms/README.1ST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/README.1ST -------------------------------------------------------------------------------- /libs/lcms/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/aclocal.m4 -------------------------------------------------------------------------------- /libs/lcms/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/compile -------------------------------------------------------------------------------- /libs/lcms/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/config.guess -------------------------------------------------------------------------------- /libs/lcms/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/config.sub -------------------------------------------------------------------------------- /libs/lcms/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/configure -------------------------------------------------------------------------------- /libs/lcms/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/configure.ac -------------------------------------------------------------------------------- /libs/lcms/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/depcomp -------------------------------------------------------------------------------- /libs/lcms/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/filter.c -------------------------------------------------------------------------------- /libs/lcms/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/install-sh -------------------------------------------------------------------------------- /libs/lcms/install.gcc: -------------------------------------------------------------------------------- 1 | make -f makefile.simple -------------------------------------------------------------------------------- /libs/lcms/lcms.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/lcms.pc.in -------------------------------------------------------------------------------- /libs/lcms/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/ltmain.sh -------------------------------------------------------------------------------- /libs/lcms/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/missing -------------------------------------------------------------------------------- /libs/lcms/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/mkinstalldirs -------------------------------------------------------------------------------- /libs/lcms/src/cmserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmserr.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsgmt.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsio0.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsio1.c -------------------------------------------------------------------------------- /libs/lcms/src/cmslut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmslut.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsmtrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsmtrx.c -------------------------------------------------------------------------------- /libs/lcms/src/cmspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmspack.c -------------------------------------------------------------------------------- /libs/lcms/src/cmspcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmspcs.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsps2.c -------------------------------------------------------------------------------- /libs/lcms/src/cmssamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmssamp.c -------------------------------------------------------------------------------- /libs/lcms/src/cmsvirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/cmsvirt.c -------------------------------------------------------------------------------- /libs/lcms/src/lcms.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/lcms/src/lcms.def -------------------------------------------------------------------------------- /libs/lcms/version-1.19.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libjpeg-turbo/doc/html/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /libs/libjpeg-turbo/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /libs/libjpeg-turbo/java/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: TJExample 3 | -------------------------------------------------------------------------------- /libs/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/png.c -------------------------------------------------------------------------------- /libs/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/png.h -------------------------------------------------------------------------------- /libs/pnglib/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngconf.h -------------------------------------------------------------------------------- /libs/pnglib/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngdebug.h -------------------------------------------------------------------------------- /libs/pnglib/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngerror.c -------------------------------------------------------------------------------- /libs/pnglib/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngget.c -------------------------------------------------------------------------------- /libs/pnglib/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pnginfo.h -------------------------------------------------------------------------------- /libs/pnglib/pnglib-1.6.39.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/pnglib/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngmem.c -------------------------------------------------------------------------------- /libs/pnglib/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngpread.c -------------------------------------------------------------------------------- /libs/pnglib/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngpriv.h -------------------------------------------------------------------------------- /libs/pnglib/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngread.c -------------------------------------------------------------------------------- /libs/pnglib/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngrio.c -------------------------------------------------------------------------------- /libs/pnglib/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngrtran.c -------------------------------------------------------------------------------- /libs/pnglib/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngrutil.c -------------------------------------------------------------------------------- /libs/pnglib/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngset.c -------------------------------------------------------------------------------- /libs/pnglib/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngstruct.h -------------------------------------------------------------------------------- /libs/pnglib/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngtest.c -------------------------------------------------------------------------------- /libs/pnglib/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngtrans.c -------------------------------------------------------------------------------- /libs/pnglib/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngusr.dfa -------------------------------------------------------------------------------- /libs/pnglib/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngwio.c -------------------------------------------------------------------------------- /libs/pnglib/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngwrite.c -------------------------------------------------------------------------------- /libs/pnglib/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngwtran.c -------------------------------------------------------------------------------- /libs/pnglib/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/pnglib/pngwutil.c -------------------------------------------------------------------------------- /libs/scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/scintilla/README -------------------------------------------------------------------------------- /libs/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 325 2 | -------------------------------------------------------------------------------- /libs/scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /libs/tifflib-backup/libtiff/precomp.c: -------------------------------------------------------------------------------- 1 | #include "tiffiop.h" 2 | -------------------------------------------------------------------------------- /libs/tifflib/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/tifflib/COPYRIGHT -------------------------------------------------------------------------------- /libs/tifflib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/tifflib/ChangeLog -------------------------------------------------------------------------------- /libs/tifflib/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20220520 2 | -------------------------------------------------------------------------------- /libs/tifflib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/tifflib/TODO -------------------------------------------------------------------------------- /libs/tifflib/VERSION: -------------------------------------------------------------------------------- 1 | 4.4.0 2 | -------------------------------------------------------------------------------- /libs/tifflib/libtiff/libtiff.map: -------------------------------------------------------------------------------- 1 | LIBTIFF_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /libs/tifflib/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /libs/tifflib/libtiff/precomp.c: -------------------------------------------------------------------------------- 1 | #include "tiffiop.h" 2 | -------------------------------------------------------------------------------- /libs/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/ChangeLog -------------------------------------------------------------------------------- /libs/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/FAQ -------------------------------------------------------------------------------- /libs/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/INDEX -------------------------------------------------------------------------------- /libs/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/LICENSE -------------------------------------------------------------------------------- /libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/Makefile -------------------------------------------------------------------------------- /libs/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/Makefile.in -------------------------------------------------------------------------------- /libs/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/README -------------------------------------------------------------------------------- /libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/adler32.c -------------------------------------------------------------------------------- /libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/compress.c -------------------------------------------------------------------------------- /libs/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/configure -------------------------------------------------------------------------------- /libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/crc32.c -------------------------------------------------------------------------------- /libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/crc32.h -------------------------------------------------------------------------------- /libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/deflate.c -------------------------------------------------------------------------------- /libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/deflate.h -------------------------------------------------------------------------------- /libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/gzread.c -------------------------------------------------------------------------------- /libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/infback.c -------------------------------------------------------------------------------- /libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inffast.c -------------------------------------------------------------------------------- /libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inffast.h -------------------------------------------------------------------------------- /libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inflate.c -------------------------------------------------------------------------------- /libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inflate.h -------------------------------------------------------------------------------- /libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/trees.c -------------------------------------------------------------------------------- /libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/trees.h -------------------------------------------------------------------------------- /libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zconf.h -------------------------------------------------------------------------------- /libs/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zconf.h.in -------------------------------------------------------------------------------- /libs/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib.3 -------------------------------------------------------------------------------- /libs/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib.h -------------------------------------------------------------------------------- /libs/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib.map -------------------------------------------------------------------------------- /libs/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib.pc.in -------------------------------------------------------------------------------- /libs/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zlib2ansi -------------------------------------------------------------------------------- /libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zutil.c -------------------------------------------------------------------------------- /libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/zlib/zutil.h -------------------------------------------------------------------------------- /libs/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/libs/说明.txt -------------------------------------------------------------------------------- /lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/COPYRIGHT -------------------------------------------------------------------------------- /lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/HISTORY -------------------------------------------------------------------------------- /lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/INSTALL -------------------------------------------------------------------------------- /lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/Makefile -------------------------------------------------------------------------------- /lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/README -------------------------------------------------------------------------------- /lua/luavc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/luavc/ReadMe.txt -------------------------------------------------------------------------------- /lua/luavc/luavc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/luavc/luavc.cpp -------------------------------------------------------------------------------- /lua/luavc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/luavc/stdafx.cpp -------------------------------------------------------------------------------- /lua/luavc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/luavc/stdafx.h -------------------------------------------------------------------------------- /lua/luavc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/luavc/targetver.h -------------------------------------------------------------------------------- /lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/Makefile -------------------------------------------------------------------------------- /lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lapi.c -------------------------------------------------------------------------------- /lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lapi.h -------------------------------------------------------------------------------- /lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lauxlib.c -------------------------------------------------------------------------------- /lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lauxlib.h -------------------------------------------------------------------------------- /lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lbaselib.c -------------------------------------------------------------------------------- /lua/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lbitlib.c -------------------------------------------------------------------------------- /lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lcode.c -------------------------------------------------------------------------------- /lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lcode.h -------------------------------------------------------------------------------- /lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lcorolib.c -------------------------------------------------------------------------------- /lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lctype.c -------------------------------------------------------------------------------- /lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lctype.h -------------------------------------------------------------------------------- /lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldblib.c -------------------------------------------------------------------------------- /lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldebug.c -------------------------------------------------------------------------------- /lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldebug.h -------------------------------------------------------------------------------- /lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldo.c -------------------------------------------------------------------------------- /lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldo.h -------------------------------------------------------------------------------- /lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ldump.c -------------------------------------------------------------------------------- /lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lfunc.c -------------------------------------------------------------------------------- /lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lfunc.h -------------------------------------------------------------------------------- /lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lgc.c -------------------------------------------------------------------------------- /lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lgc.h -------------------------------------------------------------------------------- /lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/linit.c -------------------------------------------------------------------------------- /lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/liolib.c -------------------------------------------------------------------------------- /lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/llex.c -------------------------------------------------------------------------------- /lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/llex.h -------------------------------------------------------------------------------- /lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/llimits.h -------------------------------------------------------------------------------- /lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lmathlib.c -------------------------------------------------------------------------------- /lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lmem.c -------------------------------------------------------------------------------- /lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lmem.h -------------------------------------------------------------------------------- /lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/loadlib.c -------------------------------------------------------------------------------- /lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lobject.c -------------------------------------------------------------------------------- /lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lobject.h -------------------------------------------------------------------------------- /lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lopcodes.c -------------------------------------------------------------------------------- /lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lopcodes.h -------------------------------------------------------------------------------- /lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/loslib.c -------------------------------------------------------------------------------- /lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lparser.c -------------------------------------------------------------------------------- /lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lparser.h -------------------------------------------------------------------------------- /lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lstate.c -------------------------------------------------------------------------------- /lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lstate.h -------------------------------------------------------------------------------- /lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lstring.c -------------------------------------------------------------------------------- /lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lstring.h -------------------------------------------------------------------------------- /lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lstrlib.c -------------------------------------------------------------------------------- /lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ltable.c -------------------------------------------------------------------------------- /lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ltable.h -------------------------------------------------------------------------------- /lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ltablib.c -------------------------------------------------------------------------------- /lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ltm.c -------------------------------------------------------------------------------- /lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/ltm.h -------------------------------------------------------------------------------- /lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lua.c -------------------------------------------------------------------------------- /lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lua.h -------------------------------------------------------------------------------- /lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lua.hpp -------------------------------------------------------------------------------- /lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/luac.c -------------------------------------------------------------------------------- /lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/luaconf.h -------------------------------------------------------------------------------- /lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lualib.h -------------------------------------------------------------------------------- /lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lundump.c -------------------------------------------------------------------------------- /lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lundump.h -------------------------------------------------------------------------------- /lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lvm.c -------------------------------------------------------------------------------- /lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lvm.h -------------------------------------------------------------------------------- /lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lzio.c -------------------------------------------------------------------------------- /lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/lua/src/lzio.h -------------------------------------------------------------------------------- /src/ACListWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ACListWnd.cpp -------------------------------------------------------------------------------- /src/ACListWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ACListWnd.h -------------------------------------------------------------------------------- /src/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AboutDlg.cpp -------------------------------------------------------------------------------- /src/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AboutDlg.h -------------------------------------------------------------------------------- /src/AboutLibs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AboutLibs.cpp -------------------------------------------------------------------------------- /src/AboutLibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AboutLibs.h -------------------------------------------------------------------------------- /src/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Accelerator.cpp -------------------------------------------------------------------------------- /src/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Accelerator.h -------------------------------------------------------------------------------- /src/AddFavoriteDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AddFavoriteDlg.h -------------------------------------------------------------------------------- /src/AddressBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AddressBox.cpp -------------------------------------------------------------------------------- /src/AddressBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AddressBox.h -------------------------------------------------------------------------------- /src/AlphaBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AlphaBlend.cpp -------------------------------------------------------------------------------- /src/AnyPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AnyPointer.h -------------------------------------------------------------------------------- /src/AppColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AppColors.cpp -------------------------------------------------------------------------------- /src/AppColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AppColors.h -------------------------------------------------------------------------------- /src/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AppSettings.cpp -------------------------------------------------------------------------------- /src/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AppSettings.h -------------------------------------------------------------------------------- /src/ArrowButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ArrowButton.cpp -------------------------------------------------------------------------------- /src/ArrowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ArrowButton.h -------------------------------------------------------------------------------- /src/Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Attributes.cpp -------------------------------------------------------------------------------- /src/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Attributes.h -------------------------------------------------------------------------------- /src/AutoComplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AutoComplete.cpp -------------------------------------------------------------------------------- /src/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AutoComplete.h -------------------------------------------------------------------------------- /src/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/AutoPtr.h -------------------------------------------------------------------------------- /src/BMPDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BMPDecoder.cpp -------------------------------------------------------------------------------- /src/BMPDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BMPDecoder.h -------------------------------------------------------------------------------- /src/BMPReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BMPReader.cpp -------------------------------------------------------------------------------- /src/BMPReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BMPReader.h -------------------------------------------------------------------------------- /src/BalloonMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BalloonMsg.cpp -------------------------------------------------------------------------------- /src/BalloonMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BalloonMsg.h -------------------------------------------------------------------------------- /src/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Block.h -------------------------------------------------------------------------------- /src/BmpAlpha .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BmpAlpha .cpp -------------------------------------------------------------------------------- /src/BmpAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BmpAlpha.h -------------------------------------------------------------------------------- /src/BmpFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BmpFunc.cpp -------------------------------------------------------------------------------- /src/BmpFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BmpFunc.h -------------------------------------------------------------------------------- /src/BoldFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BoldFont.cpp -------------------------------------------------------------------------------- /src/BoldFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BoldFont.h -------------------------------------------------------------------------------- /src/BrowserFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BrowserFrame.cpp -------------------------------------------------------------------------------- /src/BrowserFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BrowserFrame.h -------------------------------------------------------------------------------- /src/BrowserToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/BrowserToolbar.h -------------------------------------------------------------------------------- /src/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Cache.cpp -------------------------------------------------------------------------------- /src/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Cache.h -------------------------------------------------------------------------------- /src/CalibrationDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CalibrationDlg.h -------------------------------------------------------------------------------- /src/CalibrationWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CalibrationWnd.h -------------------------------------------------------------------------------- /src/CatalogDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogDlg.cpp -------------------------------------------------------------------------------- /src/CatalogDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogDlg.h -------------------------------------------------------------------------------- /src/CatalogFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogFile.cpp -------------------------------------------------------------------------------- /src/CatalogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogFile.h -------------------------------------------------------------------------------- /src/CatalogFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogFolder.cpp -------------------------------------------------------------------------------- /src/CatalogFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogFolder.h -------------------------------------------------------------------------------- /src/CatalogHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogHeader.cpp -------------------------------------------------------------------------------- /src/CatalogHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogHeader.h -------------------------------------------------------------------------------- /src/CatalogHelpDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogHelpDlg.h -------------------------------------------------------------------------------- /src/CatalogImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogImages.cpp -------------------------------------------------------------------------------- /src/CatalogImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogImages.h -------------------------------------------------------------------------------- /src/CatalogPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogPath.cpp -------------------------------------------------------------------------------- /src/CatalogPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogPath.h -------------------------------------------------------------------------------- /src/CatalogScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogScanner.h -------------------------------------------------------------------------------- /src/CatalogTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogTool.cpp -------------------------------------------------------------------------------- /src/CatalogTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatalogTool.h -------------------------------------------------------------------------------- /src/CatchAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatchAll.cpp -------------------------------------------------------------------------------- /src/CatchAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CatchAll.h -------------------------------------------------------------------------------- /src/CircularFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CircularFifo.h -------------------------------------------------------------------------------- /src/CloseBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CloseBar.cpp -------------------------------------------------------------------------------- /src/CloseBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CloseBar.h -------------------------------------------------------------------------------- /src/CmdLineInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CmdLineInfo.cpp -------------------------------------------------------------------------------- /src/CmdLineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CmdLineInfo.h -------------------------------------------------------------------------------- /src/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Color.cpp -------------------------------------------------------------------------------- /src/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Color.h -------------------------------------------------------------------------------- /src/ColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorButton.cpp -------------------------------------------------------------------------------- /src/ColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorButton.h -------------------------------------------------------------------------------- /src/ColorMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorMenu.cpp -------------------------------------------------------------------------------- /src/ColorMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorMenu.h -------------------------------------------------------------------------------- /src/ColorMngDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorMngDlg.cpp -------------------------------------------------------------------------------- /src/ColorMngDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorMngDlg.h -------------------------------------------------------------------------------- /src/ColorProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorProfile.cpp -------------------------------------------------------------------------------- /src/ColorProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorProfile.h -------------------------------------------------------------------------------- /src/ColorSets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorSets.cpp -------------------------------------------------------------------------------- /src/ColorSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColorSets.h -------------------------------------------------------------------------------- /src/ColumnTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColumnTree.cpp -------------------------------------------------------------------------------- /src/ColumnTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ColumnTree.h -------------------------------------------------------------------------------- /src/Columns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Columns.cpp -------------------------------------------------------------------------------- /src/Columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Columns.h -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/ConnectionPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ConnectionPoint.h -------------------------------------------------------------------------------- /src/CoolScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CoolScrollBar.cpp -------------------------------------------------------------------------------- /src/CoolScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CoolScrollBar.h -------------------------------------------------------------------------------- /src/CopyMoveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyMoveDlg.cpp -------------------------------------------------------------------------------- /src/CopyMoveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyMoveDlg.h -------------------------------------------------------------------------------- /src/CopyPhoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyPhoto.cpp -------------------------------------------------------------------------------- /src/CopyPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyPhoto.h -------------------------------------------------------------------------------- /src/CopyProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyProgressDlg.h -------------------------------------------------------------------------------- /src/CopyTaggedDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyTaggedDlg.cpp -------------------------------------------------------------------------------- /src/CopyTaggedDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CopyTaggedDlg.h -------------------------------------------------------------------------------- /src/CtrlDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CtrlDraw.cpp -------------------------------------------------------------------------------- /src/CtrlDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CtrlDraw.h -------------------------------------------------------------------------------- /src/CustomColumns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomColumns.cpp -------------------------------------------------------------------------------- /src/CustomColumns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomColumns.h -------------------------------------------------------------------------------- /src/CustomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomFilter.cpp -------------------------------------------------------------------------------- /src/CustomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomFilter.h -------------------------------------------------------------------------------- /src/CustomFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomFilters.cpp -------------------------------------------------------------------------------- /src/CustomFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomFilters.h -------------------------------------------------------------------------------- /src/CustomTabCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomTabCtrl.cpp -------------------------------------------------------------------------------- /src/CustomTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/CustomTabCtrl.h -------------------------------------------------------------------------------- /src/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Data.cpp -------------------------------------------------------------------------------- /src/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Data.h -------------------------------------------------------------------------------- /src/DataExchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DataExchange.h -------------------------------------------------------------------------------- /src/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Date.h -------------------------------------------------------------------------------- /src/DateAdjustDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DateAdjustDlg.cpp -------------------------------------------------------------------------------- /src/DateAdjustDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DateAdjustDlg.h -------------------------------------------------------------------------------- /src/DateTimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DateTimeUtils.cpp -------------------------------------------------------------------------------- /src/DateTimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DateTimeUtils.h -------------------------------------------------------------------------------- /src/DbOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DbOperations.cpp -------------------------------------------------------------------------------- /src/DbOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DbOperations.h -------------------------------------------------------------------------------- /src/DecoderJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DecoderJob.cpp -------------------------------------------------------------------------------- /src/DecoderJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DecoderJob.h -------------------------------------------------------------------------------- /src/DecoderProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DecoderProgress.h -------------------------------------------------------------------------------- /src/DefaultColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DefaultColors.cpp -------------------------------------------------------------------------------- /src/DefaultColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DefaultColors.h -------------------------------------------------------------------------------- /src/DeleteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DeleteArray.h -------------------------------------------------------------------------------- /src/DescriptionDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DescriptionDlg.h -------------------------------------------------------------------------------- /src/DescriptionPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DescriptionPane.h -------------------------------------------------------------------------------- /src/DialogBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DialogBase.cpp -------------------------------------------------------------------------------- /src/DialogBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DialogBase.h -------------------------------------------------------------------------------- /src/DialogChild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DialogChild.cpp -------------------------------------------------------------------------------- /src/DialogChild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DialogChild.h -------------------------------------------------------------------------------- /src/DialogHostCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DialogHostCtrl.h -------------------------------------------------------------------------------- /src/Dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Dib.cpp -------------------------------------------------------------------------------- /src/Dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Dib.h -------------------------------------------------------------------------------- /src/DibCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DibCache.cpp -------------------------------------------------------------------------------- /src/DibCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DibCache.h -------------------------------------------------------------------------------- /src/DibDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DibDC.cpp -------------------------------------------------------------------------------- /src/DibDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DibDC.h -------------------------------------------------------------------------------- /src/DibDispMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DibDispMethod.h -------------------------------------------------------------------------------- /src/DirScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirScanner.cpp -------------------------------------------------------------------------------- /src/DirScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirScanner.h -------------------------------------------------------------------------------- /src/Direct2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Direct2D.cpp -------------------------------------------------------------------------------- /src/Direct2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Direct2D.h -------------------------------------------------------------------------------- /src/DirectRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirectRender.cpp -------------------------------------------------------------------------------- /src/DirectRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirectRender.h -------------------------------------------------------------------------------- /src/DirectoryPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirectoryPath.cpp -------------------------------------------------------------------------------- /src/DirectoryPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DirectoryPath.h -------------------------------------------------------------------------------- /src/DistributionBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DistributionBar.h -------------------------------------------------------------------------------- /src/DlgAutoResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DlgAutoResize.cpp -------------------------------------------------------------------------------- /src/DlgAutoResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DlgAutoResize.h -------------------------------------------------------------------------------- /src/DlgListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DlgListCtrl.cpp -------------------------------------------------------------------------------- /src/DlgListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DlgListCtrl.h -------------------------------------------------------------------------------- /src/DlgTemplateEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DlgTemplateEx.h -------------------------------------------------------------------------------- /src/DockedPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DockedPane.cpp -------------------------------------------------------------------------------- /src/DockedPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DockedPane.h -------------------------------------------------------------------------------- /src/DockingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DockingBar.h -------------------------------------------------------------------------------- /src/DragAndDrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DragAndDrop.cpp -------------------------------------------------------------------------------- /src/DragAndDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DragAndDrop.h -------------------------------------------------------------------------------- /src/DrawAlphaRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawAlphaRect.cpp -------------------------------------------------------------------------------- /src/DrawBmpEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawBmpEffects.h -------------------------------------------------------------------------------- /src/DrawFields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawFields.cpp -------------------------------------------------------------------------------- /src/DrawFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawFields.h -------------------------------------------------------------------------------- /src/DrawFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawFunctions.cpp -------------------------------------------------------------------------------- /src/DrawFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/DrawFunctions.h -------------------------------------------------------------------------------- /src/EditCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditCombo.cpp -------------------------------------------------------------------------------- /src/EditCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditCombo.h -------------------------------------------------------------------------------- /src/EditEsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditEsc.cpp -------------------------------------------------------------------------------- /src/EditEsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditEsc.h -------------------------------------------------------------------------------- /src/EditFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFileInfo.cpp -------------------------------------------------------------------------------- /src/EditFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFileInfo.h -------------------------------------------------------------------------------- /src/EditFilterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFilterDlg.cpp -------------------------------------------------------------------------------- /src/EditFilterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFilterDlg.h -------------------------------------------------------------------------------- /src/EditFld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFld.cpp -------------------------------------------------------------------------------- /src/EditFld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditFld.h -------------------------------------------------------------------------------- /src/EditHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EditHistory.h -------------------------------------------------------------------------------- /src/EnableCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EnableCtrl.cpp -------------------------------------------------------------------------------- /src/EnableCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EnableCtrl.h -------------------------------------------------------------------------------- /src/ErrorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ErrorDlg.cpp -------------------------------------------------------------------------------- /src/ErrorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ErrorDlg.h -------------------------------------------------------------------------------- /src/EstimatedTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EstimatedTime.cpp -------------------------------------------------------------------------------- /src/EstimatedTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/EstimatedTime.h -------------------------------------------------------------------------------- /src/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Exception.cpp -------------------------------------------------------------------------------- /src/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Exception.h -------------------------------------------------------------------------------- /src/ExifBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifBlock.cpp -------------------------------------------------------------------------------- /src/ExifBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifBlock.h -------------------------------------------------------------------------------- /src/ExifFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifFields.h -------------------------------------------------------------------------------- /src/ExifInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifInfo.h -------------------------------------------------------------------------------- /src/ExifPro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifPro.cpp -------------------------------------------------------------------------------- /src/ExifPro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifPro.h -------------------------------------------------------------------------------- /src/ExifProView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifProView.cpp -------------------------------------------------------------------------------- /src/ExifProView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifProView.h -------------------------------------------------------------------------------- /src/ExifStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifStatusBar.cpp -------------------------------------------------------------------------------- /src/ExifStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifStatusBar.h -------------------------------------------------------------------------------- /src/ExifTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifTags.cpp -------------------------------------------------------------------------------- /src/ExifTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifTags.h -------------------------------------------------------------------------------- /src/ExifViewReBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifViewReBar.cpp -------------------------------------------------------------------------------- /src/ExifViewReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExifViewReBar.h -------------------------------------------------------------------------------- /src/ExprCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExprCalculator.h -------------------------------------------------------------------------------- /src/ExtTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeCtrl.cpp -------------------------------------------------------------------------------- /src/ExtTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeCtrl.h -------------------------------------------------------------------------------- /src/ExtTreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeItem.cpp -------------------------------------------------------------------------------- /src/ExtTreeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeItem.h -------------------------------------------------------------------------------- /src/ExtTreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeNode.cpp -------------------------------------------------------------------------------- /src/ExtTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeNode.h -------------------------------------------------------------------------------- /src/ExtTreeRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeRow.cpp -------------------------------------------------------------------------------- /src/ExtTreeRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtTreeRow.h -------------------------------------------------------------------------------- /src/ExtractJpegDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ExtractJpegDlg.h -------------------------------------------------------------------------------- /src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/File.cpp -------------------------------------------------------------------------------- /src/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/File.h -------------------------------------------------------------------------------- /src/FileCopyMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileCopyMove.cpp -------------------------------------------------------------------------------- /src/FileCopyMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileCopyMove.h -------------------------------------------------------------------------------- /src/FileDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileDataSource.h -------------------------------------------------------------------------------- /src/FileErrorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileErrorDlg.cpp -------------------------------------------------------------------------------- /src/FileErrorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileErrorDlg.h -------------------------------------------------------------------------------- /src/FileGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileGuard.cpp -------------------------------------------------------------------------------- /src/FileGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileGuard.h -------------------------------------------------------------------------------- /src/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileInfo.h -------------------------------------------------------------------------------- /src/FileListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileListCtrl.cpp -------------------------------------------------------------------------------- /src/FileListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileListCtrl.h -------------------------------------------------------------------------------- /src/FilePaneWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilePaneWnd.cpp -------------------------------------------------------------------------------- /src/FilePaneWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilePaneWnd.h -------------------------------------------------------------------------------- /src/FileRenameDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileRenameDlg.cpp -------------------------------------------------------------------------------- /src/FileRenameDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileRenameDlg.h -------------------------------------------------------------------------------- /src/FileSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileSend.cpp -------------------------------------------------------------------------------- /src/FileSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileSend.h -------------------------------------------------------------------------------- /src/FileStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileStatus.cpp -------------------------------------------------------------------------------- /src/FileStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileStatus.h -------------------------------------------------------------------------------- /src/FileTypeIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FileTypeIndex.h -------------------------------------------------------------------------------- /src/FilterBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterBar.cpp -------------------------------------------------------------------------------- /src/FilterBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterBar.h -------------------------------------------------------------------------------- /src/FilterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterData.cpp -------------------------------------------------------------------------------- /src/FilterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterData.h -------------------------------------------------------------------------------- /src/FilterDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterDialogs.cpp -------------------------------------------------------------------------------- /src/FilterDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterDialogs.h -------------------------------------------------------------------------------- /src/FilterPanelDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterPanelDlg.h -------------------------------------------------------------------------------- /src/FilterRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterRules.cpp -------------------------------------------------------------------------------- /src/FilterRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FilterRules.h -------------------------------------------------------------------------------- /src/FindTabCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FindTabCtrl.cpp -------------------------------------------------------------------------------- /src/FindTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FindTabCtrl.h -------------------------------------------------------------------------------- /src/FolderListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderListCtrl.h -------------------------------------------------------------------------------- /src/FolderPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderPane.cpp -------------------------------------------------------------------------------- /src/FolderPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderPane.h -------------------------------------------------------------------------------- /src/FolderPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderPath.h -------------------------------------------------------------------------------- /src/FolderSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderSelect.cpp -------------------------------------------------------------------------------- /src/FolderSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderSelect.h -------------------------------------------------------------------------------- /src/FolderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderView.cpp -------------------------------------------------------------------------------- /src/FolderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FolderView.h -------------------------------------------------------------------------------- /src/FormatFileSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FormatFileSize.h -------------------------------------------------------------------------------- /src/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Frame.h -------------------------------------------------------------------------------- /src/FrameList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FrameList.h -------------------------------------------------------------------------------- /src/FramePrepareDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FramePrepareDC.h -------------------------------------------------------------------------------- /src/FrameRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/FrameRect.h -------------------------------------------------------------------------------- /src/GIFDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GIFDecoder.cpp -------------------------------------------------------------------------------- /src/GIFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GIFDecoder.h -------------------------------------------------------------------------------- /src/GIFReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GIFReader.cpp -------------------------------------------------------------------------------- /src/GIFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GIFReader.h -------------------------------------------------------------------------------- /src/GPSData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GPSData.cpp -------------------------------------------------------------------------------- /src/GPSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GPSData.h -------------------------------------------------------------------------------- /src/GenHTMLAlbumDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GenHTMLAlbumDlg.h -------------------------------------------------------------------------------- /src/GenSlideShowDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GenSlideShowDlg.h -------------------------------------------------------------------------------- /src/GenThumbMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GenThumbMode.h -------------------------------------------------------------------------------- /src/GetDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GetDateTime.cpp -------------------------------------------------------------------------------- /src/GetDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GetDateTime.h -------------------------------------------------------------------------------- /src/GlobalAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GlobalAlloc.h -------------------------------------------------------------------------------- /src/GlobalLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GlobalLock.h -------------------------------------------------------------------------------- /src/GridCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GridCtrl.cpp -------------------------------------------------------------------------------- /src/GridCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/GridCtrl.h -------------------------------------------------------------------------------- /src/HeaderDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HeaderDialog.cpp -------------------------------------------------------------------------------- /src/HeaderDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HeaderDialog.h -------------------------------------------------------------------------------- /src/HeaderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HeaderDlg.h -------------------------------------------------------------------------------- /src/Histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Histogram.cpp -------------------------------------------------------------------------------- /src/Histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Histogram.h -------------------------------------------------------------------------------- /src/HistogramCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramCtrl.cpp -------------------------------------------------------------------------------- /src/HistogramCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramCtrl.h -------------------------------------------------------------------------------- /src/HistogramDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramDlg.cpp -------------------------------------------------------------------------------- /src/HistogramDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramDlg.h -------------------------------------------------------------------------------- /src/HistogramImg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramImg.cpp -------------------------------------------------------------------------------- /src/HistogramImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramImg.h -------------------------------------------------------------------------------- /src/HistogramPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramPane.cpp -------------------------------------------------------------------------------- /src/HistogramPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HistogramPane.h -------------------------------------------------------------------------------- /src/HorzReBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HorzReBar.cpp -------------------------------------------------------------------------------- /src/HorzReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/HorzReBar.h -------------------------------------------------------------------------------- /src/ICCScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ICCScanner.cpp -------------------------------------------------------------------------------- /src/ICCScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ICCScanner.h -------------------------------------------------------------------------------- /src/ICMProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ICMProfile.cpp -------------------------------------------------------------------------------- /src/ICMProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ICMProfile.h -------------------------------------------------------------------------------- /src/IPTCReadWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/IPTCReadWrite.cpp -------------------------------------------------------------------------------- /src/IPTCReadWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/IPTCReadWrite.h -------------------------------------------------------------------------------- /src/IPTCRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/IPTCRecord.cpp -------------------------------------------------------------------------------- /src/IPTCRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/IPTCRecord.h -------------------------------------------------------------------------------- /src/ImageCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageCtrl.cpp -------------------------------------------------------------------------------- /src/ImageCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageCtrl.h -------------------------------------------------------------------------------- /src/ImageDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageDecoder.cpp -------------------------------------------------------------------------------- /src/ImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageDecoder.h -------------------------------------------------------------------------------- /src/ImageDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageDraw.cpp -------------------------------------------------------------------------------- /src/ImageDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageDraw.h -------------------------------------------------------------------------------- /src/ImageInfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageInfoDlg.cpp -------------------------------------------------------------------------------- /src/ImageInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageInfoDlg.h -------------------------------------------------------------------------------- /src/ImageLabelDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageLabelDlg.cpp -------------------------------------------------------------------------------- /src/ImageLabelDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageLabelDlg.h -------------------------------------------------------------------------------- /src/ImageListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageListCtrl.cpp -------------------------------------------------------------------------------- /src/ImageListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageListCtrl.h -------------------------------------------------------------------------------- /src/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageLoader.cpp -------------------------------------------------------------------------------- /src/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageLoader.h -------------------------------------------------------------------------------- /src/ImageScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageScanner.cpp -------------------------------------------------------------------------------- /src/ImageScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageScanner.h -------------------------------------------------------------------------------- /src/ImageStat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageStat.cpp -------------------------------------------------------------------------------- /src/ImageStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImageStat.h -------------------------------------------------------------------------------- /src/ImgBatchModeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgBatchModeDlg.h -------------------------------------------------------------------------------- /src/ImgCropPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgCropPage.cpp -------------------------------------------------------------------------------- /src/ImgCropPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgCropPage.h -------------------------------------------------------------------------------- /src/ImgDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgDb.cpp -------------------------------------------------------------------------------- /src/ImgDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgDb.h -------------------------------------------------------------------------------- /src/ImgLevelsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgLevelsPage.cpp -------------------------------------------------------------------------------- /src/ImgLevelsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgLevelsPage.h -------------------------------------------------------------------------------- /src/ImgLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgLogger.cpp -------------------------------------------------------------------------------- /src/ImgLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgLogger.h -------------------------------------------------------------------------------- /src/ImgManipulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgManipulation.h -------------------------------------------------------------------------------- /src/ImgPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgPage.cpp -------------------------------------------------------------------------------- /src/ImgPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgPage.h -------------------------------------------------------------------------------- /src/ImgScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgScanner.cpp -------------------------------------------------------------------------------- /src/ImgScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ImgScanner.h -------------------------------------------------------------------------------- /src/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Index.cpp -------------------------------------------------------------------------------- /src/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Index.h -------------------------------------------------------------------------------- /src/InfoBand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoBand.cpp -------------------------------------------------------------------------------- /src/InfoBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoBand.h -------------------------------------------------------------------------------- /src/InfoDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoDisplay.cpp -------------------------------------------------------------------------------- /src/InfoDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoDisplay.h -------------------------------------------------------------------------------- /src/InfoPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoPane.cpp -------------------------------------------------------------------------------- /src/InfoPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoPane.h -------------------------------------------------------------------------------- /src/InfoPaneBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoPaneBar.cpp -------------------------------------------------------------------------------- /src/InfoPaneBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoPaneBar.h -------------------------------------------------------------------------------- /src/InfoToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoToolbar.cpp -------------------------------------------------------------------------------- /src/InfoToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/InfoToolbar.h -------------------------------------------------------------------------------- /src/IsMMXAvailable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/IsMMXAvailable.h -------------------------------------------------------------------------------- /src/ItemIdList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ItemIdList.cpp -------------------------------------------------------------------------------- /src/ItemIdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ItemIdList.h -------------------------------------------------------------------------------- /src/JPEGDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGDataSource.h -------------------------------------------------------------------------------- /src/JPEGDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGDecoder.cpp -------------------------------------------------------------------------------- /src/JPEGDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGDecoder.h -------------------------------------------------------------------------------- /src/JPEGEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGEncoder.cpp -------------------------------------------------------------------------------- /src/JPEGEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGEncoder.h -------------------------------------------------------------------------------- /src/JPEGException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGException.cpp -------------------------------------------------------------------------------- /src/JPEGException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/JPEGException.h -------------------------------------------------------------------------------- /src/Jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Jpeg.cpp -------------------------------------------------------------------------------- /src/Jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Jpeg.h -------------------------------------------------------------------------------- /src/LightTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LightTable.cpp -------------------------------------------------------------------------------- /src/LightTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LightTable.h -------------------------------------------------------------------------------- /src/LinkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LinkList.cpp -------------------------------------------------------------------------------- /src/LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LinkList.h -------------------------------------------------------------------------------- /src/LinkWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LinkWnd.cpp -------------------------------------------------------------------------------- /src/LinkWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LinkWnd.h -------------------------------------------------------------------------------- /src/ListViewCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ListViewCtrl.cpp -------------------------------------------------------------------------------- /src/ListViewCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ListViewCtrl.h -------------------------------------------------------------------------------- /src/LoadErrorsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LoadErrorsDlg.cpp -------------------------------------------------------------------------------- /src/LoadErrorsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LoadErrorsDlg.h -------------------------------------------------------------------------------- /src/LoadImageList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LoadImageList.cpp -------------------------------------------------------------------------------- /src/LoadImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LoadImageList.h -------------------------------------------------------------------------------- /src/LoadJpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/LoadJpeg.cpp -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Logger.h -------------------------------------------------------------------------------- /src/Lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Lua.cpp -------------------------------------------------------------------------------- /src/Lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Lua.h -------------------------------------------------------------------------------- /src/MagnifierWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MagnifierWnd.cpp -------------------------------------------------------------------------------- /src/MagnifierWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MagnifierWnd.h -------------------------------------------------------------------------------- /src/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MainFrm.cpp -------------------------------------------------------------------------------- /src/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MainFrm.h -------------------------------------------------------------------------------- /src/MakerNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MakerNote.cpp -------------------------------------------------------------------------------- /src/MakerNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MakerNote.h -------------------------------------------------------------------------------- /src/Markers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Markers.h -------------------------------------------------------------------------------- /src/MemMappedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemMappedFile.cpp -------------------------------------------------------------------------------- /src/MemMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemMappedFile.h -------------------------------------------------------------------------------- /src/MemPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemPointer.cpp -------------------------------------------------------------------------------- /src/MemPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemPointer.h -------------------------------------------------------------------------------- /src/MemoryDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemoryDC.cpp -------------------------------------------------------------------------------- /src/MemoryDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MemoryDC.h -------------------------------------------------------------------------------- /src/MenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MenuBar.cpp -------------------------------------------------------------------------------- /src/MenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MenuBar.h -------------------------------------------------------------------------------- /src/MenuFolders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MenuFolders.cpp -------------------------------------------------------------------------------- /src/MenuFolders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MenuFolders.h -------------------------------------------------------------------------------- /src/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Messages.h -------------------------------------------------------------------------------- /src/MonitorCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MonitorCtrl.cpp -------------------------------------------------------------------------------- /src/MonitorCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MonitorCtrl.h -------------------------------------------------------------------------------- /src/MultiMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MultiMonitor.cpp -------------------------------------------------------------------------------- /src/MultiMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/MultiMonitor.h -------------------------------------------------------------------------------- /src/NEFDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NEFDecoder.cpp -------------------------------------------------------------------------------- /src/NEFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NEFDecoder.h -------------------------------------------------------------------------------- /src/NEFReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NEFReader.cpp -------------------------------------------------------------------------------- /src/NEFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NEFReader.h -------------------------------------------------------------------------------- /src/NameToNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NameToNumber.cpp -------------------------------------------------------------------------------- /src/NewFolderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NewFolderDlg.cpp -------------------------------------------------------------------------------- /src/NewFolderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/NewFolderDlg.h -------------------------------------------------------------------------------- /src/OptionsAdvanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsAdvanced.h -------------------------------------------------------------------------------- /src/OptionsBalloons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsBalloons.h -------------------------------------------------------------------------------- /src/OptionsCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsCache.cpp -------------------------------------------------------------------------------- /src/OptionsCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsCache.h -------------------------------------------------------------------------------- /src/OptionsColumns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsColumns.h -------------------------------------------------------------------------------- /src/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsDlg.cpp -------------------------------------------------------------------------------- /src/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsDlg.h -------------------------------------------------------------------------------- /src/OptionsGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsGeneral.h -------------------------------------------------------------------------------- /src/OptionsViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsViewer.cpp -------------------------------------------------------------------------------- /src/OptionsViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OptionsViewer.h -------------------------------------------------------------------------------- /src/OutputStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OutputStr.cpp -------------------------------------------------------------------------------- /src/OutputStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/OutputStr.h -------------------------------------------------------------------------------- /src/PNGDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGDecoder.cpp -------------------------------------------------------------------------------- /src/PNGDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGDecoder.h -------------------------------------------------------------------------------- /src/PNGImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGImage.cpp -------------------------------------------------------------------------------- /src/PNGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGImage.h -------------------------------------------------------------------------------- /src/PNGReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGReader.cpp -------------------------------------------------------------------------------- /src/PNGReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PNGReader.h -------------------------------------------------------------------------------- /src/PSDDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PSDDecoder.cpp -------------------------------------------------------------------------------- /src/PSDDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PSDDecoder.h -------------------------------------------------------------------------------- /src/PSDReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PSDReader.cpp -------------------------------------------------------------------------------- /src/PSDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PSDReader.h -------------------------------------------------------------------------------- /src/PagerCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PagerCtrl.cpp -------------------------------------------------------------------------------- /src/PagerCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PagerCtrl.h -------------------------------------------------------------------------------- /src/Pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Pane.cpp -------------------------------------------------------------------------------- /src/Pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Pane.h -------------------------------------------------------------------------------- /src/ParseRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ParseRange.cpp -------------------------------------------------------------------------------- /src/ParseRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ParseRange.h -------------------------------------------------------------------------------- /src/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Path.cpp -------------------------------------------------------------------------------- /src/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Path.h -------------------------------------------------------------------------------- /src/PathEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PathEdit.cpp -------------------------------------------------------------------------------- /src/PathEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PathEdit.h -------------------------------------------------------------------------------- /src/PhotoAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoAttr.cpp -------------------------------------------------------------------------------- /src/PhotoAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoAttr.h -------------------------------------------------------------------------------- /src/PhotoAttrAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoAttrAccess.h -------------------------------------------------------------------------------- /src/PhotoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoCache.cpp -------------------------------------------------------------------------------- /src/PhotoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoCache.h -------------------------------------------------------------------------------- /src/PhotoCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoCollection.h -------------------------------------------------------------------------------- /src/PhotoCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoCtrl.cpp -------------------------------------------------------------------------------- /src/PhotoCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoCtrl.h -------------------------------------------------------------------------------- /src/PhotoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoDecoder.h -------------------------------------------------------------------------------- /src/PhotoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoFactory.cpp -------------------------------------------------------------------------------- /src/PhotoFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoFactory.h -------------------------------------------------------------------------------- /src/PhotoInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfo.cpp -------------------------------------------------------------------------------- /src/PhotoInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfo.h -------------------------------------------------------------------------------- /src/PhotoInfoARW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoARW.cpp -------------------------------------------------------------------------------- /src/PhotoInfoARW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoARW.h -------------------------------------------------------------------------------- /src/PhotoInfoBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoBMP.cpp -------------------------------------------------------------------------------- /src/PhotoInfoBMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoBMP.h -------------------------------------------------------------------------------- /src/PhotoInfoCR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoCR2.cpp -------------------------------------------------------------------------------- /src/PhotoInfoCR2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoCR2.h -------------------------------------------------------------------------------- /src/PhotoInfoCRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoCRW.cpp -------------------------------------------------------------------------------- /src/PhotoInfoCRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoCRW.h -------------------------------------------------------------------------------- /src/PhotoInfoDNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoDNG.cpp -------------------------------------------------------------------------------- /src/PhotoInfoDNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoDNG.h -------------------------------------------------------------------------------- /src/PhotoInfoGIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoGIF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoGIF.h -------------------------------------------------------------------------------- /src/PhotoInfoJPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoJPEG.cpp -------------------------------------------------------------------------------- /src/PhotoInfoJPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoJPEG.h -------------------------------------------------------------------------------- /src/PhotoInfoNEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoNEF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoNEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoNEF.h -------------------------------------------------------------------------------- /src/PhotoInfoORF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoORF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoORF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoORF.h -------------------------------------------------------------------------------- /src/PhotoInfoPEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPEF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoPEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPEF.h -------------------------------------------------------------------------------- /src/PhotoInfoPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPNG.cpp -------------------------------------------------------------------------------- /src/PhotoInfoPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPNG.h -------------------------------------------------------------------------------- /src/PhotoInfoPSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPSD.cpp -------------------------------------------------------------------------------- /src/PhotoInfoPSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPSD.h -------------------------------------------------------------------------------- /src/PhotoInfoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoPtr.h -------------------------------------------------------------------------------- /src/PhotoInfoRAF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoRAF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoRAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoRAF.h -------------------------------------------------------------------------------- /src/PhotoInfoRW2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoRW2.cpp -------------------------------------------------------------------------------- /src/PhotoInfoRW2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoRW2.h -------------------------------------------------------------------------------- /src/PhotoInfoSRW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoSRW.cpp -------------------------------------------------------------------------------- /src/PhotoInfoSRW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoSRW.h -------------------------------------------------------------------------------- /src/PhotoInfoTIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoTIFF.cpp -------------------------------------------------------------------------------- /src/PhotoInfoTIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoTIFF.h -------------------------------------------------------------------------------- /src/PhotoInfoX3F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoX3F.cpp -------------------------------------------------------------------------------- /src/PhotoInfoX3F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfoX3F.h -------------------------------------------------------------------------------- /src/PhotoInfo_XMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfo_XMP.cpp -------------------------------------------------------------------------------- /src/PhotoInfo_XMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoInfo_XMP.h -------------------------------------------------------------------------------- /src/PhotoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoList.cpp -------------------------------------------------------------------------------- /src/PhotoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoList.h -------------------------------------------------------------------------------- /src/PhotoQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoQueue.cpp -------------------------------------------------------------------------------- /src/PhotoQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoQueue.h -------------------------------------------------------------------------------- /src/PhotoTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoTags.cpp -------------------------------------------------------------------------------- /src/PhotoTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoTags.h -------------------------------------------------------------------------------- /src/PhotoVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoVector.cpp -------------------------------------------------------------------------------- /src/PhotoVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PhotoVector.h -------------------------------------------------------------------------------- /src/Pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Pixels.h -------------------------------------------------------------------------------- /src/PopupMenuCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PopupMenuCtrl.cpp -------------------------------------------------------------------------------- /src/PopupMenuCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PopupMenuCtrl.h -------------------------------------------------------------------------------- /src/PreviewBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewBar.cpp -------------------------------------------------------------------------------- /src/PreviewBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewBar.h -------------------------------------------------------------------------------- /src/PreviewCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewCtrl.cpp -------------------------------------------------------------------------------- /src/PreviewCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewCtrl.h -------------------------------------------------------------------------------- /src/PreviewPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewPane.cpp -------------------------------------------------------------------------------- /src/PreviewPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PreviewPane.h -------------------------------------------------------------------------------- /src/PrintDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintDlg.cpp -------------------------------------------------------------------------------- /src/PrintDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintDlg.h -------------------------------------------------------------------------------- /src/PrintEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintEngine.cpp -------------------------------------------------------------------------------- /src/PrintEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintEngine.h -------------------------------------------------------------------------------- /src/PrintPhotos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintPhotos.cpp -------------------------------------------------------------------------------- /src/PrintPhotos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintPhotos.h -------------------------------------------------------------------------------- /src/PrintPreviewWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintPreviewWnd.h -------------------------------------------------------------------------------- /src/PrintThumbnails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrintThumbnails.h -------------------------------------------------------------------------------- /src/PrinterList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrinterList.cpp -------------------------------------------------------------------------------- /src/PrinterList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrinterList.h -------------------------------------------------------------------------------- /src/PrnPageRangeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrnPageRangeDlg.h -------------------------------------------------------------------------------- /src/PrnUserParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrnUserParams.cpp -------------------------------------------------------------------------------- /src/PrnUserParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PrnUserParams.h -------------------------------------------------------------------------------- /src/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Profile.cpp -------------------------------------------------------------------------------- /src/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Profile.h -------------------------------------------------------------------------------- /src/ProfileVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ProfileVector.h -------------------------------------------------------------------------------- /src/PropField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropField.cpp -------------------------------------------------------------------------------- /src/PropField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropField.h -------------------------------------------------------------------------------- /src/PropertyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyDlg.cpp -------------------------------------------------------------------------------- /src/PropertyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyDlg.h -------------------------------------------------------------------------------- /src/PropertyField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyField.cpp -------------------------------------------------------------------------------- /src/PropertyField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyField.h -------------------------------------------------------------------------------- /src/PropertyPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyPane.cpp -------------------------------------------------------------------------------- /src/PropertyPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/PropertyPane.h -------------------------------------------------------------------------------- /src/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Queue.h -------------------------------------------------------------------------------- /src/RDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RDialog.cpp -------------------------------------------------------------------------------- /src/RDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RDialog.h -------------------------------------------------------------------------------- /src/RGB_to_BGR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RGB_to_BGR.cpp -------------------------------------------------------------------------------- /src/RGB_to_BGR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RGB_to_BGR.h -------------------------------------------------------------------------------- /src/RMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RMenu.cpp -------------------------------------------------------------------------------- /src/RMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RMenu.h -------------------------------------------------------------------------------- /src/RPropertyPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RPropertyPage.cpp -------------------------------------------------------------------------------- /src/RPropertyPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RPropertyPage.h -------------------------------------------------------------------------------- /src/RString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RString.cpp -------------------------------------------------------------------------------- /src/RString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RString.h -------------------------------------------------------------------------------- /src/RadioListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RadioListBox.cpp -------------------------------------------------------------------------------- /src/RadioListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RadioListBox.h -------------------------------------------------------------------------------- /src/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Rational.cpp -------------------------------------------------------------------------------- /src/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Rational.h -------------------------------------------------------------------------------- /src/ReadMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ReadMarker.h -------------------------------------------------------------------------------- /src/RecentPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RecentPaths.cpp -------------------------------------------------------------------------------- /src/RecentPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RecentPaths.h -------------------------------------------------------------------------------- /src/RecentStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RecentStrings.cpp -------------------------------------------------------------------------------- /src/RecentStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RecentStrings.h -------------------------------------------------------------------------------- /src/ReloadJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ReloadJob.cpp -------------------------------------------------------------------------------- /src/ReloadJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ReloadJob.h -------------------------------------------------------------------------------- /src/RenamePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RenamePage.h -------------------------------------------------------------------------------- /src/RenamePhoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RenamePhoto.cpp -------------------------------------------------------------------------------- /src/RenameRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RenameRule.h -------------------------------------------------------------------------------- /src/RenameToolDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RenameToolDlg.cpp -------------------------------------------------------------------------------- /src/RenameToolDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RenameToolDlg.h -------------------------------------------------------------------------------- /src/ResizeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ResizeDlg.cpp -------------------------------------------------------------------------------- /src/ResizeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ResizeDlg.h -------------------------------------------------------------------------------- /src/ResizeWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ResizeWnd.cpp -------------------------------------------------------------------------------- /src/ResizeWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ResizeWnd.h -------------------------------------------------------------------------------- /src/ResizingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ResizingThread.h -------------------------------------------------------------------------------- /src/RotateDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RotateDlg.cpp -------------------------------------------------------------------------------- /src/RotateDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/RotateDlg.h -------------------------------------------------------------------------------- /src/SEException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SEException.cpp -------------------------------------------------------------------------------- /src/SEException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SEException.h -------------------------------------------------------------------------------- /src/SamplePhoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SamplePhoto.cpp -------------------------------------------------------------------------------- /src/SamplePhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SamplePhoto.h -------------------------------------------------------------------------------- /src/ScintillaCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ScintillaCtrl.cpp -------------------------------------------------------------------------------- /src/ScintillaCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ScintillaCtrl.h -------------------------------------------------------------------------------- /src/ScriptEditCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ScriptEditCtrl.h -------------------------------------------------------------------------------- /src/SendEMailDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SendEMailDlg.cpp -------------------------------------------------------------------------------- /src/SendEMailDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SendEMailDlg.h -------------------------------------------------------------------------------- /src/SeparatorWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SeparatorWnd.cpp -------------------------------------------------------------------------------- /src/SeparatorWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SeparatorWnd.h -------------------------------------------------------------------------------- /src/SetCacheSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SetCacheSize.cpp -------------------------------------------------------------------------------- /src/SetWallpaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SetWallpaper.cpp -------------------------------------------------------------------------------- /src/SetWindowSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SetWindowSize.cpp -------------------------------------------------------------------------------- /src/SetWindowSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SetWindowSize.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/ShellFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ShellFolder.cpp -------------------------------------------------------------------------------- /src/ShellFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ShellFolder.h -------------------------------------------------------------------------------- /src/ShellItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ShellItem.cpp -------------------------------------------------------------------------------- /src/ShellItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ShellItem.h -------------------------------------------------------------------------------- /src/Shutter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Shutter.rc -------------------------------------------------------------------------------- /src/Shutter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Shutter.vcxproj -------------------------------------------------------------------------------- /src/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Signals.h -------------------------------------------------------------------------------- /src/SlideShowOptDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SlideShowOptDlg.h -------------------------------------------------------------------------------- /src/SliderCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SliderCtrlEx.cpp -------------------------------------------------------------------------------- /src/SliderCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SliderCtrlEx.h -------------------------------------------------------------------------------- /src/SliderEditForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SliderEditForm.h -------------------------------------------------------------------------------- /src/SliderToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SliderToolBar.h -------------------------------------------------------------------------------- /src/SmoothScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SmoothScroll.cpp -------------------------------------------------------------------------------- /src/SmoothScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SmoothScroll.h -------------------------------------------------------------------------------- /src/SortingOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SortingOptions.h -------------------------------------------------------------------------------- /src/SpecificData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SpecificData.cpp -------------------------------------------------------------------------------- /src/SpecificData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/SpecificData.h -------------------------------------------------------------------------------- /src/StackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StackInfo.h -------------------------------------------------------------------------------- /src/StarCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StarCtrl.cpp -------------------------------------------------------------------------------- /src/StarCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StarCtrl.h -------------------------------------------------------------------------------- /src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StdAfx.cpp -------------------------------------------------------------------------------- /src/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StdAfx.h -------------------------------------------------------------------------------- /src/StringFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StringFormat.cpp -------------------------------------------------------------------------------- /src/StringFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StringFormat.h -------------------------------------------------------------------------------- /src/StringFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/StringFormatter.h -------------------------------------------------------------------------------- /src/Subclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Subclass.cpp -------------------------------------------------------------------------------- /src/Subclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Subclass.h -------------------------------------------------------------------------------- /src/TIFFDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TIFFDecoder.cpp -------------------------------------------------------------------------------- /src/TIFFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TIFFDecoder.h -------------------------------------------------------------------------------- /src/TIFFReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TIFFReader.cpp -------------------------------------------------------------------------------- /src/TIFFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TIFFReader.h -------------------------------------------------------------------------------- /src/TODO list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TODO list.txt -------------------------------------------------------------------------------- /src/TagBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagBarView.cpp -------------------------------------------------------------------------------- /src/TagBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagBarView.h -------------------------------------------------------------------------------- /src/TaggedValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaggedValues.cpp -------------------------------------------------------------------------------- /src/TaggedValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaggedValues.h -------------------------------------------------------------------------------- /src/TaggingPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaggingPopup.cpp -------------------------------------------------------------------------------- /src/TaggingPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaggingPopup.h -------------------------------------------------------------------------------- /src/TagsBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsBar.cpp -------------------------------------------------------------------------------- /src/TagsBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsBar.h -------------------------------------------------------------------------------- /src/TagsBarCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsBarCommon.cpp -------------------------------------------------------------------------------- /src/TagsBarCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsBarCommon.h -------------------------------------------------------------------------------- /src/TagsCommonCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsCommonCode.h -------------------------------------------------------------------------------- /src/TagsManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsManageDlg.cpp -------------------------------------------------------------------------------- /src/TagsManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TagsManageDlg.h -------------------------------------------------------------------------------- /src/TaskToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaskToolbar.cpp -------------------------------------------------------------------------------- /src/TaskToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TaskToolbar.h -------------------------------------------------------------------------------- /src/Tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Tasks.cpp -------------------------------------------------------------------------------- /src/Tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Tasks.h -------------------------------------------------------------------------------- /src/ThumbnailSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ThumbnailSize.h -------------------------------------------------------------------------------- /src/TimeLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TimeLimit.h -------------------------------------------------------------------------------- /src/ToolBarPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolBarPopup.cpp -------------------------------------------------------------------------------- /src/ToolBarPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolBarPopup.h -------------------------------------------------------------------------------- /src/ToolBarWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolBarWnd.cpp -------------------------------------------------------------------------------- /src/ToolBarWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolBarWnd.h -------------------------------------------------------------------------------- /src/ToolDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolDlg.cpp -------------------------------------------------------------------------------- /src/ToolDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ToolDlg.h -------------------------------------------------------------------------------- /src/TransferDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferDlg.cpp -------------------------------------------------------------------------------- /src/TransferDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferDlg.h -------------------------------------------------------------------------------- /src/TransferExDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferExDlg.cpp -------------------------------------------------------------------------------- /src/TransferExDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferExDlg.h -------------------------------------------------------------------------------- /src/TransferFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferFiles.cpp -------------------------------------------------------------------------------- /src/TransferFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransferFiles.h -------------------------------------------------------------------------------- /src/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Transform.cpp -------------------------------------------------------------------------------- /src/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/Transform.h -------------------------------------------------------------------------------- /src/TransparentBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TransparentBar.h -------------------------------------------------------------------------------- /src/TwoFilePanesWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/TwoFilePanesWnd.h -------------------------------------------------------------------------------- /src/UIElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/UIElements.cpp -------------------------------------------------------------------------------- /src/UIElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/UIElements.h -------------------------------------------------------------------------------- /src/UniqueLetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/UniqueLetter.cpp -------------------------------------------------------------------------------- /src/UniqueLetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/UniqueLetter.h -------------------------------------------------------------------------------- /src/VectPhotoInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/VectPhotoInfo.h -------------------------------------------------------------------------------- /src/ViewPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewPane.cpp -------------------------------------------------------------------------------- /src/ViewPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewPane.h -------------------------------------------------------------------------------- /src/ViewerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewerDlg.cpp -------------------------------------------------------------------------------- /src/ViewerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewerDlg.h -------------------------------------------------------------------------------- /src/ViewerTagPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewerTagPane.cpp -------------------------------------------------------------------------------- /src/ViewerTagPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/ViewerTagPane.h -------------------------------------------------------------------------------- /src/WhistlerLook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/WhistlerLook.cpp -------------------------------------------------------------------------------- /src/WhistlerLook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/WhistlerLook.h -------------------------------------------------------------------------------- /src/WndTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/WndTimer.cpp -------------------------------------------------------------------------------- /src/WndTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/WndTimer.h -------------------------------------------------------------------------------- /src/XMPAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/XMPAccess.cpp -------------------------------------------------------------------------------- /src/XMPAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/XMPAccess.h -------------------------------------------------------------------------------- /src/XmpData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/XmpData.cpp -------------------------------------------------------------------------------- /src/XmpData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/XmpData.h -------------------------------------------------------------------------------- /src/XmpInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/XmpInclude.h -------------------------------------------------------------------------------- /src/YCbCr_to_BGR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/YCbCr_to_BGR.cpp -------------------------------------------------------------------------------- /src/YCbCr_to_BGR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/YCbCr_to_BGR.h -------------------------------------------------------------------------------- /src/YellowText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/YellowText.cpp -------------------------------------------------------------------------------- /src/YellowText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/YellowText.h -------------------------------------------------------------------------------- /src/adaptCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/adaptCString.h -------------------------------------------------------------------------------- /src/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/adapters.h -------------------------------------------------------------------------------- /src/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/clamp.h -------------------------------------------------------------------------------- /src/intrusive_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/intrusive_ptr.h -------------------------------------------------------------------------------- /src/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/jpeglib.h -------------------------------------------------------------------------------- /src/jpegtran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/jpegtran.cpp -------------------------------------------------------------------------------- /src/res/Envelope.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/Envelope.bmp -------------------------------------------------------------------------------- /src/res/Shutter.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/Shutter.rc2 -------------------------------------------------------------------------------- /src/res/SlideShow.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/SlideShow.app -------------------------------------------------------------------------------- /src/res/Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/Stars.png -------------------------------------------------------------------------------- /src/res/TaskTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/TaskTools.png -------------------------------------------------------------------------------- /src/res/Triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/Triangles.png -------------------------------------------------------------------------------- /src/res/ZoomBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/ZoomBar.png -------------------------------------------------------------------------------- /src/res/arrow_up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/arrow_up.bmp -------------------------------------------------------------------------------- /src/res/ascending.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/ascending.bmp -------------------------------------------------------------------------------- /src/res/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/cancel.png -------------------------------------------------------------------------------- /src/res/character.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/character.bmp -------------------------------------------------------------------------------- /src/res/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/chevron.png -------------------------------------------------------------------------------- /src/res/close_tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/close_tb.png -------------------------------------------------------------------------------- /src/res/closebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/closebar.png -------------------------------------------------------------------------------- /src/res/copy-anim.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/copy-anim.avi -------------------------------------------------------------------------------- /src/res/cross.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/cross.cur -------------------------------------------------------------------------------- /src/res/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/empty.bmp -------------------------------------------------------------------------------- /src/res/empty2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/empty2.bmp -------------------------------------------------------------------------------- /src/res/empty_bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/empty_bmp.bmp -------------------------------------------------------------------------------- /src/res/enter_tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/enter_tb.png -------------------------------------------------------------------------------- /src/res/eye_drop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/eye_drop.bmp -------------------------------------------------------------------------------- /src/res/eye_drop.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/eye_drop.cur -------------------------------------------------------------------------------- /src/res/find_tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/find_tb.png -------------------------------------------------------------------------------- /src/res/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/funnel.png -------------------------------------------------------------------------------- /src/res/grip.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/grip.bmp -------------------------------------------------------------------------------- /src/res/icm_icons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/icm_icons.bmp -------------------------------------------------------------------------------- /src/res/img_error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/img_error.bmp -------------------------------------------------------------------------------- /src/res/layouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/layouts.png -------------------------------------------------------------------------------- /src/res/link.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/link.cur -------------------------------------------------------------------------------- /src/res/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/manifest.txt -------------------------------------------------------------------------------- /src/res/marked.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/marked.bmp -------------------------------------------------------------------------------- /src/res/menu_btn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/menu_btn.bmp -------------------------------------------------------------------------------- /src/res/monitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/monitor.ico -------------------------------------------------------------------------------- /src/res/move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/move.cur -------------------------------------------------------------------------------- /src/res/move_pane.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/move_pane.cur -------------------------------------------------------------------------------- /src/res/noExif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/noExif.png -------------------------------------------------------------------------------- /src/res/nodrop.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/nodrop.cur -------------------------------------------------------------------------------- /src/res/pattern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/pattern.bmp -------------------------------------------------------------------------------- /src/res/photo_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_1.bmp -------------------------------------------------------------------------------- /src/res/photo_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_2.bmp -------------------------------------------------------------------------------- /src/res/photo_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_3.bmp -------------------------------------------------------------------------------- /src/res/photo_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_4.bmp -------------------------------------------------------------------------------- /src/res/photo_5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_5.bmp -------------------------------------------------------------------------------- /src/res/photo_6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_6.bmp -------------------------------------------------------------------------------- /src/res/photo_7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_7.bmp -------------------------------------------------------------------------------- /src/res/photo_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photo_8.bmp -------------------------------------------------------------------------------- /src/res/photos_tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/photos_tb.png -------------------------------------------------------------------------------- /src/res/pointing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/pointing.cur -------------------------------------------------------------------------------- /src/res/progress.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/progress.avi -------------------------------------------------------------------------------- /src/res/rainbow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/rainbow.ico -------------------------------------------------------------------------------- /src/res/scroll.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/scroll.cur -------------------------------------------------------------------------------- /src/res/task_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/task_bar.png -------------------------------------------------------------------------------- /src/res/tb_edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/tb_edit.bmp -------------------------------------------------------------------------------- /src/res/templates.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/templates.bmp -------------------------------------------------------------------------------- /src/res/trashcan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/trashcan.png -------------------------------------------------------------------------------- /src/res/viewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/viewer.ico -------------------------------------------------------------------------------- /src/res/warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/res/warning.ico -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/scan.cpp -------------------------------------------------------------------------------- /src/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/scan.h -------------------------------------------------------------------------------- /src/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/set.h -------------------------------------------------------------------------------- /src/transupp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/transupp.cpp -------------------------------------------------------------------------------- /src/w2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/src/w2a.h -------------------------------------------------------------------------------- /switchgit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream7180/Shutter-cn/HEAD/switchgit.bat --------------------------------------------------------------------------------