File: ErrorReportDialog.cpp

package info (click to toggle)
audacity 3.7.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 134,800 kB
  • sloc: cpp: 366,277; ansic: 198,323; lisp: 7,761; sh: 3,414; python: 1,501; xml: 1,385; perl: 854; makefile: 125
file content (289 lines) | stat: -rw-r--r-- 8,100 bytes parent folder | download | duplicates (2)
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
/**********************************************************************

  Audacity: A Digital Audio Editor

  ErrorReportDialog.cpp

  Dmitry Vedenko

**********************************************************************/

#include "ErrorReportDialog.h"

#include <wx/app.h>
#include <wx/artprov.h>
#include <wx/button.h>
#include <wx/collpane.h>
#include <wx/dialog.h>
#include <wx/html/htmlwin.h>
#include <wx/icon.h>
#include <wx/intl.h>
#include <wx/settings.h>
#include <wx/sizer.h>
#include <wx/statbmp.h>
#include <wx/stattext.h>
#include <wx/statusbr.h>
#include <wx/textctrl.h>
#include <wx/bmpbuttn.h>

#include "AccessibleLinksFormatter.h"
#include "AllThemeResources.h"
#include "Theme.h"
#include "HelpText.h"
#include "Prefs.h"
#include "ShuttleGui.h"
#include "HelpSystem.h"

#include "SentryReport.h"
#include "CodeConversions.h"

namespace
{
// wxWidgets set an inaccessible border for the wxCollapsiblePane
// which makes layout of the dialog even more difficult.
// This code was copied from the wxWidgets 3.1.3 collpaneg.cpp
int GetCollapsiblePaneBorder(wxWindow* root)
{
#if defined(__WXMAC__)
   (void)root;
   return 6;
#elif defined(__WXMSW__)
   return root->ConvertDialogToPixels(wxSize(2, 0)).x;
#else
   (void)root;
   return 5;
#endif
}
}

constexpr int MaxUserCommentLength = 2000;
constexpr bool ErrorReportDialogHasUserComment = false;

BEGIN_EVENT_TABLE(ErrorReportDialog, wxDialogWrapper)
    EVT_BUTTON(wxID_YES, ErrorReportDialog::OnSend)
    EVT_BUTTON(wxID_NO, ErrorReportDialog::OnDontSend)
    EVT_BUTTON(wxID_HELP, ErrorReportDialog::OnHelp)
END_EVENT_TABLE()

ErrorReportDialog::ErrorReportDialog(
   wxWindow* parent, const TranslatableString& dlogTitle,
   const TranslatableString& message, const ManualPageID& helpUrl,
   const wxString& log, const bool modal)
    : wxDialogWrapper(
         parent, wxID_ANY, dlogTitle, wxDefaultPosition, wxDefaultSize,
         wxDEFAULT_DIALOG_STYLE)
    , mHelpUrl(helpUrl)
    , mIsModal(modal)
{
   audacity::sentry::Exception ex = audacity::sentry::Exception::Create(
      audacity::ToUTF8(dlogTitle.Debug()),message.Debug());

   if (!log.empty())
      ex.AddData("log", log);

   mReport = std::make_unique<audacity::sentry::Report> (ex);

   ShuttleGui S(this, eIsCreating);

   const wxFont headingFont = wxFont(wxFontInfo(12).Bold());
   const wxFont textFont = wxFont(wxFontInfo(10));

   const int CollapsibleBorderSize = GetCollapsiblePaneBorder(this);

   S.SetBorder(0);

   S.StartHorizontalLay(wxEXPAND, 0);
   {
      S.AddSpace(40 - CollapsibleBorderSize, 0);

      S.StartVerticalLay(wxEXPAND, 0);
      {
         S.AddSpace(0, 32);

         S.StartHorizontalLay(wxEXPAND, 0);
         {
            S.AddSpace(CollapsibleBorderSize);

            S.StartVerticalLay(wxEXPAND, 0);
            {
               S.StartHorizontalLay(wxEXPAND, 1);
               {
                  S.StartVerticalLay(0);
                  {
                     wxBitmap bitmap = wxArtProvider::GetBitmap(
                        wxART_WARNING, wxART_MESSAGE_BOX, wxSize(24, 24));

                     S.Prop(0).AddWindow(
                        safenew wxStaticBitmap(S.GetParent(), -1, bitmap));

                     S.AddSpace(0, 0, 1);
                  }
                  S.EndVerticalLay();

                  S.AddSpace(10, 0);

                  S.StartVerticalLay(0);
                  {
                     S.AddSpace(0, 7);

                     S.Prop(1)
                        .AddVariableText(message, false, 0, 560)
                        ->SetFont(headingFont);
                  }
                  S.EndVerticalLay();
               }
               S.EndHorizontalLay();

               S.AddSpace(0, 20);

               /* i18n-hint: %s is replaced with "here" */
               AccessibleLinksFormatter errorpage(
                  XO("More information about this error may be available %s."));

               errorpage.FormatLink(
                  /* i18n-hint: Title of hyperlink to audacityteam.org/errors. */
                  wxT("%s"),
                  XO("here"),
                  "https://audacityteam.org/errors");
               errorpage.Populate(S);

               S.AddSpace(0, 12);
               S.AddVariableText(XO(
                     "Would you like to send a report to help us fix this issue?"))
                  ->SetFont(textFont);

               S.AddSpace(0, 6);

               /* i18n-hint: %s will be replaced with "our Privacy Policy" */
               AccessibleLinksFormatter privacyPolicy(
                  XO("All reports are anonymous. See %s for more info."));

               privacyPolicy.FormatLink(
                  /* i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". */
                  wxT("%s"),
                  XO("our Privacy Policy"),
                  "https://www.audacityteam.org/desktop-privacy-notice/");

               privacyPolicy.Populate(S);
            }
            S.EndVerticalLay();
         }
         S.EndHorizontalLay();

		 S.AddSpace(0, 6);

         S.StartHorizontalLay(wxEXPAND, 0);
         {
            auto pane = safenew wxCollapsiblePane(
               S.GetParent(), wxID_ANY, XO("Problem details").Translation());

            S.Style(wxEXPAND | wxALIGN_LEFT);
            S.Prop(1);
            S.AddWindow(pane);

            ShuttleGui SI(pane->GetPane(), eIsCreating);

            SI.StartVerticalLay();
            {
               SI.Style(
                  wxTE_RICH | wxTE_READONLY | wxTE_MULTILINE | wxTE_DONTWRAP)
                .MinSize(wxSize(0, 152))
                .Name(XO("Problem details"))
                .AddTextBox({}, mReport->GetReportPreview(), 0);

               if constexpr (ErrorReportDialogHasUserComment)
               {
                  SI.AddSpace(0, 20);

                  SI.AddVariableText(XO("Comments"))->SetFont(textFont);

                  SI.AddSpace(0, 6);

                  mCommentsControl = SI.Style(wxTE_MULTILINE)
                                      .MinSize(wxSize(0, 76))
                                      .Name(XO("Comments"))
                                      .AddTextBox({}, {}, 0);

                  mCommentsControl->SetMaxLength(MaxUserCommentLength);
               }
            }
            SI.EndVerticalLay();
         }
         S.EndHorizontalLay();

         S.AddSpace(0, 20);

         S.StartHorizontalLay(wxEXPAND);
         {
            if (!mHelpUrl.empty())
            {
               wxBitmapButton* helpButton =
                  S.Id(wxID_HELP).AddBitmapButton(theTheme.Bitmap(bmpHelpIcon));
               // For screen readers
               helpButton->SetToolTip(XO("Help").Translation());
               helpButton->SetLabel(XO("Help").Translation());
            }

            S.AddSpace(0, 0, 1);

            S.Id(wxID_NO).AddButton(XC("&Don't send", "crash reporter button"));

            S.AddSpace(13, 0);

            S.Id(wxID_YES).AddButton(XC("&Send", "crash reporter button"));
         }
         S.EndHorizontalLay();

         S.AddSpace(0, 20);
      }
      S.EndVerticalLay();

      S.AddSpace(28, 0);
   }
   S.EndHorizontalLay();

   S.SetBorder(2);

   Layout();
   GetSizer()->Fit(this);
   SetMinSize(GetSize());
   Center();
}

ErrorReportDialog::~ErrorReportDialog()
{
}

void ErrorReportDialog::OnSend(wxCommandEvent& event)
{
   Disable();

   if (mCommentsControl != nullptr)
      mReport->AddUserComment(audacity::ToUTF8(mCommentsControl->GetValue()));

   mReport->Send(
      [this](int code, std::string body) {
         CallAfter([this]() {
             EndModal(true);
         });
   });
}

void ErrorReportDialog::OnDontSend(wxCommandEvent& event)
{
   EndModal(true);
}

void ErrorReportDialog::OnHelp(wxCommandEvent& event)
{
   const auto &helpUrl = mHelpUrl.GET();
   if (helpUrl.StartsWith(wxT("innerlink:")))
   {
      HelpSystem::ShowHtmlText(
         this, TitleText(helpUrl.Mid(10)), HelpText(helpUrl.Mid(10)), false,
         true);
      return;
   }

   HelpSystem::ShowHelp(this, mHelpUrl, false);
}