forked from Sneeds-Feed-and-Seed/sneedacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutDialog.cpp
1216 lines (1089 loc) · 51.9 KB
/
AboutDialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**********************************************************************
Sneedacity: A Digital Audio Editor
AboutDialog.cpp
Dominic Mazzoni
Vaughan Johnson
James Crook
********************************************************************//**
\class AboutDialog
\brief The AboutDialog shows the program version and developer credits.
It is a simple scrolling window with an 'OK... Audacious!' button to
close it.
*//*****************************************************************//**
\class AboutDialogCreditItem
\brief AboutDialogCreditItem is a structure used by the AboutDialog to
hold information about one contributor to Sneedacity.
*//********************************************************************/
#include "AboutDialog.h"
#include <wx/dialog.h>
#include <wx/html/htmlwin.h>
#include <wx/button.h>
#include <wx/sizer.h>
#include <wx/statbmp.h>
#include <wx/intl.h>
#include <wx/sstream.h>
#include <wx/txtstrm.h>
#include "FileNames.h"
#include "HelpText.h"
#include "ShuttleGui.h"
#include "widgets/HelpSystem.h"
#include "AllThemeResources.h"
#include "Theme.h"
// DA: Logo for About box.
#ifdef EXPERIMENTAL_DA
#include "../images/DarkSneedacityLogoWithName.xpm"
#else
#include "../images/SneedacityLogoWithName.xpm"
#endif
// Notice this is a "system include". This is on purpose and only until
// we convert over to CMake. Once converted, the "RevisionIndent.h" file
// should be deleted and this can be changed back to a user include if
// desired.
//
// RevisionIdent.h may contain #defines like these ones:
//#define REV_LONG "28864acb238cb3ca71dda190a2d93242591dd80e"
//#define REV_TIME "Sun Apr 12 12:40:22 2015 +0100"
#include "RevisionIdent.h"
#ifndef REV_TIME
#define REV_TIME "unknown date and time"
#endif
#ifdef REV_LONG
#define REV_IDENT wxString( "[[https://github.com/Sneeds-Feed-and-Seed/sneedacity/commit/" )+ REV_LONG + "|" + wxString( REV_LONG ).Left(6) + "]] of " + REV_TIME
#else
#define REV_IDENT (XO("No revision identifier was provided").Translation())
#endif
// To substitute into many other translatable strings
static const auto ProgramName =
//XO("Sneedacity");
Verbatim("Sneedacity");
void AboutDialog::CreateCreditsList()
{
const auto sysAdminFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, system administration");
const auto coFounderFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, co-founder and developer");
const auto developerFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, developer");
const auto developerAndSupprtFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, developer and support");
const auto documentationAndSupportFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, documentation and support");
const auto qaDocumentationAndSupportFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, QA tester, documentation and support");
const auto documentationAndSupportFrenchFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, documentation and support, French");
const auto qualityAssuranceFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, quality assurance");
const auto accessibilityAdvisorFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, accessibility advisor");
const auto graphicArtistFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, graphic artist");
const auto composerFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, composer");
const auto testerFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, tester");
const auto NyquistPluginsFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, Nyquist plug-ins");
const auto webDeveloperFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, web developer");
const auto graphicsFormat =
/* i18n-hint: For "About Sneedacity..." credits, substituting a person's proper name */
XO("%s, graphics");
// The Sneedacity Team: developers and support
AddCredit(wxT("Anton Gerasimov"), developerFormat, roleTeamMember);
AddCredit(wxT("Paul Licameli"), developerFormat, roleTeamMember);
AddCredit(wxT("Vitaly Sverchinsky"), developerFormat, roleTeamMember);
AddCredit(wxT("Dmitry Vedenko"), developerFormat, roleTeamMember);
AddCredit(wxT("Anonymous contributors from 4chan technology board /g/"), developerFormat, roleTeamMember);
// Emeritus: people who were "lead developers" or made an
// otherwise distinguished contribution, but who are no
// longer active.
AddCredit(
wxT("[[https://wiki.sneedacityteam.org/wiki/User:Galeandrews|Gale Andrews]]"),
qualityAssuranceFormat, roleEmeritusTeam);
AddCredit(wxT("Richard Ash"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Christian Brochec"),
documentationAndSupportFrenchFormat, roleEmeritusTeam);
AddCredit(wxT("Matt Brubeck"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Arturo \"Buanzo\" Busleiman"), sysAdminFormat, roleEmeritusTeam);
AddCredit(wxT("Michael Chinen"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("James Crook"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Roger Dannenberg"), coFounderFormat, roleEmeritusTeam);
AddCredit(wxT("Steve Daulton"), roleEmeritusTeam);
AddCredit(wxT("Al Dimond"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Benjamin Drung"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Joshua Haberman"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Ruslan Ijbulatov"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Vaughan Johnson"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Greg Kozikowski"), documentationAndSupportFormat, roleEmeritusTeam);
AddCredit(wxT("Leland Lucius"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Dominic Mazzoni"), coFounderFormat, roleEmeritusTeam);
AddCredit(wxT("Markus Meyer"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Monty Montgomery"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Shane Mueller"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Tony Oetzmann"), documentationAndSupportFormat, roleEmeritusTeam);
AddCredit(wxT("Alexandre Prokoudine"), documentationAndSupportFormat, roleEmeritusTeam);
AddCredit(wxT("Peter Sampson"), qaDocumentationAndSupportFormat, roleEmeritusTeam);
AddCredit(wxT("Martyn Shaw"), developerFormat, roleEmeritusTeam);
AddCredit(wxT("Bill Wharrie"), documentationAndSupportFormat, roleEmeritusTeam);
// Contributors
AddCredit(wxT("Lynn Allan"), developerFormat, roleContributor);
AddCredit(wxT("Brian Armstrong"), developerFormat, roleContributor);
AddCredit(wxT("David Avery"), developerFormat, roleContributor);
AddCredit(wxT("David Bailes"), accessibilityAdvisorFormat, roleContributor);
AddCredit(wxT("William Bland"), developerFormat, roleContributor);
AddCredit(wxT("Sami Boukortt"), developerFormat, roleContributor);
AddCredit(wxT("Jeremy R. Brown"), developerFormat, roleContributor);
AddCredit(wxT("Alex S. Brown"), developerFormat, roleContributor);
AddCredit(wxT("Chris Cannam"), developerFormat, roleContributor);
AddCredit(wxT("Cory Cook"), developerFormat, roleContributor);
AddCredit(wxT("Craig DeForest"), developerFormat, roleContributor);
AddCredit(wxT("Edgar Franke (Edgar-RFT)"), developerFormat, roleContributor);
AddCredit(wxT("Mitch Golden"), developerFormat, roleContributor);
AddCredit(wxT("Brian Gunlogson"), developerFormat, roleContributor);
AddCredit(wxT("Andrew Hallendorff"), developerFormat, roleContributor);
AddCredit(wxT("Robert H\u00E4nggi"), developerFormat, roleContributor);
AddCredit(wxT("Daniel Horgan"), developerFormat, roleContributor);
AddCredit(wxT("David Hostetler"), developerFormat, roleContributor);
AddCredit(wxT("Steve Jolly"), developerFormat, roleContributor);
AddCredit(wxT("Steven Jones"), developerFormat, roleContributor);
AddCredit(wxT("Henric Jungheim"), developerFormat, roleContributor);
AddCredit(wxT("Myungchul Keum"), developerFormat, roleContributor);
AddCredit(wxT("Arun Kishore"), developerFormat, roleContributor);
AddCredit(wxT("Paul Livesey"), developerFormat, roleContributor);
AddCredit(wxT("Harvey Lubin"), graphicArtistFormat, roleContributor);
AddCredit(wxT("Max Maisel"), developerFormat, roleContributor);
AddCredit(wxT("Greg Mekkes"), developerFormat, roleContributor);
AddCredit(wxT("Abe Milde"), developerFormat, roleContributor);
AddCredit(wxT("Paul Nasca"), developerFormat, roleContributor);
AddCredit(wxT("Clayton Otey"), developerFormat, roleContributor);
AddCredit(wxT("Mark Phillips"), developerFormat, roleContributor);
AddCredit(wxT("Andr\u00E9 Pinto"), developerFormat, roleContributor);
AddCredit(wxT("Jean Claude Risset"), composerFormat, roleContributor);
AddCredit(wxT("Augustus Saunders"), developerFormat, roleContributor);
AddCredit(wxT("Benjamin Schwartz"), developerFormat, roleContributor);
AddCredit(wxT("Cliff Scott"), testerFormat, roleContributor);
AddCredit(wxT("David R. Sky"), NyquistPluginsFormat, roleContributor);
AddCredit(wxT("Rob Sykes"), developerFormat, roleContributor);
AddCredit(wxT("Mike Underwood"), developerFormat, roleContributor);
AddCredit(wxT("Philip Van Baren"), developerFormat, roleContributor);
AddCredit(wxT("Salvo Ventura"), developerFormat, roleContributor);
AddCredit(wxT("Darrell Walisser"), developerFormat, roleContributor);
AddCredit(wxT("Jun Wan"), developerFormat, roleContributor);
AddCredit(wxT("Daniel Winzen"), developerFormat, roleContributor);
AddCredit(wxT("Tom Woodhams"), developerFormat, roleContributor);
AddCredit(wxT("Mark Young"), developerFormat, roleContributor);
AddCredit(wxT("Wing Yu"), developerFormat, roleContributor);
// Website and Graphics
AddCredit(wxT("Shinta Carolinasari"), webDeveloperFormat, roleGraphics);
AddCredit(wxT("Bayu Rizaldhan Rayes"), graphicsFormat, roleGraphics);
// Libraries
AddCredit(wxT("[[https://libexpat.github.io/|expat]]"), roleLibrary);
AddCredit(wxT("[[https://xiph.org/flac/|FLAC]]"), roleLibrary);
AddCredit(wxT("[[http://lame.sourceforge.net/|LAME]]"), roleLibrary);
AddCredit(wxT("[[https://www.underbit.com/products/mad/|libmad]]"), roleLibrary);
AddCredit(wxT("[[http://www.mega-nerd.com/libsndfile/|libsndfile]]"), roleLibrary);
AddCredit(wxT("[[https://sourceforge.net/p/soxr/wiki/Home/|libsoxr]]"), roleLibrary);
AddCredit(
XO("%s (incorporating %s, %s, %s, %s and %s)")
.Format(
"[[http://lv2plug.in/|lv2]]",
"lilv",
"msinttypes",
"serd",
"sord",
"sratom"
).Translation(),
roleLibrary);
AddCredit(wxT("[[https://www.cs.cmu.edu/~music/nyquist/|Nyquist]]"), roleLibrary);
AddCredit(wxT("[[https://xiph.org/vorbis/|Ogg Vorbis]]"), roleLibrary);
AddCredit(wxT("[[http://www.portaudio.com/|PortAudio]]"), roleLibrary);
AddCredit(wxT("[[http://www.portmedia.sourceforge.net/portmidi/|PortMidi]]"), roleLibrary);
AddCredit(wxT("[[https://sourceforge.net/p/portmedia/wiki/portsmf/|portsmf]]"), roleLibrary);
AddCredit(wxT("[[http://sbsms.sourceforge.net/|sbsms]]"), roleLibrary);
AddCredit(wxT("[[https://www.surina.net/soundtouch/|SoundTouch]]"), roleLibrary);
AddCredit(wxT("[[http://www.twolame.org/|TwoLAME]]"), roleLibrary);
AddCredit(wxT("[[http://www.vamp-plugins.org/|Vamp]]"), roleLibrary);
AddCredit(wxT("[[https://wxwidgets.org/|wxWidgets]]"), roleLibrary);
// Thanks
AddCredit(wxT("Dave Beydler"), roleThanks);
AddCredit(wxT("Brian Cameron"), roleThanks);
AddCredit(wxT("Jason Cohen"), roleThanks);
AddCredit(wxT("Dave Fancella"), roleThanks);
AddCredit(wxT("Steve Harris"), roleThanks);
AddCredit(wxT("Daniel James"), roleThanks);
AddCredit(wxT("Daniil Kolpakov"), roleThanks);
AddCredit(wxT("Robert Leidle"), roleThanks);
AddCredit(wxT("Logan Lewis"), roleThanks);
AddCredit(wxT("David Luff"), roleThanks);
AddCredit(wxT("Jason Pepas"), roleThanks);
AddCredit(wxT("Jonathan Ryshpan"), roleThanks);
AddCredit(wxT("Michael Schwendt"), roleThanks);
AddCredit(wxT("Patrick Shirkey"), roleThanks);
AddCredit(wxT("Tuomas Suutari"), roleThanks);
AddCredit(wxT("Mark Tomlinson"), roleThanks);
AddCredit(wxT("David Topper"), roleThanks);
AddCredit(wxT("Rudy Trubitt"), roleThanks);
AddCredit(wxT("StreetIQ.com"), roleThanks);
AddCredit(wxT("UmixIt Technologies, LLC"), roleThanks);
AddCredit(wxT("Verilogix, Inc."), roleThanks);
}
// ----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(AboutDialog, wxDialogWrapper)
EVT_BUTTON(wxID_OK, AboutDialog::OnOK)
END_EVENT_TABLE()
IMPLEMENT_CLASS(AboutDialog, wxDialogWrapper)
namespace {
AboutDialog *sActiveInstance{};
}
AboutDialog *AboutDialog::ActiveIntance()
{
return sActiveInstance;
}
AboutDialog::AboutDialog(wxWindow * parent)
/* i18n-hint: information about the program */
: wxDialogWrapper(parent, -1, XO("About %s").Format( ProgramName ),
wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{
wxASSERT(!sActiveInstance);
sActiveInstance = this;
SetName();
this->SetBackgroundColour(theTheme.Colour( clrAboutBoxBackground ));
//this->SetBackgroundColour(theTheme.Colour( clrMedium ));
icon = NULL;
ShuttleGui S( this, eIsCreating );
S.StartNotebook();
{
PopulateSneedacityPage( S );
PopulateInformationPage( S );
PopulateLicensePage( S );
}
S.EndNotebook();
S.Id(wxID_OK)
.Prop(0)
.AddButton(XXO("OK"), wxALIGN_CENTER, true);
Fit();
this->Centre();
}
#define ABOUT_DIALOG_WIDTH 506
void AboutDialog::PopulateSneedacityPage( ShuttleGui & S )
{
CreateCreditsList();
auto par1Str =
// DA: Says that it is a customised version.
#ifdef EXPERIMENTAL_DA
wxT(
"Sneedacity, which this is a customised version of, is a free program written by a worldwide team of [[https://www.sneedacityteam.org/about/credits|volunteers]]. \
Sneedacity is [[https://www.sneedacityteam.org/download|available]] for Windows, Mac, and GNU/Linux (and other Unix-like systems).")
#else
/* Do the i18n of a string with markup carefully with hints.
(Remember languages with cases.) */
XO(
/* i18n-hint: First and third %s will be the program's name,
second %s will be "volunteers", fourth "available" */
"%s is a free program written by a worldwide team of %s. \
%s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems).")
.Format(
ProgramName,
Verbatim("[[https://www.sneedacityteam.org/about/credits|%s]]")
/* i18n-hint: substitutes into "a worldwide team of %s" */
.Format( XO("volunteers") ),
ProgramName,
Verbatim("[[https://www.sneedacityteam.org/download|%s]]")
/* i18n-hint: substitutes into "Sneedacity is %s" */
.Format( XO("available") ) )
#endif
;
// This trick here means that the English language version won't mention using
// English, whereas all translated versions will.
auto par2Str = XO(
/* i18n-hint first and third %s will be "forum", second "wiki" */
"If you find a bug or have a suggestion for us, please write, in English, to our %s. \
For help, view the tips and tricks on our %s or \
visit our %s.")
.Format(
Verbatim("[[https://forum.sneedacityteam.org/|%s]]")
/* i18n-hint substitutes into "write to our %s" */
.Format( XC("forum", "dative") ),
Verbatim("[[https://wiki.sneedacityteam.org/|%s]]")
/* i18n-hint substitutes into "view the tips and tricks on our %s" */
.Format( XO("wiki") ),
Verbatim("[[https://forum.sneedacityteam.org/|%s]]")
/* i18n-hint substitutes into "visit our %s" */
.Format( XC("forum", "accusative") ) );
auto par2StrTranslated = par2Str.Translation();
if( par2StrTranslated == par2Str.MSGID().GET() )
par2StrTranslated.Replace( wxT(", in English,"), wxT("") );
/* i18n-hint: The translation of "translator_credits" will appear
* in the credits in the About Sneedacity window. Use this to add
* your own name(s) to the credits.
*
* For example: "English translation by Dominic Mazzoni." */
auto translatorCreditsMsgid = XO("translator_credits");
auto translatorCredits = translatorCreditsMsgid.Translation();
if ( translatorCredits == translatorCreditsMsgid.MSGID().GET() )
// We're in an English locale
translatorCredits.clear();
else
translatorCredits += wxT("<br>");
wxStringOutputStream o;
wxTextOutputStream informationStr( o ); // string to build up list of information in
informationStr
<< wxT("<center>")
// DA: Description and provenance in About box
#ifdef EXPERIMENTAL_DA
#undef _
#define _(s) wxGetTranslation((s))
<< wxT("<h3>DarkSneedacity ")
<< wxString(SNEEDACITY_VERSION_STRING)
<< wxT("</center></h3>")
<< wxT("Customised version of the Sneedacity free, open source, cross-platform software " )
<< wxT("for recording and editing sounds.")
<< wxT("<p><br> <b>Sneedacity<sup>®</sup></b> software is copyright © 1999-2021 Sneedacity Team.<br>")
<< wxT(" The name <b>Sneedacity</b> is a registered trademark.<br><br>")
#else
<< XO("<h3>")
<< ProgramName
<< wxT(" ")
<< wxString(SNEEDACITY_VERSION_STRING)
<< wxT("</center></h3>")
/* i18n-hint: The program's name substitutes for %s */
<< XO("%s the free, open source, cross-platform software for recording and editing sounds.")
.Format(ProgramName)
#endif
// << wxT("<p><br>")
// << par1Str
// << wxT("<p>")
// << par2Str
<< wxT("<h3>")
<< XO("Credits")
<< wxT("</h3>")
<< wxT("<p>")
// DA: Customisation credit
#ifdef EXPERIMENTAL_DA
<< wxT("<p><b>")
<< XO("DarkSneedacity Customisation")
<< wxT("</b><br>")
<< wxT("James Crook, art, coding & design<br>")
#endif
<< wxT("<p><b>")
/* i18n-hint: The program's name substitutes for %s */
<< XO("%s Team Members").Format( ProgramName )
<< wxT("</b><br>")
<< GetCreditsByRole(roleTeamMember)
<< wxT("<p><b> ")
<< XO("Emeritus:")
<< wxT("</b><br>")
/* i18n-hint: The program's name substitutes for %s */
<< XO("Distinguished %s Team members, not currently active")
.Format( ProgramName )
<< wxT("<br><br>")
<< GetCreditsByRole(roleEmeritusTeam)
<< wxT("<p><b>")
<< XO("Contributors")
<< wxT("</b><br>")
<< GetCreditsByRole(roleContributor)
<< wxT("<p><b>")
<< XO("Website and Graphics")
<< wxT("</b><br>")
<< GetCreditsByRole(roleGraphics)
;
if(!translatorCredits.empty()) informationStr
<< wxT("<p><b>")
<< XO("Translators")
<< wxT("</b><br>")
<< translatorCredits
;
informationStr
<< wxT("<p><b>")
<< XO("Libraries")
<< wxT("</b><br>")
/* i18n-hint: The program's name substitutes for %s */
<< XO("%s includes code from the following projects:").Format( ProgramName )
<< wxT("<br><br>")
<< GetCreditsByRole(roleLibrary)
<< wxT("<p><b>")
<< XO("Special thanks:")
<< wxT("</b><br>")
<< GetCreditsByRole(roleThanks)
<< wxT("<p><br>")
/* i18n-hint: The program's name substitutes for %s */
<< XO("%s website: ").Format( ProgramName )
<< wxT("[[https://www.sneedacityteam.org/|https://www.sneedacityteam.org/]]")
// DA: Link for DA url too
#ifdef EXPERIMENTAL_DA
<< wxT("<br>DarkSneedacity website: [[http://www.darksneedacity.com/|https://www.darksneedacity.com/]]")
#else
<< wxT("<p><br> ")
/* i18n-hint Sneedacity's name substitutes for first and third %s,
and a "copyright" symbol for the second */
<< XO("%s software is copyright %s 1999-2021 %s Team.")
.Format(
Verbatim("<b>%s<sup>®</sup></b>").Format( ProgramName ),
wxT("©"),
ProgramName )
<< wxT("<br>")
<< wxT(" ")
/* i18n-hint Sneedacity's name substitutes for %s */
<< XO("The name %s is a registered trademark.")
.Format( Verbatim("<b>%s</b>").Format( ProgramName ) )
<< wxT("<br><br>")
#endif
<< wxT("</center>")
;
auto pPage = S.StartNotebookPage( ProgramName );
S.StartVerticalLay(1);
{
//v For now, change to SneedacityLogoWithName via old-fashioned way, not Theme.
wxBitmap logo(SneedacityLogoWithName_xpm); //v
// JKC: Resize to 50% of size. Later we may use a smaller xpm as
// our source, but this allows us to tweak the size - if we want to.
// It also makes it easier to revert to full size if we decide to.
const float fScale = 0.5f;// smaller size.
wxImage RescaledImage(logo.ConvertToImage());
wxColour MainColour(
RescaledImage.GetRed(1,1),
RescaledImage.GetGreen(1,1),
RescaledImage.GetBlue(1,1));
pPage->SetBackgroundColour(MainColour);
// wxIMAGE_QUALITY_HIGH not supported by wxWidgets 2.6.1, or we would use it here.
RescaledImage.Rescale((int)(LOGOWITHNAME_WIDTH * fScale), (int)(LOGOWITHNAME_HEIGHT *fScale));
wxBitmap RescaledBitmap(RescaledImage);
icon =
safenew wxStaticBitmap(S.GetParent(), -1,
//*logo, //v
//v theTheme.Bitmap(bmpSneedacityLogo), wxPoint(93, 10), wxSize(215, 190));
//v theTheme.Bitmap(bmpSneedacityLogoWithName),
RescaledBitmap,
wxDefaultPosition,
wxSize((int)(LOGOWITHNAME_WIDTH*fScale), (int)(LOGOWITHNAME_HEIGHT*fScale)));
}
S.Prop(0).AddWindow( icon );
HtmlWindow *html = safenew LinkingHtmlWindow(S.GetParent(), -1,
wxDefaultPosition,
wxSize(ABOUT_DIALOG_WIDTH, 359),
wxHW_SCROLLBAR_AUTO | wxSUNKEN_BORDER);
html->SetPage( FormatHtmlText( o.GetString() ) );
/* locate the html renderer where it fits in the dialogue */
S.Prop(1).Position( wxEXPAND ).Focus()
.AddWindow( html );
S.EndVerticalLay();
S.EndNotebookPage();
}
/** \brief: Fills out the "Information" tab of the preferences dialogue
*
* Provides as much information as possible about build-time options and
* the libraries used, to try and make Linux support easier. Basically anything
* about the build we might wish to know should be visible here */
void AboutDialog::PopulateInformationPage( ShuttleGui & S )
{
wxStringOutputStream o;
wxTextOutputStream informationStr( o ); // string to build up list of information in
S.StartNotebookPage( XO("Build Information") ); // start the tab
S.StartVerticalLay(2); // create the window
HtmlWindow *html = safenew LinkingHtmlWindow(S.GetParent(), -1, wxDefaultPosition,
wxSize(ABOUT_DIALOG_WIDTH, 264),
wxHW_SCROLLBAR_AUTO | wxSUNKEN_BORDER);
// create a html pane in it to put the content in.
auto enabled = XO("Enabled");
auto disabled = XO("Disabled");
wxString blank;
/* this builds up the list of information to go in the window in the string
* informationStr */
informationStr
<< wxT("<h2><center>")
<< XO("Build Information")
<< wxT("</center></h2>\n")
<< VerCheckHtml();
informationStr
<< wxT("<h3>")
/* i18n-hint: Information about when sneedacity was compiled follows */
<< XO("The Build")
<< wxT("</h3>\n<table>"); // start build info table
// Current date
AddBuildinfoRow(&informationStr, XO("Program build date:"), __TDATE__);
AddBuildinfoRow(&informationStr, XO("Commit Id:"), REV_IDENT );
auto buildType =
#ifdef _DEBUG
XO("Debug build (debug level %d)").Format(wxDEBUG_LEVEL);
#else
XO("Release build (debug level %d)").Format(wxDEBUG_LEVEL);
#endif
;
if( (sizeof(void*) == 8) )
buildType = XO("%s, 64 bits").Format( buildType );
// Remove this once the transition to CMake is complete
#if defined(CMAKE)
buildType = Verbatim("CMake %s").Format( buildType );
#endif
AddBuildinfoRow(&informationStr, XO("Build type:"), buildType.Translation());
#ifdef _MSC_FULL_VER
AddBuildinfoRow(&informationStr, XO("Compiler:"),
wxString::Format(wxT("MSVC %02d.%02d.%05d.%02d"), _MSC_VER / 100, _MSC_VER % 100, _MSC_FULL_VER % 100000, _MSC_BUILD));
#endif
#ifdef __GNUC_PATCHLEVEL__
#ifdef __MINGW32__
AddBuildinfoRow(&informationStr, XO("Compiler:"), wxT("MinGW ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
#else
AddBuildinfoRow(&informationStr, XO("Compiler:"), wxT("GCC ") wxMAKE_VERSION_DOT_STRING_T(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__));
#endif
#endif
#ifdef __clang_version__
AddBuildinfoRow(&informationStr, XO("Compiler:"), wxT("clang ") __clang_version__);
#endif
// Install prefix
#ifdef __WXGTK__
/* i18n-hint: The directory sneedacity is installed into (on *nix systems) */
AddBuildinfoRow(&informationStr, XO("Installation Prefix:"), \
wxT(INSTALL_PREFIX));
#endif
// Location of settings
AddBuildinfoRow(&informationStr, XO("Settings folder:"), \
FileNames::DataDir());
informationStr << wxT("</table>\n"); // end of build info table
informationStr
<< wxT("<h3>")
/* i18n-hint: Libraries that are essential to sneedacity */
<< XO("Core Libraries")
<< wxT("</h3>\n<table>"); // start table of core libraries
AddBuildinfoRow(&informationStr, wxT("wxWidgets"),
XO("Cross-platform GUI library"), Verbatim(wxVERSION_NUM_DOT_STRING_T));
AddBuildinfoRow(&informationStr, wxT("PortAudio"),
XO("Audio playback and recording"), Verbatim(wxT("v19")));
AddBuildinfoRow(&informationStr, wxT("libsoxr"),
XO("Sample rate conversion"), enabled);
informationStr << wxT("</table>\n"); // end table of core libraries
informationStr
<< wxT("<h3>")
<< XO("File Format Support")
<< wxT("</h3>\n<p>");
informationStr
<< wxT("<table>"); // start table of file formats supported
#ifdef USE_LIBMAD
/* i18n-hint: This is what the library (libmad) does - imports MP3 files */
AddBuildinfoRow(&informationStr, wxT("libmad"), XO("MP3 Importing"), enabled);
#else
AddBuildinfoRow(&informationStr, wxT("libmad"), XO("MP3 Importing"), disabled);
#endif
#ifdef USE_LIBVORBIS
AddBuildinfoRow(&informationStr, wxT("libvorbis"),
/* i18n-hint: Ogg is the container format. Vorbis is the compression codec.
* Both are proper nouns and shouldn't be translated */
XO("Ogg Vorbis Import and Export"), enabled);
#else
AddBuildinfoRow(&informationStr, wxT("libvorbis"),
XO("Ogg Vorbis Import and Export"), disabled);
#endif
#ifdef USE_LIBID3TAG
AddBuildinfoRow(&informationStr, wxT("libid3tag"), XO("ID3 tag support"),
enabled);
#else
AddBuildinfoRow(&informationStr, wxT("libid3tag"), XO("ID3 tag support"),
disabled);
#endif
# if USE_LIBFLAC
/* i18n-hint: FLAC stands for Free Lossless Audio Codec, but is effectively
* a proper noun and so shouldn't be translated */
AddBuildinfoRow(&informationStr, wxT("libflac"), XO("FLAC import and export"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("libflac"), XO("FLAC import and export"),
disabled);
# endif
# if USE_LIBTWOLAME
AddBuildinfoRow(&informationStr, wxT("libtwolame"), XO("MP2 export"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("libtwolame"), XO("MP2 export"),
disabled);
# endif
# if USE_QUICKTIME
AddBuildinfoRow(&informationStr, wxT("QuickTime"), XO("Import via QuickTime"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("QuickTime"), XO("Import via QuickTime"),
disabled);
# endif
#ifdef USE_FFMPEG
AddBuildinfoRow(&informationStr, wxT("ffmpeg"), XO("FFmpeg Import/Export"), enabled);
#else
AddBuildinfoRow(&informationStr, wxT("ffmpeg"), XO("FFmpeg Import/Export"), disabled);
#endif
#ifdef USE_GSTREAMER
AddBuildinfoRow(&informationStr, wxT("gstreamer"), XO("Import via GStreamer"), enabled);
#else
AddBuildinfoRow(&informationStr, wxT("gstreamer"), XO("Import via GStreamer"), disabled);
#endif
informationStr << wxT("</table>\n"); //end table of file formats supported
informationStr
<< wxT("<h3>")
<< XO("Features")
<< wxT("</h3>\n<table>"); // start table of features
#ifdef EXPERIMENTAL_DA
AddBuildinfoRow(&informationStr, wxT("Theme"), XO("Dark Theme Extras"), enabled);
#else
AddBuildinfoRow(&informationStr, wxT("Theme"), XO("Dark Theme Extras"), disabled);
#endif
# if USE_NYQUIST
AddBuildinfoRow(&informationStr, wxT("Nyquist"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("Nyquist"), XO("Plug-in support"),
disabled);
# endif
# if USE_LADSPA
AddBuildinfoRow(&informationStr, wxT("LADSPA"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("LADSPA"), XO("Plug-in support"),
disabled);
# endif
# if USE_VAMP
AddBuildinfoRow(&informationStr, wxT("Vamp"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("Vamp"), XO("Plug-in support"),
disabled);
# endif
# if USE_AUDIO_UNITS
AddBuildinfoRow(&informationStr, wxT("Audio Units"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("Audio Units"), XO("Plug-in support"),
disabled);
# endif
# if USE_VST
AddBuildinfoRow(&informationStr, wxT("VST"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("VST"), XO("Plug-in support"),
disabled);
# endif
# if USE_LV2
AddBuildinfoRow(&informationStr, wxT("LV2"), XO("Plug-in support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("LV2"), XO("Plug-in support"),
disabled);
# endif
# if USE_PORTMIXER
AddBuildinfoRow(&informationStr, wxT("PortMixer"), XO("Sound card mixer support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("PortMixer"), XO("Sound card mixer support"),
disabled);
# endif
# if USE_SOUNDTOUCH
AddBuildinfoRow(&informationStr, wxT("SoundTouch"), XO("Pitch and Tempo Change support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("SoundTouch"), XO("Pitch and Tempo Change support"),
disabled);
# endif
# if USE_SBSMS
AddBuildinfoRow(&informationStr, wxT("SBSMS"), XO("Extreme Pitch and Tempo Change support"),
enabled);
# else
AddBuildinfoRow(&informationStr, wxT("SBSMS"), XO("Extreme Pitch and Tempo Change support"),
disabled);
# endif
informationStr << wxT("</table>\n"); // end of table of features
html->SetPage( FormatHtmlText( o.GetString() ) ); // push the page into the html renderer
S.Prop(2)
.Position( wxEXPAND )
.AddWindow( html ); // make it fill the page
// I think the 2 here goes with the StartVerticalLay() call above?
S.EndVerticalLay(); // end window
S.EndNotebookPage(); // end the tab
}
void AboutDialog::PopulateLicensePage( ShuttleGui & S )
{
S.StartNotebookPage( XO("GPL License") );
S.StartVerticalLay(1);
HtmlWindow *html = safenew LinkingHtmlWindow(S.GetParent(), -1,
wxDefaultPosition,
wxSize(ABOUT_DIALOG_WIDTH, 264),
wxHW_SCROLLBAR_AUTO | wxSUNKEN_BORDER);
// I tried using <pre> here to get a monospaced font,
// as is normally used for the GPL.
// However can't reduce the font size in that case. It looks
// better proportionally spaced.
//
// The GPL is not to be translated....
wxString PageText= FormatHtmlText(
wxT(" <center>GNU GENERAL PUBLIC LICENSE\n</center>")
wxT(" <center>Version 2, June 1991\n</center>")
wxT("<p><p>")
wxT(" Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n")
wxT(" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n")
wxT(" Everyone is permitted to copy and distribute verbatim copies\n")
wxT(" of this license document, but changing it is not allowed.\n")
wxT("\n")
wxT(" <center>Preamble\n</center>")
wxT("<p><p>\n")
wxT(" The licenses for most software are designed to take away your\n")
wxT("freedom to share and change it. By contrast, the GNU General Public\n")
wxT("License is intended to guarantee your freedom to share and change free\n")
wxT("software--to make sure the software is free for all its users. This\n")
wxT("General Public License applies to most of the Free Software\n")
wxT("Foundation's software and to any other program whose authors commit to\n")
wxT("using it. (Some other Free Software Foundation software is covered by\n")
wxT("the GNU Library General Public License instead.) You can apply it to\n")
wxT("your programs, too.\n")
wxT("<p><p>\n")
wxT(" When we speak of free software, we are referring to freedom, not\n")
wxT("price. Our General Public Licenses are designed to make sure that you\n")
wxT("have the freedom to distribute copies of free software (and charge for\n")
wxT("this service if you wish), that you receive source code or can get it\n")
wxT("if you want it, that you can change the software or use pieces of it\n")
wxT("in new free programs; and that you know you can do these things.\n")
wxT("<p><p>\n")
wxT(" To protect your rights, we need to make restrictions that forbid\n")
wxT("anyone to deny you these rights or to ask you to surrender the rights.\n")
wxT("These restrictions translate to certain responsibilities for you if you\n")
wxT("distribute copies of the software, or if you modify it.\n")
wxT("<p><p>\n")
wxT(" For example, if you distribute copies of such a program, whether\n")
wxT("gratis or for a fee, you must give the recipients all the rights that\n")
wxT("you have. You must make sure that they, too, receive or can get the\n")
wxT("source code. And you must show them these terms so they know their\n")
wxT("rights.\n")
wxT("<p><p>\n")
wxT(" We protect your rights with two steps: (1) copyright the software, and\n")
wxT("(2) offer you this license which gives you legal permission to copy,\n")
wxT("distribute and/or modify the software.\n")
wxT("<p><p>\n")
wxT(" Also, for each author's protection and ours, we want to make certain\n")
wxT("that everyone understands that there is no warranty for this free\n")
wxT("software. If the software is modified by someone else and passed on, we\n")
wxT("want its recipients to know that what they have is not the original, so\n")
wxT("that any problems introduced by others will not reflect on the original\n")
wxT("authors' reputations.\n")
wxT("<p><p>\n")
wxT(" Finally, any free program is threatened constantly by software\n")
wxT("patents. We wish to avoid the danger that redistributors of a free\n")
wxT("program will individually obtain patent licenses, in effect making the\n")
wxT("program proprietary. To prevent this, we have made it clear that any\n")
wxT("patent must be licensed for everyone's free use or not licensed at all.\n")
wxT("<p><p>\n")
wxT(" The precise terms and conditions for copying, distribution and\n")
wxT("modification follow.\n")
wxT("<p><p>\n")
wxT(" <center>GNU GENERAL PUBLIC LICENSE\n</center>")
wxT(" <center>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n</center>")
wxT("<p><p>\n")
wxT(" 0. This License applies to any program or other work which contains\n")
wxT("a notice placed by the copyright holder saying it may be distributed\n")
wxT("under the terms of this General Public License. The \"Program\", below,\n")
wxT("refers to any such program or work, and a \"work based on the Program\"\n")
wxT("means either the Program or any derivative work under copyright law:\n")
wxT("that is to say, a work containing the Program or a portion of it,\n")
wxT("either verbatim or with modifications and/or translated into another\n")
wxT("language. (Hereinafter, translation is included without limitation in\n")
wxT("the term \"modification\".) Each licensee is addressed as \"you\".\n")
wxT("<p><p>\n")
wxT("Activities other than copying, distribution and modification are not\n")
wxT("covered by this License; they are outside its scope. The act of\n")
wxT("running the Program is not restricted, and the output from the Program\n")
wxT("is covered only if its contents constitute a work based on the\n")
wxT("Program (independent of having been made by running the Program).\n")
wxT("Whether that is true depends on what the Program does.\n")
wxT("<p><p>\n")
wxT(" 1. You may copy and distribute verbatim copies of the Program's\n")
wxT("source code as you receive it, in any medium, provided that you\n")
wxT("conspicuously and appropriately publish on each copy an appropriate\n")
wxT("copyright notice and disclaimer of warranty; keep intact all the\n")
wxT("notices that refer to this License and to the absence of any warranty;\n")
wxT("and give any other recipients of the Program a copy of this License\n")
wxT("along with the Program.\n")
wxT("<p><p>\n")
wxT("You may charge a fee for the physical act of transferring a copy, and\n")
wxT("you may at your option offer warranty protection in exchange for a fee.\n")
wxT("<p><p>\n")
wxT(" 2. You may modify your copy or copies of the Program or any portion\n")
wxT("of it, thus forming a work based on the Program, and copy and\n")
wxT("distribute such modifications or work under the terms of Section 1\n")
wxT("above, provided that you also meet all of these conditions:\n")
wxT("<p><p>\n")
wxT("<blockquote>")
wxT(" a) You must cause the modified files to carry prominent notices\n")
wxT(" stating that you changed the files and the date of any change.\n")
wxT("<p><p>\n")
wxT(" b) You must cause any work that you distribute or publish, that in\n")
wxT(" whole or in part contains or is derived from the Program or any\n")
wxT(" part thereof, to be licensed as a whole at no charge to all third\n")
wxT(" parties under the terms of this License.\n")
wxT("<p><p>\n")
wxT(" c) If the modified program normally reads commands interactively\n")
wxT(" when run, you must cause it, when started running for such\n")
wxT(" interactive use in the most ordinary way, to print or display an\n")
wxT(" announcement including an appropriate copyright notice and a\n")
wxT(" notice that there is no warranty (or else, saying that you provide\n")
wxT(" a warranty) and that users may redistribute the program under\n")
wxT(" these conditions, and telling the user how to view a copy of this\n")
wxT(" License. (Exception: if the Program itself is interactive but\n")
wxT(" does not normally print such an announcement, your work based on\n")
wxT(" the Program is not required to print an announcement.)\n")
wxT("</blockquote>")
wxT("<p><p>\n")
wxT("These requirements apply to the modified work as a whole. If\n")
wxT("identifiable sections of that work are not derived from the Program,\n")
wxT("and can be reasonably considered independent and separate works in\n")
wxT("themselves, then this License, and its terms, do not apply to those\n")
wxT("sections when you distribute them as separate works. But when you\n")
wxT("distribute the same sections as part of a whole which is a work based\n")
wxT("on the Program, the distribution of the whole must be on the terms of\n")
wxT("this License, whose permissions for other licensees extend to the\n")
wxT("entire whole, and thus to each and every part regardless of who wrote it.\n")
wxT("<p><p>\n")
wxT("Thus, it is not the intent of this section to claim rights or contest\n")
wxT("your rights to work written entirely by you; rather, the intent is to\n")
wxT("exercise the right to control the distribution of derivative or\n")
wxT("collective works based on the Program.\n")
wxT("<p><p>\n")
wxT("In addition, mere aggregation of another work not based on the Program\n")
wxT("with the Program (or with a work based on the Program) on a volume of\n")
wxT("a storage or distribution medium does not bring the other work under\n")
wxT("the scope of this License.\n")
wxT("<p><p>\n")
wxT(" 3. You may copy and distribute the Program (or a work based on it,\n")
wxT("under Section 2) in object code or executable form under the terms of\n")
wxT("Sections 1 and 2 above provided that you also do one of the following:\n")
wxT("<p><p>\n")
wxT("<blockquote>")
wxT(" a) Accompany it with the complete corresponding machine-readable\n")
wxT(" source code, which must be distributed under the terms of Sections\n")
wxT(" 1 and 2 above on a medium customarily used for software interchange; or,\n")
wxT("<p><p>\n")
wxT(" b) Accompany it with a written offer, valid for at least three\n")
wxT(" years, to give any third party, for a charge no more than your\n")
wxT(" cost of physically performing source distribution, a complete\n")
wxT(" machine-readable copy of the corresponding source code, to be\n")
wxT(" distributed under the terms of Sections 1 and 2 above on a medium\n")
wxT(" customarily used for software interchange; or,\n")
wxT("<p><p>\n")
wxT(" c) Accompany it with the information you received as to the offer\n")
wxT(" to distribute corresponding source code. (This alternative is\n")
wxT(" allowed only for noncommercial distribution and only if you\n")
wxT(" received the program in object code or executable form with such\n")
wxT(" an offer, in accord with Subsection b above.)\n")
wxT("</blockquote>")
wxT("<p><p>\n")