本文整理汇总了C++中CBox::StartPack方法的典型用法代码示例。如果您正苦于以下问题:C++ CBox::StartPack方法的具体用法?C++ CBox::StartPack怎么用?C++ CBox::StartPack使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CBox
的用法示例。
在下文中一共展示了CBox::StartPack方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PushLabel
void CButtonBar::PushLabel(const std::string &n, const std::string &d)
{
CBox *lbox = new CBox(HORIZONTAL, false);
CLabel *label = new CLabel(n + ": ");
label->SetDFColors(GetFColors());
lbox->StartPack(label, false, false, 0, 0);
label = new CLabel(d);
label->SetDFColors(GetDFColors());
lbox->StartPack(label, false, false, 0, 0);
m_pCurBox->StartPack(lbox, true, false, 0, 0);
}
示例2: AddLuaWidget
void CLuaGroup::AddLuaWidget(CLuaWidget *w)
{
if (m_bInitEnable)
{
m_bInitEnable = false;
Enable(true);
}
// Update each widget's max size, this is necessary before adding new widget because they
// may request too much width
const TWidgetList &list = GetWidgetList();
const int size = SafeConvert<int>(list.size()) + 1; // +1 because new widget is not added yet
const int maxwidgetsw = NNCurses::GetMaxWidth() - 6;
const int maxwidth = (maxwidgetsw - (LuaWidgetSpacing() * (size-1))) / size;
for (TWidgetList::const_iterator it=list.begin(); it!=list.end(); it++)
{
CLuaWidget *luaw = dynamic_cast<CLuaWidget *>(*it);
if (luaw)
luaw->SetMaxWidth(maxwidth);
}
CBox *box = new CBox(VERTICAL, false);
box->StartPack(w, true, false, 0, 0);
w->SetMaxWidth(maxwidth);
StartPack(box, true, true, 0, 0);
}