12345678910111213141516171819202122232425262728293031323334353637383940 |
- // PicBar.h: interface for the PicBar class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_PicBar_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_)
- #define AFX_PicBar_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "MyDlg.h"
- class PicBar : public MyDlg
- {
- CButton m_button1;
- CButton m_button2;
- CButton m_button3;
- CButton m_button4;
- Image *m_pImageRun;
- Image *m_pImageStop;
- float g_fscalexbak;
- float g_fscaleybak;
- public:
- int m_nType;
- void ChangeBtn();
- BOOL m_bInit;
- void DrawTimes();
- int m_time;
- void EffectChange();
- CDialog *m_pParent;
- PicBar();
- virtual ~PicBar();
- void BtnClick(WPARAM wParam, LPARAM lParam);
- void Init();
- void Destory();
- BOOL PreTransMsg(MSG* pMsg);
- void OnFSCommand(LPCTSTR command, LPCTSTR args);
- };
- #endif // !defined(AFX_PicBar_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_)
|