Files
CHAMP/ui/pages/computermodules.slint
T
2025-02-24 19:45:26 +00:00

162 lines
3.8 KiB
Plaintext

import { AboutSlint, VerticalBox, GridBox, Button, LineEdit, HorizontalBox, TextEdit, SpinBox } from "std-widgets.slint";
export global ComputerModuleCallbacks {
pure callback killCherwell();
}
export component ComputerModules inherits Window {
VerticalLayout {
spacing: 5px;
padding: 15px;
HorizontalLayout {
VerticalLayout {
padding: 5px;
spacing: 5px;
height: 75px;
Text {
text: "Computer Tag / IP:";
}
LineEdit {
height: 35px;
}
}
VerticalLayout {
height: 200px;
padding: 5px;
spacing: 5px;
Button {
text: "Computer File Explorer";
}
Button {
text: "Current Logged on User";
}
Button {
text: "LAPS Password Viewer";
}
Button {
text: "Remote to Computer";
}
Button {
text: "Reboot w/ Auto Remote In";
}
Button {
text: "SCCM Log Parser";
}
}
VerticalLayout {
padding: 5px;
height: 350px;
width: 400px;
TextEdit {
height: 400px;
wrap: word-wrap;
read-only: true;
}
HorizontalLayout {
alignment: start;
spacing: 5px;
padding-top: 20px;
padding: 5px;
Text {
text: "Timeout for Computer Modules:";
}
}
HorizontalLayout {
spacing: 5px;
SpinBox {
minimum: 2;
maximum: 10;
step-size: 1;
horizontal-alignment: center;
width: 100px;
}
Text {
vertical-alignment: center;
text: "Seconds";
}
}
}
VerticalLayout {
spacing: 5px;
padding: 5px;
width: 150px;
Button {
text: "Bitlocker";
}
Button {
text: "Director";
}
Button {
text: "HSC IT";
}
Button {
text: "Imprivata";
}
Button {
text: "ISE";
}
Button {
text: "Kronos";
}
Button {
text: "Kuiper";
}
Button {
text: "One Content";
}
Button {
text: "Printer Logic";
}
Button {
text: "Site Scan";
}
Button {
text: "SnapComm";
}
Button {
text: "TelecommNG";
}
Button {
text: "UMS";
}
Button {
text: "Unify";
}
Button {
text: "Whats Up";
}
Button {
text: "Workday";
}
}
}
}
}