You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
#pragma once
|
|
|
|
class CPackageConfig : public CPropertyPageImpl<CPackageConfig>
|
|
{
|
|
typedef CPropertyPageImpl<CPackageConfig> BaseClass;
|
|
|
|
public:
|
|
enum{ IDD = IDD_WPEXP_PKG };
|
|
|
|
static const int MAX_PWD_LEN = 8;
|
|
|
|
BEGIN_MSG_MAP(CPackageConfig)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_ID_HANDLER( IDC_BROWSE, OnBrowse )
|
|
CHAIN_MSG_MAP(BaseClass)
|
|
END_MSG_MAP()
|
|
|
|
CPackageConfig ( CWizardSheet* pTheSheet );
|
|
|
|
LRESULT OnInitDialog ( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled );
|
|
LRESULT OnBrowse ( WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled );
|
|
int OnWizardNext ( void );
|
|
|
|
|
|
// Shared data
|
|
public:
|
|
CString m_strFilename;
|
|
CString m_strComment;
|
|
CString m_strPassword;
|
|
bool m_bCompress;
|
|
bool m_bEncrypt;
|
|
bool m_bPostProcess;
|
|
|
|
// Data members
|
|
private:
|
|
CWizardSheet* m_pTheSheet;
|
|
CString m_strTitle;
|
|
CString m_strSubTitle;
|
|
};
|