X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=7f5193b520dfb931e643a4832a3895a21d24b9b9;hp=d8b073725c9ccf1f2fae66a7ede2901ff4cfb22e;hb=21a3eb69ff13b601703cfdcca278a3f60e949737;hpb=dc5eb7b285e647a99535740a99d73d468a856ba3 diff --git a/src/ctsim.cpp b/src/ctsim.cpp index d8b0737..7f5193b 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.105 2002/05/03 00:40:30 kevin Exp $ +** $Id: ctsim.cpp,v 1.107 2002/05/03 09:57:41 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -70,7 +70,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.105 2002/05/03 00:40:30 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.107 2002/05/03 09:57:41 kevin Exp $"; struct option CTSimApp::ctsimOptions[] = { @@ -201,8 +201,8 @@ CTSimApp::OnInit() if (! m_pFrame->getWinHelpController().Initialize(helpDir + "/ctsim")) *m_pLog << "Cannot initialize the Windows Help system" << "\n"; #else - if (! m_pFrame->getHtmlHelpController().Initialize(helpDir + "/ctsim") && - ! m_pFrame->getHtmlHelpController().Initialize("/usr/local/man/ctsim")) + if (! m_pFrame->getHtmlHelpController().Initialize("/usr/share/ctsim/ctsim") && + ! m_pFrame->getHtmlHelpController().Initialize("/usr/local/share/ctsim/ctsim")) *m_pLog << "Cannot initialize the HTML Help system" << "\n"; else { if (::wxDirExists ("/tmp")) @@ -624,12 +624,6 @@ MainFrame::OnNewImageFile (wxCommandEvent& event) return; } pImageDoc->setImageFile (pImageFile); - // pImageDoc->UpdateAllViews (NULL); - // if (ImageFileView* imageView = pImageDoc->getView()) { - // imageView->OnUpdate (imageView, NULL); - // imageView->getFrame()->SetFocus(); - // imageView->getFrame()->Show(true); - // } if (theApp->getAskDeleteNewDocs()) pImageDoc->Modify (true); } @@ -644,13 +638,6 @@ MainFrame::OnNewProjectionFile (wxCommandEvent& event) return; } pProjDoc->setProjections (pProjections); - pProjDoc->UpdateAllViews (NULL); - if (ProjectionFileView* projView = pProjDoc->getView()) { - projView->OnUpdate (projView, NULL); - projView->getFrame()->SetFocus(); - projView->getFrame()->Show(true); - } - if (theApp->getAskDeleteNewDocs()) pProjDoc->Modify (true); } @@ -1072,15 +1059,6 @@ CTSimApp::newProjectionDoc() ProjectionFileDocument* newDoc = dynamic_cast(m_pDocTemplProjection->CreateDocument ("")); if (newDoc) { ProjectionFileView* pView = newDoc->getView(); - if (pView) { - wxFrame* pFrame = pView->getFrame(); - if (pFrame) { - // wxSize size; - // m_pFrame->GetClientSize (&size.x, &size.y); - // pFrame->SetClientSize (size.x / 2, size.y / 2); - pFrame->Show (false); - } - } newDoc->SetDocumentName (m_pDocTemplProjection->GetDocumentName()); newDoc->SetDocumentTemplate (m_pDocTemplProjection); newDoc->OnNewDocument();