?? filespltdlg.h
字號:
// FileSpltDlg.h : header file
//
//Modify by 徐景周 ,2001.2.13
//功能:文件分割為各種大小格式,并將其合并在一起
//
#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
#include "WBButton.h" //位圖按鈕
#include "GradientProgressCtrl.h" //漸變色進度條
/////////////////////////////////////////////////////////////////////////////
// CFileSpltDlg dialog
class CFileSpltDlg : public CDialog
{
// Construction
public:
CFileSpltDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CFileSpltDlg)
enum { IDD = IDD_FILESPLT_DIALOG };
CComboBox m_FileSize;
CGradientProgressCtrl pProgress;
CWBButton m_buttMerge; //定義位圖按鈕
CWBButton m_buttExit;
CWBButton m_buttSplit;
CWBButton m_Browse;
CWBButton m_Browse2;
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();
UINT GetSplitFileSize();
// Generated message map functions
//{{AFX_MSG(CFileSpltDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
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
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -