cmake 修改去除css支持
parent
ea8e182a25
commit
59d732cb48
|
@ -7,8 +7,7 @@ aux_source_directory(${CMAKE_CURRENT_LIST_DIR} FORMS)
|
||||||
|
|
||||||
set(QsswraperSource ${DIRSRCS})
|
set(QsswraperSource ${DIRSRCS})
|
||||||
list(APPEND SOURCES ${QsswraperSource})
|
list(APPEND SOURCES ${QsswraperSource})
|
||||||
set(QsswraperQrc "${CMAKE_CURRENT_LIST_DIR}/qss.qrc")
|
|
||||||
list(APPEND RESOURCES ${QsswraperQrc})
|
|
||||||
set(QsswraperUI "${CMAKE_CURRENT_LIST_DIR}/forms/qsstoast.ui")
|
set(QsswraperUI "${CMAKE_CURRENT_LIST_DIR}/forms/qsstoast.ui")
|
||||||
list(APPEND QsswraperUI "${CMAKE_CURRENT_LIST_DIR}/forms/process.ui")
|
list(APPEND QsswraperUI "${CMAKE_CURRENT_LIST_DIR}/forms/process.ui")
|
||||||
|
|
||||||
|
|
|
@ -1,26 +1,27 @@
|
||||||
QWidget#qssTitleBar{
|
QWidget#qssTitleBar{
|
||||||
color: white;
|
color: white;
|
||||||
background: rgb(51,101,177);
|
background: black;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
height: 30px;
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar > QPushButton#titlebaricon{
|
QWidget#qssTitleBar > QPushButton#titlebaricon{
|
||||||
background: rgb(51,101,177);
|
background: rgb(51,101,177);
|
||||||
width: 25px;
|
width: 25px;
|
||||||
height:25px;
|
height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget#qssTitleBar > QPushButton#titlebarclosebtn{
|
QWidget#qssTitleBar > QPushButton#titlebarclosebtn{
|
||||||
image: url(":/qss/icon/btn_close_down.svg");
|
image: url(":/qss/icon/btn_close_down.svg");
|
||||||
background: rgb(51,101,177);
|
background: black;
|
||||||
width: 25px;
|
height: 30px;
|
||||||
height:25px;
|
height: 30px;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn{
|
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn{
|
||||||
background: rgb(51,101,177);
|
background: black;
|
||||||
width: 25px;
|
height: 30px;
|
||||||
height:25px;
|
height: 30px;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
image: url(":/qss/icon/btn_max_normal.svg");
|
image: url(":/qss/icon/btn_max_normal.svg");
|
||||||
|
|
||||||
|
@ -30,9 +31,9 @@ QWidget#qssTitleBar >QPushButton#titlebarclosebtn:enabled:hover{
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#titlebarminbtn{
|
QWidget#qssTitleBar >QPushButton#titlebarminbtn{
|
||||||
image: url(":/qss/icon/btn_mini_down.svg");
|
image: url(":/qss/icon/btn_mini_down.svg");
|
||||||
background: rgb(51,101,177);
|
background: black;
|
||||||
width: 25px;
|
width: 30px;
|
||||||
height:25px;
|
height: 30px;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#titlebarminbtn:enabled:hover{
|
QWidget#qssTitleBar >QPushButton#titlebarminbtn:enabled:hover{
|
||||||
|
@ -40,9 +41,9 @@ QWidget#qssTitleBar >QPushButton#titlebarminbtn:enabled:hover{
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#titlebarrestorebtn{
|
QWidget#qssTitleBar >QPushButton#titlebarrestorebtn{
|
||||||
image: url(":/qss/icon/btn_max_normal.svg");
|
image: url(":/qss/icon/btn_max_normal.svg");
|
||||||
background: rgb(187, 212, 238);
|
background: black;
|
||||||
width: 25px;
|
width: 30px;
|
||||||
height:25px;
|
height: 30px;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
@ -50,7 +51,7 @@ QWidget#qssTitleBar >QPushButton#titlebarrestorebtn:enabled:hover{
|
||||||
background: rgb(187, 212, 238);
|
background: rgb(187, 212, 238);
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#btn_serial:!enabled {
|
QWidget#qssTitleBar >QPushButton#btn_serial:!enabled {
|
||||||
background: rgb(180, 180, 180);
|
background: black;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn:enabled:hover{
|
QWidget#qssTitleBar >QPushButton#titlebarmaxbtn:enabled:hover{
|
||||||
|
@ -58,7 +59,7 @@ QWidget#qssTitleBar >QPushButton#titlebarmaxbtn:enabled:hover{
|
||||||
}
|
}
|
||||||
QWidget#qssTitleBar > QLabel#title{
|
QWidget#qssTitleBar > QLabel#title{
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 17px;
|
font-size: 25px;
|
||||||
font-family:'黑体', Courier, monospace;
|
font-family:"微软雅黑";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ QMainWindow{
|
||||||
|
|
||||||
QMainWindow::title{
|
QMainWindow::title{
|
||||||
text-align: right; /* align the text to the left */
|
text-align: right; /* align the text to the left */
|
||||||
background: rgb(7,71,166);
|
background: black;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue