home *** CD-ROM | disk | FTP | other *** search
- // multivw.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMultiView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMultiView : public CFormView
- {
- DECLARE_DYNCREATE(CMultiView)
- protected:
- CMultiView(); // protected constructor used by dynamic creation
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- virtual void OnInitialUpdate();
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
- // Form Data
- public:
- //{{AFX_DATA(CMultiView)
- enum { IDD = IDD_DIALOG1 };
- CVBControl* m_cd;
- CVBControl* m_mid;
- CVBControl* m_pc;
- CVBControl* m_wav;
- CVBControl* m_avi;
- BOOL m_Silent;
- int m_PcSong;
- BOOL m_AutoRepeat;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMultiView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMultiView)
- afx_msg void OnRadioPc1();
- afx_msg void OnRadioPc2();
- afx_msg void OnRadioPc3();
- afx_msg void OnButtonLoad();
- afx_msg void OnPaint();
- afx_msg void OnDoneTegommAvi(UINT, int, CWnd*, LPVOID);
- afx_msg void OnDoneTegommMid(UINT, int, CWnd*, LPVOID);
- afx_msg void OnDoneTegommPc(UINT, int, CWnd*, LPVOID);
- afx_msg void OnDoneTegommWav(UINT, int, CWnd*, LPVOID);
- afx_msg void OnSilent();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-