mirror of https://github.com/tongzx/nt5src
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.
82 lines
2.3 KiB
82 lines
2.3 KiB
// OutPage.h : header file
|
|
//
|
|
#include "common.h"
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COutputPropPage dialog
|
|
|
|
class COutputPropPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(COutputPropPage)
|
|
|
|
// Construction
|
|
public:
|
|
COutputPropPage();
|
|
~COutputPropPage();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(COutputPropPage)
|
|
enum { IDD = IDD_OUTPUT_PAGE };
|
|
CString m_OutputFileName;
|
|
DWORD m_RenameInterval;
|
|
CString m_BaseFileName;
|
|
int m_AutoNameIndex;
|
|
int m_LogFileTypeIndex;
|
|
int m_RenameUnitsIndex;
|
|
CString m_szLogDirectory;
|
|
CString m_szCmdFilename;
|
|
int m_ExecuteCmd;
|
|
//}}AFX_DATA
|
|
|
|
|
|
BOOL IsWildcardLogFileType (void);
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(COutputPropPage)
|
|
public:
|
|
virtual void OnCancel();
|
|
virtual void OnOK();
|
|
virtual BOOL OnQueryCancel();
|
|
virtual BOOL OnKillActive();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(COutputPropPage)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnAutomaticName();
|
|
afx_msg void OnManualName();
|
|
afx_msg void OnSelchangeAutoNameCombo();
|
|
afx_msg void OnChangeBaseFilenameEdit();
|
|
afx_msg void OnBrowseOutputFile();
|
|
afx_msg void OnSelchangeLogFiletype();
|
|
afx_msg void OnSelchangeRenameUnits();
|
|
afx_msg void OnDeltaposSpinRenameInterval(NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg void OnChangeOutputFileEdit();
|
|
afx_msg void OnChangeRenameInterval();
|
|
afx_msg void OnUpdateBaseFilenameEdit();
|
|
afx_msg void OnBrowseFolder();
|
|
afx_msg void OnExecuteCheck();
|
|
afx_msg void OnBrowseCmdFile();
|
|
afx_msg void OnChangeCmdFilename();
|
|
//}}AFX_MSG
|
|
afx_msg LRESULT OnQuerySiblings (WPARAM wParam, LPARAM lParam);
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
void InitDialogData(void);
|
|
void AutoManualEnable (BOOL bAutomatic);
|
|
void UpdateSampleFilename();
|
|
BOOL IsDirPathValid (LPCTSTR szPath,
|
|
BOOL bLastNameIsDirectory,
|
|
BOOL bCreateMissingDirs);
|
|
|
|
|
|
HKEY m_hKeyLogSettingsDefault;
|
|
HKEY m_hKeyLogSettings;
|
|
HKEY m_hKeyLogService;
|
|
BOOL m_bFileNameChanged;
|
|
BOOL m_bInitialized;
|
|
};
|
|
|