61 lines
1.3 KiB
C
61 lines
1.3 KiB
C
|
// PlayerTest1Dlg.h : ͷ<>ļ<EFBFBD>
|
|||
|
//
|
|||
|
|
|||
|
#pragma once
|
|||
|
#include "afxwin.h"
|
|||
|
#include "TcpmpPlayer.h"
|
|||
|
|
|||
|
// CPlayerTest1Dlg <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|||
|
class CPlayerTest1Dlg : public CDialog
|
|||
|
{
|
|||
|
private:
|
|||
|
CTcpmpPlayer m_TcpPlayer;
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
public:
|
|||
|
CPlayerTest1Dlg(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|||
|
|
|||
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
enum { IDD = IDD_PLAYERTEST1_DIALOG };
|
|||
|
|
|||
|
#ifdef WIN32_PLATFORM_WFSP
|
|||
|
protected: // <20>ؼ<EFBFBD><D8BC><EFBFBD>Ƕ<EFBFBD><C7B6><EFBFBD><EFBFBD>Ա
|
|||
|
CCommandBar m_dlgCommandBar;
|
|||
|
#endif // WIN32_PLATFORM_WFSP
|
|||
|
|
|||
|
protected:
|
|||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
|
|||
|
|
|||
|
// ʵ<><CAB5>
|
|||
|
protected:
|
|||
|
HICON m_hIcon;
|
|||
|
|
|||
|
// <20><><EFBFBD>ɵ<EFBFBD><C9B5><EFBFBD>Ϣӳ<CFA2>亯<EFBFBD><E4BAAF>
|
|||
|
virtual BOOL OnInitDialog();
|
|||
|
#if defined(_DEVICE_RESOLUTION_AWARE) && !defined(WIN32_PLATFORM_WFSP)
|
|||
|
afx_msg void OnSize(UINT /*nType*/, int /*cx*/, int /*cy*/);
|
|||
|
#endif
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
private:
|
|||
|
// <20><>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD>
|
|||
|
CStatic m_labMedia;
|
|||
|
private:
|
|||
|
CButton m_butOpen;
|
|||
|
private:
|
|||
|
CButton m_butPlay;
|
|||
|
private:
|
|||
|
CButton m_butPause;
|
|||
|
private:
|
|||
|
CButton m_butPre;
|
|||
|
private:
|
|||
|
CButton m_butNext;
|
|||
|
private:
|
|||
|
CButton m_butStop;
|
|||
|
afx_msg void OnBnClickedButtonOpen();
|
|||
|
afx_msg void OnBnClickedButtonPlay();
|
|||
|
afx_msg void OnBnClickedButtonPause();
|
|||
|
afx_msg void OnBnClickedButtonPre();
|
|||
|
afx_msg void OnBnClickedButtonNext();
|
|||
|
afx_msg void OnBnClickedButtonStop();
|
|||
|
afx_msg void OnStnClickedStaticMedia();
|
|||
|
};
|