├── QQPCMgr.sln ├── QQPCMgr ├── DlgSkin.cpp ├── DlgSkin.h ├── ID.h ├── QQPCMgr.cpp ├── QQPCMgr.h ├── QQPCMgr.rc ├── QQPCMgr.vcproj ├── QQPCMgr.vcproj.owner-PC.owner.user ├── QQPCMgrDlg.cpp ├── QQPCMgrDlg.h ├── ReadMe.txt ├── UI │ ├── Base │ │ ├── ControlBase.cpp │ │ ├── ControlBase.h │ │ ├── GlobalFunction.cpp │ │ ├── GlobalFunction.h │ │ ├── MessageInterface.cpp │ │ └── MessageInterface.h │ ├── Button │ │ ├── ButtonEx.cpp │ │ ├── ButtonEx.h │ │ ├── CheckButton.cpp │ │ ├── CheckButton.h │ │ ├── HideButton.cpp │ │ ├── HideButton.h │ │ ├── ImageButton.cpp │ │ ├── ImageButton.h │ │ ├── LinkButton.cpp │ │ ├── LinkButton.h │ │ ├── TextButton.cpp │ │ └── TextButton.h │ ├── Dialog │ │ ├── DlgBase.cpp │ │ ├── DlgBase.h │ │ ├── DlgPopup.cpp │ │ └── DlgPopup.h │ ├── IceDUI.h │ ├── List │ │ ├── ListEx.cpp │ │ └── ListEx.h │ ├── Menu │ │ ├── MenuEx.cpp │ │ ├── MenuEx.h │ │ ├── MenuItem.cpp │ │ └── MenuItem.h │ ├── Other │ │ ├── Area.cpp │ │ ├── Area.h │ │ ├── Frame.cpp │ │ ├── Frame.h │ │ ├── ImageString.cpp │ │ ├── ImageString.h │ │ ├── Line.cpp │ │ ├── Line.h │ │ ├── Runing.cpp │ │ ├── Runing.h │ │ ├── Scroll.cpp │ │ ├── Scroll.h │ │ ├── SelectBox.cpp │ │ └── SelectBox.h │ ├── Picture │ │ ├── Picture.cpp │ │ └── Picture.h │ ├── Progress │ │ ├── Progress.cpp │ │ └── Progress.h │ ├── Tab │ │ ├── Tab.cpp │ │ └── Tab.h │ ├── Text │ │ ├── StaticText.cpp │ │ └── StaticText.h │ └── Timer │ │ ├── Timer.cpp │ │ └── Timer.h ├── res │ ├── BT_ALL_DETECT.png │ ├── BT_BOX.png │ ├── BT_CANCEL.png │ ├── BT_CLOSE.png │ ├── BT_DETECT_ONECLICK.png │ ├── BT_FEEDBACK.png │ ├── BT_MENU.png │ ├── BT_MIN.png │ ├── BT_SCROLL_DOWN.png │ ├── BT_SCROLL_UP.png │ ├── BT_SKIN.png │ ├── BT_SKIN_COLOR.png │ ├── BT_SKIN_CUSTOMIZE.png │ ├── BT_SKIN_IMAGE.png │ ├── DangerNumber.png │ ├── HPScanStatus.png │ ├── HintNumber.png │ ├── LOGO.png │ ├── MENU_BBS.png │ ├── MENU_UPDATE.png │ ├── Progress.png │ ├── QQPCMgr.ico │ ├── QQPCMgr.rc2 │ ├── SCROLL_V.png │ ├── SKIN_PIC_0.png │ ├── SKIN_PIC_1.png │ ├── SKIN_PIC_2.png │ ├── SKIN_PIC_3.png │ ├── SKIN_PIC_4.png │ ├── SKIN_PIC_5.png │ ├── SKIN_PIC_6.png │ ├── SKIN_PIC_7.png │ ├── SKIN_PIC_8.png │ ├── SKIN_PIC_SMALL_0.png │ ├── SKIN_PIC_SMALL_1.png │ ├── SKIN_PIC_SMALL_2.png │ ├── SKIN_PIC_SMALL_3.png │ ├── SKIN_PIC_SMALL_4.png │ ├── SKIN_PIC_SMALL_5.png │ ├── SKIN_PIC_SMALL_6.png │ ├── SKIN_PIC_SMALL_7.png │ ├── SKIN_PIC_SMALL_8.png │ ├── SefaNumber.png │ ├── SkinBkg.png │ ├── SkinPushedBkg.png │ ├── Tab1.png │ ├── Tab2.png │ ├── Tab3.png │ ├── Tab4.png │ ├── Tab5.png │ ├── Tab6.png │ ├── Tab7.png │ ├── Tab_seperator.png │ ├── Virus.png │ ├── WebSit.png │ ├── Web_Danger.png │ ├── WhiteNumber.png │ ├── WindowsBack.png │ ├── menuex_back.png │ ├── progress_light.png │ └── running.png ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md └── ˵��.txt /QQPCMgr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr.sln -------------------------------------------------------------------------------- /QQPCMgr/DlgSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/DlgSkin.cpp -------------------------------------------------------------------------------- /QQPCMgr/DlgSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/DlgSkin.h -------------------------------------------------------------------------------- /QQPCMgr/ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/ID.h -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgr.cpp -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgr.h -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgr.rc -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgr.vcproj -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgr.vcproj.owner-PC.owner.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgr.vcproj.owner-PC.owner.user -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgrDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgrDlg.cpp -------------------------------------------------------------------------------- /QQPCMgr/QQPCMgrDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/QQPCMgrDlg.h -------------------------------------------------------------------------------- /QQPCMgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/ReadMe.txt -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/ControlBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/ControlBase.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/ControlBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/ControlBase.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/GlobalFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/GlobalFunction.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/GlobalFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/GlobalFunction.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/MessageInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/MessageInterface.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Base/MessageInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Base/MessageInterface.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/ButtonEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/ButtonEx.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/ButtonEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/ButtonEx.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/CheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/CheckButton.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/CheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/CheckButton.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/HideButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/HideButton.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/HideButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/HideButton.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/ImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/ImageButton.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/ImageButton.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/LinkButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/LinkButton.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/LinkButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/LinkButton.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/TextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/TextButton.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Button/TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Button/TextButton.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Dialog/DlgBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Dialog/DlgBase.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Dialog/DlgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Dialog/DlgBase.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Dialog/DlgPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Dialog/DlgPopup.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Dialog/DlgPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Dialog/DlgPopup.h -------------------------------------------------------------------------------- /QQPCMgr/UI/IceDUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/IceDUI.h -------------------------------------------------------------------------------- /QQPCMgr/UI/List/ListEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/List/ListEx.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/List/ListEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/List/ListEx.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Menu/MenuEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Menu/MenuEx.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Menu/MenuEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Menu/MenuEx.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Menu/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Menu/MenuItem.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Menu/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Menu/MenuItem.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Area.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Area.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Frame.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Frame.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/ImageString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/ImageString.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/ImageString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/ImageString.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Line.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Line.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Runing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Runing.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Runing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Runing.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Scroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Scroll.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/Scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/Scroll.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/SelectBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/SelectBox.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Other/SelectBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Other/SelectBox.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Picture/Picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Picture/Picture.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Picture/Picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Picture/Picture.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Progress/Progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Progress/Progress.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Progress/Progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Progress/Progress.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Tab/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Tab/Tab.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Tab/Tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Tab/Tab.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Text/StaticText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Text/StaticText.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Text/StaticText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Text/StaticText.h -------------------------------------------------------------------------------- /QQPCMgr/UI/Timer/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Timer/Timer.cpp -------------------------------------------------------------------------------- /QQPCMgr/UI/Timer/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/UI/Timer/Timer.h -------------------------------------------------------------------------------- /QQPCMgr/res/BT_ALL_DETECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_ALL_DETECT.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_BOX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_BOX.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_CANCEL.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_CLOSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_CLOSE.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_DETECT_ONECLICK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_DETECT_ONECLICK.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_FEEDBACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_FEEDBACK.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_MENU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_MENU.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_MIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_MIN.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SCROLL_DOWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SCROLL_DOWN.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SCROLL_UP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SCROLL_UP.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SKIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SKIN.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SKIN_COLOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SKIN_COLOR.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SKIN_CUSTOMIZE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SKIN_CUSTOMIZE.png -------------------------------------------------------------------------------- /QQPCMgr/res/BT_SKIN_IMAGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/BT_SKIN_IMAGE.png -------------------------------------------------------------------------------- /QQPCMgr/res/DangerNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/DangerNumber.png -------------------------------------------------------------------------------- /QQPCMgr/res/HPScanStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/HPScanStatus.png -------------------------------------------------------------------------------- /QQPCMgr/res/HintNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/HintNumber.png -------------------------------------------------------------------------------- /QQPCMgr/res/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/LOGO.png -------------------------------------------------------------------------------- /QQPCMgr/res/MENU_BBS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/MENU_BBS.png -------------------------------------------------------------------------------- /QQPCMgr/res/MENU_UPDATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/MENU_UPDATE.png -------------------------------------------------------------------------------- /QQPCMgr/res/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Progress.png -------------------------------------------------------------------------------- /QQPCMgr/res/QQPCMgr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/QQPCMgr.ico -------------------------------------------------------------------------------- /QQPCMgr/res/QQPCMgr.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/QQPCMgr.rc2 -------------------------------------------------------------------------------- /QQPCMgr/res/SCROLL_V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SCROLL_V.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_0.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_1.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_2.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_3.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_4.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_5.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_6.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_7.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_8.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_0.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_1.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_2.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_3.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_4.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_5.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_6.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_7.png -------------------------------------------------------------------------------- /QQPCMgr/res/SKIN_PIC_SMALL_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SKIN_PIC_SMALL_8.png -------------------------------------------------------------------------------- /QQPCMgr/res/SefaNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SefaNumber.png -------------------------------------------------------------------------------- /QQPCMgr/res/SkinBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SkinBkg.png -------------------------------------------------------------------------------- /QQPCMgr/res/SkinPushedBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/SkinPushedBkg.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab1.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab2.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab3.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab4.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab5.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab6.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab7.png -------------------------------------------------------------------------------- /QQPCMgr/res/Tab_seperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Tab_seperator.png -------------------------------------------------------------------------------- /QQPCMgr/res/Virus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Virus.png -------------------------------------------------------------------------------- /QQPCMgr/res/WebSit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/WebSit.png -------------------------------------------------------------------------------- /QQPCMgr/res/Web_Danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/Web_Danger.png -------------------------------------------------------------------------------- /QQPCMgr/res/WhiteNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/WhiteNumber.png -------------------------------------------------------------------------------- /QQPCMgr/res/WindowsBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/WindowsBack.png -------------------------------------------------------------------------------- /QQPCMgr/res/menuex_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/menuex_back.png -------------------------------------------------------------------------------- /QQPCMgr/res/progress_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/progress_light.png -------------------------------------------------------------------------------- /QQPCMgr/res/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/res/running.png -------------------------------------------------------------------------------- /QQPCMgr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/resource.h -------------------------------------------------------------------------------- /QQPCMgr/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/stdafx.cpp -------------------------------------------------------------------------------- /QQPCMgr/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/stdafx.h -------------------------------------------------------------------------------- /QQPCMgr/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/QQPCMgr/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | QQPCMgr 2 | ======= 3 | 4 | 来源于网上,高仿qq管家 5 | -------------------------------------------------------------------------------- /˵��.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guomin/QQPCMgr/HEAD/˵��.txt --------------------------------------------------------------------------------