58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
// EDACGrBt.hpp : header file
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _ED_ACTORS_MS_GROUP_BUTTONS_
|
|
#define _ED_ACTORS_MS_GROUP_BUTTONS_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include "EdAcIRes.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// EdActors_MSGroupButton window
|
|
|
|
class EdActors_MSGroupButton : public CButton
|
|
{
|
|
// Construction
|
|
public:
|
|
EdActors_MSGroupButton( unsigned char ucListIndex,
|
|
CString csText,
|
|
short wXPos,
|
|
short wYPos,
|
|
short wWidth,
|
|
CWnd *pclParentWnd);
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
private:
|
|
unsigned char m_ucListIndex;
|
|
|
|
// Operations
|
|
public:
|
|
unsigned char m_fn_ucGetListIndex();
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(EdActors_MSGroupButton)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~EdActors_MSGroupButton();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(EdActors_MSGroupButton)
|
|
afx_msg void OnClicked();
|
|
//}}AFX_MSG
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif //_ED_ACTORS_MS_GROUP_BUTTONS_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|