diff options
author | Marco Bubke <marco.bubke@qt.io> | 2016-11-14 12:28:51 +0100 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2017-07-25 14:24:11 +0000 |
commit | 4beaae0f79ebe820fa9fdfdfb8195e5aeac89369 (patch) | |
tree | 3148e2c5032cfd79bed47787d0df97e0d9206f86 /src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui | |
parent | 131a796f9f0afe10e744f27071f426af26296458 (diff) | |
download | qt-creator-4beaae0f79ebe820fa9fdfdfb8195e5aeac89369.tar.gz |
Introduce Breakpad crash handler
Google Breakpad (https://chromium.googlesource.com/breakpad/breakpad) is a
widely used crash handler framework, e.g. by Mozilla and Chromium. It is
providing a platform neutral solution to generate mini dumps, collect
debug information and generate stack traces from those.
Done-with: Orgad Shaneh <orgad.shaneh@audiocodes.com>
Change-Id: I09382e7db0dc9e29b228e7b554fda7b6f5684349
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui')
-rw-r--r-- | src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui b/src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui new file mode 100644 index 0000000000..f509a70569 --- /dev/null +++ b/src/libs/qt-breakpad/qtcrashhandler/mainwidget.ui @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>MainWidget</class> + <widget class="QWidget" name="MainWidget"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>422</width> + <height>510</height> + </rect> + </property> + <property name="windowTitle"> + <string>Crash Handler</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="font"> + <font> + <pointsize>20</pointsize> + </font> + </property> + <property name="text"> + <string>Qt Creator has crashed</string> + </property> + <property name="scaledContents"> + <bool>false</bool> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>You can send us a crash report in order to help us diagnose and fix the problem.</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QLabel" name="label_3"> + <property name="text"> + <string>Email:</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="emailLineEdit"> + <property name="placeholderText"> + <string>Enter here your email (optional)</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QCheckBox" name="sendDumpCheckBox"> + <property name="text"> + <string>Tell The Qt Company about this crash so they can fix it</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="detailButton"> + <property name="text"> + <string>Details</string> + </property> + </widget> + </item> + <item> + <widget class="QTextEdit" name="commentTextEdit"> + <property name="overwriteMode"> + <bool>true</bool> + </property> + <property name="placeholderText"> + <string>Please describe what you did before it crashed (comments are publicly visible)</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_4"> + <property name="text"> + <string>Your crash report will be submitted before you quit or restart.</string> + </property> + </widget> + </item> + <item> + <widget class="QProgressBar" name="progressBar"> + <property name="value"> + <number>0</number> + </property> + <property name="format"> + <string>%v/%m Bytes</string> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item> + <widget class="QPushButton" name="restartButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Restart</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="quitButton"> + <property name="text"> + <string>Quit</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <layoutdefault spacing="6" margin="11"/> + <resources/> + <connections/> +</ui> |