diff --git a/HPPA/Carousel.cpp b/HPPA/Carousel.cpp
index dacd0ad..73aca79 100644
--- a/HPPA/Carousel.cpp
+++ b/HPPA/Carousel.cpp
@@ -12,7 +12,7 @@ MyCarousel::MyCarousel(QWidget* parent)
m_isPlaying(false),
m_isLocked(false),
m_lockedIndex(-1),
- m_playInterval(1000),
+ m_playInterval(2000),
m_intervalButtonSize(40)
{
QVBoxLayout* layout = new QVBoxLayout(this);
diff --git a/HPPA/HPPA.cpp b/HPPA/HPPA.cpp
index 76f8546..f99395e 100644
--- a/HPPA/HPPA.cpp
+++ b/HPPA/HPPA.cpp
@@ -406,6 +406,7 @@ HPPA::HPPA(QWidget* parent)
file.close();
this->restoreState(ba);
}
+ this->showMaximized();
}
void HPPA::initMenubarToolbar()
@@ -520,39 +521,21 @@ void HPPA::initMenubarToolbar()
}
void HPPA::initControlTabwidget()
-{
- ui.controlTabWidget->removeTab(1);
-
- m_videoWidget = new QWidget();
- QVBoxLayout* vBoxLayout_videoWidget = new QVBoxLayout(m_videoWidget);
-
- vBoxLayout_videoWidget->setSpacing(6);
- vBoxLayout_videoWidget->setObjectName(QString::fromUtf8("vBoxLayout_videoWidget"));
- vBoxLayout_videoWidget->setContentsMargins(0, 0, 0, 0);
-
- m_open_rgb_camera_btn = new QPushButton(QString::fromLocal8Bit("打开"));
- m_open_rgb_camera_btn->setObjectName(QString::fromUtf8("m_open_rgb_camera_btn"));
- m_close_rgb_camera_btn = new QPushButton(QString::fromLocal8Bit("关闭"));
- m_close_rgb_camera_btn->setObjectName(QString::fromUtf8("m_close_rgb_camera_btn"));
- vBoxLayout_videoWidget->addWidget(m_open_rgb_camera_btn);
- vBoxLayout_videoWidget->addWidget(m_close_rgb_camera_btn);
-
+{
//rgb相机
m_RgbCameraThread = new QThread();
m_RgbCamera = new RgbCameraOperation();
m_RgbCamera->moveToThread(m_RgbCameraThread);
m_RgbCameraThread->start();
- connect(m_open_rgb_camera_btn, SIGNAL(clicked()), m_RgbCamera, SLOT(OpenCamera()));//使用信号通知主线程(ui线程)刷新视频 → 成功,但是界面卡顿
+ connect(ui.open_rgb_camera_btn, SIGNAL(clicked()), m_RgbCamera, SLOT(OpenCamera()));//使用信号通知主线程(ui线程)刷新视频 → 成功,但是界面卡顿
connect(m_RgbCamera, SIGNAL(PlotSignal()), this, SLOT(onPlotRgbImage()));
//m_RgbCamera->setCallback(onPlotRgbImage);
//connect(this->ui.open_rgb_camera_btn, SIGNAL(clicked()), m_RgbCamera, SLOT(OpenCamera_callback()));//使用回调函数来刷新主线程(ui线程)上的视频 → 失败
- connect(m_close_rgb_camera_btn, SIGNAL(clicked()), this, SLOT(onCloseRgbCamera()));//关闭相机
+ connect(ui.close_rgb_camera_btn, SIGNAL(clicked()), this, SLOT(onCloseRgbCamera()));//关闭相机
connect(m_RgbCamera, SIGNAL(CamClosed()), this, SLOT(onClearLabel()));
- ui.controlTabWidget->addTab(m_videoWidget, QString::fromLocal8Bit("rgb相机"));
-
//升降桌dock
m_adt = new adjustTable();
m_adt->setWindowFlags(Qt::Widget);
@@ -772,7 +755,7 @@ void HPPA::createOneMotorScenario()
ui.mAction_1AxisMotor->setChecked(true);
//右下角控制tab
- m_tabManager->hideTab(m_videoWidget);
+ m_tabManager->hideTab(ui.rgbCameraWidget);
m_tabManager->hideTab(m_adt);
m_tabManager->hideTab(m_pc);
m_tabManager->hideTab(m_rac);
@@ -806,7 +789,7 @@ void HPPA::createPlantPhenotypeScenario()
m_tabManager->hideTab(m_rac);
m_tabManager->hideTab(m_omc);
- m_tabManager->showTab(m_videoWidget);
+ m_tabManager->showTab(ui.rgbCameraWidget);
m_tabManager->showTab(m_adt);
m_tabManager->showTab(m_pc);
m_tabManager->showTab(m_tmc);
diff --git a/HPPA/HPPA.h b/HPPA/HPPA.h
index 515adb4..e8001f8 100644
--- a/HPPA/HPPA.h
+++ b/HPPA/HPPA.h
@@ -244,7 +244,6 @@ private:
TabManager* m_tabManager;
- QWidget* m_videoWidget;
adjustTable* m_adt;
PowerControl* m_pc;
RobotArmControl* m_rac;
diff --git a/HPPA/HPPA.ui b/HPPA/HPPA.ui
index 77a74a3..08deffb 100644
--- a/HPPA/HPPA.ui
+++ b/HPPA/HPPA.ui
@@ -7,7 +7,7 @@
0
0
1486
- 899
+ 898
@@ -20,25 +20,7 @@
-
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
-
+
+
+
+ 0
+ 0
+
+
adjustTable
-
- -
+
+ QGroupBox
+{
+ border: 12px solid transparent;
+ /*border-top: 12px solid transparent;
+ border-right: 0px solid transparent;
+ border-bottom: 0px solid transparent;
+ border-left: 0px solid transparent;*/
+ color: #ACCDFF;
+}
+
+QPushButton
+{
+ /*width: 172px;
+ height: 56px;*/
+ font: 19pt "鏂板畫浣";
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0.5, y1:0, x2:0.5, y2:1,
+ stop:0 #283D86,
+ stop:1 #0F1A40
+ );
+ color: white;
+ border: none;
+ padding: 8px 16px;
+ border-radius: 4px;
+}
+QPushButton:hover
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #3A4875,
+ stop:1 #5F6B91
+ );
+}
+/* 鎸変笅鏃剁殑鏁堟灉 */
+QPushButton:pressed
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #1A254F,
+ stop:1 #3A466B
+ );
+ /* 鍙夛細娣诲姞涓嬪帇鏁堟灉 */
+ padding-top: 9px;
+ padding-bottom: 7px;
+}
+
+
+
-
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 66
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ 0
+ 0
+
+
252鍙峰崌闄嶅彴
-
+
+
+ 0
+
+
+ 10
+
+
+ 0
+
+
+ 0
+
+
+ 18
+
-
-
+
0
0
@@ -33,10 +136,10 @@
- -
+
-
-
+
0
0
@@ -46,10 +149,10 @@
- -
+
-
-
+
0
0
@@ -62,16 +165,63 @@
- -
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ 0
+ 0
+
+
253鍙峰崌闄嶅彴
-
+
+
+ 0
+
+
+ 10
+
+
+ 0
+
+
+ 0
+
+
+ 18
+
-
-
+
0
0
@@ -81,10 +231,10 @@
- -
+
-
-
+
0
0
@@ -94,10 +244,10 @@
- -
+
-
-
+
0
0
@@ -110,16 +260,63 @@
- -
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ 0
+ 0
+
+
254鍙峰崌闄嶅彴
-
+
+
+ 0
+
+
+ 10
+
+
+ 0
+
+
+ 0
+
+
+ 18
+
-
-
+
0
0
@@ -129,10 +326,10 @@
- -
+
-
-
+
0
0
@@ -142,10 +339,10 @@
- -
+
-
-
+
0
0
@@ -158,6 +355,32 @@
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 63
+ 20
+
+
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 65
+
+
+
+
diff --git a/HPPA/oneMotorControl.ui b/HPPA/oneMotorControl.ui
index 44e3fa0..67c981a 100644
--- a/HPPA/oneMotorControl.ui
+++ b/HPPA/oneMotorControl.ui
@@ -6,217 +6,313 @@
0
0
- 544
- 346
+ 678
+ 480
涓杞撮┈杈炬帶鍒
-
- -
-
-
-
-
-
-
-
-
- 瀹炴椂浣嶇疆
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- 杩愯閫熷害
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- 杩斿洖閫熷害
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 0.1
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 2
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
- 杩炴帴
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 褰掗浂
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 閲忕▼娴嬮噺
-
-
-
- -
-
-
- 绉诲姩鑷
-
-
-
-
-
-
-
+
+ QPushButton
+{
+ /*width: 172px;
+ height: 56px;
+ font: 19pt "鏂板畫浣";*/
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0.5, y1:0, x2:0.5, y2:1,
+ stop:0 #283D86,
+ stop:1 #0F1A40
+ );
+ color: white;
+ padding: 8px 16px;
+ border-radius: 4px;
+}
+QPushButton:hover
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #3A4875,
+ stop:1 #5F6B91
+ );
+}
+/* 鎸変笅鏃剁殑鏁堟灉 */
+QPushButton:pressed
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #1A254F,
+ stop:1 #3A466B
+ );
+ /* 鍙夛細娣诲姞涓嬪帇鏁堟灉 */
+ padding-top: 9px;
+ padding-bottom: 7px;
+}
+QLabel
+{
+ color: #ACCDFF;
+ background-color: transparent;
+}
+
+
+
+
+
+QLineEdit {
+ background-color: #142D7F;
+ color: #e6eeff;
+ border: 1px solid #2f6bff;
+ border-radius: 6px;
+ padding: 4px 8px;
+ min-width: 70px;
+ min-height: 20px;
+ font-size: 13px;
+}
+QLineEdit:hover {
+ border: 1px solid #4d8dff;
+}
+
+QLineEdit:focus {
+ border: 1px solid #6aa2ff;
+ background-color: #23345c;
+}
+
+
-
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 87
+
+
+
+
+ -
Qt::Horizontal
- 161
+ 127
20
- -
-
-
-
+
-
+
+
+ 10
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+ 瀹炴椂浣嶇疆
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 88
+ 30
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 杩炴帴
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 杩愯閫熷害
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 88
+ 30
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 0.1
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 褰掗浂
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 杩斿洖閫熷害
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 88
+ 30
+
+
+
+ 2
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 閲忕▼娴嬮噺
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 88
+ 30
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ 绉诲姩鑷
+
+
+
+ -
-
+
0
0
@@ -226,10 +322,10 @@
- -
+
-
-
+
0
0
@@ -239,41 +335,64 @@
-
-
- -
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
- 椹揪鐘舵
-
-
+
-
+
+
-
+
+
+ 鐘舵
+
+
+
+ -
+
+
+
+ 8
+ 8
+
+
+
+
+ 8
+ 8
+
+
+
+ background-color: red;
+border-radius: 4px;
+
+
+
+
+
+
+
- -
-
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 127
+ 20
+
+
+
+
+ -
+
Qt::Vertical
20
- 191
+ 87
diff --git a/HPPA/twoMotorControl.ui b/HPPA/twoMotorControl.ui
index c29a6f2..5e4f11b 100644
--- a/HPPA/twoMotorControl.ui
+++ b/HPPA/twoMotorControl.ui
@@ -6,13 +6,57 @@
0
0
- 684
- 741
+ 622
+ 729
2杞撮┈杈炬帶鍒
+
+ QPushButton
+{
+ /*width: 172px;
+ height: 56px;
+ font: 19pt "鏂板畫浣";*/
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0.5, y1:0, x2:0.5, y2:1,
+ stop:0 #283D86,
+ stop:1 #0F1A40
+ );
+ color: white;
+ padding: 8px 16px;
+ border-radius: 4px;
+}
+QPushButton:hover
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #3A4875,
+ stop:1 #5F6B91
+ );
+}
+/* 鎸変笅鏃剁殑鏁堟灉 */
+QPushButton:pressed
+{
+ background-color: qlineargradient(
+ spread:pad,
+ x1:0, y1:0, x2:1, y2:0,
+ stop:0 #1A254F,
+ stop:1 #3A466B
+ );
+ /* 鍙夛細娣诲姞涓嬪帇鏁堟灉 */
+ padding-top: 9px;
+ padding-bottom: 7px;
+}
+QLabel
+{
+ color: #ACCDFF;
+ background-color: transparent;
+}
+
0
@@ -31,6 +75,37 @@
-
+
+ QScrollBar:vertical {
+ background: #0E1C4C;
+ width: 12px;
+}
+
+QScrollBar::handle:vertical {
+ background: #4B60A6;
+ border-radius: 6px;
+ min-height: 20px;
+}
+
+QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
+ height: 0px;
+}
+
+QScrollBar:horizontal {
+ background: #0E1C4C;
+ height: 12px;
+}
+
+QScrollBar::handle:horizontal {
+ background: #4B60A6;
+ border-radius: 6px;
+ min-width: 20px;
+}
+
+QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
+ width: 0px;
+}
+
QFrame::NoFrame
@@ -42,66 +117,65 @@
0
0
- 684
- 741
+ 622
+ 729
-
+
+ QWidget #scrollAreaWidgetContents
+{
+ background: #0D1233;
+}
+
+
+
+ 6
+
+
+ 6
+
+
+ 6
+
+
+ 6
+
+
+ 6
+
+
+ 12
+
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 180
-
-
-
-
-
-
- 鎺у埗
-
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 6
-
+
+
-
-
+
+
+ QPushButton
+{
+ border: 1px solid #5069BD;
+}
+
-
+
0
-
-
-
-
- Qt::Horizontal
-
-
-
- 84
- 20
-
-
-
-
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 4
+
-
@@ -115,32 +189,6 @@
- -
-
-
- Qt::Horizontal
-
-
-
- 84
- 20
-
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 杩炴帴
-
-
-
-
@@ -154,19 +202,6 @@
- -
-
-
- Qt::Horizontal
-
-
-
- 66
- 20
-
-
-
-
-
@@ -175,37 +210,17 @@
0
+
+
+ 0
+ 0
+
+
鈫
- -
-
-
-
- 0
- 0
-
-
-
- 褰掗浂
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 84
- 19
-
-
-
-
-
@@ -219,20 +234,57 @@
- -
-
-
- Qt::Horizontal
+
+
+
+ -
+
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 4
+
+
-
+
+
+
+ 0
+ 0
+
-
-
- 84
- 19
-
+
+ 杩炴帴
-
+
- -
+
-
+
+
+
+ 0
+ 0
+
+
+
+ 褰掗浂
+
+
+
+ -
@@ -248,917 +300,107 @@
- -
-
-
- 杩愯
-
-
-
- -
-
-
- 鍋滄
-
-
-
- -
-
-
- Qt::Vertical
-
-
- QSizePolicy::Expanding
-
-
-
- 20
- 0
-
-
-
-
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 127
-
-
-
- #QGroupBox{border:none}
-
-
- x椹揪
-
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 6
-
-
-
-
-
- Qt::Vertical
-
-
- QSizePolicy::Expanding
-
-
-
- 20
- 1
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 50
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- 杩愬姩閫熷害
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 1
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 50
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- 瀹炴椂浣嶇疆
-
-
- Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
- 50
- 0
-
-
-
- 鐘舵
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 50
- 16777215
-
-
-
- 绉诲姩鑷
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 125
-
-
-
-
-
-
- y椹揪
-
-
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- 杩愬姩閫熷害
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 1
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 50
- 0
-
-
-
-
- 50
- 16777215
-
-
-
- 瀹炴椂浣嶇疆
-
-
- Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
- Qt::Vertical
-
-
-
- 20
- 0
-
-
-
-
- -
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
- 50
- 0
-
-
-
- 鐘舵
-
-
- Qt::AlignCenter
-
-
-
-
-
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 50
- 16777215
-
-
-
- 绉诲姩鑷
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 16777215
- 16777215
-
-
-
- background-color: rgb(255, 255, 255);
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
-
-
-
-
-
- -
+
+ QGroupBox
+{
+ border-top: 30px solid transparent;
+ border-right: 0px solid transparent;
+ border-bottom: 0px solid transparent;
+ border-left: 0px solid transparent;
+
+ color: #E2EDFF;
+}
+
閲囬泦绾
-
- 0
-
-
- 0
-
-
- 0
-
-
- 0
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 108
- 0
-
-
-
- 楂樺害
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 100
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- Qt::LeftToRight
-
-
- 鐢熸垚杞ㄨ抗
-
-
-
- -
-
-
- 淇濆瓨杞ㄨ抗
-
-
-
-
+
+
+ 淇濆瓨杞ㄨ抗
+
+
+
+ -
+
+
+ 娣诲姞
+
+
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 108
- 0
-
-
-
- 瑙嗗満瑙
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 17.6
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
- 鍒犻櫎杞ㄨ抗
-
-
-
- -
-
-
- 璇诲彇杞ㄨ抗
-
-
-
-
+
+
+ 璇诲彇杞ㄨ抗
+
+
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 108
- 0
-
-
-
- 鍋忕Щ
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
- 0
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- 骞呭
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 90
- 0
-
-
-
- 0
-
-
- Qt::AlignCenter
-
-
- true
-
-
-
- -
-
-
- 娣诲姞
-
-
-
-
+ -
+
+
+ 绉婚櫎
+
+
- -
-
-
-
-
-
-
- 0
- 0
-
-
-
-
- 108
- 0
-
-
-
- 閲嶅鐜(%)
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
-
- 0
- 0
-
-
-
- 0
-
-
- Qt::AlignCenter
-
-
- false
-
-
-
- -
-
-
- 闃堝
-
-
- Qt::AlignCenter
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- 90
- 0
-
-
-
- 0.7
-
-
- Qt::AlignCenter
-
-
- false
-
-
-
- -
-
-
- 绉婚櫎
-
-
-
-
+ -
+
+
+ 鍒犻櫎鍏ㄩ儴
+
+
- -
+
-
+
+
+ 0
+ 200
+
+
+
+ /* 琛ㄦ牸鏁翠綋 */
+QTableWidget {
+ background-color: #0E1C4C;
+ color: #ACCDFF;
+ gridline-color: #4B60A6;
+ border: 1px solid #4B60A6;
+}
+
+/* 鈽 鍏抽敭锛氱┖鐧藉尯鍩燂紙浣犵澶存寚鐨勫湴鏂癸級 */
+QTableWidget QAbstractScrollArea::viewport {
+ background-color: #0E1C4C;
+}
+
+/* 鍗曞厓鏍 */
+QTableWidget::item {
+ background-color: #0E1C4C;
+ color: #ACCDFF;
+}
+
+/* 琛ㄥご */
+QHeaderView::section {
+ background-color: #0E1C4C;
+ color: #ACCDFF;
+ border: 1px solid #4B60A6;
+}
+
+/* 鈽 琛ㄥご鍚庨潰鐨勭┖鐧藉尯鍩 */
+QHeaderView {
+ background-color: #0E1C4C;
+}
+
+/* 鍙充笅瑙掔┖鐧 */
+QTableCornerButton::section {
+ background-color: #0E1C4C;
+ border: 1px solid #4B60A6;
+}
+
6
@@ -1197,6 +439,567 @@
+ -
+
+
+ QFrame #frame
+{
+ background: #0E1C4C;
+ border: 1px solid #5069BD;
+ border-radius: 4px 4px 4px 4px;
+}
+
+QWidget #widget
+{
+ background: transparent;
+}
+
+QWidget #widget_2
+{
+ background: transparent;
+}
+
+QLineEdit
+{
+ color: #ACCDFF;
+ border: none;
+ border-bottom: 1px solid #4B60A6;
+ background: transparent;
+}
+QLineEdit:focus
+{
+ background: rgba(255, 255, 255, 0.1); /* 鍗婇忔槑鐧借壊鑳屾櫙 */
+}
+
+
+
+ QFrame::Box
+
+
+ 1
+
+
+ 0
+
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
-
+
+
+
-
+
+
+
+ 8
+ 8
+
+
+
+
+ 8
+ 8
+
+
+
+ background-color: red;
+border-radius: 4px;
+
+
+
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 绉诲姩鑷
+
+
+
+ -
+
+
+ color: #E2EDFF;
+
+
+ y椹揪
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 1
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 杩愬姩閫熷害
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 瀹炴椂浣嶇疆
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+ 鐘舵
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 203
+ 20
+
+
+
+
+
+
+
+ -
+
+
+
-
+
+
+ color: #E2EDFF;
+
+
+ x椹揪
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 203
+ 20
+
+
+
+
+ -
+
+
+ 鐘舵
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 8
+ 8
+
+
+
+
+ 8
+ 8
+
+
+
+ background-color: red;
+border-radius: 4px;
+
+
+
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 50
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 杩愬姩閫熷害
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 1
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 50
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 瀹炴椂浣嶇疆
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+ 绉诲姩鑷
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 16777215
+
+
+
+
+
+
+ 0
+
+
+ Qt::AlignCenter
+
+
+
+
+
+
+ -
+
+
+ color: #5069BD;
+
+
+ QFrame::Plain
+
+
+ 1
+
+
+ Qt::Vertical
+
+
+
+
+
+