12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #if !defined(AFX_MYPICSTA_H__4A42E4EE_4558_4FBC_A940_7C6E266DC17F__INCLUDED_)
- #define AFX_MYPICSTA_H__4A42E4EE_4558_4FBC_A940_7C6E266DC17F__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // MyPicSta.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // MyPicSta window
- class MyPicSta : public CStatic
- {
- // Construction
- public:
- MyPicSta();
- Image *m_pbmp;
- Image *m_pImg;
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(MyPicSta)
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void SetImage(Image *img);
- virtual ~MyPicSta();
- // Generated message map functions
- protected:
- //{{AFX_MSG(MyPicSta)
- afx_msg void OnPaint();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MYPICSTA_H__4A42E4EE_4558_4FBC_A940_7C6E266DC17F__INCLUDED_)
|