forked from mia/Aegisub
Simplify HelpButton and add some error handling
Originally committed to SVN as r5931.
This commit is contained in:
parent
3f90614fd0
commit
19503ef4f8
2 changed files with 40 additions and 97 deletions
|
@ -34,88 +34,29 @@
|
||||||
/// @ingroup custom_control
|
/// @ingroup custom_control
|
||||||
///
|
///
|
||||||
|
|
||||||
|
|
||||||
///////////
|
|
||||||
// Headers
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "help_button.h"
|
||||||
|
|
||||||
#ifndef AGI_PRE
|
#ifndef AGI_PRE
|
||||||
|
#include <algorithm>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include <wx/filename.h>
|
#include <wx/filename.h>
|
||||||
#include <wx/log.h>
|
|
||||||
#include <wx/mimetype.h>
|
#include <wx/mimetype.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "help_button.h"
|
#include <libaegisub/exception.h>
|
||||||
|
|
||||||
#include "standard_paths.h"
|
#include "standard_paths.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
|
static std::map<wxString,wxString> *pages = 0;
|
||||||
|
|
||||||
/// @brief Constructor
|
static void init_static() {
|
||||||
/// @param parent
|
|
||||||
/// @param _page
|
|
||||||
/// @param position
|
|
||||||
/// @param size
|
|
||||||
///
|
|
||||||
HelpButton::HelpButton(wxWindow *parent,wxString _page,wxPoint position,wxSize size)
|
|
||||||
: wxButton (parent,wxID_HELP,"",position,size)
|
|
||||||
{
|
|
||||||
id = _page;
|
|
||||||
Connect(GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(HelpButton::OnPressed));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// @brief Pressed
|
|
||||||
/// @param event
|
|
||||||
/// @return
|
|
||||||
///
|
|
||||||
void HelpButton::OnPressed(wxCommandEvent &event) {
|
|
||||||
// Verify if the page is valid
|
|
||||||
if (id.IsEmpty()) {
|
|
||||||
wxLogMessage("TODO");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Open
|
|
||||||
OpenPage(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// @brief Open a page
|
|
||||||
/// @param pageID
|
|
||||||
///
|
|
||||||
void HelpButton::OpenPage(const wxString pageID) {
|
|
||||||
// Transcode
|
|
||||||
InitStatic();
|
|
||||||
wxString page = (*pages)[pageID];
|
|
||||||
|
|
||||||
// Get the file type
|
|
||||||
wxFileType *type = wxTheMimeTypesManager->GetFileTypeFromExtension("html");
|
|
||||||
if (type) {
|
|
||||||
//wxString path = StandardPaths::DecodePath(wxString::Format("http://docs.aegisub.net/%s",page.c_str()));
|
|
||||||
wxString docsPath = StandardPaths::DecodePath("?data/docs");
|
|
||||||
#ifdef __WINDOWS__
|
|
||||||
docsPath.Replace("\\","/");
|
|
||||||
docsPath = "/" + docsPath;
|
|
||||||
#endif
|
|
||||||
wxString path = wxString::Format("file://%s/%s.html",docsPath,page);
|
|
||||||
wxLaunchDefaultBrowser(path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// DOCME
|
|
||||||
std::map<wxString,wxString> *HelpButton::pages = NULL;
|
|
||||||
|
|
||||||
|
|
||||||
/// @brief DOCME
|
|
||||||
///
|
|
||||||
void HelpButton::InitStatic() {
|
|
||||||
if (!pages) {
|
if (!pages) {
|
||||||
pages = new std::map<wxString,wxString>;
|
pages = new std::map<wxString, wxString>;
|
||||||
std::map<wxString,wxString> &page = *pages;
|
std::map<wxString, wxString> &page = *pages;
|
||||||
page["Attachment Manager"] = "Attachment_Manager";
|
page["Attachment Manager"] = "Attachment_Manager";
|
||||||
page["Automation Manager"] = "Automation_Manager";
|
page["Automation Manager"] = "Automation_Manager";
|
||||||
page["Colour Picker"] = "Colour_Picker";
|
page["Colour Picker"] = "Colour_Picker";
|
||||||
|
@ -140,11 +81,33 @@ void HelpButton::InitStatic() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HelpButton::HelpButton(wxWindow *parent, wxString const& page, wxPoint position, wxSize size)
|
||||||
/// @brief DOCME
|
: wxButton(parent, wxID_HELP, "", position, size)
|
||||||
///
|
{
|
||||||
void HelpButton::ClearPages() {
|
Bind(wxEVT_COMMAND_BUTTON_CLICKED, std::tr1::bind(&HelpButton::OpenPage, page));
|
||||||
if (pages) delete pages;
|
init_static();
|
||||||
|
if (pages->find(page) == pages->end())
|
||||||
|
throw agi::InternalError("Invalid help page", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HelpButton::OpenPage(wxString const& pageID) {
|
||||||
|
init_static();
|
||||||
|
wxString page = (*pages)[pageID];
|
||||||
|
|
||||||
|
// Get the file type
|
||||||
|
wxFileType *type = wxTheMimeTypesManager->GetFileTypeFromExtension("html");
|
||||||
|
if (type) {
|
||||||
|
wxString docsPath = StandardPaths::DecodePath("?data/docs");
|
||||||
|
#ifdef __WINDOWS__
|
||||||
|
docsPath.Replace("\\","/");
|
||||||
|
docsPath = "/" + docsPath;
|
||||||
|
#endif
|
||||||
|
wxString path = wxString::Format("file://%s/%s.html",docsPath,page);
|
||||||
|
if (!wxLaunchDefaultBrowser(path))
|
||||||
|
wxMessageBox("Documentation files not found.", "Error", wxOK | wxICON_ERROR);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void HelpButton::ClearPages() {
|
||||||
|
delete pages;
|
||||||
|
}
|
||||||
|
|
|
@ -34,40 +34,20 @@
|
||||||
/// @ingroup custom_control
|
/// @ingroup custom_control
|
||||||
///
|
///
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
////////////
|
|
||||||
// Includes
|
|
||||||
#ifndef AGI_PRE
|
#ifndef AGI_PRE
|
||||||
#include <map>
|
|
||||||
|
|
||||||
#include <wx/button.h>
|
#include <wx/button.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// DOCME
|
/// DOCME
|
||||||
/// @class HelpButton
|
/// @class HelpButton
|
||||||
/// @brief DOCME
|
/// @brief DOCME
|
||||||
///
|
///
|
||||||
/// DOCME
|
/// DOCME
|
||||||
class HelpButton : public wxButton {
|
class HelpButton : public wxButton {
|
||||||
private:
|
|
||||||
|
|
||||||
/// DOCME
|
|
||||||
wxString id;
|
|
||||||
void OnPressed(wxCommandEvent &event);
|
|
||||||
|
|
||||||
|
|
||||||
/// DOCME
|
|
||||||
static std::map<wxString,wxString> *pages;
|
|
||||||
static void InitStatic();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HelpButton(wxWindow *parent,wxString page="",wxPoint position=wxDefaultPosition,wxSize size=wxDefaultSize);
|
HelpButton(wxWindow *parent, wxString const& page="", wxPoint position=wxDefaultPosition, wxSize size=wxDefaultSize);
|
||||||
|
|
||||||
static void OpenPage(const wxString page);
|
static void OpenPage(wxString const& page);
|
||||||
static void ClearPages();
|
static void ClearPages();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue