home *** CD-ROM | disk | FTP | other *** search
- // MMSave.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMMSave dialog
- //{{AFX_INCLUDES()
- //}}AFX_INCLUDES
-
- class CMMSave : public CFileDialog
- {
- // Construction
- public:
- CMMSave(LPCTSTR lpszFileName = NULL, CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CMMSave)
- enum { IDD = IDD_SAVE_DIALOG };
- CComboBox m_VideoCompressor;
- CComboBox m_AudioFormat;
- CComboBox m_AudioCompressor;
- //}}AFX_DATA
-
- char m_szVideoCompressor[75];
- char m_szAudioCompressor[75];
- int m_nAudioFormat;
- CString *m_strVideoCompressor;
- CString *m_strAudioCompressor;
- int m_nVideoIndex;
- int m_nAudioIndex;
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMMSave)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CMMSave)
- afx_msg void OnSelchangeAudioCompressor();
- afx_msg void OnSelchangeAudioFormat();
- afx_msg void OnSelchangeVideoCompressor();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-