splash.h
来自「用bcg库编写的java IDE 源码」· C头文件 代码 · 共 56 行
H
56 行
#ifndef __SPLASH_H__INCLUDED__
#define __SPLASH_H__INCLUDED__
#include "editlibExp.h"
/////////////////////////////////////////////////////////////////////////////
// CBigIcon window
class EDITPADC_CLASS CBigIcon : public CButton
{
// Attributes
public:
CBitmap m_bitmap;
CSize m_sizeBitmap;
// Operations
public:
void SizeToContent();
// Implementation
protected:
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
//{{AFX_MSG(CBigIcon)
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CSplash dialog
class EDITPADC_CLASS CSplashWnd : public CDialog
{
// Construction
public:
BOOL Create(CWnd* pParent);
// Dialog Data
//{{AFX_DATA(CSplashWnd)
enum { IDD = IDD_SPLASH };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Implementation
protected:
CBigIcon m_icon; // self-draw button
// Generated message map functions
//{{AFX_MSG(CSplashWnd)
virtual BOOL OnInitDialog();
//}}AFX_MSG
};
/////////////////////////////////////////////////////////////////////////////
#endif // __SPLASH_H__INCLUDED__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?