You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
744 B
32 lines
744 B
//
|
|
// CMODE.H
|
|
//
|
|
|
|
#if !defined (__CMODE_H__INCLUDED_)
|
|
#define __CMODE_H__INCLUDED_
|
|
|
|
#include "cicbtn.h"
|
|
#include "toolbar.h"
|
|
|
|
class CMode : public CCicButton
|
|
{
|
|
public:
|
|
CMode(CToolBar *ptb);
|
|
~CMode() {}
|
|
|
|
STDMETHODIMP GetIcon(HICON *phIcon);
|
|
HRESULT OnLButtonUp(const POINT pt, const RECT* prcArea);
|
|
//HRESULT OnRButtonUp(const POINT pt, const RECT* prcArea);
|
|
STDMETHODIMP InitMenu(ITfMenu *pMenu);
|
|
STDMETHODIMP OnMenuSelect(UINT wID);
|
|
STDMETHODIMP_(ULONG) Release(void);
|
|
|
|
private:
|
|
|
|
DWORD GetCMode() { return m_pTb->GetConversionMode(); }
|
|
DWORD SetCMode(DWORD dwConvMode) { return m_pTb->SetConversionMode(dwConvMode); }
|
|
|
|
CToolBar *m_pTb;
|
|
};
|
|
|
|
#endif // __CMODE_H__INCLUDED_
|