filespltdlg.h

来自「文件分割和合并,非常好」· C头文件 代码 · 共 69 行

H
69
字号

#if !defined(AFX_FILESPLTDLG_H__7FE4F386_019A_11D5_9005_D288FBFBF7E1__INCLUDED_)
#define AFX_FILESPLTDLG_H__7FE4F386_019A_11D5_9005_D288FBFBF7E1__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CFileSpltDlg dialog
#include"link.h"

class CFileSpltDlg : public CDialog
{
// Construction
public:
	CFileSpltDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CFileSpltDlg)
	enum { IDD = IDD_FILESPLT_DIALOG };
	CLink	m_web;
	CComboBox	m_FileSize;
	CProgressCtrl  pProgress;
	CButton	m_RadioSplit;
	CEdit	m_edit;
	CString	m_parts;
	CString	m_path;
	CString	m_targetpath;
	//}}AFX_DATA

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

// Implementation
protected:
    BOOL m_split;
	CString m_filename;
	CFile m_SourceFile;
	HICON m_hIcon;
	int SplitMe();
	int MergeMe();
	long GetSplitFileSize();

	// Generated message map functions
	//{{AFX_MSG(CFileSpltDlg)
	virtual BOOL OnInitDialog();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnBrowse();
	afx_msg void OnOk();
	afx_msg void OnButtonMerge();
	afx_msg void OnRadio4();
	afx_msg void OnRadio3();
	afx_msg void OnBrowse2();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
	afx_msg void OnWeb();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_FILESPLTDLG_H__7FE4F386_019A_11D5_9005_D288FBFBF7E1__INCLUDED_)

⌨️ 快捷键说明

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