本文整理汇总了C++中CButtonUI::SetHotForeImage方法的典型用法代码示例。如果您正苦于以下问题:C++ CButtonUI::SetHotForeImage方法的具体用法?C++ CButtonUI::SetHotForeImage怎么用?C++ CButtonUI::SetHotForeImage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CButtonUI
的用法示例。
在下文中一共展示了CButtonUI::SetHotForeImage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: IMPL_LUA_FUNC
IMPL_LUA_FUNC(LuaCButtonUI, SetHotForeImage)
{
try
{
CButtonUI* self;
self = static_cast<CButtonUI*>(LuaStatic::CheckUserData(l, 1));
CDuiString pstrText;
lua_op_t<CDuiString>::lua_to_value(l, 2, pstrText);
self->SetHotForeImage(pstrText);
return 0;
}
catch (...)
{
DuiException(_T("LuaCButtonUI::SetHotForeImage"));
return 0;
}
}
示例2: UpdateButtonImage
void CToolbarBottom::UpdateButtonImage(void* pbutton, wchar_t* strImage, int& nImageRight, int nImageWidth)
{
CButtonUI* pButton = static_cast<CButtonUI*>(pbutton);
if (NULL == pButton || NULL == strImage) return;
int nWidth = max(pButton->GetFixedWidth(), pButton->GetMinWidth());
wchar_t strDest[128] = {0};
int nLeft = (nWidth - nImageWidth) / 2;
nImageRight = nLeft + nImageWidth;
wsprintf(strDest,_T("dest='%d,4,%d,34'"), nLeft, nImageRight);
wchar_t strImagePath[128] = {0};
wsprintf(strImagePath, L"res='%s' restype='ZPIMGRES' source='0,0,%d,30' %s", strImage, nImageWidth, strDest);
pButton->SetForeImage(strImagePath);
wsprintf(strImagePath, L"res='%s' restype='ZPIMGRES' source='%d,0,%d,30' %s", strImage, nImageWidth * 2, nImageWidth * 3, strDest);
pButton->SetHotForeImage(strImagePath);
wsprintf(strImagePath, L"res='%s' restype='ZPIMGRES' source='%d,0,%d,30' %s", strImage, nImageWidth, nImageWidth * 2, strDest);
pButton->SetPushedImage(strImagePath);
}