home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / Mmsave.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.2 KB  |  50 lines

  1. // MMSave.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMMSave dialog
  6. //{{AFX_INCLUDES()
  7. //}}AFX_INCLUDES
  8.  
  9. class CMMSave : public CFileDialog
  10. {
  11. // Construction
  12. public:
  13.     CMMSave(LPCTSTR lpszFileName = NULL, CWnd* pParent = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CMMSave)
  17.     enum { IDD = IDD_SAVE_DIALOG };
  18.     CComboBox    m_VideoCompressor;
  19.     CComboBox    m_AudioFormat;
  20.     CComboBox    m_AudioCompressor;
  21.     //}}AFX_DATA
  22.  
  23.    char     m_szVideoCompressor[75];
  24.    char     m_szAudioCompressor[75];
  25.    int      m_nAudioFormat;
  26.    CString *m_strVideoCompressor;
  27.    CString *m_strAudioCompressor;
  28.    int      m_nVideoIndex;
  29.    int      m_nAudioIndex;
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CMMSave)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CMMSave)
  43.     afx_msg void OnSelchangeAudioCompressor();
  44.     afx_msg void OnSelchangeAudioFormat();
  45.     afx_msg void OnSelchangeVideoCompressor();
  46.     virtual BOOL OnInitDialog();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.