forked from metin2/client
89 lines
2.7 KiB
C
89 lines
2.7 KiB
C
|
/***=========================================================================
|
||
|
==== ====
|
||
|
==== D C U t i l i t y ====
|
||
|
==== ====
|
||
|
=============================================================================
|
||
|
==== ====
|
||
|
==== File name : TrueColorToolBar.h ====
|
||
|
==== Project name : Tester ====
|
||
|
==== Project number : --- ====
|
||
|
==== Creation date : 13/1/2003 ====
|
||
|
==== Author(s) : Dany Cantin ====
|
||
|
==== ====
|
||
|
==== Copyright ?DCUtility 2003 ====
|
||
|
==== ====
|
||
|
=============================================================================
|
||
|
===========================================================================*/
|
||
|
|
||
|
|
||
|
#ifndef TRUECOLORTOOLBAR_H_
|
||
|
#define TRUECOLORTOOLBAR_H_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
|
||
|
#include <afxtempl.h>
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CTrueColorToolBar
|
||
|
|
||
|
class CTrueColorToolBar : public CToolBar
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CTrueColorToolBar();
|
||
|
|
||
|
// Attributes
|
||
|
private:
|
||
|
BOOL m_bDropDown;
|
||
|
|
||
|
struct stDropDownInfo {
|
||
|
public:
|
||
|
UINT uButtonID;
|
||
|
UINT uMenuID;
|
||
|
CWnd* pParent;
|
||
|
};
|
||
|
|
||
|
CArray <stDropDownInfo, stDropDownInfo&> m_lstDropDownButton;
|
||
|
|
||
|
// Operations
|
||
|
public:
|
||
|
BOOL LoadTrueColorToolBar(int nBtnWidth,
|
||
|
UINT uToolBar,
|
||
|
UINT uToolBarHot = 0,
|
||
|
UINT uToolBarDisabled = 0);
|
||
|
|
||
|
void AddDropDownButton(CWnd* pParent, UINT uButtonID, UINT uMenuID);
|
||
|
|
||
|
private:
|
||
|
BOOL SetTrueColorToolBar(UINT uToolBarType,
|
||
|
UINT uToolBar,
|
||
|
int nBtnWidth);
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CTrueColorToolBar)
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CTrueColorToolBar();
|
||
|
|
||
|
// Generated message map functions
|
||
|
protected:
|
||
|
//{{AFX_MSG(CTrueColorToolBar)
|
||
|
afx_msg void OnToolbarDropDown(NMHDR* pnmhdr, LRESULT* plRes);
|
||
|
//}}AFX_MSG
|
||
|
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // TRUECOLORTOOLBAR_H_
|