diff --git a/ww.sln b/ww.sln new file mode 100644 index 0000000..a5688a0 --- /dev/null +++ b/ww.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33213.308 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ww", "ww\ww.vcxproj", "{E6900F61-D365-4FBD-A4A4-E0300B0FB30A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Debug|x64.ActiveCfg = Debug|x64 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Debug|x64.Build.0 = Debug|x64 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Debug|x86.ActiveCfg = Debug|Win32 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Debug|x86.Build.0 = Debug|Win32 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Release|x64.ActiveCfg = Release|x64 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Release|x64.Build.0 = Release|x64 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Release|x86.ActiveCfg = Release|Win32 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E583B17E-7F3A-410A-8EEF-E2091106CB95} + EndGlobalSection +EndGlobal diff --git a/ww/cpp.hint b/ww/cpp.hint new file mode 100644 index 0000000..4b88449 --- /dev/null +++ b/ww/cpp.hint @@ -0,0 +1,5 @@ +// 提示文件帮助 Visual Studio IDE 解释 Visual C++ 标识符, +// 如函数和宏的名称。 +// 有关详细信息,请参见 https://go.microsoft.com/fwlink/?linkid=865984 +#define NULL +#define NULL ((void *)0) diff --git a/ww/framework.h b/ww/framework.h new file mode 100644 index 0000000..5672fb5 --- /dev/null +++ b/ww/framework.h @@ -0,0 +1,49 @@ +#pragma once + +#ifndef VC_EXTRALEAN +#define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料 +#endif + +#include "targetver.h" + +#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的 + +// 关闭 MFC 的一些常见且经常可放心忽略的隐藏警告消息 +#define _AFX_ALL_WARNINGS + +#include // MFC 核心组件和标准组件 +#include // MFC 扩展 + + +#include // MFC 自动化类 + + + +#ifndef _AFX_NO_OLE_SUPPORT +#include // MFC 对 Internet Explorer 4 公共控件的支持 +#endif +#ifndef _AFX_NO_AFXCMN_SUPPORT +#include // MFC 对 Windows 公共控件的支持 +#endif // _AFX_NO_AFXCMN_SUPPORT + +#include // MFC 支持功能区和控制条 + + + + + + + + + +#ifdef _UNICODE +#if defined _M_IX86 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") +#elif defined _M_X64 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"") +#else +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") +#endif +#endif + + diff --git a/ww/pch.cpp b/ww/pch.cpp new file mode 100644 index 0000000..b6fb8f4 --- /dev/null +++ b/ww/pch.cpp @@ -0,0 +1,5 @@ +// pch.cpp: 与预编译标头对应的源文件 + +#include "pch.h" + +// 当使用预编译的头时,需要使用此源文件,编译才能成功。 diff --git a/ww/pch.h b/ww/pch.h new file mode 100644 index 0000000..9660927 --- /dev/null +++ b/ww/pch.h @@ -0,0 +1,13 @@ +// pch.h: 这是预编译标头文件。 +// 下方列出的文件仅编译一次,提高了将来生成的生成性能。 +// 这还将影响 IntelliSense 性能,包括代码完成和许多代码浏览功能。 +// 但是,如果此处列出的文件中的任何一个在生成之间有更新,它们全部都将被重新编译。 +// 请勿在此处添加要频繁更新的文件,这将使得性能优势无效。 + +#ifndef PCH_H +#define PCH_H + +// 添加要在此处预编译的标头 +#include "framework.h" + +#endif //PCH_H diff --git a/ww/res/ww.ico b/ww/res/ww.ico new file mode 100644 index 0000000..d56fbcd Binary files /dev/null and b/ww/res/ww.ico differ diff --git a/ww/res/ww.rc2 b/ww/res/ww.rc2 new file mode 100644 index 0000000..cb3ea51 Binary files /dev/null and b/ww/res/ww.rc2 differ diff --git a/ww/resource.h b/ww/resource.h new file mode 100644 index 0000000..7850525 --- /dev/null +++ b/ww/resource.h @@ -0,0 +1,33 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ 生成的包含文件。 +// 供 ww.rc 使用 +// +#define IDM_ABOUTBOX 0x0010 +#define IDD_ABOUTBOX 100 +#define IDS_ABOUTBOX 101 +#define IDD_WW_DIALOG 102 +#define IDR_MAINFRAME 128 +#define ID_POWERBOOT 1000 +#define IDC_BUTTON2 1001 +#define IDC_BUTTON1 1002 +#define IDC_EDIT1 1003 +#define IDC_EDIT2 1004 +#define IDC_BUTTON3 1005 +#define IDC_BUTTON4 1006 +#define IDC_BUTTON5 1007 +#define IDC_BUTTON6 1008 +#define IDC_BUTTON9 1011 +#define IDC_BUTTON10 1012 +#define IDC_BUTTON7 1013 +#define IDC_BUTTON11 1015 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 131 +#define _APS_NEXT_COMMAND_VALUE 32771 +#define _APS_NEXT_CONTROL_VALUE 1016 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/ww/targetver.h b/ww/targetver.h new file mode 100644 index 0000000..79934a3 --- /dev/null +++ b/ww/targetver.h @@ -0,0 +1,8 @@ +#pragma once + +// 包括 SDKDDKVer.h 将定义可用的最高版本的 Windows 平台。 + +//如果要为以前的 Windows 平台生成应用程序,请包括 WinSDKVer.h,并 +// 将 _WIN32_WINNT 宏设置为要支持的平台,然后再包括 SDKDDKVer.h。 + +#include diff --git a/ww/ww.cpp b/ww/ww.cpp new file mode 100644 index 0000000..9bb61eb --- /dev/null +++ b/ww/ww.cpp @@ -0,0 +1,107 @@ + +// ww.cpp: 定义应用程序的类行为。 +// + +#include "pch.h" +#include "framework.h" +#include "ww.h" +#include "wwDlg.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#endif + + +// CwwApp + +BEGIN_MESSAGE_MAP(CwwApp, CWinApp) + ON_COMMAND(ID_HELP, &CWinApp::OnHelp) +END_MESSAGE_MAP() + + +// CwwApp 构造 + +CwwApp::CwwApp() +{ + // 支持重新启动管理器 + m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART; + + // TODO: 在此处添加构造代码, + // 将所有重要的初始化放置在 InitInstance 中 +} + + +// 唯一的 CwwApp 对象 + +CwwApp theApp; + + +// CwwApp 初始化 + +BOOL CwwApp::InitInstance() +{ + // 如果一个运行在 Windows XP 上的应用程序清单指定要 + // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式, + //则需要 InitCommonControlsEx()。 否则,将无法创建窗口。 + INITCOMMONCONTROLSEX InitCtrls; + InitCtrls.dwSize = sizeof(InitCtrls); + // 将它设置为包括所有要在应用程序中使用的 + // 公共控件类。 + InitCtrls.dwICC = ICC_WIN95_CLASSES; + InitCommonControlsEx(&InitCtrls); + + CWinApp::InitInstance(); + + + AfxEnableControlContainer(); + + // 创建 shell 管理器,以防对话框包含 + // 任何 shell 树视图控件或 shell 列表视图控件。 + CShellManager *pShellManager = new CShellManager; + + // 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题 + CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows)); + + // 标准初始化 + // 如果未使用这些功能并希望减小 + // 最终可执行文件的大小,则应移除下列 + // 不需要的特定初始化例程 + // 更改用于存储设置的注册表项 + // TODO: 应适当修改该字符串, + // 例如修改为公司或组织名 + SetRegistryKey(_T("应用程序向导生成的本地应用程序")); + + CwwDlg dlg; + m_pMainWnd = &dlg; + INT_PTR nResponse = dlg.DoModal(); + if (nResponse == IDOK) + { + // TODO: 在此放置处理何时用 + // “确定”来关闭对话框的代码 + } + else if (nResponse == IDCANCEL) + { + // TODO: 在此放置处理何时用 + // “取消”来关闭对话框的代码 + } + else if (nResponse == -1) + { + TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n"); + TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n"); + } + + // 删除上面创建的 shell 管理器。 + if (pShellManager != nullptr) + { + delete pShellManager; + } + +#if !defined(_AFXDLL) && !defined(_AFX_NO_MFC_CONTROLS_IN_DIALOGS) + ControlBarCleanUp(); +#endif + + // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序, + // 而不是启动应用程序的消息泵。 + return FALSE; +} + diff --git a/ww/ww.h b/ww/ww.h new file mode 100644 index 0000000..ca1eed5 --- /dev/null +++ b/ww/ww.h @@ -0,0 +1,32 @@ + +// ww.h: PROJECT_NAME 应用程序的主头文件 +// + +#pragma once + +#ifndef __AFXWIN_H__ + #error "在包含此文件之前包含 'pch.h' 以生成 PCH" +#endif + +#include "resource.h" // 主符号 + + +// CwwApp: +// 有关此类的实现,请参阅 ww.cpp +// + +class CwwApp : public CWinApp +{ +public: + CwwApp(); + +// 重写 +public: + virtual BOOL InitInstance(); + +// 实现 + + DECLARE_MESSAGE_MAP() +}; + +extern CwwApp theApp; diff --git a/ww/ww.rc b/ww/ww.rc new file mode 100644 index 0000000..3fd5219 Binary files /dev/null and b/ww/ww.rc differ diff --git a/ww/ww.vcxproj b/ww/ww.vcxproj new file mode 100644 index 0000000..6961415 --- /dev/null +++ b/ww/ww.vcxproj @@ -0,0 +1,216 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + {E6900F61-D365-4FBD-A4A4-E0300B0FB30A} + MFCProj + ww + 10.0 + + + + Application + true + v143 + Unicode + Dynamic + + + Application + false + v143 + true + Unicode + Dynamic + + + Application + true + v143 + MultiByte + Dynamic + + + Application + false + v143 + true + Unicode + Dynamic + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + Use + Level3 + true + _WINDOWS;_DEBUG;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) + pch.h + + + Windows + + + false + true + _DEBUG;%(PreprocessorDefinitions) + + + 0x0804 + _DEBUG;%(PreprocessorDefinitions) + $(IntDir);%(AdditionalIncludeDirectories) + + + + + Use + Level3 + true + WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) + pch.h + + + Windows + + + false + true + _DEBUG;%(PreprocessorDefinitions) + + + 0x0804 + _DEBUG;%(PreprocessorDefinitions) + $(IntDir);%(AdditionalIncludeDirectories) + + + + + Use + Level3 + true + true + true + WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) + pch.h + + + Windows + true + true + + + false + true + NDEBUG;%(PreprocessorDefinitions) + + + 0x0804 + NDEBUG;%(PreprocessorDefinitions) + $(IntDir);%(AdditionalIncludeDirectories) + + + + + Use + Level3 + true + true + true + _WINDOWS;NDEBUG;%(PreprocessorDefinitions) + pch.h + + + Windows + true + true + + + false + true + NDEBUG;%(PreprocessorDefinitions) + + + 0x0804 + NDEBUG;%(PreprocessorDefinitions) + $(IntDir);%(AdditionalIncludeDirectories) + + + + + + + + + + + + + Create + Create + Create + Create + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ww/ww.vcxproj.filters b/ww/ww.vcxproj.filters new file mode 100644 index 0000000..433cc09 --- /dev/null +++ b/ww/ww.vcxproj.filters @@ -0,0 +1,64 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + 头文件 + + + 头文件 + + + 头文件 + + + 头文件 + + + 头文件 + + + 头文件 + + + + + 源文件 + + + 源文件 + + + 源文件 + + + + + 资源文件 + + + + + 资源文件 + + + + + + 资源文件 + + + \ No newline at end of file diff --git a/ww/wwDlg.cpp b/ww/wwDlg.cpp new file mode 100644 index 0000000..9ecfc98 --- /dev/null +++ b/ww/wwDlg.cpp @@ -0,0 +1,540 @@ + +// wwDlg.cpp: 实现文件 +// + +#include "pch.h" +#include "framework.h" +#include "ww.h" +#include "wwDlg.h" +#include "afxdialogex.h" +#include +#ifdef _DEBUG +#define new DEBUG_NEW +#endif +int num; +int num2; +int open; +UINT ThreadFunc(LPVOID lpParam); +// 用于应用程序“关于”菜单项的 CAboutDlg 对话框 + +class CAboutDlg : public CDialogEx +{ +public: + CAboutDlg(); + +// 对话框数据 +#ifdef AFX_DESIGN_TIME + enum { IDD = IDD_ABOUTBOX }; +#endif + + protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 + +// 实现 +protected: + DECLARE_MESSAGE_MAP() +}; + +CAboutDlg::CAboutDlg() : CDialogEx(IDD_ABOUTBOX) +{ +} + +void CAboutDlg::DoDataExchange(CDataExchange* pDX) +{ + CDialogEx::DoDataExchange(pDX); +} + +BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx) +END_MESSAGE_MAP() + + +// CwwDlg 对话框 + + + +CwwDlg::CwwDlg(CWnd* pParent /*=nullptr*/) + : CDialogEx(IDD_WW_DIALOG, pParent) +{ + m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); +} + +void CwwDlg::DoDataExchange(CDataExchange* pDX) +{ + CDialogEx::DoDataExchange(pDX); + DDX_Control(pDX, ID_POWERBOOT, PowerBootButton); +} + +BEGIN_MESSAGE_MAP(CwwDlg, CDialogEx) + ON_WM_SYSCOMMAND() + ON_WM_PAINT() + ON_WM_QUERYDRAGICON() + ON_BN_CLICKED(ID_POWERBOOT, &CwwDlg::OnBnClickedPowerboot) + ON_MESSAGE(WM_SHOWTASK, &CwwDlg::OnShowtask) + ON_BN_CLICKED(IDC_BUTTON2, &CwwDlg::OnBnClickedButton2) + ON_BN_CLICKED(IDC_BUTTON1, &CwwDlg::OnBnClickedButton1) + ON_BN_CLICKED(IDC_BUTTON3, &CwwDlg::OnBnClickedButton3) + ON_BN_CLICKED(IDC_BUTTON4, &CwwDlg::OnBnClickedButton4) + + ON_BN_CLICKED(IDC_BUTTON9, &CwwDlg::OnBnClickedButton9) + ON_BN_CLICKED(IDC_BUTTON5, &CwwDlg::OnBnClickedButton5) + ON_BN_CLICKED(IDC_BUTTON6, &CwwDlg::OnBnClickedButton6) + ON_BN_CLICKED(IDC_BUTTON10, &CwwDlg::OnBnClickedButton10) + ON_BN_CLICKED(IDC_BUTTON7, &CwwDlg::OnBnClickedButton7) +END_MESSAGE_MAP() + + +// CwwDlg 消息处理程序 + +BOOL CwwDlg::OnInitDialog() +{ + CDialogEx::OnInitDialog(); + + // 将“关于...”菜单项添加到系统菜单中。 + + // IDM_ABOUTBOX 必须在系统命令范围内。 + ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); + ASSERT(IDM_ABOUTBOX < 0xF000); + + CMenu* pSysMenu = GetSystemMenu(FALSE); + if (pSysMenu != nullptr) + { + BOOL bNameValid; + CString strAboutMenu; + bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX); + ASSERT(bNameValid); + if (!strAboutMenu.IsEmpty()) + { + pSysMenu->AppendMenu(MF_SEPARATOR); + pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); + } + } + + // 设置此对话框的图标。 当应用程序主窗口不是对话框时,框架将自动 + // 执行此操作 + SetIcon(m_hIcon, TRUE); // 设置大图标 + SetIcon(m_hIcon, FALSE); // 设置小图标 + + // TODO: 在此添加额外的初始化代码 + {HKEY hKey; + //找到系统的启动项 + CString lpRun = _T("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"); + //打开启动项 + long lRet = RegOpenKeyEx(HKEY_CURRENT_USER, lpRun, 0, KEY_ALL_ACCESS, &hKey); + if (lRet != ERROR_SUCCESS) + MessageBox(_T("打开启动项失败")); + //找到程序自身路径 + TCHAR pFileName[MAX_PATH] = {}; + GetModuleFileName(NULL, pFileName, MAX_PATH); + //判断是否已经设置开机启动 + TCHAR PowerBoot[MAX_PATH] = {}; + DWORD nLongth = MAX_PATH; + long result = RegGetValue(hKey, NULL, _T("PowerBoot"), RRF_RT_REG_SZ, 0, PowerBoot, &nLongth); + if (result == ERROR_SUCCESS) + { + PowerBootButton.SetWindowText(_T("自启状态")); + } + else + PowerBootButton.SetWindowText(_T("未自启状态")); + //关闭注册表 + RegCloseKey(hKey); + } + + + return TRUE; // 除非将焦点设置到控件,否则返回 TRUE +} + +void CwwDlg::OnSysCommand(UINT nID, LPARAM lParam) +{ + if ((nID & 0xFFF0) == IDM_ABOUTBOX) + { + CAboutDlg dlgAbout; + dlgAbout.DoModal(); + } + else + { + CDialogEx::OnSysCommand(nID, lParam); + } +} + +// 如果向对话框添加最小化按钮,则需要下面的代码 +// 来绘制该图标。 对于使用文档/视图模型的 MFC 应用程序, +// 这将由框架自动完成。 +#ifdef _DEBUG +#define new DEBUG_NEW +#endif +#pragma comment( linker, "/subsystem:/"windows/" /entry:/"mainCRTStartup/"" ) // 设置入口地址 +#include +#include + +//#define COMMENDLINE "REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f® ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 0 /f" + +//调用命令行命令而不显示命令行窗口 +BOOL system_hide(char* CommandLine) +{ + SECURITY_ATTRIBUTES sa; + HANDLE hRead, hWrite; + + sa.nLength = sizeof(SECURITY_ATTRIBUTES); + sa.lpSecurityDescriptor = NULL; + sa.bInheritHandle = TRUE; + if (!CreatePipe(&hRead, &hWrite, &sa, 0)) + { + return FALSE; + } + + STARTUPINFO si; + PROCESS_INFORMATION pi; + si.cb = sizeof(STARTUPINFO); + GetStartupInfo(&si); + si.hStdError = hWrite; + si.hStdOutput = hWrite; + si.wShowWindow = SW_HIDE; + si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; + //关键步骤,CreateProcess函数参数意义请查阅MSDN + if (!CreateProcess(NULL, CommandLine, NULL, NULL, TRUE, NULL, NULL, NULL, &si, &pi)) + { + return FALSE; + } + CloseHandle(hWrite); + + char buffer[4096] = { 0 }; + DWORD bytesRead; + while (true) + { + memset(buffer, 0, strlen(buffer)); + if (ReadFile(hRead, buffer, 4095, &bytesRead, NULL) == NULL) + break; + //buffer中就是执行的结果,可以保存到文本,也可以直接输出 + //printf(buffer);//这行注释掉就可以了 + Sleep(100); + } + return TRUE; +} + +void CwwDlg::OnPaint() +{ + if (IsIconic()) + { + CPaintDC dc(this); // 用于绘制的设备上下文 + + SendMessage(WM_ICONERASEBKGND, reinterpret_cast(dc.GetSafeHdc()), 0); + + // 使图标在工作区矩形中居中 + int cxIcon = GetSystemMetrics(SM_CXICON); + int cyIcon = GetSystemMetrics(SM_CYICON); + CRect rect; + GetClientRect(&rect); + int x = (rect.Width() - cxIcon + 1) / 2; + int y = (rect.Height() - cyIcon + 1) / 2; + + // 绘制图标 + dc.DrawIcon(x, y, m_hIcon); + } + else + { + CDialogEx::OnPaint(); + } + + + + + + AfxBeginThread(ThreadFunc, (LPVOID)this);//启动新的线程 + +} + +//当用户拖动最小化窗口时系统调用此函数取得光标 +//显示。 +HCURSOR CwwDlg::OnQueryDragIcon() +{ + return static_cast(m_hIcon); +} + + + +void CwwDlg::OnBnClickedPowerboot() +{ + // TODO: 在此添加控件通知处理程序代码 + HKEY hKey; + //找到系统的启动项 + CString lpRun = _T("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"); + //打开启动项 + long lRet = RegOpenKeyEx(HKEY_CURRENT_USER, lpRun, 0, KEY_ALL_ACCESS, &hKey); + if (lRet != ERROR_SUCCESS) + MessageBox(_T("打开启动项失败")); + //找到程序自身路径 + TCHAR pFileName[MAX_PATH] = {}; + GetModuleFileName(NULL, pFileName, MAX_PATH); + //判断是否已经设置开机启动 + TCHAR PowerBoot[MAX_PATH] = {}; + DWORD nLongth = MAX_PATH; + long result = RegGetValue(hKey, NULL, _T("PowerBoot"), RRF_RT_REG_SZ, 0, PowerBoot, &nLongth); + if (result == ERROR_SUCCESS) + { + //自启状态; + //取消自动启动 + lRet = RegDeleteValue(hKey, _T("PowerBoot")); + if (lRet == ERROR_SUCCESS) + { + MessageBox(_T("关闭自启成功")); + PowerBootButton.SetWindowText(_T("未自启状态")); + } + } + else + { + //未自启状态 + //设置自启 + lRet = RegSetValueEx(hKey, _T("PowerBoot"), 0, REG_SZ, (LPBYTE)pFileName, (lstrlen(pFileName) + 1) * sizeof(TCHAR)); + if (lRet == ERROR_SUCCESS) + { + MessageBox(_T("设置自启成功")); + PowerBootButton.SetWindowText(_T("自启状态")); + } + } + //关闭注册表 + RegCloseKey(hKey); + +} +#define TOOLTIPS_NAME_ "XXXX" +//最小化到托盘函数 +void CwwDlg::ToTray() +{ + NOTIFYICONDATA nid; + nid.cbSize = (DWORD)sizeof(NOTIFYICONDATA); + nid.hWnd = this->m_hWnd; + nid.uID = IDR_MAINFRAME; + nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP; + nid.uCallbackMessage = WM_SHOWTASK;//自定义的消息名称 + nid.hIcon = LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME)); + strcpy_s(nid.szTip, _T(TOOLTIPS_NAME_)); //信息提示条 + Shell_NotifyIcon(NIM_ADD, &nid); //在托盘区添加图标 + ShowWindow(SW_HIDE); //隐藏主窗口 +} + +//删除托盘图标函数 +void CwwDlg::DeleteTray() +{ + NOTIFYICONDATA nid; + nid.cbSize = (DWORD)sizeof(NOTIFYICONDATA); + nid.hWnd = this->m_hWnd; + nid.uID = IDR_MAINFRAME; + nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP; + nid.uCallbackMessage = WM_SHOWTASK; //自定义的消息名称 + nid.hIcon = LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME)); + strcpy_s(nid.szTip, _T(TOOLTIPS_NAME_)); //信息提示条为“计划任务提醒” + Shell_NotifyIcon(NIM_DELETE, &nid); //在托盘区删除图标 +} + +afx_msg LRESULT CwwDlg::OnShowtask(WPARAM wParam, LPARAM lParam) +{ + if (wParam != IDR_MAINFRAME) + return 1; + switch (lParam) + { + case WM_RBUTTONUP://右键起来时弹出快捷菜单,这里只有一个“关闭” + { + LPPOINT lpoint = new tagPOINT; + ::GetCursorPos(lpoint);//得到鼠标位置 + CMenu menu; + menu.CreatePopupMenu();//声明一个弹出式菜单 + menu.AppendMenu(MF_STRING, WM_DESTROY, "YANG Auto Dark Mode"); + menu.AppendMenu(MF_STRING, WM_DESTROY, "程序正在后台运行中<双击图标打开>"); + menu.AppendMenu(MF_STRING, WM_DESTROY, _T("退出程序")); + //增加菜单项“关闭”,点击则发送消息WM_DESTROY给主窗口(已隐藏),将程序结束。 + menu.TrackPopupMenu(TPM_LEFTALIGN, lpoint->x, lpoint->y, this); //确定弹出式菜单的位置 + HMENU hmenu = menu.Detach(); + menu.DestroyMenu(); //资源回收 + delete lpoint; + } break; + case WM_LBUTTONDBLCLK: //双击左键的处理 + { + this->ShowWindow(SW_SHOW);//简单的显示主窗口完事儿 + DeleteTray(); + } break; + default: break; + } + + return 0; +} + + +void CwwDlg::OnBnClickedButton2() +{ + // TODO: 在此添加控件通知处理程序代码 + ToTray(); + MessageBox("程序已在系统托盘中后台运行,双击托盘中的程序打开,右键则退出", NULL, MB_OK); +} + + +void CwwDlg::OnBnClickedButton1() +{ + // TODO: 在此添加控件通知处理程序代码 + CString tonken1 = ""; + GetDlgItem(IDC_EDIT1)->GetWindowTextA(tonken1); + num = _ttoi(tonken1); + CString tonken2 = ""; + GetDlgItem(IDC_EDIT2)->GetWindowTextA(tonken2); + num2 = _ttoi(tonken2); + MessageBox("设定成功,请在程序设置中<开启定时>即可定时切换。", NULL, MB_OK); + //HMODULE module = GetModuleHandle(0); + //char pFileName[MAX_PATH] = { 0 }; + //GetModuleFileName(module, pFileName, MAX_PATH); + //CString csFullName(pFileName); +// CString cstrStr = csFullName + "\\data"; + + + //char* chStr; + + //chStr = (char*)cstrStr.GetBuffer(0); + //char * pFileName = W2A(cstr); //也可实现转换 + + //注意:有时候可能还需要添加引用#include + //char* pszFileName = chStr; + char* pszFileName = "D:\\data"; + CStdioFile myFile; + + CFileException fileException; + + if (myFile.Open(pszFileName, CFile::typeText | CFile::modeCreate | CFile::modeReadWrite), &fileException) + + { + + //myFile.WriteString(tonken1); + + // myFile.WriteString(tonken2); + + } + + else + + { + + TRACE("Can't open file %s,error=%u\n", pszFileName, fileException.m_cause); + + } + +} + + +void CwwDlg::OnBnClickedButton3() +{ + // TODO: 在此添加控件通知处理程序代码 + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v AppsUseLightTheme /t REG_DWORD /d 1 /f"); + + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 1 /f"); + MessageBox("已变更浅色模式", NULL, MB_OK); +} + + +void CwwDlg::OnBnClickedButton4() +{ + // TODO: 在此添加控件通知处理程序代码 + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f"); + + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 0 /f"); + MessageBox("已变更深色模式", NULL, MB_OK); +} + + +void CwwDlg::OnBnClickedButton8() +{ + // TODO: 在此添加控件通知处理程序代码 + open = 1; + MessageBox("已开启", NULL, MB_OK); +} + + +void CwwDlg::OnBnClickedButton9() +{ + + + char* pszFileName = "C:\\Users\\qw200\\Documents\\data"; + + CStdioFile myFile; + + CFileException fileException; + + if (myFile.Open(pszFileName, CFile::typeText | CFile::modeCreate | CFile::modeReadWrite), &fileException) + + { + + myFile.WriteString("第1行\n"); + + CString strOrder; + + strOrder.Format("%d,%.3f", 66, 88.88); + + myFile.WriteString(strOrder); + + } + + else + + { + + TRACE("Can't open file %s,error=%u\n", pszFileName, fileException.m_cause); + + } +} + + +void CwwDlg::OnBnClickedButton5() +{ + // TODO: 在此添加控件通知处理程序代码 + CAboutDlg dlgAbout; + dlgAbout.DoModal(); +} + + +void CwwDlg::OnBnClickedButton6() +{ + // TODO: 在此添加控件通知处理程序代码 + MessageBox("点击确定跳转更新,请在网站区域下载更新", NULL, MB_OK); + system("start https://github.com/JasonYANG170/Auto-Dark-Mode"); + +} + + +void CwwDlg::OnBnClickedButton10() +{ + // TODO: 在此添加控件通知处理程序代码 + open = 1; + MessageBox("已开启", NULL, MB_OK); + +// AfxBeginThread(ThreadFunc, (LPVOID)this);//启动新的线程 +} +UINT ThreadFunc(LPVOID lParam) +{ + while (true) { + for (open; open == 1; open + 0) + { + CTime tm; tm = CTime::GetCurrentTime(); + int hour = tm.GetHour(); + CString tempPort; + tempPort.Format(_T("%d"), hour); + if (hour == num) { + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f"); + + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 0 /f"); + + } + else if (hour == num2) + { + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v AppsUseLightTheme /t REG_DWORD /d 1 /f"); + + system_hide("REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 1 /f"); + + } + + } + Sleep(1000); + } +} + + +void CwwDlg::OnBnClickedButton7() +{ + // TODO: 在此添加控件通知处理程序代码 + open = 0; + MessageBox("已关闭", NULL, MB_OK); +} diff --git a/ww/wwDlg.h b/ww/wwDlg.h new file mode 100644 index 0000000..32a7413 --- /dev/null +++ b/ww/wwDlg.h @@ -0,0 +1,54 @@ + +// wwDlg.h: 头文件 +// + +#pragma once +#define WM_SHOWTASK WM_USER+100 + +// CwwDlg 对话框 +class CwwDlg : public CDialogEx +{ +// 构造 +public: + CwwDlg(CWnd* pParent = nullptr); // 标准构造函数 + +// 对话框数据 +#ifdef AFX_DESIGN_TIME + enum { IDD = IDD_WW_DIALOG }; +#endif + + protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 + + +// 实现 +protected: + HICON m_hIcon; + + // 生成的消息映射函数 + virtual BOOL OnInitDialog(); + afx_msg void OnSysCommand(UINT nID, LPARAM lParam); + afx_msg void OnPaint(); + afx_msg HCURSOR OnQueryDragIcon(); + DECLARE_MESSAGE_MAP() +public: + CButton PowerBootButton; + afx_msg void OnBnClickedPowerboot(); + void ToTray(); +protected: + afx_msg + void DeleteTray(); + LRESULT OnShowtask(WPARAM wParam, LPARAM lParam); +public: + afx_msg void OnBnClickedButton2(); + afx_msg void OnBnClickedButton1(); + afx_msg void OnBnClickedButton3(); + afx_msg void OnBnClickedButton4(); + afx_msg void OnBnClickedButton8(); + afx_msg void OnBnClickedButton9(); + afx_msg void OnBnClickedButton5(); + afx_msg void OnBnClickedButton6(); + afx_msg void OnBnClickedButton10(); + void KMeansSegment(); + afx_msg void OnBnClickedButton7(); +};