📄 vx_antivirusdlg.h
字号:
// Vx_AntiVirusDlg.h : 头文件
//
#pragma once
#include "afxcmn.h"
#include "afxwin.h"
#include "KCBusyProgressCtrl.h"
#include "resource.h"
// CVx_AntiVirusDlg 对话框
class CVx_AntiVirusDlg : public CDialog
{
// 构造
public:
CVx_AntiVirusDlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_VX_ANTIVIRUS_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CListCtrl m_List;
CKCBusyProgressCtrl m_ProgressCtrl;
public:
void InitGUI();
void SetStatusText(char* textstr);
void SetCurText(char* textstr);
int InsertText(char* strPath,char* area,char* strisname,char* strstatus,DWORD itemdata);
void SetText(int idx,char* str);
public:
afx_msg void OnDestroy();
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedStopkill();
afx_msg void OnBnClickedStartkill();
public:
BOOL bScanMemory;
public:
BOOL bScanAllFile;
public:
afx_msg void OnBnClickedFinvirus();
public:
afx_msg void OnBnClickedCheck1();
public:
afx_msg void OnBnClickedCheck2();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -