本文整理汇总了C++中BlockFile::Recover方法的典型用法代码示例。如果您正苦于以下问题:C++ BlockFile::Recover方法的具体用法?C++ BlockFile::Recover怎么用?C++ BlockFile::Recover使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlockFile
的用法示例。
在下文中一共展示了BlockFile::Recover方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ProjectFSCK
//.........这里部分代码省略.........
if (silentlycorrect)
{
// In "silently correct" mode, we always create silent blocks. This
// makes sure the project is complete even if we open it again.
action = 0;
} else
{
wxString promptA =
_("Project check detected %d input file[s] being used in place\n('alias files') are now missing. There is no way for Audacity\nto recover these files automatically; you may choose to\npermanently fill in silence for the missing files, temporarily\nfill in silence for this session only, or close the project now\nand try to restore the missing files by hand.");
wxString prompt;
prompt.Printf(promptA,missingAliasFiles.size());
const wxChar *buttons[]={_("Replace missing data with silence [permanent upon save]"),
_("Temporarily replace missing data with silence [this session only]"),
_("Close project immediately with no further changes"),NULL};
action = ShowMultiDialog(prompt,
_("Warning"),
buttons);
if(action==2)return (ret | FSCKstatus_CLOSEREQ);
}
BlockHash::iterator i=missingAliasList.begin();
while(i != missingAliasList.end()) {
AliasBlockFile *b = (AliasBlockFile *)i->second; //this is
//safe, we checked that it's an alias block file earlier
if(action==0){
// silence the blockfiles by yanking the filename
wxFileName dummy;
dummy.Clear();
b->ChangeAliasedFile(dummy);
b->Recover();
ret |= FSCKstatus_CHANGED;
}else if(action==1){
// silence the log for this session
b->SilenceAliasLog();
}
i++;
}
}
// Summary regeneration must happen after alias checking.
if(!missingSummaryList.empty()){
int action;
if (silentlycorrect)
{
// In "silently correct" mode we just recreate the summary files
action = 0;
} else
{
wxString promptA =
_("Project check detected %d missing summary file[s] (.auf).\nAudacity can fully regenerate these summary files from the\noriginal audio data in the project.");
wxString prompt;
prompt.Printf(promptA,missingSummaryList.size());
const wxChar *buttons[]={_("Regenerate summary files [safe and recommended]"),
_("Fill in silence for missing display data [this session only]"),
_("Close project immediately with no further changes"),NULL};
action = ShowMultiDialog(prompt,
_("Warning"),
buttons);