12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // 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.
|