Leaked source code of windows server 2003
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.
|
|
//
// PROPBUT.H
//
#if !defined (__PROPBUT_H__INCLUDED_)
#define __PROPBUT_H__INCLUDED_
#include "buttoncc.h"
#include "toolbar.h"
class PropertyButton : public CLBarItemButtonBase { public: PropertyButton(CToolBar *ptb); ~PropertyButton() {}
STDMETHODIMP GetIcon(HICON *phIcon);
private: HRESULT OnLButtonUp(const POINT pt, const RECT* prcArea); HRESULT OnRButtonUp(const POINT pt, const RECT* prcArea); STDMETHODIMP InitMenu(ITfMenu *pMenu); STDMETHODIMP OnMenuSelect(UINT wID);
CToolBar *m_pTb; };
#endif // __PROPBUT_H__INCLUDED_
|