• R/O
  • HTTP
  • SSH
  • HTTPS

Molby: コミット

Molecular Modeling Software


コミットメタ情報

リビジョンb23a623655ee2177fd136722aad2ab2a434ecc33 (tree)
日時2014-03-24 01:37:41
作者toshinagata1964 <toshinagata1964@a2be...>
コミッターtoshinagata1964

ログメッセージ

Z matrix import is implemented.

git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/molby/trunk@493 a2be9bc6-48de-4e38-9406-05402d4bc13c

変更サマリ

差分

--- a/wxSources/MyApp.cpp
+++ b/wxSources/MyApp.cpp
@@ -247,6 +247,7 @@ bool MyApp::OnInit(void)
247247 new wxDocTemplate(m_docManager, _T("SHELX Input File"), _T("*.ins;*.res"), _T(""), _T("ins"), _T("Molecule Doc"), _T("Molecule View"), CLASSINFO(MyDocument), CLASSINFO(MoleculeView));
248248 new wxDocTemplate(m_docManager, _T("Crystallographic Information File"), _T("*.cif"), _T(""), _T("cif"), _T("Molecule Doc"), _T("Molecule View"), CLASSINFO(MyDocument), CLASSINFO(MoleculeView));
249249 new wxDocTemplate(m_docManager, _T("Cartesian"), _T("*.xyz"), _T(""), _T("xyz"), _T("Molecule Doc"), _T("Molecule View"), CLASSINFO(MyDocument), CLASSINFO(MoleculeView));
250+ new wxDocTemplate(m_docManager, _T("Z Matrix"), _T("*.zmat"), _T(""), _T("zmat"), _T("Molecule Doc"), _T("Molecule View"), CLASSINFO(MyDocument), CLASSINFO(MoleculeView));
250251 new wxDocTemplate(m_docManager, _T("Any Molecule"), _T("*.*"), _T(""), _T(""), _T("Molecule Doc"), _T("Molecule View"), CLASSINFO(MyDocument), CLASSINFO(MoleculeView));
251252
252253 // Create the main frame window
--- a/wxSources/MyDocManager.cpp
+++ b/wxSources/MyDocManager.cpp
@@ -29,7 +29,7 @@ EVT_MENU(wxID_REVERT, MyDocManager::OnFileRevert)
2929 END_EVENT_TABLE()
3030
3131 static const char *sReadOnlyTypes[] = {
32- "out", "fchk", "log", "dat", "ins", "res", "xyz", NULL
32+ "out", "fchk", "log", "dat", "ins", "res", NULL
3333 };
3434
3535 void
旧リポジトリブラウザで表示