├── .gitignore ├── .gitmodules ├── Images └── Screenshot.png ├── LICENSE ├── README.md ├── Rectify11CPL ├── CControlPanelNavLink.cpp ├── CControlPanelNavLink.h ├── CControlPanelNavLinkCommand.h ├── CControlPanelNavLinks.cpp ├── CControlPanelNavLinks.h ├── CRectifyUtil.cpp ├── CRectifyUtil.h ├── ClassFactory.cpp ├── ClassFactory.h ├── ElementProvider.cpp ├── ElementProvider.h ├── ElevationManager.cpp ├── ElevationManager.h ├── FolderViewImpl.vcxproj.filters ├── Guid.h ├── IRectifyUtil.idl ├── IRectifyUtil_c.c ├── IRectifyUtil_h.h ├── IRectifyUtil_i.c ├── IRectifyUtil_p.c ├── IRectifyUtil_s.c ├── Rectify11CPL.def ├── Rectify11CPL.h ├── Rectify11CPL.rc ├── Rectify11CPL.vcxproj ├── Rectify11CPL.vcxproj.filters ├── RectifyMainPage.cpp ├── RectifyMainPage.h ├── RectifyMainPage.xml ├── dlldata.c ├── dllmain.cpp ├── dllmain.h ├── icon.ico ├── pages.xml ├── preview_dark.bmp ├── preview_light.bmp ├── proxy.c ├── resource.h ├── taskslist.xml ├── theme.cpp ├── theme.h └── undoc.h ├── logo.png └── rectify11cpl.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/.gitmodules -------------------------------------------------------------------------------- /Images/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Images/Screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/README.md -------------------------------------------------------------------------------- /Rectify11CPL/CControlPanelNavLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CControlPanelNavLink.cpp -------------------------------------------------------------------------------- /Rectify11CPL/CControlPanelNavLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CControlPanelNavLink.h -------------------------------------------------------------------------------- /Rectify11CPL/CControlPanelNavLinkCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CControlPanelNavLinkCommand.h -------------------------------------------------------------------------------- /Rectify11CPL/CControlPanelNavLinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CControlPanelNavLinks.cpp -------------------------------------------------------------------------------- /Rectify11CPL/CControlPanelNavLinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CControlPanelNavLinks.h -------------------------------------------------------------------------------- /Rectify11CPL/CRectifyUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CRectifyUtil.cpp -------------------------------------------------------------------------------- /Rectify11CPL/CRectifyUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/CRectifyUtil.h -------------------------------------------------------------------------------- /Rectify11CPL/ClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ClassFactory.cpp -------------------------------------------------------------------------------- /Rectify11CPL/ClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ClassFactory.h -------------------------------------------------------------------------------- /Rectify11CPL/ElementProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ElementProvider.cpp -------------------------------------------------------------------------------- /Rectify11CPL/ElementProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ElementProvider.h -------------------------------------------------------------------------------- /Rectify11CPL/ElevationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ElevationManager.cpp -------------------------------------------------------------------------------- /Rectify11CPL/ElevationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/ElevationManager.h -------------------------------------------------------------------------------- /Rectify11CPL/FolderViewImpl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/FolderViewImpl.vcxproj.filters -------------------------------------------------------------------------------- /Rectify11CPL/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Guid.h -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil.idl -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil_c.c -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil_h.h -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil_i.c -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil_p.c -------------------------------------------------------------------------------- /Rectify11CPL/IRectifyUtil_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/IRectifyUtil_s.c -------------------------------------------------------------------------------- /Rectify11CPL/Rectify11CPL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Rectify11CPL.def -------------------------------------------------------------------------------- /Rectify11CPL/Rectify11CPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Rectify11CPL.h -------------------------------------------------------------------------------- /Rectify11CPL/Rectify11CPL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Rectify11CPL.rc -------------------------------------------------------------------------------- /Rectify11CPL/Rectify11CPL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Rectify11CPL.vcxproj -------------------------------------------------------------------------------- /Rectify11CPL/Rectify11CPL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/Rectify11CPL.vcxproj.filters -------------------------------------------------------------------------------- /Rectify11CPL/RectifyMainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/RectifyMainPage.cpp -------------------------------------------------------------------------------- /Rectify11CPL/RectifyMainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/RectifyMainPage.h -------------------------------------------------------------------------------- /Rectify11CPL/RectifyMainPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/RectifyMainPage.xml -------------------------------------------------------------------------------- /Rectify11CPL/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/dlldata.c -------------------------------------------------------------------------------- /Rectify11CPL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/dllmain.cpp -------------------------------------------------------------------------------- /Rectify11CPL/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/dllmain.h -------------------------------------------------------------------------------- /Rectify11CPL/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/icon.ico -------------------------------------------------------------------------------- /Rectify11CPL/pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/pages.xml -------------------------------------------------------------------------------- /Rectify11CPL/preview_dark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/preview_dark.bmp -------------------------------------------------------------------------------- /Rectify11CPL/preview_light.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/preview_light.bmp -------------------------------------------------------------------------------- /Rectify11CPL/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/proxy.c -------------------------------------------------------------------------------- /Rectify11CPL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/resource.h -------------------------------------------------------------------------------- /Rectify11CPL/taskslist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/taskslist.xml -------------------------------------------------------------------------------- /Rectify11CPL/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/theme.cpp -------------------------------------------------------------------------------- /Rectify11CPL/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/theme.h -------------------------------------------------------------------------------- /Rectify11CPL/undoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/Rectify11CPL/undoc.h -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/logo.png -------------------------------------------------------------------------------- /rectify11cpl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rectify11/RectifyControlPanel2/HEAD/rectify11cpl.sln --------------------------------------------------------------------------------