本文整理汇总了C++中lexerconf::Ptr_t::GetFileSpec方法的典型用法代码示例。如果您正苦于以下问题:C++ Ptr_t::GetFileSpec方法的具体用法?C++ Ptr_t::GetFileSpec怎么用?C++ Ptr_t::GetFileSpec使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lexerconf::Ptr_t
的用法示例。
在下文中一共展示了Ptr_t::GetFileSpec方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: IsPHPFileByExt
bool IsPHPFileByExt(const wxString& filename)
{
wxFileName fileName = filename;
LexerConf::Ptr_t lexer = EditorConfigST::Get()->GetLexer(wxT("php"));
wxString fileSpec;
if(!lexer) {
// Incase somehow we failed in retrieving the lexer (corrupted XML file)
// use some hardcoded file spec
fileSpec = wxT("*.php;*.inc;*.phtml");
} else {
fileSpec = lexer->GetFileSpec();
}
wxStringTokenizer tkz(fileSpec, wxT(";"));
while(tkz.HasMoreTokens()) {
wxString fileExt = tkz.NextToken();
wxString fullname = fileName.GetFullName();
fileExt.MakeLower();
fullname.MakeLower();
if(wxMatchWild(fileExt, fullname)) {
return true;
}
}
return false;
}
示例2: OnActiveEditorChanged
void OutlineTab::OnActiveEditorChanged(wxCommandEvent& e)
{
e.Skip();
IEditor* editor = m_mgr->GetActiveEditor();
LexerConf::Ptr_t phpLexer = ColoursAndFontsManager::Get().GetLexer("php");
LexerConf::Ptr_t cxxLexer = ColoursAndFontsManager::Get().GetLexer("c++");
// Use the lexer to determine if we can show outline
if(editor && cxxLexer && FileUtils::WildMatch(cxxLexer->GetFileSpec(), editor->GetFileName())) {
m_tree->BuildTree(editor->GetFileName(), false);
m_simpleBook->SetSelection(OUTLINE_TAB_CXX);
m_textCtrlSearch->Enable(true);
} else if(editor && phpLexer && FileUtils::WildMatch(phpLexer->GetFileSpec(), editor->GetFileName())) {
m_treeCtrlPhp->BuildTree(editor->GetFileName());
m_simpleBook->SetSelection(OUTLINE_TAB_PHP);
m_textCtrlSearch->Enable(true);
} else {
m_simpleBook->SetSelection(OUTLINE_PLACE_HOLDER_PAGE);
m_textCtrlSearch->Enable(false);
}
}