79 lines
1.8 KiB
C++
79 lines
1.8 KiB
C++
/****************************************************/
|
|
/* Affichage du panneau d'information (copyright..) */
|
|
/* Commun a CVPCB, EESCHEMA et PCBNEW */
|
|
/****************************************************/
|
|
|
|
#include "fctsys.h"
|
|
#include "gr_basic.h"
|
|
#include "common.h"
|
|
|
|
#ifdef KICAD_PYTHON
|
|
#include <pyhandler.h>
|
|
#endif
|
|
|
|
// Import:
|
|
extern wxString g_Main_Title;
|
|
|
|
wxString MsgInfos(
|
|
#ifdef GERBVIEW
|
|
wxT("** GERBVIEW (jul 2001 .. 2007) **")
|
|
#else
|
|
#ifdef PCBNEW
|
|
wxT("** PCBNEW (sept 1992 .. 2007) **")
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef CVPCB
|
|
wxT("** CVPCB (sept 1992 .. 2007) **")
|
|
#endif
|
|
|
|
#ifdef KICAD
|
|
wxT("** KICAD (jul 2000 .. 2007) **")
|
|
#endif
|
|
|
|
#ifdef EESCHEMA
|
|
wxT("** EESCHEMA (sept 1994 .. 2007) **")
|
|
#endif
|
|
);
|
|
|
|
// Routines Locales
|
|
|
|
/*******************************************/
|
|
void Print_Kicad_Infos(wxWindow * frame)
|
|
/*******************************************/
|
|
{
|
|
wxString AboutCaption = wxT("About ");
|
|
|
|
wxString Msg = MsgInfos;
|
|
Msg << wxT("\n\n") << _("Build Version:") << wxT("\n") ;
|
|
|
|
Msg << g_Main_Title << wxT(" ") << GetBuildVersion();
|
|
#if wxUSE_UNICODE
|
|
Msg << wxT(" - Unicode version");
|
|
#else
|
|
Msg << wxT(" - Ansi version");
|
|
#endif
|
|
|
|
#ifdef KICAD_PYTHON
|
|
Msg << wxT("\n");
|
|
Msg << wxT( "python : " );
|
|
Msg << wxString::FromAscii( PyHandler::GetInstance()->GetVersion() );
|
|
#endif
|
|
|
|
Msg << wxT("\n\n") << _("Author:");
|
|
Msg << wxT(" JP CHARRAS\n\n") << _("Based on wxWidgets ");
|
|
Msg << wxMAJOR_VERSION << wxT(".") <<
|
|
wxMINOR_VERSION << wxT(".") << wxRELEASE_NUMBER;
|
|
if( wxSUBRELEASE_NUMBER )
|
|
Msg << wxT(".") << wxSUBRELEASE_NUMBER;
|
|
Msg << _("\n\nGPL License");
|
|
Msg << _("\n\nWeb sites:\n");
|
|
Msg << wxT("http://iut-tice.ujf-grenoble.fr/kicad/\n");
|
|
Msg << wxT("http://www.gipsa-lab.inpg.fr/realise_au_lis/kicad/");
|
|
|
|
AboutCaption << g_Main_Title << wxT(" ") << GetBuildVersion();
|
|
|
|
wxMessageBox(Msg, AboutCaption, wxICON_INFORMATION, frame);
|
|
}
|
|
|