本文整理汇总了C++中MainMenu::SetHelpWnd方法的典型用法代码示例。如果您正苦于以下问题:C++ MainMenu::SetHelpWnd方法的具体用法?C++ MainMenu::SetHelpWnd怎么用?C++ MainMenu::SetHelpWnd使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MainMenu
的用法示例。
在下文中一共展示了MainMenu::SetHelpWnd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PegAppInitialize
/*--------------------------------------------------------------------------*/
void PegAppInitialize(PegPresentationManager *pPresent)
{
printf("err0\n");
pPresent->Screen()->SetPalette(0, 255, PegCustomPalette); /* use custom palette */
pPresent->SetColor(PCI_NORMAL, NEWMENU_BACKGRANOUD_COLOR);
printf("error1\n");
pPresent->Draw();
printf("error2\n");
/*Set default font size (only English)*/
PegTextThing::SetDefaultFont(PEG_PROMPT_FONT,&Arial14);
PegTextThing::SetDefaultFont(PEG_TBUTTON_FONT,&Arial12);
//gbCurrentLanguage = 1;
/*
if(0 == gbCurrentLanguage)
{
PegTextThing::SetDefaultFont(PEG_PROMPT_FONT,&Arial14);
PegTextThing::SetDefaultFont(PEG_TBUTTON_FONT,&Arial12);
}
else if(1 == gbCurrentLanguage)
{
PegTextThing::SetDefaultFont(PEG_PROMPT_FONT,&heiti14);
PegTextThing::SetDefaultFont(PEG_TBUTTON_FONT,&heiti12);
}
*/
printf("error3\n");
MainMenu *pWin = new MainMenu(20, 20);
printf("error4\n");
ToolTip * pToolTip = new ToolTip(0, 0, NULL);
pWin->SetToolTipWnd(pToolTip);
printf("err111\n");
TVHelpWnd * pTVHelpWnd = new TVHelpWnd(pWin->mReal.wLeft + 400, pWin->mReal.wTop);
pWin->SetHelpWnd(pTVHelpWnd);
/*set translucency*/
pPresent->Add(pTVHelpWnd);
pPresent->Add(pToolTip, FALSE);
pPresent->Add(pWin);
pWin->ProcessUpDownKey();
PegMessage tmpMsg;
tmpMsg.pTarget = pToolTip;
tmpMsg.pSource = pPresent;
tmpMsg.wType = PM_SHOW;
pPresent->Message(tmpMsg);
}