📄 photo.h
字号:
#if !defined(AFX_PHOTO_H__E711A32A_CE12_4D0F_A4D2_EBC588A9B2AC__INCLUDED_)
#define AFX_PHOTO_H__E711A32A_CE12_4D0F_A4D2_EBC588A9B2AC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Photo.h : header file
//
#include "picture.h"
/////////////////////////////////////////////////////////////////////////////
// CPhoto dialog
class CPhoto : public CDialog
{
// Construction
public:
CPhoto(CWnd* pParent = NULL); // standard constructor
void Draw();
void Load();
void DrawSingle(HDC hdc,int code,CRect rc);
CRect GetRect(int code);
void DrawRect(HDC hdc,int x1,int y1,int x2,int y2);
CPicture m_pic;
UINT m_code;
UINT m_tempcode;
CPoint oldpos;
// Dialog Data
//{{AFX_DATA(CPhoto)
enum { IDD = IDD_PHOTO };
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPhoto)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CPhoto)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg void OnChange();
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PHOTO_H__E711A32A_CE12_4D0F_A4D2_EBC588A9B2AC__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -