31#include <wx/html/htmlwin.h>
32#include <wx/hyperlink.h>
33#include <wx/statbmp.h>
34#include <wx/sstream.h>
35#include <wx/txtstrm.h>
36#include <wx/statbox.h>
37#include <wx/stattext.h>
48#include "../images/AudacityLogoWithName.xpm"
58#include "RevisionIdent.h"
61#define REV_TIME "unknown date and time"
65#define REV_IDENT wxString( "[[https://github.com/audacity/audacity/commit/" )+ REV_LONG + "|" + wxString( REV_LONG ).Left(6) + "]] of " + REV_TIME
67#define REV_IDENT (XO("No revision identifier was provided").Translation())
70#if defined(HAS_SENTRY_REPORTING) || defined(HAVE_UPDATES_CHECK) || defined(USE_BREAKPAD)
71#define HAS_PRIVACY_POLICY
81 const auto sysAdminFormat =
83 XO(
"%s, system administration");
84 const auto coFounderFormat =
86 XO(
"%s, co-founder and developer");
87 const auto designerFormat =
90 const auto developerFormat =
93 const auto developerAndSupprtFormat =
95 XO(
"%s, developer and support");
96 const auto documentationAndSupportFormat =
98 XO(
"%s, documentation and support");
99 const auto qaDocumentationAndSupportFormat =
101 XO(
"%s, QA tester, documentation and support");
102 const auto documentationAndSupportFrenchFormat =
104 XO(
"%s, documentation and support, French");
105 const auto qualityAssuranceFormat =
107 XO(
"%s, quality assurance");
108 const auto accessibilityAdvisorFormat =
110 XO(
"%s, accessibility advisor");
111 const auto graphicArtistFormat =
113 XO(
"%s, graphic artist");
114 const auto composerFormat =
117 const auto testerFormat =
120 const auto NyquistPluginsFormat =
122 XO(
"%s, Nyquist plug-ins");
123 const auto webDeveloperFormat =
125 XO(
"%s, web developer");
126 const auto graphicsFormat =
129 const auto presetsFormat =
131 XO(
"%s, effects presets");
257 XO(
"%s (incorporating %s, %s, %s, %s and %s)")
259 "[[http://lv2plug.in/|lv2]]",
323 wxDefaultPosition, wxDefaultSize,
324 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
330 this->SetBackgroundColour(
theTheme.
Colour( clrAboutBoxBackground ));
344 .AddButton(
XXO(
"OK"), wxALIGN_CENTER,
true);
351#define ABOUT_DIALOG_WIDTH 506
363 auto translatorCreditsMsgid =
XO(
"translator_credits");
364 auto translatorCredits = translatorCreditsMsgid.Translation();
365 if ( translatorCredits == translatorCreditsMsgid.MSGID().GET() )
367 translatorCredits.clear();
369 translatorCredits +=
wxT(
"<br>");
371 wxStringOutputStream o;
372 wxTextOutputStream informationStr( o );
378 << wxString(AUDACITY_VERSION_STRING)
379 <<
wxT(
"</center></h3>")
381 <<
XO(
"%s the free, open source, cross-platform software for recording and editing sounds.")
398 <<
XO(
"Distinguished %s Team members, not currently active")
404 <<
XO(
"Contributors")
409 <<
XO(
"Website and Graphics")
414 if(!translatorCredits.empty()) informationStr
426 <<
XO(
"%s includes code from the following projects:").Format(
ProgramName )
431 <<
XO(
"Special thanks:")
438 <<
wxT(
"[[https://www.audacityteam.org/|https://www.audacityteam.org/]]")
440 <<
wxT(
"<p><br> ")
443 <<
XO(
"%s software is copyright %s 1999-2024 %s Team.")
450 <<
wxT(
" ")
452 <<
XO(
"The name %s is a registered trademark.")
459 S.StartVerticalLay(1);
462 wxBitmap logo(AudacityLogoWithName_xpm);
465 const float fScale = 1.0f;
466 wxImage RescaledImage(logo.ConvertToImage());
468 RescaledImage.GetRed(1,1),
469 RescaledImage.GetGreen(1,1),
470 RescaledImage.GetBlue(1,1));
471 pPage->SetBackgroundColour(MainColour);
474 wxBitmap RescaledBitmap(RescaledImage);
477 safenew wxStaticBitmap(
S.GetParent(), -1,
485 S.Prop(0).AddWindow(
icon );
490 wxHW_SCROLLBAR_AUTO);
494 S.Prop(1).Position( wxEXPAND ).Focus()
509 wxStringOutputStream o;
510 wxTextOutputStream informationStr( o );
511 S.StartNotebookPage(
XO(
"Build Information") );
512 S.StartVerticalLay(2);
515 wxHW_SCROLLBAR_AUTO );
517 auto enabled =
XO(
"Enabled");
518 auto disabled =
XO(
"Disabled");
528 <<
wxT(
"</h3>\n<table>");
536 XO(
"Debug build (debug level %d)").Format(wxDEBUG_LEVEL);
538 XO(
"Release build (debug level %d)").Format(wxDEBUG_LEVEL);
541 if( (
sizeof(
void*) == 8) ) {
542 buildType =
XO(
"%s, 64 bits").Format( buildType );
544 buildType =
XO(
"%s, 32 bits").Format( buildType );
555 wxString::Format(
wxT(
"MSVC %02d.%02d.%05d.%02d"), _MSC_VER / 100, _MSC_VER % 100, _MSC_FULL_VER % 100000, _MSC_BUILD));
558#ifdef __GNUC_PATCHLEVEL__
560 AddBuildinfoRow(&informationStr,
XO(
"Compiler:"),
wxT(
"MinGW ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
562 AddBuildinfoRow(&informationStr,
XO(
"Compiler:"),
wxT(
"GCC ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
566#ifdef __clang_version__
574 wxT(INSTALL_PREFIX));
590 informationStr <<
wxT(
"</table>\n");
596 <<
XO(
"Core Libraries")
597 <<
wxT(
"</h3>\n<table>");
600 XO(
"Cross-platform GUI library"),
Verbatim(wxVERSION_NUM_DOT_STRING_T));
606 XO(
"Sample rate conversion"), enabled);
608 informationStr <<
wxT(
"</table>\n");
612 <<
XO(
"File Format Support")
613 <<
wxT(
"</h3>\n<p>");
618 #if defined(USE_LIBMPG123)
626 &informationStr,
wxT(
"libmp3lame"),
629 XO(
"MP3 Export"), enabled);
632 &informationStr,
wxT(
"libopus"),
635 XO(
"Opus Import and Export"), disabled);
642 XO(
"Ogg Vorbis Import and Export"), enabled);
645 XO(
"Ogg Vorbis Import and Export"), disabled);
648 #if USE_LIBVORBIS && USE_LIBOPUS && USE_OPUSFILE
650 &informationStr,
wxT(
"libopus"),
652 XO(
"Opus Import and Export"), enabled);
655 &informationStr,
wxT(
"libopus"),
658 XO(
"Opus Import and Export"), disabled);
693 informationStr <<
wxT(
"</table>\n");
698 <<
wxT(
"</h3>\n<table>");
772 informationStr <<
wxT(
"</table>\n");
776 .Position( wxEXPAND )
788#if defined(HAS_PRIVACY_POLICY)
789 S.StartNotebookPage(
XC(
"Legal",
"about dialog"));
791 S.StartNotebookPage(
XO(
"GPL License"));
794#if defined(HAS_PRIVACY_POLICY)
795 S.Prop(0).StartPanel();
799 S.AddVariableText(
XC(
"PRIVACY POLICY",
"about dialog"),
true);
802 XO(
"App update checking and error reporting require network access. "
803 "These features are optional."));
810 wxT(
"%s"),
XO(
"our Privacy Policy"),
811 "https://www.audacityteam.org/about/desktop-privacy-notice/");
820 S.Prop(1).StartPanel();
824 wxHW_SCROLLBAR_AUTO );
828 S.Prop(1).Position(wxEXPAND).AddWindow( html );
855 if (item.role == role)
857 s += item.description.Translation();
863 if (s.Right(4) ==
wxT(
"<br>"))
864 s = s.Left(s.length() - 4);
874 wxTextOutputStream *
str,
const wxChar * libname,
884 <<
wxT(
"</td></tr>");
892 wxTextOutputStream *
str,
900 <<
wxT(
"</td></tr>");
static const auto ProgramName
#define ABOUT_DIALOG_WIDTH
const wxString GPL_TEXT()
#define LOGOWITHNAME_WIDTH
#define LOGOWITHNAME_HEIGHT
EVT_BUTTON(wxID_NO, DependencyDialog::OnNo) EVT_BUTTON(wxID_YES
XXO("&Cut/Copy/Paste Toolbar")
wxString FormatHtmlText(const wxString &Text)
TranslatableString Verbatim(wxString str)
Require calls to the one-argument constructor to go through this distinct global function name.
The AboutDialog shows the program version and developer credits.
void OnOK(wxCommandEvent &event)
void AddCredit(const wxString &name, Role role)
wxString GetCreditsByRole(AboutDialog::Role role)
AboutDialogCreditItemsList creditItems
void AddBuildinfoRow(wxTextOutputStream *str, const wxChar *libname, const TranslatableString &libdesc, const TranslatableString &status)
Add a table row saying if a library is used or not.
void PopulateInformationPage(ShuttleGui &S)
: Fills out the "Information" tab of the preferences dialogue
AboutDialog(wxWindow *parent)
static AboutDialog * ActiveIntance()
void PopulateLicensePage(ShuttleGui &S)
void PopulateAudacityPage(ShuttleGui &S)
An HtmlWindow that handles linked clicked - usually the link will go to our own local copy of the man...
Derived from ShuttleGuiBase, an Audacity specific class for shuttling data to and from GUI.
wxColour & Colour(int iIndex)
Holds a msgid for the translation catalog; may also bind format arguments.
TranslatableString & Format(Args &&...args) &
Capture variadic format arguments (by copy) when there is no plural.
FILES_API FilePath ConfigDir()
Audacity user config directory.
FILES_API FilePath StateDir()
Audacity user state directory.
FILES_API FilePath CacheDir()
Audacity user cache directory.
FILES_API FilePath DataDir()
Audacity user data directory.
AboutDialog * sActiveInstance