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

📄 aboutsplashdlg.h

📁 一些关于C++开发的多媒体制作书籍的源代码
💻 H
字号:
/*
* Copyright (c) 2002, Bcdliang
* All rights reserved.
*
* 文件名称:AboutSplashDlg.h
* 摘    要:::ShowAbout函数的声明
*           ::ShowSplash函数的声明
*           类CAboutSplashDlg的声明
*
* 当前版本:1.01
* 作    者:LIANG Zheng
* 完成日期:2002年8月11日
*/

#if !defined(AFX_ABOUTSPLASHDLG_H__3663F692_5B21_4647_8F70_760C06A846AB__INCLUDED_)
#define AFX_ABOUTSPLASHDLG_H__3663F692_5B21_4647_8F70_760C06A846AB__INCLUDED_

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

#include "ScrollLabel.h"

void ShowSplash(BOOL bShow);
void ShowAbout();

/////////////////////////////////////////////////////////////////////////////
// CAboutSplashDlg dialog

class CAboutSplashDlg : public CDialog
{
// Construction
public:
	CAboutSplashDlg(BOOL bAbout, CWnd* pParent = NULL);   // standard constructor
	virtual ~CAboutSplashDlg();

// Dialog Data
	//{{AFX_DATA(CAboutSplashDlg)
	enum { IDD = IDD_ABOUTBOX };
	CStatic	m_Loading;
	CScrollLabel	m_Email;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAboutSplashDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// whether it's an About box or a Splash dlg
	BOOL m_bAbout;

	// Font used by m_Loading
	CFont m_fLoading;

	// brush for background painting
	CBrush m_bkBrush;

	// Generated message map functions
	//{{AFX_MSG(CAboutSplashDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	virtual void OnOK();
	virtual void OnCancel();
	afx_msg void OnDestroy();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_ABOUTSPLASHDLG_H__3663F692_5B21_4647_8F70_760C06A846AB__INCLUDED_)


⌨️ 快捷键说明

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