crash: add crash reporter
This commit is contained in:
parent
5040f3796c
commit
fe1d15e8f6
23 changed files with 1118 additions and 315 deletions
17
src/crash/interface.hpp
Normal file
17
src/crash/interface.hpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include <qwidget.h>
|
||||
|
||||
class CrashReporterGui: public QWidget {
|
||||
public:
|
||||
CrashReporterGui(QString reportFolder, int pid);
|
||||
|
||||
private slots:
|
||||
void openFolder();
|
||||
|
||||
static void openReportUrl();
|
||||
static void cancel();
|
||||
|
||||
private:
|
||||
QString reportFolder;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue