2008-04-24 16:55:35 +00:00
|
|
|
|
/***************/
|
|
|
|
|
/* eda_doc.cpp */
|
|
|
|
|
/***************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
|
#pragma hdrstop
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// for all others, include the necessary headers (this file is usually all you
|
|
|
|
|
// need because it includes almost all "standard" wxWindows headers
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <wx/mimetype.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
#include <wx/tokenzr.h>
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
#include "wxstruct.h"
|
|
|
|
|
#include "common.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*****************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void WinEDA_App::ReadPdfBrowserInfos()
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*****************************************/
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Read from Common config the Pdf browser choice
|
2008-04-24 16:55:35 +00:00
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2008-04-24 16:55:35 +00:00
|
|
|
|
if( m_EDA_CommonConfig )
|
|
|
|
|
{
|
|
|
|
|
m_PdfBrowserIsDefault = m_EDA_CommonConfig->Read( wxT( "PdfBrowserIsDefault" ), TRUE );
|
|
|
|
|
m_PdfBrowser = m_EDA_CommonConfig->Read( wxT( "PdfBrowserName" ), wxEmptyString );
|
|
|
|
|
}
|
|
|
|
|
if( m_PdfBrowser.IsEmpty() )
|
|
|
|
|
m_PdfBrowserIsDefault = TRUE;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*****************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void WinEDA_App::WritePdfBrowserInfos()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*****************************************/
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Write into Common config the Pdf browser choice
|
2008-04-24 16:55:35 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-04-24 16:55:35 +00:00
|
|
|
|
if( !m_EDA_CommonConfig )
|
|
|
|
|
return;
|
|
|
|
|
if( m_PdfBrowser.IsEmpty() )
|
|
|
|
|
m_PdfBrowserIsDefault = TRUE;
|
|
|
|
|
m_EDA_CommonConfig->Write( wxT( "PdfBrowserIsDefault" ), m_PdfBrowserIsDefault );
|
|
|
|
|
m_EDA_CommonConfig->Write( wxT( "PdfBrowserName" ), m_PdfBrowser );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
// Mime type extensions (PDF files are not considered here)
|
2008-04-24 16:55:35 +00:00
|
|
|
|
static wxMimeTypesManager* mimeDatabase;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
static const wxFileTypeInfo EDAfallbacks[] =
|
2008-04-24 16:55:35 +00:00
|
|
|
|
{
|
|
|
|
|
wxFileTypeInfo( wxT( "text/html" ),
|
|
|
|
|
wxT( "wxhtml %s" ),
|
|
|
|
|
wxT( "wxhtml %s" ),
|
|
|
|
|
wxT( "html document (from Kicad)" ),
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxT( "htm" ), wxT( "html" ),NULL ),
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
|
|
|
|
wxFileTypeInfo( wxT( "application/sch" ),
|
|
|
|
|
wxT( "eeschema %s" ),
|
|
|
|
|
wxT( "eeschema -p %s" ),
|
|
|
|
|
wxT( "sch document (from Kicad)" ),
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxT( "sch" ), wxT( "SCH" ), NULL ),
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
|
|
|
|
// must terminate the table with this!
|
|
|
|
|
wxFileTypeInfo()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
/********************************************************************/
|
2008-04-24 16:55:35 +00:00
|
|
|
|
bool GetAssociatedDocument( wxFrame* frame, const wxString& LibPath,
|
|
|
|
|
const wxString& DocName )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
/* Launch the viewer for the doc file DocName (mime type)
|
2008-06-29 18:51:38 +00:00
|
|
|
|
* LibPath is the doc file search path:
|
|
|
|
|
* (kicad/library)
|
|
|
|
|
* DocName is the short filename with ext. Wildcarts are allowed
|
|
|
|
|
* Seach file is made in LibPath/doc/DocName
|
2008-04-24 16:55:35 +00:00
|
|
|
|
*
|
2008-06-29 18:51:38 +00:00
|
|
|
|
* if DocName is starting by http: or ftp: or www. the default internet browser is launched
|
2008-04-24 16:55:35 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxString docpath, fullfilename, file_ext;
|
2008-04-24 16:55:35 +00:00
|
|
|
|
wxString Line;
|
|
|
|
|
wxString command;
|
|
|
|
|
bool success = FALSE;
|
|
|
|
|
|
|
|
|
|
// Is an internet url
|
|
|
|
|
static const wxString url_header[3] = { wxT( "http:" ), wxT( "ftp:" ), wxT( "www." ) };
|
|
|
|
|
|
|
|
|
|
for( int ii = 0; ii < 3; ii++ )
|
|
|
|
|
{
|
|
|
|
|
if( DocName.First( url_header[ii] ) == 0 ) //. seems an internet url
|
|
|
|
|
{
|
|
|
|
|
wxLaunchDefaultBrowser( DocName );
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compute the full file name */
|
|
|
|
|
if( wxIsAbsolutePath( DocName ) )
|
|
|
|
|
fullfilename = DocName;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
docpath = LibPath + wxT( "doc/" );
|
|
|
|
|
fullfilename = docpath + DocName;
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
2008-04-24 16:55:35 +00:00
|
|
|
|
fullfilename.Replace( UNIX_STRING_DIR_SEP, WIN_STRING_DIR_SEP );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#else
|
2008-04-24 16:55:35 +00:00
|
|
|
|
fullfilename.Replace( WIN_STRING_DIR_SEP, UNIX_STRING_DIR_SEP );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
wxString mask( wxT( "*" ) ), extension;
|
|
|
|
|
|
2007-06-13 15:35:40 +00:00
|
|
|
|
#ifdef __WINDOWS__
|
2008-04-24 16:55:35 +00:00
|
|
|
|
mask += wxT( ".*" );
|
|
|
|
|
extension = wxT( ".*" );
|
2007-06-13 15:35:40 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
if( wxIsWild( fullfilename ) )
|
|
|
|
|
{
|
|
|
|
|
fullfilename =
|
|
|
|
|
EDA_FileSelector( _( "Doc Files" ), /* Titre de la fenetre */
|
|
|
|
|
wxPathOnly( fullfilename ), /* Chemin par defaut */
|
|
|
|
|
fullfilename, /* nom fichier par defaut */
|
|
|
|
|
extension, /* extension par defaut */
|
|
|
|
|
mask, /* Masque d'affichage */
|
|
|
|
|
frame, /* parent frame */
|
|
|
|
|
wxFD_OPEN, /* wxSAVE, wxFD_OPEN ..*/
|
|
|
|
|
TRUE, /* true = ne change pas le repertoire courant */
|
|
|
|
|
wxPoint( -1, -1 )
|
2008-06-29 18:51:38 +00:00
|
|
|
|
);
|
2008-04-24 16:55:35 +00:00
|
|
|
|
if( fullfilename.IsEmpty() )
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !wxFileExists( fullfilename ) )
|
|
|
|
|
{
|
|
|
|
|
Line = _( "Doc File " ) + fullfilename + _( " not found" );
|
|
|
|
|
DisplayError( frame, Line );
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxFileName CurrentFileName( fullfilename );
|
|
|
|
|
file_ext = CurrentFileName.GetExt();
|
|
|
|
|
if( file_ext == wxT( "pdf" ) )
|
2008-04-24 16:55:35 +00:00
|
|
|
|
{
|
2008-06-29 18:51:38 +00:00
|
|
|
|
success = OpenPDF( fullfilename );
|
|
|
|
|
return success;
|
|
|
|
|
}
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
/* Try to launch some browser (usefull under linux) */
|
|
|
|
|
wxFileType* filetype;
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxString type;
|
|
|
|
|
filetype = wxTheMimeTypesManager->GetFileTypeFromExtension( file_ext );
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
if( !filetype ) // 2ieme tentative
|
|
|
|
|
{
|
|
|
|
|
mimeDatabase = new wxMimeTypesManager;
|
|
|
|
|
mimeDatabase->AddFallbacks( EDAfallbacks );
|
|
|
|
|
filetype = mimeDatabase->GetFileTypeFromExtension( file_ext );
|
|
|
|
|
delete mimeDatabase;
|
|
|
|
|
mimeDatabase = NULL;
|
|
|
|
|
}
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2008-06-29 18:51:38 +00:00
|
|
|
|
if( filetype )
|
|
|
|
|
{
|
|
|
|
|
wxFileType::MessageParameters params( fullfilename, type );
|
|
|
|
|
|
|
|
|
|
success = filetype->GetOpenCommand( &command, params );
|
|
|
|
|
delete filetype;
|
|
|
|
|
if( success )
|
|
|
|
|
success = ProcessExecute( command );
|
2008-04-24 16:55:35 +00:00
|
|
|
|
}
|
2008-06-29 18:51:38 +00:00
|
|
|
|
|
|
|
|
|
if( !success )
|
2008-04-24 16:55:35 +00:00
|
|
|
|
{
|
2008-06-29 18:51:38 +00:00
|
|
|
|
Line.Printf( _( "Unknown MIME type for Doc File [%s]" ),
|
|
|
|
|
fullfilename.GetData() );
|
|
|
|
|
DisplayError( frame, Line );
|
2008-04-24 16:55:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/******************************************************************/
|
2008-04-24 16:55:35 +00:00
|
|
|
|
int KeyWordOk( const wxString& KeyList, const wxString& Database )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/******************************************************************/
|
2008-04-24 16:55:35 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Recherche si dans le texte Database on retrouve tous les mots
|
2008-06-29 18:51:38 +00:00
|
|
|
|
* cles donnes dans KeyList ( KeyList = suite de mots cles
|
|
|
|
|
* separes par des espaces
|
|
|
|
|
* Retourne:
|
|
|
|
|
* 0 si aucun mot cle trouv<EFBFBD>
|
|
|
|
|
* 1 si mot cle trouv<EFBFBD>
|
2008-04-24 16:55:35 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-04-24 16:55:35 +00:00
|
|
|
|
wxString KeysCopy, DataList;
|
|
|
|
|
|
|
|
|
|
if( KeyList.IsEmpty() )
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
KeysCopy = KeyList; KeysCopy.MakeUpper();
|
|
|
|
|
DataList = Database; DataList.MakeUpper();
|
|
|
|
|
|
|
|
|
|
wxStringTokenizer Token( KeysCopy, wxT( " \n\r" ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
while( Token.HasMoreTokens() )
|
|
|
|
|
{
|
2008-06-29 18:51:38 +00:00
|
|
|
|
wxString Key = Token.GetNextToken();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-24 16:55:35 +00:00
|
|
|
|
// Search Key in Datalist:
|
|
|
|
|
wxStringTokenizer Data( DataList, wxT( " \n\r" ) );
|
|
|
|
|
|
|
|
|
|
while( Data.HasMoreTokens() )
|
|
|
|
|
{
|
|
|
|
|
wxString word = Data.GetNextToken();
|
|
|
|
|
if( word == Key )
|
2008-06-29 18:51:38 +00:00
|
|
|
|
return 1; // Key found !
|
2008-04-24 16:55:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// keyword not found
|
|
|
|
|
return 0;
|
|
|
|
|
}
|