⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flashplayerdlg.h

📁 VC编写的Flash播放器
💻 H
字号:
// FlashPlayerDlg.h : header file
//
//{{AFX_INCLUDES()
#include "shockwaveflash.h"
//}}AFX_INCLUDES

#if !defined(AFX_FLASHPLAYERDLG_H__46AC51AB_DC29_475A_A45A_CC7D489BF224__INCLUDED_)
#define AFX_FLASHPLAYERDLG_H__46AC51AB_DC29_475A_A45A_CC7D489BF224__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CFlashPlayerDlg dialog

class CFlashPlayerDlg : public CDialog
{
// Construction
public:
	int m_nTimer;//Timer时间控制
	bool timerflag;  //Timer启用的标志
    bool screenflag;  //全屏的标志  
    bool playflag;  //有无文件打开的标志
    CRect flashrect;  //记录Shockwaveflash组件的矩形区域
    WINDOWPLACEMENT m_FlashPos;  //记录Shockwaveflash组件的状态
    WINDOWPLACEMENT m_WndPos;  //记录对话框窗口的状态

	CFlashPlayerDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CFlashPlayerDlg)
	enum { IDD = IDD_FLASHPLAYER_DIALOG };
	CShockwaveFlash	flash;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFlashPlayerDlg)
	public:
	virtual BOOL DestroyWindow();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CFlashPlayerDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnOpen();
	afx_msg void OnPlay();
	afx_msg void OnStop();
	afx_msg void OnTerminate();
	afx_msg void OnReplay();
	afx_msg void OnBackward();
	afx_msg void OnForward();
	afx_msg void OnLastframe();
	afx_msg void OnFastback();
	afx_msg void OnFastforward();
	afx_msg void OnZoomin();
	afx_msg void OnZoomout();
	afx_msg void OnRevert();
	afx_msg void OnClose();
	afx_msg void OnReleasedcaptureSlider(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FLASHPLAYERDLG_H__46AC51AB_DC29_475A_A45A_CC7D489BF224__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -