compdlg.h

来自「一个小老乡写的压缩、解压软件」· C头文件 代码 · 共 67 行

H
67
字号
// CompDlg.h : header file
//

#if !defined(AFX_COMPDLG_H__F1518E61_3B25_4AD6_BF21_C756A1A9FE69__INCLUDED_)
#define AFX_COMPDLG_H__F1518E61_3B25_4AD6_BF21_C756A1A9FE69__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CCompDlg dialog
#include "main.h"
#include "PathDialog.h"

class CCompDlg : public CDialog
{
// Construction
public:
//	CPathDialog * pathDlg;
	void OnOK();
	Cmain *main;
	CCompDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CCompDlg)
	enum { IDD = IDD_COMP_DIALOG };
	CEdit	m_comSPathName;
	CComboBox	m_comboPathCon;
	CString	m_comSource;
	CString	m_comTarget;
	CString	m_decomSource;
	CString	m_decomTarget;
	CString	m_comboPath;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCompDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CCompDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnComOk();
	afx_msg void OnDecomOk();
	afx_msg void OnFileExit();
	afx_msg void OnHelpAbout();
	afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
	afx_msg void OnComSourceview();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_COMPDLG_H__F1518E61_3B25_4AD6_BF21_C756A1A9FE69__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?