mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 09:07:44 +00:00
Spreadsheet: Add an import wizard, and add support for custom CSV files
Fixes the import half of #4269.
This commit is contained in:
parent
3bbcde9192
commit
3c151b3de6
7 changed files with 601 additions and 52 deletions
33
Userland/Applications/Spreadsheet/select_format_page.gml
Normal file
33
Userland/Applications/Spreadsheet/select_format_page.gml
Normal file
|
@ -0,0 +1,33 @@
|
|||
@GUI::Widget {
|
||||
name: "select_format"
|
||||
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
margins: [20, 20, 20, 20]
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Please double-check the guessed file type\nor select the correct one below"
|
||||
text_aliignment: "TopLeft"
|
||||
fixed_height: 32
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
fixed_height: 25
|
||||
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
text: "Type: "
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::ComboBox {
|
||||
name: "select_format_page_format_combo_box"
|
||||
model_only: true
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue