feat: Add a data loading progress bar

This commit is contained in:
kradchen
2025-07-07 10:14:01 +08:00
parent d9aaf669eb
commit a3382cf42f
7 changed files with 98 additions and 9 deletions

View File

@@ -263,4 +263,20 @@ MPRResliceWindow#MPRWin{
QSplitter::handle {
background: #5a5a5a;
}
QProgressBar{
min-height: 10px;
max-height: 10px;
border:1px solid #aaa;
/* border-radius: 4px; */
text-align: center;
margin-top: 4px;
margin-left: 3px;
}
QProgressBar::chunk {
background: QLinearGradient( x1: 0, y1: 0,
x2: 1, y2: 0,
stop: 0 #ffffff,
stop: 1 #666666 );
}