示例#1
0
void Panel::addTab( const std::string contentID )
{
	TabPtr newTab = new Tab( this, contentID );
	tabList_.push_back( newTab );
	tabBar_->insertItem( newTab->getTabDisplayString(), newTab->getIcon(), newTab.getObject() );
	newTab->show( true );
	setActiveTab( newTab );
}
示例#2
0
void Panel::insertTempTab( TabPtr tab )
{
	if ( activeTab_ && isExpanded_ )
		activeTab_->getCWnd()->ShowWindow( SW_HIDE );
	tempTab_ = tab;
	tabBar_->insertItem( tab->getTabDisplayString(), tab->getIcon(), tab.getObject() );
	updateTabBar();
	recalcSize();
	UpdateWindow();
}
示例#3
0
void Panel::addTab( TabPtr tab )
{
	tab->getCWnd()->SetParent( this );
	tabList_.push_back( tab );
	if ( tab->isVisible() )
	{
		tabBar_->insertItem( tab->getTabDisplayString(), tab->getIcon(), tab.getObject() );
		setActiveTab( tab );
	}
}
示例#4
0
void Panel::showTab( TabPtr tab, bool show )
{
	TabItr i;
	for( i = tabList_.begin(); i != tabList_.end(); ++i )
		if ( (*i) == tab )
			break;

	if ( i == tabList_.end() )
		return;

	if ( show )
	{
		if ( !tabBar_->contains( tab.getObject() ) )
		{
			tab->setVisible( true );
			tabBar_->insertItem( tab->getTabDisplayString(), tab->getIcon(), tab.getObject() );
		}

		setActiveTab( tab );
	}
	else
	{
		if ( tabBar_->contains( tab.getObject() ) )
		{
			tab->show( false );
			tabBar_->removeItem( tab.getObject() );
		}

		if ( activeTab_ == tab )
		{
			for( i = tabList_.begin(); i != tabList_.end(); ++i )
			{
				if ( tabBar_->contains( (*i).getObject() ) )
				{
					setActiveTab( (*i) );
					break;
				}
			}
		}
	}

	updateTabBar();

	if ( tabBar_->itemCount() == 0 )
		Manager::instance().dock()->showPanel( this, false );
}