3 Star 9 Fork 7

Gitee 极速下载/WinMerge

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/winmerge/winmerge
克隆/下载
DirCmpReportDlg.h 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* @file DirCmpReportDlg.h
*
* @brief Declaration file for DirCmpReport Dialog.
*
*/
#pragma once
#include "DirReportTypes.h"
#include "TrDialogs.h"
#include "SuperComboBox.h"
/**
* @brief Folder compare dialog class.
* This dialog (and class) shows folder-compare report's selections
* for user. Also filename and path for report file can be chosen
* with this dialog.
*/
class DirCmpReportDlg : public CTrDialog
{
DECLARE_DYNAMIC(DirCmpReportDlg)
public:
explicit DirCmpReportDlg(CWnd* pParent = nullptr); // standard constructor
// Dialog Data
enum { IDD = IDD_DIRCMP_REPORT };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
void LoadSettings();
// Generated message map functions
//{{AFX_MSG(DirCmpReportDlg)
afx_msg void OnBtnClickReportBrowse();
afx_msg void OnBtnDblclickCopyClipboard();
afx_msg void OnCbnSelchangeReportStylecombo();
virtual BOOL OnInitDialog() override;
virtual void OnOK() override;
//}}AFX_MSG
//{{AFX_DATA(DirCmpReportDlg)
CSuperComboBox m_ctlReportFile; /**< Report filename control */
String m_sReportFile; /**< Report filename string */
CComboBox m_ctlStyle; /**< Report type control */
REPORT_TYPE m_nReportType; /**< Report type integer */
bool m_bCopyToClipboard; /**< Do we copy report to clipboard? */
bool m_bIncludeFileCmpReport; /**< Do we include file compare report in folder compare report? */
//}}AFX_DATA
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/mirrors/WinMerge.git
git@gitee.com:mirrors/WinMerge.git
mirrors
WinMerge
WinMerge
master

搜索帮助