This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
108 lines
2.6 KiB
C++
108 lines
2.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/msw/helpbest.cpp
|
|
// Purpose: Tries to load MS HTML Help, falls back to wxHTML upon failure
|
|
// Author: Mattia Barbon
|
|
// Modified by:
|
|
// Created: 02/04/2001
|
|
// Copyright: (c) Mattia Barbon
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/log.h"
|
|
#endif
|
|
|
|
#include "wx/filename.h"
|
|
|
|
#if wxUSE_HELP && wxUSE_MS_HTML_HELP \
|
|
&& wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/msw/helpchm.h"
|
|
#include "wx/html/helpctrl.h"
|
|
#include "wx/msw/helpbest.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( wxBestHelpController, wxHelpControllerBase )
|
|
|
|
bool wxBestHelpController::Initialize( const wxString& filename )
|
|
{
|
|
// try wxCHMHelpController
|
|
wxCHMHelpController* chm = new wxCHMHelpController(m_parentWindow);
|
|
|
|
m_helpControllerType = wxUseChmHelp;
|
|
// do not warn upon failure
|
|
wxLogNull dontWarnOnFailure;
|
|
|
|
if( chm->Initialize( GetValidFilename( filename ) ) )
|
|
{
|
|
m_helpController = chm;
|
|
m_parentWindow = NULL;
|
|
return true;
|
|
}
|
|
|
|
// failed
|
|
delete chm;
|
|
|
|
// try wxHtmlHelpController
|
|
wxHtmlHelpController *
|
|
html = new wxHtmlHelpController(m_style, m_parentWindow);
|
|
|
|
m_helpControllerType = wxUseHtmlHelp;
|
|
if( html->Initialize( GetValidFilename( filename ) ) )
|
|
{
|
|
m_helpController = html;
|
|
m_parentWindow = NULL;
|
|
return true;
|
|
}
|
|
|
|
// failed
|
|
delete html;
|
|
|
|
return false;
|
|
}
|
|
|
|
wxString wxBestHelpController::GetValidFilename( const wxString& filename ) const
|
|
{
|
|
wxFileName fn(filename);
|
|
|
|
switch( m_helpControllerType )
|
|
{
|
|
case wxUseChmHelp:
|
|
fn.SetExt("chm");
|
|
if( fn.FileExists() )
|
|
return fn.GetFullPath();
|
|
|
|
return filename;
|
|
|
|
case wxUseHtmlHelp:
|
|
fn.SetExt("htb");
|
|
if( fn.FileExists() )
|
|
return fn.GetFullPath();
|
|
|
|
fn.SetExt("zip");
|
|
if( fn.FileExists() )
|
|
return fn.GetFullPath();
|
|
|
|
fn.SetExt("hhp");
|
|
if( fn.FileExists() )
|
|
return fn.GetFullPath();
|
|
|
|
return filename;
|
|
|
|
default:
|
|
// we CAN'T get here
|
|
wxFAIL_MSG( wxT("wxBestHelpController: Must call Initialize, first!") );
|
|
}
|
|
|
|
return wxEmptyString;
|
|
}
|
|
|
|
#endif
|
|
// wxUSE_HELP && wxUSE_MS_HTML_HELP && wxUSE_WXHTML_HELP
|