mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 14:21:16 +00:00
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
import { SpinBox, Button, CheckBox, Slider, GroupBox, StandardListView } from "std-widgets.slint";
|
|
import { Label, Page, Preview } from "common.slint";
|
|
|
|
export SettingsPage := Page {
|
|
VerticalLayout {
|
|
spacing: 10px;
|
|
padding: 15px;
|
|
alignment: start;
|
|
GroupBox {
|
|
title: "Color Management";
|
|
CheckBox {
|
|
text: "Black and White";
|
|
}
|
|
}
|
|
GroupBox {
|
|
title: "Scanning";
|
|
HorizontalLayout {
|
|
spacing: 10px;
|
|
Text {
|
|
text: "Resolution (DPI)";
|
|
}
|
|
Slider {
|
|
}
|
|
}
|
|
}
|
|
GroupBox {
|
|
title: "Power Management";
|
|
CheckBox { text: "Eco Mode"; }
|
|
}
|
|
GroupBox {
|
|
title: "Performance";
|
|
CheckBox {
|
|
text: "TURBO";
|
|
checked: true;
|
|
}
|
|
}
|
|
}
|
|
}
|