X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=c6df4ae743dce967d021bf82c80e6355beaebae4;hp=5f63c7398c0e9048fc4aff9ae450529dc3fbbc33;hb=b81a8819c1122f63d0d20f559b7c75fe981c03be;hpb=28ae79fe191111dfdb0bde7f66aa6e5378c6a44c diff --git a/src/ctsim.cpp b/src/ctsim.cpp index 5f63c73..c6df4ae 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.81 2001/02/20 00:07:56 kevin Exp $ +** $Id: ctsim.cpp,v 1.83 2001/02/21 00:09:31 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 @@ -72,7 +72,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.81 2001/02/20 00:07:56 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.83 2001/02/21 00:09:31 kevin Exp $"; struct option CTSimApp::ctsimOptions[] = { @@ -85,8 +85,8 @@ struct option CTSimApp::ctsimOptions[] = IMPLEMENT_APP(CTSimApp) CTSimApp::CTSimApp() -: m_docManager(NULL), m_pFrame(NULL), m_pLog(0), m_pLogDoc(0), m_pConfig(0), - m_bAdvancedOptions(false), m_bSetModifyNewDocs(true) +: m_bAdvancedOptions(false), m_bSetModifyNewDocs(true), + m_docManager(NULL), m_pFrame(NULL), m_pLog(0), m_pLogDoc(0), m_pConfig(0) { theApp = this; } @@ -393,6 +393,7 @@ MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxMenu* help_menu = new wxMenu; help_menu->Append (MAINMENU_HELP_CONTENTS, "&Contents\tF1"); + help_menu->Append (IDH_QUICKSTART, "&Quick Start"); #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG)) help_menu->Append (MAINMENU_HELP_SECONDARY, "&Secondary Help"); @@ -432,13 +433,13 @@ MainFrame::MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const accelEntries[0].Set (wxACCEL_CTRL, static_cast('O'), wxID_OPEN); accelEntries[2].Set (wxACCEL_CTRL, static_cast('P'), MAINMENU_FILE_CREATE_PHANTOM); accelEntries[3].Set (wxACCEL_CTRL, static_cast('F'), MAINMENU_FILE_CREATE_FILTER); -#ifndef CTSIM_MDI accelEntries[4].Set (wxACCEL_NORMAL, WXK_F1, MAINMENU_HELP_CONTENTS); +#ifndef CTSIM_MDI for (i = 0; i < 10; i++) accelEntries[i+4].Set (wxACCEL_CTRL, static_cast('0'+i), MAINMENU_WINDOW_BASE+i); wxAcceleratorTable accelTable (15, accelEntries); #else - wxAcceleratorTable accelTable (4, accelEntries); + wxAcceleratorTable accelTable (5, accelEntries); #endif SetAcceleratorTable (accelTable); @@ -593,12 +594,28 @@ MainFrame::showHelp (int commandID) m_htmlHelp.DisplayContents (); #endif break; - + + case IDH_QUICKSTART: +#ifdef CTSIM_WINHELP + m_winHelp.DisplaySection (commandID); +#else + m_htmlHelp.Display (_T("Quick Start")); +#endif + break; + + case IDH_DLG_PROJECTIONS: +#ifdef CTSIM_WINHELP + m_winHelp.DisplaySection (commandID); +#else + m_htmlHelp.DisplaySection (_T("IDH_DLG_PROJECTIONS")); +#endif + break; + default: #ifdef CTSIM_WINHELP m_winHelp.DisplaySection (commandID); #else - m_htmlHelp.DisplaySection (commandID); + m_htmlHelp.Display (commandID); #endif break; } @@ -838,7 +855,7 @@ MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event) ) wxBitmap bmp (splash); if (bmp.Ok()) { BitmapDialog dlg (&bmp, "About CTSim"); - dlg.Show(true); + dlg.ShowModal(); } else { wxString msg = "CTSim\nThe Open Source Computed Tomography Simulator\n"; #ifdef CTSIMVERSION