Lines Matching refs:pMyItem
172 MYITEM *pMyItem = new MYITEM; in addMenuItem() local
173 pMyItem->text = text; in addMenuItem()
174 pMyItem->iconId = iconId; in addMenuItem()
175 pMyItem->module = module; in addMenuItem()
176 mi.dwItemData = (DWORD) pMyItem; in addMenuItem()
293 MYITEM *pMyItem; in deleteSystrayMenu() local
301 pMyItem = (MYITEM*) mi.dwItemData; in deleteSystrayMenu()
302 if( pMyItem ) in deleteSystrayMenu()
304 pMyItem->text = OUString(); in deleteSystrayMenu()
305 delete pMyItem; in deleteSystrayMenu()
679 MYITEM *pMyItem = (MYITEM *) lpmis->itemData; in OnMeasureItem() local
694 GetTextExtentPoint32W(hdc, reinterpret_cast<LPCWSTR>(pMyItem->text.getStr()), in OnMeasureItem()
695 pMyItem->text.getLength(), &size); in OnMeasureItem()
707 MYITEM *pMyItem = (MYITEM *) lpdis->itemData; in OnDrawItem() local
746 if ( pMyItem->module.getLength() > 0 ) in OnDrawItem()
748 LPCWSTR pModuleName = reinterpret_cast<LPCWSTR>( pMyItem->module.getStr() ); in OnDrawItem()
757 hIcon = (HICON) LoadImageA( hModule, MAKEINTRESOURCE( pMyItem->iconId ), in OnDrawItem()
786 …GetTextExtentPointW( lpdis->hDC, reinterpret_cast<LPCWSTR>(pMyItem->text.getStr()), pMyItem->text.… in OnDrawItem()
788 …DrawStateW( lpdis->hDC, (HBRUSH)NULL, (DRAWSTATEPROC)NULL, (LPARAM)pMyItem->text.getStr(), (WPARAM… in OnDrawItem()