mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:57:35 +00:00
Applications: Move to Userland/Applications/
This commit is contained in:
parent
aa939c4b4b
commit
dc28c07fa5
287 changed files with 1 additions and 1 deletions
95
Userland/Applications/CrashReporter/CrashReporterWindow.gml
Normal file
95
Userland/Applications/CrashReporter/CrashReporterWindow.gml
Normal file
|
@ -0,0 +1,95 @@
|
|||
@GUI::Widget {
|
||||
fill_with_background_color: true
|
||||
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
margins: [5, 5, 5, 5]
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 44
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
spacing: 10
|
||||
}
|
||||
|
||||
@GUI::ImageWidget {
|
||||
name: "icon"
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
name: "description"
|
||||
text_alignment: "CenterLeft"
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 18
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Executable path:"
|
||||
text_alignment: "CenterLeft"
|
||||
fixed_width: 90
|
||||
}
|
||||
|
||||
@GUI::LinkLabel {
|
||||
name: "executable_link"
|
||||
text_alignment: "CenterLeft"
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 18
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Coredump path:"
|
||||
text_alignment: "CenterLeft"
|
||||
fixed_width: 90
|
||||
}
|
||||
|
||||
@GUI::LinkLabel {
|
||||
name: "coredump_link"
|
||||
text_alignment: "CenterLeft"
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 18
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Backtrace:"
|
||||
text_alignment: "CenterLeft"
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::TextEditor {
|
||||
name: "backtrace_text_editor"
|
||||
mode: "ReadOnly"
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 32
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
// HACK: We need something like Layout::add_spacer() in GML! :^)
|
||||
@GUI::Widget {
|
||||
}
|
||||
|
||||
@GUI::Button {
|
||||
name: "close_button"
|
||||
text: "Close"
|
||||
fixed_width: 70
|
||||
fixed_height: 22
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue