You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitlib.pub/MITLIB/Utility/AniButton.h

65 lines
1.6 KiB
C++

#if !defined(AFX_ANIBUTTON_H__6B8886C4_D6D9_11D3_8118_0050DA6BF740__INCLUDED_)
#define AFX_ANIBUTTON_H__6B8886C4_D6D9_11D3_8118_0050DA6BF740__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// AniButton.h : header file
//
#include <afxcmn.h>
#ifdef BUILD_UTILITYDLL
#define UTILITYDLL __declspec(dllexport)
#else
#define UTILITYDLL __declspec(dllimport)
#endif
/////////////////////////////////////////////////////////////////////////////
// CAniButton window
class UTILITYDLL CAniButton : public CButton
{
// Construction
public:
CAniButton();
BOOL Open(LPCTSTR lpszFileName);
BOOL Open(UINT nID);
void Play();
void Stop();
void Close();
private:
BOOL m_bRedrawFlag;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
// {{AFX_VIRTUAL(CAniButton)
public:
// }}AFX_VIRTUAL
// Implementation
public:
virtual ~CAniButton();
// Generated message map functions
protected:
CAnimateCtrl m_ctlAnimate;
// {{AFX_MSG(CAniButton)
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnMouseMove(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_ANIBUTTON_H__6B8886C4_D6D9_11D3_8118_0050DA6BF740__INCLUDED_)