slint/examples/printerdemo_old/ui/settings_page.slint
Tobias Hunger 4230ac2572
Update copyright information to reflect name change
Also run resue over the codebase and fix complaints from that tool.
2022-02-09 10:27:47 +01:00

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;
}
}
}
}