chocobar/ui/topbar.slint

42 lines
843 B
Plaintext

export component TopBar inherits Window {
in property<int> bar_width;
in property<int> bar_height;
title: "chocobar";
width: bar_width *1px;
height: bar_height *1px;
always-on-top: true;
no-frame: true;
//background: #999898a6;
x: 0px;
y: 0px;
Rectangle {
x: 0px;
y: 0px;
width: 100%;
height: 100%;
background: #999898a6;
border-radius: 0px;
HorizontalLayout {
x: 0px;
y: 0px;
width: 100%;
height: 100%;
Rectangle {
background: #79a9af7b;
}
Rectangle {
background: #779e5c7a;
}
Rectangle {
background: #c2779a7a;
}
}
}
}