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.
28 lines
427 B
28 lines
427 B
//
|
|
// nui.h
|
|
//
|
|
|
|
#ifndef NUI_H
|
|
#define NUI_H
|
|
|
|
#include "private.h"
|
|
#include "nuibase.h"
|
|
|
|
class CSoftkbdIMX;
|
|
|
|
class CLBarItem : public CLBarItemButtonBase
|
|
{
|
|
public:
|
|
CLBarItem(CSoftkbdIMX *pimx);
|
|
~CLBarItem();
|
|
|
|
STDMETHODIMP GetIcon(HICON *phIcon);
|
|
void UpdateToggle();
|
|
|
|
private:
|
|
HRESULT OnLButtonUp(const POINT pt, const RECT *prcArea);
|
|
|
|
CSoftkbdIMX *_pimx;
|
|
};
|
|
|
|
#endif // NUI_H
|