本文整理汇总了C++中TabBar::addTabChild方法的典型用法代码示例。如果您正苦于以下问题:C++ TabBar::addTabChild方法的具体用法?C++ TabBar::addTabChild怎么用?C++ TabBar::addTabChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TabBar
的用法示例。
在下文中一共展示了TabBar::addTabChild方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: createOutputBar
// -- WIN32IDE ---
TabBar* WIN32IDE :: createOutputBar()
{
TabBar* tabBar = new TabBar(_appWindow, Settings::tabWithAboveScore);
_output = new Output(tabBar, _appWindow);
_messageList = new MessageLog(tabBar);
tabBar->addTabChild(OUTPUT_TAB, _output);
tabBar->addTabChild(MESSAGES_TAB, _messageList);
tabBar->_setHeight(120);
Splitter* bottomSplitter = new Splitter(_appWindow, tabBar, false, IDM_LAYOUT_CHANGED);
bottomSplitter->_setConstraint(60, 100);
_appWindow->_getLayoutManager()->setAsBottom(bottomSplitter);
controls.add(tabBar);
controls.add(_output);
controls.add(_messageList);
controls.add(bottomSplitter);
return tabBar;
}
示例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: 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]);
}
示例4: 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();
}
示例5: 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();
}