Add MultyMessageDialog.

This commit is contained in:
sunwen
2022-07-28 16:27:51 +08:00
parent b86b19e91d
commit 9b96af094b
15 changed files with 382 additions and 34 deletions

View File

@@ -795,3 +795,52 @@ QWidget#EditMenu QListWidget:item:hover {
background: #006dc7;
color: white;
}
MultyMessageDialog {
border: 2px solid #2db7f5;
border-radius: 16px;
/*background: rgba(249,250,250,180);*/
background: rgba(239,240,241,200);
}
MultyMessageDialog QLabel {
background: rgba(255,0,0,0);
color: black;
font: normal 14px;
}
QLabel#MultyMessageDialogInfo {
min-width: 30px;
max-width: 30px;
min-height: 30px;
max-height: 30px;
qproperty-pixmap: url(":/icons/dicom/info.png");
qproperty-scaledContents: true;
}
QLabel#MultyMessageDialogWarning {
min-width: 30px;
max-width: 30px;
min-height: 30px;
max-height: 30px;
qproperty-pixmap: url(":/icons/dicom/warning.png");
qproperty-scaledContents: true;
}
QLabel#MultyMessageDialogError {
min-width: 30px;
max-width: 30px;
min-height: 30px;
max-height: 30px;
qproperty-pixmap: url(":/icons/dicom/echo_fail.png");
qproperty-scaledContents: true;
}
QLabel#MultyMessageDialogSucess {
min-width: 30px;
max-width: 30px;
min-height: 30px;
max-height: 30px;
qproperty-pixmap: url(":/icons/dicom/echo_suc.png");
qproperty-scaledContents: true;
}