本文整理汇总了C++中wt::WTemplate类的典型用法代码示例。如果您正苦于以下问题:C++ WTemplate类的具体用法?C++ WTemplate怎么用?C++ WTemplate使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WTemplate类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: TopicTemplate
Wt::WWidget *FormWidgets::autoComplete()
{
Wt::WTemplate *result = new TopicTemplate("forms-autoComplete");
result->bindWidget("AutoComplete", AutoComplete());
return result;
}
示例2: TopicTemplate
Wt::WWidget *Navigation::navigationBar()
{
Wt::WTemplate *result = new TopicTemplate("navigation-navigationBar");
result->bindWidget("NavigationBar", NavigationBar());
return result;
}
示例3: TopicTemplate
Wt::WWidget *GraphicsWidgets::categoryChart()
{
Wt::WTemplate *result = new TopicTemplate("graphics-CategoryChart");
result->bindWidget("CategoryChart", CategoryChart());
return result;
}
示例4:
void
ShareEdit::displayNotFound(void)
{
clear();
Wt::WTemplate *t = addNew<Wt::WTemplate>(tr("template-share-not-found"));
t->addFunction("tr", &Wt::WTemplate::Functions::tr);
}
示例5: TopicTemplate
Wt::WWidget *TreesTables::treeTables()
{
Wt::WTemplate *result = new TopicTemplate("treestables-TreeTables");
result->bindWidget("TreeTable", TreeTable());
return result;
}