⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helptasks.cpp

📁 gspiceui电子CAD仿真程序.用于电路参数模拟仿真
💻 CPP
字号:
//*****************************************************************************//                                HelpTasks.cpp                               *//                               ---------------                              *//  Started     : 03/06/2005                                                  *//  Last Update : 20/06/2005                                                  *//  Copyright   : (C) 2005 by M.S.Waters                                      *//  Email       : M.Waters@bom.gov.au                                         *//*****************************************************************************//*****************************************************************************//                                                                            *//    This program is free software; you can redistribute it and/or modify    *//    it under the terms of the GNU General Public License as published by    *//    the Free Software Foundation; either version 2 of the License, or       *//    (at your option) any later version.                                     *//                                                                            *//*****************************************************************************#include "HelpTasks.hpp"#include "FrmMain.hpp"//*****************************************************************************// Constructor.HelpTasks::HelpTasks( void ){  m_poFrmMain = NULL;}//*****************************************************************************// Destructor.HelpTasks::~HelpTasks( ){}//*****************************************************************************// Display the GSpiceUI help contents.void  HelpTasks::Content( void ){  wxString  os1;  os1 << wxT("\n        Not Yet Implemented.\n\n")      << wxT("Refer to the file html/GSpiceUI.html   \n")      << wxT("in the gSpiceUI source directory.   \n");  wxMessageBox( os1, wxT("Help Contents"), wxOK | wxCENTRE, m_poFrmMain );}//*****************************************************************************// Display the GNU-Cap manual.void  HelpTasks::GnuCap( void ){  wxString  os1;  os1 << wxT("\n        Not Yet Implemented.\n\n")      << wxT("Refer to the documentation that   \n")      << wxT("comes with the GNU-Cap sources.   \n");  wxMessageBox( os1, wxT("GNU-Cap Manual"), wxOK | wxCENTRE, m_poFrmMain );}//*****************************************************************************// Display the NG-Spice manual.void  HelpTasks::NgSpice( void ){  wxString  os1;  os1 << wxT("\n        Not Yet Implemented.\n\n")      << wxT("Refer to the documentation that   \n")      << wxT("comes with the NG-Spice sources.   \n");  wxMessageBox( os1, wxT("NG-Spice Manual"), wxOK | wxCENTRE, m_poFrmMain );}//*****************************************************************************// Display about message dialog.void  HelpTasks::About( void ){  wxString  os1;  long      lStyle;  os1 << wxT("\n   " ) << APP_NAME << wxT("  -  ") << APP_VERSION << wxT("       \n")      << wxT("                 Copyright (c) Mike Waters 2003\n\n")      << wxT("This application is intended to provide a GUI for various\n")      << wxT("freely available Spice circuit analysis packages:\n\n")      << wxT("               Gnu-CAP\n")      << wxT("               NG-Spice\n\n")      << wxT("GNU Spice GUI is base on the ") << wxVERSION_STRING << wxT(" library.\n")      << wxT("It uses GNetList to import schematic files and GWave to\n")      << wxT("plot waveform data.\n\n")      << wxT("GSpiceUI comes with ABSOLUTELY NO WARRANTY.\n")      << wxT("This is Free Software, and you are welcome to distribute\n")      << wxT("it under the terms of the GNU General Public License.\n");  lStyle = wxOK | wxICON_INFORMATION;  wxMessageBox( os1, wxT("About ") APP_NAME, lStyle, m_poFrmMain );}//*****************************************************************************

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -