+ if (dialog.ShowModal() == wxID_OK)
+ {
+ m_text->Clear();
+
+#ifdef __WXX11__
+ wxFileName fname( dialog.GetPath() );
+ if ((fname.GetExt() == "cpp") ||
+ (fname.GetExt() == "c") ||
+ (fname.GetExt() == "h") ||
+ (fname.GetExt() == "cxx") ||
+ (fname.GetExt() == "hxx"))
+ {
+ m_text->SetLanguage( wxSOURCE_LANG_CPP );
+ }
+ else
+ if (fname.GetExt() == "py")
+ {
+ m_text->SetLanguage( wxSOURCE_LANG_PYTHON );
+ }
+ else
+ if ((fname.GetExt() == "pl") ||
+ (fname.GetExt() == "pm"))
+ {
+ m_text->SetLanguage( wxSOURCE_LANG_PYTHON );
+ }
+ else
+ {
+ m_text->SetLanguage( wxSOURCE_LANG_NONE );
+ }
+#endif
+
+ m_text->LoadFile( dialog.GetPath() );
+ }