本文整理汇总了C++中MaterialDoc::RemoveStage方法的典型用法代码示例。如果您正苦于以下问题:C++ MaterialDoc::RemoveStage方法的具体用法?C++ MaterialDoc::RemoveStage怎么用?C++ MaterialDoc::RemoveStage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MaterialDoc
的用法示例。
在下文中一共展示了MaterialDoc::RemoveStage方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnDeleteStage
/**
* Deletes the selected stage when the user selects the delete menu option.
*/
void StageView::OnDeleteStage() {
CListCtrl &list = GetListCtrl();
POSITION pos = list.GetFirstSelectedItemPosition();
int nItem = -1;
if( pos ) {
nItem = list.GetNextSelectedItem( pos );
if( nItem > 0 ) {
int result = MessageBox( "Are you sure you want to delete this stage?", "Delete?", MB_ICONQUESTION | MB_YESNO );
if( result == IDYES ) {
MaterialDoc *material = materialDocManager->GetCurrentMaterialDoc();
material->RemoveStage( nItem - 1 );
}
}
}
}
示例2: OnPaste
/**
* Performs a paste operation when the user selects the menu option.
*/
void StageView::OnPaste() {
if( materialDocManager->IsCopyStage() ) {
MaterialDoc *material = materialDocManager->GetCurrentMaterialDoc();
int type;
idStr name;
materialDocManager->GetCopyStageInfo( type, name );
int existingIndex = material->FindStage( type, name );
if( type != MaterialDoc::STAGE_TYPE_SPECIALMAP || existingIndex == -1 ) {
materialDocManager->PasteStage( material );
} else {
if( MessageBox( va( "Do you want to replace '%s' stage?", name.c_str() ), "Replace?", MB_ICONQUESTION | MB_YESNO ) == IDYES ) {
material->RemoveStage( existingIndex );
materialDocManager->PasteStage( material );
}
}
}
}
示例3: Undo
/**
* Performs an undo operation of an inserted stage.
*/
void StageInsertModifier::Undo()
{
MaterialDoc *material = manager->CreateMaterialDoc(materialName);
material->RemoveStage(stageNum, false);
}
示例4: Redo
/**
* Performs a redo operation of a deleted stage.
*/
void StageDeleteModifier::Redo()
{
MaterialDoc *material = manager->CreateMaterialDoc(materialName);
material->RemoveStage(stageNum, false);
}