Aegisub/aegisub/src/command/help.cpp

167 lines
4.8 KiB
C++

// Copyright (c) 2005-2010, Niels Martin Hansen
// Copyright (c) 2005-2010, Rodrigo Braz Monteiro
// Copyright (c) 2010, Amar Takhar
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of the Aegisub Group nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Aegisub Project http://www.aegisub.org/
/// @file help.cpp
/// @brief help/ commands
/// @ingroup command
///
#include "../config.h"
#include "command.h"
#include "../help_button.h"
#include "../include/aegisub/context.h"
#include "../options.h"
#include <libaegisub/util.h>
#include <libaegisub/util_osx.h>
#include <wx/msgdlg.h>
namespace {
using cmd::Command;
/// @defgroup cmd-help Help commands.
/// @{
/// Visit Aegisub's bug tracker.
struct help_bugs : public Command {
CMD_NAME("help/bugs")
STR_MENU("&Bug Tracker...")
STR_DISP("Bug Tracker")
STR_HELP("Visit Aegisub's bug tracker to report bugs and request new features")
void operator()(agi::Context *c) {
if (wxGetMouseState().CmdDown()) {
if (wxGetMouseState().ShiftDown()) {
wxMessageBox("Now crashing with an access violation...");
for (char *foo = (char*)0;;) *foo++ = 42;
} else {
wxMessageBox("Now crashing with an unhandled exception...");
throw c->parent;
}
}
wxLaunchDefaultBrowser("http://devel.aegisub.org/", wxBROWSER_NEW_WINDOW);
}
};
/// Help topics.
struct help_contents : public Command {
CMD_NAME("help/contents")
STR_MENU("&Contents")
STR_DISP("Contents")
STR_HELP("Help topics")
void operator()(agi::Context *) {
HelpButton::OpenPage("Main");
}
};
#ifdef __WXMAC__
/// Resource files.
struct help_files : public Command {
CMD_NAME("help/files")
STR_MENU("All Fil&es")
STR_DISP("All Files")
STR_HELP("Resource files")
void operator()(agi::Context *) {
agi::util::OpenLocation((agi::util::GetBundleSharedSupportDirectory() + "/doc").c_str());
}
};
#endif
/// Visit Aegisub's forums.
struct help_forums : public Command {
CMD_NAME("help/forums")
STR_MENU("&Forums")
STR_DISP("Forums")
STR_HELP("Visit Aegisub's forums")
void operator()(agi::Context *) {
wxLaunchDefaultBrowser("http://forum.aegisub.org/", wxBROWSER_NEW_WINDOW);
}
};
/// Visit Aegisub's official IRC channel.
struct help_irc : public Command {
CMD_NAME("help/irc")
STR_MENU("&IRC Channel")
STR_DISP("IRC Channel")
STR_HELP("Visit Aegisub's official IRC channel")
void operator()(agi::Context *) {
wxLaunchDefaultBrowser("irc://irc.rizon.net/aegisub", wxBROWSER_NEW_WINDOW);
}
};
/// Open the manual page for Visual Typesetting.
struct help_video : public Command {
CMD_NAME("help/video")
STR_MENU("&Visual Typesetting")
STR_DISP("Visual Typesetting")
STR_HELP("Open the manual page for Visual Typesetting")
void operator()(agi::Context *) {
HelpButton::OpenPage("Visual Typesetting");
}
};
/// Visit Aegisub's official website.
struct help_website : public Command {
CMD_NAME("help/website")
STR_MENU("&Website")
STR_DISP("Website")
STR_HELP("Visit Aegisub's official website")
void operator()(agi::Context *) {
wxLaunchDefaultBrowser("http://www.aegisub.org/", wxBROWSER_NEW_WINDOW);
}
};
}
/// @}
namespace cmd {
void init_help() {
reg(agi::util::make_unique<help_bugs>());
reg(agi::util::make_unique<help_contents>());
#ifdef __WXMAC__
reg(agi::util::make_unique<help_files>());
#endif
reg(agi::util::make_unique<help_forums>());
reg(agi::util::make_unique<help_irc>());
reg(agi::util::make_unique<help_video>());
reg(agi::util::make_unique<help_website>());
}
}