本文整理汇总了C++中TabBar::show方法的典型用法代码示例。如果您正苦于以下问题:C++ TabBar::show方法的具体用法?C++ TabBar::show怎么用?C++ TabBar::show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TabBar
的用法示例。
在下文中一共展示了TabBar::show方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: openMessageList
void MainWindow :: openMessageList()
{
TabBar* tabBar = ((TabBar*)_controls[CTRL_TABBAR]);
tabBar->addTabChild(MESSAGES_TAB, (Control*)_controls[CTRL_MESSAGELIST]);
tabBar->show();
tabBar->selectTabChild((Control*)_controls[CTRL_MESSAGELIST]);
}
示例2: openCallList
void MainWindow :: openCallList()
{
TabBar* tabBar = ((TabBar*)_controls[CTRL_TABBAR]);
tabBar->addTabChild(CALLSTACK_TAB, (Control*)_controls[CTRL_CALLLIST]);
tabBar->show();
tabBar->selectTabChild((Control*)_controls[CTRL_CALLLIST]);
}
示例3: openOutput
void MainWindow :: openOutput()
{
TabBar* tabBar = ((TabBar*)_controls[CTRL_TABBAR]);
tabBar->addTabChild(OUTPUT_TAB, (Control*)_controls[CTRL_OUTPUT]);
tabBar->selectTabChild((Control*)_controls[CTRL_OUTPUT]);
tabBar->show();
}
示例4: openDebugWatch
void MainWindow :: openDebugWatch()
{
if (!isControlVisible(CTRL_CONTEXTBOWSER)) {
TabBar* tabBar = ((TabBar*)_controls[CTRL_TABBAR]);
tabBar->addTabChild(WATCH_TAB, (Control*)_controls[CTRL_CONTEXTBOWSER]);
tabBar->selectTabChild((Control*)_controls[CTRL_CONTEXTBOWSER]);
tabBar->show();
showControls(CTRL_CONTEXTBOWSER, CTRL_CONTEXTBOWSER);
}
refreshControl(CTRL_CONTEXTBOWSER);
refresh();
}