hikyuu 2.6.8.5__py3-none-win_amd64.whl → 2.6.9__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. hikyuu/__init__.py +5 -11
  2. hikyuu/__init__.pyi +37 -12
  3. hikyuu/analysis/__init__.pyi +26 -0
  4. hikyuu/analysis/analysis.pyi +27 -1
  5. hikyuu/core.py +2 -0
  6. hikyuu/core.pyi +28 -2
  7. hikyuu/cpp/arrow.dll +0 -0
  8. hikyuu/cpp/boost_date_time-mt.dll +0 -0
  9. hikyuu/cpp/boost_serialization-mt.dll +0 -0
  10. hikyuu/cpp/boost_system-mt.dll +0 -0
  11. hikyuu/cpp/boost_wserialization-mt.dll +0 -0
  12. hikyuu/cpp/core310.pyd +0 -0
  13. hikyuu/cpp/core310.pyi +446 -9
  14. hikyuu/cpp/core311.pyd +0 -0
  15. hikyuu/cpp/core311.pyi +446 -9
  16. hikyuu/cpp/core312.pyd +0 -0
  17. hikyuu/cpp/core312.pyi +446 -9
  18. hikyuu/cpp/core313.pyd +0 -0
  19. hikyuu/cpp/core313.pyi +446 -9
  20. hikyuu/cpp/core39.pyd +0 -0
  21. hikyuu/cpp/core39.pyi +446 -9
  22. hikyuu/cpp/hikyuu.dll +0 -0
  23. hikyuu/cpp/hikyuu.lib +0 -0
  24. hikyuu/cpp/i18n/zh_CN/hikyuu.mo +0 -0
  25. hikyuu/cpp/msvcp140-a118642f3ae8774fb9dc223e15c4a52e.dll +0 -0
  26. hikyuu/cpp/parquet.dll +0 -0
  27. hikyuu/cpp/sqlite3.dll +0 -0
  28. hikyuu/data/clickhouse_upgrade/createdb.sql +105 -105
  29. hikyuu/data/common.py +3 -3
  30. hikyuu/data/common_clickhouse.py +1 -1
  31. hikyuu/data/download_block.py +318 -0
  32. hikyuu/data/em_block_to_clickhouse.py +26 -74
  33. hikyuu/data/em_block_to_mysql.py +25 -75
  34. hikyuu/data/em_block_to_sqlite.py +26 -78
  35. hikyuu/data/hku_config_template.py +3 -3
  36. hikyuu/data/pytdx_to_clickhouse.py +15 -11
  37. hikyuu/data/pytdx_to_h5.py +6 -2
  38. hikyuu/data/pytdx_to_mysql.py +5 -1
  39. hikyuu/data/pytdx_weight_to_clickhouse.py +1 -1
  40. hikyuu/data/pytdx_weight_to_mysql.py +1 -1
  41. hikyuu/data/pytdx_weight_to_sqlite.py +1 -1
  42. hikyuu/data/zh_bond10_to_clickhouse.py +1 -1
  43. hikyuu/draw/drawplot/bokeh_draw.pyi +33 -8
  44. hikyuu/draw/drawplot/echarts_draw.pyi +33 -8
  45. hikyuu/draw/drawplot/matplotlib_draw.py +4 -74
  46. hikyuu/draw/drawplot/matplotlib_draw.pyi +33 -8
  47. hikyuu/examples/notebook/Demo/Demo1.ipynb +48 -33
  48. hikyuu/extend.py +0 -1
  49. hikyuu/extend.pyi +30 -5
  50. hikyuu/fetcher/stock/zh_block_em.py +50 -18
  51. hikyuu/gui/HikyuuTDX.py +81 -30
  52. hikyuu/gui/data/CollectSpotThread.py +1 -1
  53. hikyuu/gui/data/EscapetimeThread.py +8 -14
  54. hikyuu/gui/data/ImportBlockInfoTask.py +3 -10
  55. hikyuu/gui/data/MainWindow.py +1168 -715
  56. hikyuu/gui/data/SchedImportThread.py +2 -2
  57. hikyuu/gui/data/UsePytdxImportToH5Thread.py +3 -3
  58. hikyuu/gui/data/UseQmtImportToH5Thread.py +2 -2
  59. hikyuu/gui/data/UseTdxImportToH5Thread.py +3 -3
  60. hikyuu/gui/data/tool.py +32 -25
  61. hikyuu/gui/dataserver.py +5 -3
  62. hikyuu/hub.pyi +6 -6
  63. hikyuu/include/hikyuu/DataType.h +4 -16
  64. hikyuu/include/hikyuu/KData.h +6 -3
  65. hikyuu/include/hikyuu/KDataPrivatedBufferImp.h +1 -1
  66. hikyuu/include/hikyuu/KDataSharedBufferImp.h +1 -1
  67. hikyuu/include/hikyuu/KQuery.h +2 -2
  68. hikyuu/include/hikyuu/Stock.h +3 -0
  69. hikyuu/include/hikyuu/StockManager.h +13 -3
  70. hikyuu/include/hikyuu/data_driver/BaseInfoDriver.h +8 -0
  71. hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +6 -0
  72. hikyuu/include/hikyuu/data_driver/KDataDriver.h +26 -1
  73. hikyuu/include/hikyuu/data_driver/base_info/mysql/MySQLBaseInfoDriver.h +1 -1
  74. hikyuu/include/hikyuu/data_driver/base_info/sqlite/SQLiteBaseInfoDriver.h +1 -1
  75. hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +2 -1
  76. hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +2 -1
  77. hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +2 -1
  78. hikyuu/include/hikyuu/data_driver/kdata/DoNothingKDataDriver.h +1 -1
  79. hikyuu/include/hikyuu/data_driver/kdata/cvs/KDataTempCsvDriver.h +1 -1
  80. hikyuu/include/hikyuu/data_driver/kdata/hdf5/H5KDataDriver.h +1 -1
  81. hikyuu/include/hikyuu/data_driver/kdata/mysql/MySQLKDataDriver.h +1 -1
  82. hikyuu/include/hikyuu/data_driver/kdata/sqlite/SQLiteKDataDriver.h +1 -1
  83. hikyuu/include/hikyuu/data_driver/kdata/tdx/TdxKDataDriver.h +1 -1
  84. hikyuu/include/hikyuu/hikyuu.h +1 -1
  85. hikyuu/include/hikyuu/indicator/build_in.h +1 -0
  86. hikyuu/include/hikyuu/indicator/crt/CYCLE.h +4 -4
  87. hikyuu/include/hikyuu/indicator/crt/HSL.h +2 -2
  88. hikyuu/include/hikyuu/indicator/crt/QUANTILE_TRUNC.h +30 -0
  89. hikyuu/include/hikyuu/indicator/crt/TURNOVER.h +1 -0
  90. hikyuu/include/hikyuu/indicator/crt/ZSCORE.h +2 -2
  91. hikyuu/include/hikyuu/indicator/imp/IQuantileTrunc.h +25 -0
  92. hikyuu/include/hikyuu/misc.h +38 -0
  93. hikyuu/include/hikyuu/plugin/dataserver.h +2 -1
  94. hikyuu/include/hikyuu/plugin/extind.h +37 -0
  95. hikyuu/include/hikyuu/plugin/interface/DataServerPluginInterface.h +2 -2
  96. hikyuu/include/hikyuu/plugin/interface/ExtendIndicatorsPluginInterface.h +12 -0
  97. hikyuu/include/hikyuu/strategy/RunSystemInStrategy.h +3 -0
  98. hikyuu/include/hikyuu/trade_manage/Performance.h +4 -4
  99. hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +10 -1
  100. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedCapitalFundsMM.h +0 -4
  101. hikyuu/include/hikyuu/trade_sys/multifactor/MultiFactorBase.h +36 -3
  102. hikyuu/include/hikyuu/trade_sys/multifactor/NormalizeBase.h +125 -0
  103. hikyuu/include/hikyuu/trade_sys/multifactor/ScoresFilterBase.h +125 -0
  104. hikyuu/include/hikyuu/trade_sys/multifactor/build_in.h +3 -0
  105. hikyuu/include/hikyuu/trade_sys/multifactor/buildin_norm.h +36 -0
  106. hikyuu/include/hikyuu/trade_sys/multifactor/buildin_scfilter.h +51 -0
  107. hikyuu/include/hikyuu/trade_sys/multifactor/filter/GroupSCFilter.h +24 -0
  108. hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreLessOrEqualValueSCFilter.h +24 -0
  109. hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreNanSCFilter.h +24 -0
  110. hikyuu/include/hikyuu/trade_sys/multifactor/filter/MinAmountPercentSCFilter.h +25 -0
  111. hikyuu/include/hikyuu/trade_sys/multifactor/filter/PriceSCFilter.h +24 -0
  112. hikyuu/include/hikyuu/trade_sys/multifactor/filter/TopNSCFilter.h +24 -0
  113. hikyuu/include/hikyuu/trade_sys/multifactor/filter/__init__.py +1 -0
  114. hikyuu/include/hikyuu/trade_sys/multifactor/imp/EqualWeightMultiFactor.h +1 -1
  115. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICIRMultiFactor.h +1 -1
  116. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICMultiFactor.h +1 -1
  117. hikyuu/include/hikyuu/trade_sys/multifactor/imp/WeightMultiFactor.h +1 -1
  118. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormMinMax.h +23 -0
  119. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantile.h +28 -0
  120. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantileUniform.h +28 -0
  121. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormZScore.h +25 -0
  122. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/__init__.py +1 -0
  123. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/quantile_trunc.h +16 -0
  124. hikyuu/include/hikyuu/trade_sys/portfolio/Portfolio.h +7 -0
  125. hikyuu/include/hikyuu/trade_sys/portfolio/imp/SimplePortfolio.h +7 -0
  126. hikyuu/include/hikyuu/trade_sys/portfolio/imp/WithoutAFPortfolio.h +7 -0
  127. hikyuu/include/hikyuu/trade_sys/selector/SelectorBase.h +49 -0
  128. hikyuu/include/hikyuu/trade_sys/selector/build_in.h +1 -0
  129. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_MultiFactor2.h +40 -0
  130. hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector.h +0 -3
  131. hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector2.h +49 -0
  132. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSelector.h +1 -1
  133. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorValueSelector.h +1 -1
  134. hikyuu/include/hikyuu/trade_sys/signal/imp/BandSignal2.h +0 -4
  135. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/AddValueSignal.h +2 -2
  136. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/DivValueSignal.h +2 -2
  137. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/MulValueSignal.h +2 -2
  138. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorSignal.h +1 -1
  139. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorValueSignal.h +4 -4
  140. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/SubValueSignal.h +2 -2
  141. hikyuu/include/hikyuu/trade_sys/system/System.h +14 -1
  142. hikyuu/include/hikyuu/utilities/SpendTimer.h +17 -7
  143. hikyuu/include/hikyuu/utilities/arithmetic.h +45 -0
  144. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLConnect.h +1 -1
  145. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -1
  146. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteConnect.h +1 -1
  147. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteStatement.h +1 -1
  148. hikyuu/include/hikyuu/utilities/plugin/PluginLoader.h +4 -1
  149. hikyuu/include/hikyuu/version.h +4 -4
  150. hikyuu/plugin/backtest.dll +0 -0
  151. hikyuu/plugin/clickhousedriver.dll +0 -0
  152. hikyuu/plugin/dataserver.dll +0 -0
  153. hikyuu/plugin/device.dll +0 -0
  154. hikyuu/plugin/extind.dll +0 -0
  155. hikyuu/plugin/hkuextra.dll +0 -0
  156. hikyuu/plugin/hkuviews.dll +0 -0
  157. hikyuu/plugin/import2hdf5.dll +0 -0
  158. hikyuu/plugin/tmreport.dll +0 -0
  159. hikyuu/trade_manage/__init__.pyi +33 -8
  160. hikyuu/trade_manage/trade.pyi +33 -8
  161. hikyuu/util/__init__.pyi +2 -2
  162. hikyuu/util/singleton.pyi +1 -1
  163. {hikyuu-2.6.8.5.dist-info → hikyuu-2.6.9.dist-info}/METADATA +13 -14
  164. {hikyuu-2.6.8.5.dist-info → hikyuu-2.6.9.dist-info}/RECORD +167 -149
  165. {hikyuu-2.6.8.5.dist-info → hikyuu-2.6.9.dist-info}/top_level.txt +2 -1
  166. hikyuu/data_driver/__init__.py +0 -49
  167. hikyuu/data_driver/jqdata_data_driver.py +0 -277
  168. hikyuu/data_driver/pytdx_data_driver.py +0 -292
  169. hikyuu/fetcher/stock/zh_stock_a_huatai.py +0 -51
  170. hikyuu/fetcher/stock/zh_stock_a_pytdx.py +0 -129
  171. hikyuu/gui/data/CollectToMemThread.py +0 -123
  172. hikyuu/gui/data/CollectToMySQLThread.py +0 -178
  173. hikyuu/gui/start_huatai_insight.py +0 -510
  174. hikyuu/tools/update_block_info.py +0 -168
  175. {hikyuu-2.6.8.5.dist-info → hikyuu-2.6.9.dist-info}/WHEEL +0 -0
  176. {hikyuu-2.6.8.5.dist-info → hikyuu-2.6.9.dist-info}/entry_points.txt +0 -0
@@ -1,1003 +1,1456 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
- # Form implementation generated from reading ui file 'MainWindow.ui'
4
- #
5
- # Created by: PyQt5 UI code generator 5.15.10
6
- #
7
- # WARNING: Any manual changes made to this file will be lost when pyuic5 is
8
- # run again. Do not edit this file unless you know what you are doing.
9
-
10
-
11
- from PyQt5 import QtCore, QtGui, QtWidgets
3
+ ################################################################################
4
+ ## Form generated from reading UI file 'MainWindow.ui'
5
+ ##
6
+ ## Created by: Qt User Interface Compiler version 6.8.1
7
+ ##
8
+ ## WARNING! All changes made in this file will be lost when recompiling UI file!
9
+ ################################################################################
12
10
 
11
+ from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
12
+ QMetaObject, QObject, QPoint, QRect,
13
+ QSize, QTime, QUrl, Qt)
14
+ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
15
+ QFont, QFontDatabase, QGradient, QIcon,
16
+ QImage, QKeySequence, QLinearGradient, QPainter,
17
+ QPalette, QPixmap, QRadialGradient, QTransform)
18
+ from PySide6.QtWidgets import (QApplication, QCheckBox, QComboBox, QDateEdit,
19
+ QDateTimeEdit, QFrame, QGridLayout, QGroupBox,
20
+ QHBoxLayout, QLabel, QLineEdit, QMainWindow,
21
+ QProgressBar, QPushButton, QRadioButton, QSizePolicy,
22
+ QSpacerItem, QSpinBox, QTabWidget, QTextBrowser,
23
+ QTextEdit, QTimeEdit, QVBoxLayout, QWidget)
13
24
 
14
25
  class Ui_MainWindow(object):
15
26
  def setupUi(self, MainWindow):
16
- MainWindow.setObjectName("MainWindow")
27
+ if not MainWindow.objectName():
28
+ MainWindow.setObjectName(u"MainWindow")
17
29
  MainWindow.resize(1178, 719)
18
- self.centralwidget = QtWidgets.QWidget(MainWindow)
19
- self.centralwidget.setObjectName("centralwidget")
20
- self.horizontalLayout_12 = QtWidgets.QHBoxLayout(self.centralwidget)
21
- self.horizontalLayout_12.setObjectName("horizontalLayout_12")
22
- self.tabWidget = QtWidgets.QTabWidget(self.centralwidget)
30
+ self.centralwidget = QWidget(MainWindow)
31
+ self.centralwidget.setObjectName(u"centralwidget")
32
+ self.horizontalLayout_12 = QHBoxLayout(self.centralwidget)
33
+ self.horizontalLayout_12.setObjectName(u"horizontalLayout_12")
34
+ self.tabWidget = QTabWidget(self.centralwidget)
35
+ self.tabWidget.setObjectName(u"tabWidget")
23
36
  self.tabWidget.setEnabled(True)
24
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding)
37
+ sizePolicy = QSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Expanding)
25
38
  sizePolicy.setHorizontalStretch(0)
26
39
  sizePolicy.setVerticalStretch(0)
27
40
  sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth())
28
41
  self.tabWidget.setSizePolicy(sizePolicy)
29
- self.tabWidget.setObjectName("tabWidget")
30
- self.tab_4 = QtWidgets.QWidget()
31
- self.tab_4.setObjectName("tab_4")
32
- self.verticalLayout_13 = QtWidgets.QVBoxLayout(self.tab_4)
33
- self.verticalLayout_13.setObjectName("verticalLayout_13")
34
- self.groupBox_2 = QtWidgets.QGroupBox(self.tab_4)
35
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
36
- sizePolicy.setHorizontalStretch(0)
37
- sizePolicy.setVerticalStretch(0)
38
- sizePolicy.setHeightForWidth(self.groupBox_2.sizePolicy().hasHeightForWidth())
39
- self.groupBox_2.setSizePolicy(sizePolicy)
40
- self.groupBox_2.setObjectName("groupBox_2")
41
- self.verticalLayout_12 = QtWidgets.QVBoxLayout(self.groupBox_2)
42
- self.verticalLayout_12.setObjectName("verticalLayout_12")
43
- self.horizontalLayout = QtWidgets.QHBoxLayout()
42
+ self.tab_4 = QWidget()
43
+ self.tab_4.setObjectName(u"tab_4")
44
+ self.verticalLayout_13 = QVBoxLayout(self.tab_4)
45
+ self.verticalLayout_13.setObjectName(u"verticalLayout_13")
46
+ self.groupBox_2 = QGroupBox(self.tab_4)
47
+ self.groupBox_2.setObjectName(u"groupBox_2")
48
+ sizePolicy1 = QSizePolicy(QSizePolicy.Policy.Preferred, QSizePolicy.Policy.Fixed)
49
+ sizePolicy1.setHorizontalStretch(0)
50
+ sizePolicy1.setVerticalStretch(0)
51
+ sizePolicy1.setHeightForWidth(self.groupBox_2.sizePolicy().hasHeightForWidth())
52
+ self.groupBox_2.setSizePolicy(sizePolicy1)
53
+ self.verticalLayout_12 = QVBoxLayout(self.groupBox_2)
54
+ self.verticalLayout_12.setObjectName(u"verticalLayout_12")
55
+ self.horizontalLayout = QHBoxLayout()
56
+ self.horizontalLayout.setObjectName(u"horizontalLayout")
44
57
  self.horizontalLayout.setContentsMargins(10, 10, -1, -1)
45
- self.horizontalLayout.setObjectName("horizontalLayout")
46
- self.pytdx_radioButton = QtWidgets.QRadioButton(self.groupBox_2)
58
+ self.pytdx_radioButton = QRadioButton(self.groupBox_2)
59
+ self.pytdx_radioButton.setObjectName(u"pytdx_radioButton")
47
60
  self.pytdx_radioButton.setEnabled(True)
48
- self.pytdx_radioButton.setObjectName("pytdx_radioButton")
61
+
49
62
  self.horizontalLayout.addWidget(self.pytdx_radioButton)
50
- self.label_16 = QtWidgets.QLabel(self.groupBox_2)
51
- self.label_16.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
52
- self.label_16.setObjectName("label_16")
63
+
64
+ self.label_16 = QLabel(self.groupBox_2)
65
+ self.label_16.setObjectName(u"label_16")
66
+ self.label_16.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
67
+
53
68
  self.horizontalLayout.addWidget(self.label_16)
54
- self.use_tdx_number_spinBox = QtWidgets.QSpinBox(self.groupBox_2)
69
+
70
+ self.use_tdx_number_spinBox = QSpinBox(self.groupBox_2)
71
+ self.use_tdx_number_spinBox.setObjectName(u"use_tdx_number_spinBox")
55
72
  self.use_tdx_number_spinBox.setMinimum(1)
56
73
  self.use_tdx_number_spinBox.setMaximum(20)
57
- self.use_tdx_number_spinBox.setProperty("value", 10)
58
- self.use_tdx_number_spinBox.setObjectName("use_tdx_number_spinBox")
74
+ self.use_tdx_number_spinBox.setValue(10)
75
+
59
76
  self.horizontalLayout.addWidget(self.use_tdx_number_spinBox)
60
- self.label_17 = QtWidgets.QLabel(self.groupBox_2)
61
- self.label_17.setObjectName("label_17")
77
+
78
+ self.label_17 = QLabel(self.groupBox_2)
79
+ self.label_17.setObjectName(u"label_17")
80
+
62
81
  self.horizontalLayout.addWidget(self.label_17)
63
- spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
64
- self.horizontalLayout.addItem(spacerItem)
82
+
83
+ self.horizontalSpacer_13 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
84
+
85
+ self.horizontalLayout.addItem(self.horizontalSpacer_13)
86
+
87
+
65
88
  self.verticalLayout_12.addLayout(self.horizontalLayout)
66
- self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
89
+
90
+ self.horizontalLayout_5 = QHBoxLayout()
91
+ self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
67
92
  self.horizontalLayout_5.setContentsMargins(10, 0, -1, -1)
68
- self.horizontalLayout_5.setObjectName("horizontalLayout_5")
69
- self.tdx_radioButton = QtWidgets.QRadioButton(self.groupBox_2)
70
- self.tdx_radioButton.setObjectName("tdx_radioButton")
93
+ self.tdx_radioButton = QRadioButton(self.groupBox_2)
94
+ self.tdx_radioButton.setObjectName(u"tdx_radioButton")
95
+
71
96
  self.horizontalLayout_5.addWidget(self.tdx_radioButton)
97
+
98
+
72
99
  self.verticalLayout_12.addLayout(self.horizontalLayout_5)
73
- self.gridLayout_2 = QtWidgets.QGridLayout()
100
+
101
+ self.gridLayout_2 = QGridLayout()
102
+ self.gridLayout_2.setObjectName(u"gridLayout_2")
74
103
  self.gridLayout_2.setContentsMargins(10, -1, -1, 10)
75
- self.gridLayout_2.setObjectName("gridLayout_2")
76
- self.select_tdx_dir_pushButton = QtWidgets.QPushButton(self.groupBox_2)
77
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
78
- sizePolicy.setHorizontalStretch(0)
79
- sizePolicy.setVerticalStretch(0)
80
- sizePolicy.setHeightForWidth(self.select_tdx_dir_pushButton.sizePolicy().hasHeightForWidth())
81
- self.select_tdx_dir_pushButton.setSizePolicy(sizePolicy)
82
- self.select_tdx_dir_pushButton.setObjectName("select_tdx_dir_pushButton")
104
+ self.select_tdx_dir_pushButton = QPushButton(self.groupBox_2)
105
+ self.select_tdx_dir_pushButton.setObjectName(u"select_tdx_dir_pushButton")
106
+ sizePolicy1.setHeightForWidth(self.select_tdx_dir_pushButton.sizePolicy().hasHeightForWidth())
107
+ self.select_tdx_dir_pushButton.setSizePolicy(sizePolicy1)
108
+
83
109
  self.gridLayout_2.addWidget(self.select_tdx_dir_pushButton, 0, 3, 1, 1)
84
- self.label_2 = QtWidgets.QLabel(self.groupBox_2)
85
- self.label_2.setObjectName("label_2")
110
+
111
+ self.label_2 = QLabel(self.groupBox_2)
112
+ self.label_2.setObjectName(u"label_2")
113
+
86
114
  self.gridLayout_2.addWidget(self.label_2, 0, 0, 1, 1)
87
- self.tdx_dir_lineEdit = QtWidgets.QLineEdit(self.groupBox_2)
88
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed)
89
- sizePolicy.setHorizontalStretch(1)
90
- sizePolicy.setVerticalStretch(0)
91
- sizePolicy.setHeightForWidth(self.tdx_dir_lineEdit.sizePolicy().hasHeightForWidth())
92
- self.tdx_dir_lineEdit.setSizePolicy(sizePolicy)
93
- self.tdx_dir_lineEdit.setObjectName("tdx_dir_lineEdit")
115
+
116
+ self.tdx_dir_lineEdit = QLineEdit(self.groupBox_2)
117
+ self.tdx_dir_lineEdit.setObjectName(u"tdx_dir_lineEdit")
118
+ sizePolicy2 = QSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed)
119
+ sizePolicy2.setHorizontalStretch(1)
120
+ sizePolicy2.setVerticalStretch(0)
121
+ sizePolicy2.setHeightForWidth(self.tdx_dir_lineEdit.sizePolicy().hasHeightForWidth())
122
+ self.tdx_dir_lineEdit.setSizePolicy(sizePolicy2)
123
+
94
124
  self.gridLayout_2.addWidget(self.tdx_dir_lineEdit, 0, 1, 1, 2)
125
+
126
+
95
127
  self.verticalLayout_12.addLayout(self.gridLayout_2)
96
- self.horizontalLayout_24 = QtWidgets.QHBoxLayout()
128
+
129
+ self.horizontalLayout_24 = QHBoxLayout()
130
+ self.horizontalLayout_24.setObjectName(u"horizontalLayout_24")
97
131
  self.horizontalLayout_24.setContentsMargins(10, 0, -1, -1)
98
- self.horizontalLayout_24.setObjectName("horizontalLayout_24")
99
- self.qmt_radioButton = QtWidgets.QRadioButton(self.groupBox_2)
100
- self.qmt_radioButton.setObjectName("qmt_radioButton")
132
+ self.qmt_radioButton = QRadioButton(self.groupBox_2)
133
+ self.qmt_radioButton.setObjectName(u"qmt_radioButton")
134
+
101
135
  self.horizontalLayout_24.addWidget(self.qmt_radioButton)
136
+
137
+
102
138
  self.verticalLayout_12.addLayout(self.horizontalLayout_24)
139
+
140
+
103
141
  self.verticalLayout_13.addWidget(self.groupBox_2)
104
- self.groupBox_7 = QtWidgets.QGroupBox(self.tab_4)
105
- self.groupBox_7.setObjectName("groupBox_7")
106
- self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.groupBox_7)
107
- self.verticalLayout_11.setObjectName("verticalLayout_11")
108
- self.horizontalLayout_4 = QtWidgets.QHBoxLayout()
142
+
143
+ self.groupBox_7 = QGroupBox(self.tab_4)
144
+ self.groupBox_7.setObjectName(u"groupBox_7")
145
+ self.verticalLayout_11 = QVBoxLayout(self.groupBox_7)
146
+ self.verticalLayout_11.setObjectName(u"verticalLayout_11")
147
+ self.horizontalLayout_4 = QHBoxLayout()
148
+ self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
109
149
  self.horizontalLayout_4.setContentsMargins(10, 10, -1, -1)
110
- self.horizontalLayout_4.setObjectName("horizontalLayout_4")
111
- self.import_weight_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
112
- self.import_weight_checkBox.setObjectName("import_weight_checkBox")
150
+ self.import_weight_checkBox = QCheckBox(self.groupBox_7)
151
+ self.import_weight_checkBox.setObjectName(u"import_weight_checkBox")
152
+
113
153
  self.horizontalLayout_4.addWidget(self.import_weight_checkBox)
114
- self.import_history_finance_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
115
- self.import_history_finance_checkBox.setObjectName("import_history_finance_checkBox")
154
+
155
+ self.import_history_finance_checkBox = QCheckBox(self.groupBox_7)
156
+ self.import_history_finance_checkBox.setObjectName(u"import_history_finance_checkBox")
157
+
116
158
  self.horizontalLayout_4.addWidget(self.import_history_finance_checkBox)
117
- self.import_block_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
118
- self.import_block_checkBox.setObjectName("import_block_checkBox")
159
+
160
+ self.import_block_checkBox = QCheckBox(self.groupBox_7)
161
+ self.import_block_checkBox.setObjectName(u"import_block_checkBox")
162
+
119
163
  self.horizontalLayout_4.addWidget(self.import_block_checkBox)
164
+
165
+
120
166
  self.verticalLayout_11.addLayout(self.horizontalLayout_4)
121
- self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
167
+
168
+ self.horizontalLayout_3 = QHBoxLayout()
169
+ self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
122
170
  self.horizontalLayout_3.setContentsMargins(10, -1, -1, -1)
123
- self.horizontalLayout_3.setObjectName("horizontalLayout_3")
124
- self.import_stock_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
125
- self.import_stock_checkBox.setObjectName("import_stock_checkBox")
171
+ self.import_stock_checkBox = QCheckBox(self.groupBox_7)
172
+ self.import_stock_checkBox.setObjectName(u"import_stock_checkBox")
173
+
126
174
  self.horizontalLayout_3.addWidget(self.import_stock_checkBox)
127
- self.import_fund_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
128
- self.import_fund_checkBox.setObjectName("import_fund_checkBox")
175
+
176
+ self.import_fund_checkBox = QCheckBox(self.groupBox_7)
177
+ self.import_fund_checkBox.setObjectName(u"import_fund_checkBox")
178
+
129
179
  self.horizontalLayout_3.addWidget(self.import_fund_checkBox)
130
- self.import_future_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
180
+
181
+ self.import_future_checkBox = QCheckBox(self.groupBox_7)
182
+ self.import_future_checkBox.setObjectName(u"import_future_checkBox")
131
183
  self.import_future_checkBox.setEnabled(False)
132
- self.import_future_checkBox.setObjectName("import_future_checkBox")
184
+
133
185
  self.horizontalLayout_3.addWidget(self.import_future_checkBox)
134
- spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
135
- self.horizontalLayout_3.addItem(spacerItem1)
186
+
187
+ self.horizontalSpacer_11 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
188
+
189
+ self.horizontalLayout_3.addItem(self.horizontalSpacer_11)
190
+
191
+
136
192
  self.verticalLayout_11.addLayout(self.horizontalLayout_3)
137
- self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
193
+
194
+ self.horizontalLayout_2 = QHBoxLayout()
195
+ self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
138
196
  self.horizontalLayout_2.setContentsMargins(10, -1, -1, -1)
139
- self.horizontalLayout_2.setObjectName("horizontalLayout_2")
140
- self.import_day_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
141
- self.import_day_checkBox.setObjectName("import_day_checkBox")
197
+ self.import_day_checkBox = QCheckBox(self.groupBox_7)
198
+ self.import_day_checkBox.setObjectName(u"import_day_checkBox")
199
+
142
200
  self.horizontalLayout_2.addWidget(self.import_day_checkBox)
143
- self.import_min5_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
144
- self.import_min5_checkBox.setObjectName("import_min5_checkBox")
201
+
202
+ self.import_min5_checkBox = QCheckBox(self.groupBox_7)
203
+ self.import_min5_checkBox.setObjectName(u"import_min5_checkBox")
204
+
145
205
  self.horizontalLayout_2.addWidget(self.import_min5_checkBox)
146
- self.import_min_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
147
- self.import_min_checkBox.setObjectName("import_min_checkBox")
206
+
207
+ self.import_min_checkBox = QCheckBox(self.groupBox_7)
208
+ self.import_min_checkBox.setObjectName(u"import_min_checkBox")
209
+
148
210
  self.horizontalLayout_2.addWidget(self.import_min_checkBox)
149
- self.import_trans_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
211
+
212
+ self.import_trans_checkBox = QCheckBox(self.groupBox_7)
213
+ self.import_trans_checkBox.setObjectName(u"import_trans_checkBox")
150
214
  self.import_trans_checkBox.setEnabled(True)
151
- self.import_trans_checkBox.setObjectName("import_trans_checkBox")
215
+
152
216
  self.horizontalLayout_2.addWidget(self.import_trans_checkBox)
153
- self.import_time_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
217
+
218
+ self.import_time_checkBox = QCheckBox(self.groupBox_7)
219
+ self.import_time_checkBox.setObjectName(u"import_time_checkBox")
154
220
  self.import_time_checkBox.setEnabled(True)
155
- self.import_time_checkBox.setObjectName("import_time_checkBox")
221
+
156
222
  self.horizontalLayout_2.addWidget(self.import_time_checkBox)
157
- spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
158
- self.horizontalLayout_2.addItem(spacerItem2)
223
+
224
+ self.horizontalSpacer_12 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
225
+
226
+ self.horizontalLayout_2.addItem(self.horizontalSpacer_12)
227
+
228
+
159
229
  self.verticalLayout_11.addLayout(self.horizontalLayout_2)
160
- self.line = QtWidgets.QFrame(self.groupBox_7)
161
- self.line.setFrameShape(QtWidgets.QFrame.HLine)
162
- self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
163
- self.line.setObjectName("line")
230
+
231
+ self.line = QFrame(self.groupBox_7)
232
+ self.line.setObjectName(u"line")
233
+ self.line.setFrameShape(QFrame.Shape.HLine)
234
+ self.line.setFrameShadow(QFrame.Shadow.Sunken)
235
+
164
236
  self.verticalLayout_11.addWidget(self.line)
165
- self.gridLayout_4 = QtWidgets.QGridLayout()
237
+
238
+ self.gridLayout_4 = QGridLayout()
239
+ self.gridLayout_4.setObjectName(u"gridLayout_4")
166
240
  self.gridLayout_4.setContentsMargins(10, 10, -1, -1)
167
- self.gridLayout_4.setObjectName("gridLayout_4")
168
- self.label_7 = QtWidgets.QLabel(self.groupBox_7)
169
- self.label_7.setObjectName("label_7")
241
+ self.label_7 = QLabel(self.groupBox_7)
242
+ self.label_7.setObjectName(u"label_7")
243
+
170
244
  self.gridLayout_4.addWidget(self.label_7, 4, 0, 1, 1)
171
- self.label_6 = QtWidgets.QLabel(self.groupBox_7)
172
- self.label_6.setObjectName("label_6")
245
+
246
+ self.label_6 = QLabel(self.groupBox_7)
247
+ self.label_6.setObjectName(u"label_6")
248
+
173
249
  self.gridLayout_4.addWidget(self.label_6, 3, 0, 1, 1)
174
- self.min5_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
175
- self.min5_start_dateEdit.setMinimumDateTime(QtCore.QDateTime(QtCore.QDate(1989, 12, 22), QtCore.QTime(0, 0, 0)))
250
+
251
+ self.min5_start_dateEdit = QDateEdit(self.groupBox_7)
252
+ self.min5_start_dateEdit.setObjectName(u"min5_start_dateEdit")
253
+ self.min5_start_dateEdit.setMinimumDateTime(QDateTime(QDate(1989, 12, 21), QTime(16, 0, 0)))
176
254
  self.min5_start_dateEdit.setCalendarPopup(True)
177
- self.min5_start_dateEdit.setObjectName("min5_start_dateEdit")
255
+
178
256
  self.gridLayout_4.addWidget(self.min5_start_dateEdit, 1, 1, 1, 1)
179
- self.min_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
257
+
258
+ self.min_start_dateEdit = QDateEdit(self.groupBox_7)
259
+ self.min_start_dateEdit.setObjectName(u"min_start_dateEdit")
180
260
  self.min_start_dateEdit.setCalendarPopup(True)
181
- self.min_start_dateEdit.setObjectName("min_start_dateEdit")
261
+
182
262
  self.gridLayout_4.addWidget(self.min_start_dateEdit, 2, 1, 1, 1)
183
- self.label_3 = QtWidgets.QLabel(self.groupBox_7)
184
- self.label_3.setObjectName("label_3")
263
+
264
+ self.label_3 = QLabel(self.groupBox_7)
265
+ self.label_3.setObjectName(u"label_3")
266
+
185
267
  self.gridLayout_4.addWidget(self.label_3, 0, 0, 1, 1)
186
- self.label_10 = QtWidgets.QLabel(self.groupBox_7)
187
- self.label_10.setObjectName("label_10")
268
+
269
+ self.label_10 = QLabel(self.groupBox_7)
270
+ self.label_10.setObjectName(u"label_10")
271
+
188
272
  self.gridLayout_4.addWidget(self.label_10, 1, 0, 1, 1)
189
- self.label_15 = QtWidgets.QLabel(self.groupBox_7)
190
- self.label_15.setObjectName("label_15")
273
+
274
+ self.label_15 = QLabel(self.groupBox_7)
275
+ self.label_15.setObjectName(u"label_15")
276
+
191
277
  self.gridLayout_4.addWidget(self.label_15, 2, 0, 1, 1)
192
- self.trans_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
278
+
279
+ self.trans_start_dateEdit = QDateEdit(self.groupBox_7)
280
+ self.trans_start_dateEdit.setObjectName(u"trans_start_dateEdit")
193
281
  self.trans_start_dateEdit.setCalendarPopup(True)
194
- self.trans_start_dateEdit.setObjectName("trans_start_dateEdit")
282
+
195
283
  self.gridLayout_4.addWidget(self.trans_start_dateEdit, 3, 1, 1, 1)
196
- self.day_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
197
- self.day_start_dateEdit.setMinimumDateTime(QtCore.QDateTime(QtCore.QDate(1989, 12, 22), QtCore.QTime(0, 0, 0)))
284
+
285
+ self.day_start_dateEdit = QDateEdit(self.groupBox_7)
286
+ self.day_start_dateEdit.setObjectName(u"day_start_dateEdit")
287
+ self.day_start_dateEdit.setMinimumDateTime(QDateTime(QDate(1989, 12, 21), QTime(16, 0, 0)))
198
288
  self.day_start_dateEdit.setCalendarPopup(True)
199
- self.day_start_dateEdit.setObjectName("day_start_dateEdit")
289
+
200
290
  self.gridLayout_4.addWidget(self.day_start_dateEdit, 0, 1, 1, 1)
201
- self.time_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
291
+
292
+ self.time_start_dateEdit = QDateEdit(self.groupBox_7)
293
+ self.time_start_dateEdit.setObjectName(u"time_start_dateEdit")
202
294
  self.time_start_dateEdit.setCalendarPopup(True)
203
- self.time_start_dateEdit.setObjectName("time_start_dateEdit")
295
+
204
296
  self.gridLayout_4.addWidget(self.time_start_dateEdit, 4, 1, 1, 1)
205
- spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
206
- self.gridLayout_4.addItem(spacerItem3, 1, 2, 1, 1)
297
+
298
+ self.horizontalSpacer_9 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
299
+
300
+ self.gridLayout_4.addItem(self.horizontalSpacer_9, 1, 2, 1, 1)
301
+
302
+
207
303
  self.verticalLayout_11.addLayout(self.gridLayout_4)
208
- spacerItem4 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
209
- self.verticalLayout_11.addItem(spacerItem4)
304
+
305
+ self.verticalSpacer_16 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
306
+
307
+ self.verticalLayout_11.addItem(self.verticalSpacer_16)
308
+
309
+
210
310
  self.verticalLayout_13.addWidget(self.groupBox_7)
311
+
211
312
  self.tabWidget.addTab(self.tab_4, "")
212
- self.tab_3 = QtWidgets.QWidget()
213
- self.tab_3.setObjectName("tab_3")
214
- self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.tab_3)
215
- self.verticalLayout_8.setObjectName("verticalLayout_8")
216
- self.groupBox_4 = QtWidgets.QGroupBox(self.tab_3)
217
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
218
- sizePolicy.setHorizontalStretch(0)
219
- sizePolicy.setVerticalStretch(0)
220
- sizePolicy.setHeightForWidth(self.groupBox_4.sizePolicy().hasHeightForWidth())
221
- self.groupBox_4.setSizePolicy(sizePolicy)
222
- self.groupBox_4.setMinimumSize(QtCore.QSize(0, 80))
223
- self.groupBox_4.setObjectName("groupBox_4")
224
- self.verticalLayout_14 = QtWidgets.QVBoxLayout(self.groupBox_4)
225
- self.verticalLayout_14.setObjectName("verticalLayout_14")
226
- self.horizontalLayout_19 = QtWidgets.QHBoxLayout()
313
+ self.tab_3 = QWidget()
314
+ self.tab_3.setObjectName(u"tab_3")
315
+ self.verticalLayout_8 = QVBoxLayout(self.tab_3)
316
+ self.verticalLayout_8.setObjectName(u"verticalLayout_8")
317
+ self.groupBox_4 = QGroupBox(self.tab_3)
318
+ self.groupBox_4.setObjectName(u"groupBox_4")
319
+ sizePolicy1.setHeightForWidth(self.groupBox_4.sizePolicy().hasHeightForWidth())
320
+ self.groupBox_4.setSizePolicy(sizePolicy1)
321
+ self.groupBox_4.setMinimumSize(QSize(0, 80))
322
+ self.verticalLayout_14 = QVBoxLayout(self.groupBox_4)
323
+ self.verticalLayout_14.setObjectName(u"verticalLayout_14")
324
+ self.horizontalLayout_19 = QHBoxLayout()
325
+ self.horizontalLayout_19.setObjectName(u"horizontalLayout_19")
227
326
  self.horizontalLayout_19.setContentsMargins(10, -1, -1, -1)
228
- self.horizontalLayout_19.setObjectName("horizontalLayout_19")
229
- self.enable_hdf55_radioButton = QtWidgets.QRadioButton(self.groupBox_4)
230
- self.enable_hdf55_radioButton.setObjectName("enable_hdf55_radioButton")
327
+ self.enable_hdf55_radioButton = QRadioButton(self.groupBox_4)
328
+ self.enable_hdf55_radioButton.setObjectName(u"enable_hdf55_radioButton")
329
+
231
330
  self.horizontalLayout_19.addWidget(self.enable_hdf55_radioButton)
232
- self.enable_mysql_radioButton = QtWidgets.QRadioButton(self.groupBox_4)
233
- self.enable_mysql_radioButton.setObjectName("enable_mysql_radioButton")
331
+
332
+ self.enable_mysql_radioButton = QRadioButton(self.groupBox_4)
333
+ self.enable_mysql_radioButton.setObjectName(u"enable_mysql_radioButton")
334
+
234
335
  self.horizontalLayout_19.addWidget(self.enable_mysql_radioButton)
235
- self.enable_clickhouse_radioButton = QtWidgets.QRadioButton(self.groupBox_4)
236
- self.enable_clickhouse_radioButton.setObjectName("enable_clickhouse_radioButton")
336
+
337
+ self.enable_clickhouse_radioButton = QRadioButton(self.groupBox_4)
338
+ self.enable_clickhouse_radioButton.setObjectName(u"enable_clickhouse_radioButton")
339
+
237
340
  self.horizontalLayout_19.addWidget(self.enable_clickhouse_radioButton)
238
- spacerItem5 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
239
- self.horizontalLayout_19.addItem(spacerItem5)
341
+
342
+ self.horizontalSpacer_10 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
343
+
344
+ self.horizontalLayout_19.addItem(self.horizontalSpacer_10)
345
+
346
+
240
347
  self.verticalLayout_14.addLayout(self.horizontalLayout_19)
348
+
349
+
241
350
  self.verticalLayout_8.addWidget(self.groupBox_4)
242
- self.groupBox_3 = QtWidgets.QGroupBox(self.tab_3)
243
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
244
- sizePolicy.setHorizontalStretch(0)
245
- sizePolicy.setVerticalStretch(0)
246
- sizePolicy.setHeightForWidth(self.groupBox_3.sizePolicy().hasHeightForWidth())
247
- self.groupBox_3.setSizePolicy(sizePolicy)
248
- self.groupBox_3.setMinimumSize(QtCore.QSize(0, 80))
249
- self.groupBox_3.setObjectName("groupBox_3")
250
- self.verticalLayout_10 = QtWidgets.QVBoxLayout(self.groupBox_3)
251
- self.verticalLayout_10.setObjectName("verticalLayout_10")
252
- self.gridLayout_3 = QtWidgets.QGridLayout()
351
+
352
+ self.groupBox_3 = QGroupBox(self.tab_3)
353
+ self.groupBox_3.setObjectName(u"groupBox_3")
354
+ sizePolicy1.setHeightForWidth(self.groupBox_3.sizePolicy().hasHeightForWidth())
355
+ self.groupBox_3.setSizePolicy(sizePolicy1)
356
+ self.groupBox_3.setMinimumSize(QSize(0, 80))
357
+ self.verticalLayout_10 = QVBoxLayout(self.groupBox_3)
358
+ self.verticalLayout_10.setObjectName(u"verticalLayout_10")
359
+ self.gridLayout_3 = QGridLayout()
360
+ self.gridLayout_3.setObjectName(u"gridLayout_3")
253
361
  self.gridLayout_3.setContentsMargins(10, -1, -1, -1)
254
- self.gridLayout_3.setObjectName("gridLayout_3")
255
- self.hdf5_dir_lineEdit = QtWidgets.QLineEdit(self.groupBox_3)
256
- self.hdf5_dir_lineEdit.setObjectName("hdf5_dir_lineEdit")
362
+ self.hdf5_dir_lineEdit = QLineEdit(self.groupBox_3)
363
+ self.hdf5_dir_lineEdit.setObjectName(u"hdf5_dir_lineEdit")
364
+
257
365
  self.gridLayout_3.addWidget(self.hdf5_dir_lineEdit, 0, 1, 1, 1)
258
- self.hdf5_dir_pushButton = QtWidgets.QPushButton(self.groupBox_3)
259
- self.hdf5_dir_pushButton.setObjectName("hdf5_dir_pushButton")
366
+
367
+ self.hdf5_dir_pushButton = QPushButton(self.groupBox_3)
368
+ self.hdf5_dir_pushButton.setObjectName(u"hdf5_dir_pushButton")
369
+
260
370
  self.gridLayout_3.addWidget(self.hdf5_dir_pushButton, 0, 2, 1, 1)
261
- self.label = QtWidgets.QLabel(self.groupBox_3)
262
- self.label.setObjectName("label")
371
+
372
+ self.label = QLabel(self.groupBox_3)
373
+ self.label.setObjectName(u"label")
374
+
263
375
  self.gridLayout_3.addWidget(self.label, 0, 0, 1, 1)
376
+
377
+
264
378
  self.verticalLayout_10.addLayout(self.gridLayout_3)
379
+
380
+
265
381
  self.verticalLayout_8.addWidget(self.groupBox_3)
266
- self.groupBox = QtWidgets.QGroupBox(self.tab_3)
382
+
383
+ self.groupBox = QGroupBox(self.tab_3)
384
+ self.groupBox.setObjectName(u"groupBox")
267
385
  self.groupBox.setFlat(False)
268
386
  self.groupBox.setCheckable(False)
269
- self.groupBox.setObjectName("groupBox")
270
- self.verticalLayout_9 = QtWidgets.QVBoxLayout(self.groupBox)
271
- self.verticalLayout_9.setObjectName("verticalLayout_9")
272
- self.gridLayout_5 = QtWidgets.QGridLayout()
387
+ self.verticalLayout_9 = QVBoxLayout(self.groupBox)
388
+ self.verticalLayout_9.setObjectName(u"verticalLayout_9")
389
+ self.gridLayout_5 = QGridLayout()
390
+ self.gridLayout_5.setObjectName(u"gridLayout_5")
273
391
  self.gridLayout_5.setContentsMargins(10, 10, -1, 10)
274
- self.gridLayout_5.setObjectName("gridLayout_5")
275
- self.mysql_usr_lineEdit = QtWidgets.QLineEdit(self.groupBox)
276
- self.mysql_usr_lineEdit.setObjectName("mysql_usr_lineEdit")
392
+ self.mysql_usr_lineEdit = QLineEdit(self.groupBox)
393
+ self.mysql_usr_lineEdit.setObjectName(u"mysql_usr_lineEdit")
394
+
277
395
  self.gridLayout_5.addWidget(self.mysql_usr_lineEdit, 3, 1, 1, 1)
278
- self.label_11 = QtWidgets.QLabel(self.groupBox)
279
- self.label_11.setObjectName("label_11")
396
+
397
+ self.label_11 = QLabel(self.groupBox)
398
+ self.label_11.setObjectName(u"label_11")
399
+
280
400
  self.gridLayout_5.addWidget(self.label_11, 3, 0, 1, 1)
281
- self.mysql_port_lineEdit = QtWidgets.QLineEdit(self.groupBox)
282
- self.mysql_port_lineEdit.setObjectName("mysql_port_lineEdit")
401
+
402
+ self.mysql_port_lineEdit = QLineEdit(self.groupBox)
403
+ self.mysql_port_lineEdit.setObjectName(u"mysql_port_lineEdit")
404
+
283
405
  self.gridLayout_5.addWidget(self.mysql_port_lineEdit, 2, 1, 1, 1)
284
- self.label_19 = QtWidgets.QLabel(self.groupBox)
285
- self.label_19.setObjectName("label_19")
406
+
407
+ self.label_19 = QLabel(self.groupBox)
408
+ self.label_19.setObjectName(u"label_19")
409
+
286
410
  self.gridLayout_5.addWidget(self.label_19, 2, 0, 1, 1)
287
- self.mysql_ip_lineEdit = QtWidgets.QLineEdit(self.groupBox)
288
- self.mysql_ip_lineEdit.setObjectName("mysql_ip_lineEdit")
411
+
412
+ self.mysql_ip_lineEdit = QLineEdit(self.groupBox)
413
+ self.mysql_ip_lineEdit.setObjectName(u"mysql_ip_lineEdit")
414
+
289
415
  self.gridLayout_5.addWidget(self.mysql_ip_lineEdit, 1, 1, 1, 1)
290
- self.label_13 = QtWidgets.QLabel(self.groupBox)
291
- self.label_13.setObjectName("label_13")
416
+
417
+ self.label_13 = QLabel(self.groupBox)
418
+ self.label_13.setObjectName(u"label_13")
419
+
292
420
  self.gridLayout_5.addWidget(self.label_13, 4, 0, 1, 1)
293
- self.mysql_tmpdir_lineEdit = QtWidgets.QLineEdit(self.groupBox)
294
- self.mysql_tmpdir_lineEdit.setObjectName("mysql_tmpdir_lineEdit")
421
+
422
+ self.mysql_tmpdir_lineEdit = QLineEdit(self.groupBox)
423
+ self.mysql_tmpdir_lineEdit.setObjectName(u"mysql_tmpdir_lineEdit")
424
+
295
425
  self.gridLayout_5.addWidget(self.mysql_tmpdir_lineEdit, 0, 1, 1, 1)
296
- self.mysql_tmpdir_pushButton = QtWidgets.QPushButton(self.groupBox)
297
- self.mysql_tmpdir_pushButton.setObjectName("mysql_tmpdir_pushButton")
426
+
427
+ self.mysql_tmpdir_pushButton = QPushButton(self.groupBox)
428
+ self.mysql_tmpdir_pushButton.setObjectName(u"mysql_tmpdir_pushButton")
429
+
298
430
  self.gridLayout_5.addWidget(self.mysql_tmpdir_pushButton, 0, 2, 1, 1)
299
- self.mysql_test_pushButton = QtWidgets.QPushButton(self.groupBox)
300
- self.mysql_test_pushButton.setObjectName("mysql_test_pushButton")
431
+
432
+ self.mysql_test_pushButton = QPushButton(self.groupBox)
433
+ self.mysql_test_pushButton.setObjectName(u"mysql_test_pushButton")
434
+
301
435
  self.gridLayout_5.addWidget(self.mysql_test_pushButton, 2, 2, 1, 1)
302
- self.label_20 = QtWidgets.QLabel(self.groupBox)
303
- self.label_20.setObjectName("label_20")
436
+
437
+ self.label_20 = QLabel(self.groupBox)
438
+ self.label_20.setObjectName(u"label_20")
439
+
304
440
  self.gridLayout_5.addWidget(self.label_20, 0, 0, 1, 1)
305
- self.label_18 = QtWidgets.QLabel(self.groupBox)
306
- self.label_18.setObjectName("label_18")
441
+
442
+ self.label_18 = QLabel(self.groupBox)
443
+ self.label_18.setObjectName(u"label_18")
444
+
307
445
  self.gridLayout_5.addWidget(self.label_18, 1, 0, 1, 1)
308
- self.mysql_pwd_lineEdit = QtWidgets.QLineEdit(self.groupBox)
309
- self.mysql_pwd_lineEdit.setObjectName("mysql_pwd_lineEdit")
446
+
447
+ self.mysql_pwd_lineEdit = QLineEdit(self.groupBox)
448
+ self.mysql_pwd_lineEdit.setObjectName(u"mysql_pwd_lineEdit")
449
+
310
450
  self.gridLayout_5.addWidget(self.mysql_pwd_lineEdit, 4, 1, 1, 1)
451
+
452
+
311
453
  self.verticalLayout_9.addLayout(self.gridLayout_5)
454
+
455
+
312
456
  self.verticalLayout_8.addWidget(self.groupBox)
313
- self.groupBox_8 = QtWidgets.QGroupBox(self.tab_3)
314
- self.groupBox_8.setObjectName("groupBox_8")
315
- self.verticalLayout_19 = QtWidgets.QVBoxLayout(self.groupBox_8)
316
- self.verticalLayout_19.setObjectName("verticalLayout_19")
317
- self.gridLayout_7 = QtWidgets.QGridLayout()
457
+
458
+ self.groupBox_8 = QGroupBox(self.tab_3)
459
+ self.groupBox_8.setObjectName(u"groupBox_8")
460
+ self.verticalLayout_19 = QVBoxLayout(self.groupBox_8)
461
+ self.verticalLayout_19.setObjectName(u"verticalLayout_19")
462
+ self.gridLayout_7 = QGridLayout()
463
+ self.gridLayout_7.setObjectName(u"gridLayout_7")
318
464
  self.gridLayout_7.setContentsMargins(10, 10, -1, 10)
319
- self.gridLayout_7.setObjectName("gridLayout_7")
320
- self.clickhouse_pwd_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
321
- self.clickhouse_pwd_lineEdit.setObjectName("clickhouse_pwd_lineEdit")
465
+ self.clickhouse_pwd_lineEdit = QLineEdit(self.groupBox_8)
466
+ self.clickhouse_pwd_lineEdit.setObjectName(u"clickhouse_pwd_lineEdit")
467
+
322
468
  self.gridLayout_7.addWidget(self.clickhouse_pwd_lineEdit, 5, 1, 1, 1)
323
- self.label_53 = QtWidgets.QLabel(self.groupBox_8)
324
- self.label_53.setObjectName("label_53")
469
+
470
+ self.label_53 = QLabel(self.groupBox_8)
471
+ self.label_53.setObjectName(u"label_53")
472
+
325
473
  self.gridLayout_7.addWidget(self.label_53, 0, 0, 1, 1)
326
- self.label_54 = QtWidgets.QLabel(self.groupBox_8)
327
- self.label_54.setObjectName("label_54")
474
+
475
+ self.label_54 = QLabel(self.groupBox_8)
476
+ self.label_54.setObjectName(u"label_54")
477
+
328
478
  self.gridLayout_7.addWidget(self.label_54, 1, 0, 1, 1)
329
- self.clickhouse_ip_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
330
- self.clickhouse_ip_lineEdit.setObjectName("clickhouse_ip_lineEdit")
479
+
480
+ self.clickhouse_ip_lineEdit = QLineEdit(self.groupBox_8)
481
+ self.clickhouse_ip_lineEdit.setObjectName(u"clickhouse_ip_lineEdit")
482
+
331
483
  self.gridLayout_7.addWidget(self.clickhouse_ip_lineEdit, 1, 1, 1, 1)
332
- self.clickhouse_tmpdir_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
333
- self.clickhouse_tmpdir_lineEdit.setObjectName("clickhouse_tmpdir_lineEdit")
484
+
485
+ self.clickhouse_tmpdir_lineEdit = QLineEdit(self.groupBox_8)
486
+ self.clickhouse_tmpdir_lineEdit.setObjectName(u"clickhouse_tmpdir_lineEdit")
487
+
334
488
  self.gridLayout_7.addWidget(self.clickhouse_tmpdir_lineEdit, 0, 1, 1, 1)
335
- self.label_51 = QtWidgets.QLabel(self.groupBox_8)
336
- self.label_51.setObjectName("label_51")
489
+
490
+ self.label_51 = QLabel(self.groupBox_8)
491
+ self.label_51.setObjectName(u"label_51")
492
+
337
493
  self.gridLayout_7.addWidget(self.label_51, 2, 0, 1, 1)
338
- self.label_50 = QtWidgets.QLabel(self.groupBox_8)
339
- self.label_50.setObjectName("label_50")
494
+
495
+ self.label_50 = QLabel(self.groupBox_8)
496
+ self.label_50.setObjectName(u"label_50")
497
+
340
498
  self.gridLayout_7.addWidget(self.label_50, 4, 0, 1, 1)
341
- self.clickhouse_usr_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
342
- self.clickhouse_usr_lineEdit.setObjectName("clickhouse_usr_lineEdit")
499
+
500
+ self.clickhouse_usr_lineEdit = QLineEdit(self.groupBox_8)
501
+ self.clickhouse_usr_lineEdit.setObjectName(u"clickhouse_usr_lineEdit")
502
+
343
503
  self.gridLayout_7.addWidget(self.clickhouse_usr_lineEdit, 4, 1, 1, 1)
344
- self.label_55 = QtWidgets.QLabel(self.groupBox_8)
345
- self.label_55.setObjectName("label_55")
504
+
505
+ self.label_55 = QLabel(self.groupBox_8)
506
+ self.label_55.setObjectName(u"label_55")
507
+
346
508
  self.gridLayout_7.addWidget(self.label_55, 3, 0, 1, 1)
347
- self.clickhouse_port_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
348
- self.clickhouse_port_lineEdit.setObjectName("clickhouse_port_lineEdit")
509
+
510
+ self.clickhouse_port_lineEdit = QLineEdit(self.groupBox_8)
511
+ self.clickhouse_port_lineEdit.setObjectName(u"clickhouse_port_lineEdit")
512
+
349
513
  self.gridLayout_7.addWidget(self.clickhouse_port_lineEdit, 3, 1, 1, 1)
350
- self.label_52 = QtWidgets.QLabel(self.groupBox_8)
351
- self.label_52.setObjectName("label_52")
514
+
515
+ self.label_52 = QLabel(self.groupBox_8)
516
+ self.label_52.setObjectName(u"label_52")
517
+
352
518
  self.gridLayout_7.addWidget(self.label_52, 5, 0, 1, 1)
353
- self.clickhouse_test_pushButton = QtWidgets.QPushButton(self.groupBox_8)
354
- self.clickhouse_test_pushButton.setObjectName("clickhouse_test_pushButton")
519
+
520
+ self.clickhouse_test_pushButton = QPushButton(self.groupBox_8)
521
+ self.clickhouse_test_pushButton.setObjectName(u"clickhouse_test_pushButton")
522
+
355
523
  self.gridLayout_7.addWidget(self.clickhouse_test_pushButton, 2, 2, 1, 1)
356
- self.clickhouse_tmpdir_pushButton = QtWidgets.QPushButton(self.groupBox_8)
357
- self.clickhouse_tmpdir_pushButton.setObjectName("clickhouse_tmpdir_pushButton")
524
+
525
+ self.clickhouse_tmpdir_pushButton = QPushButton(self.groupBox_8)
526
+ self.clickhouse_tmpdir_pushButton.setObjectName(u"clickhouse_tmpdir_pushButton")
527
+
358
528
  self.gridLayout_7.addWidget(self.clickhouse_tmpdir_pushButton, 0, 2, 1, 1)
359
- self.clickhouse_http_port_lineEdit = QtWidgets.QLineEdit(self.groupBox_8)
360
- self.clickhouse_http_port_lineEdit.setObjectName("clickhouse_http_port_lineEdit")
529
+
530
+ self.clickhouse_http_port_lineEdit = QLineEdit(self.groupBox_8)
531
+ self.clickhouse_http_port_lineEdit.setObjectName(u"clickhouse_http_port_lineEdit")
532
+
361
533
  self.gridLayout_7.addWidget(self.clickhouse_http_port_lineEdit, 2, 1, 1, 1)
534
+
535
+
362
536
  self.verticalLayout_19.addLayout(self.gridLayout_7)
537
+
538
+
363
539
  self.verticalLayout_8.addWidget(self.groupBox_8)
364
- spacerItem6 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
365
- self.verticalLayout_8.addItem(spacerItem6)
540
+
541
+ self.verticalSpacer_12 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
542
+
543
+ self.verticalLayout_8.addItem(self.verticalSpacer_12)
544
+
366
545
  self.tabWidget.addTab(self.tab_3, "")
367
- self.tab_2 = QtWidgets.QWidget()
368
- self.tab_2.setObjectName("tab_2")
369
- self.verticalLayout_7 = QtWidgets.QVBoxLayout(self.tab_2)
370
- self.verticalLayout_7.setObjectName("verticalLayout_7")
371
- spacerItem7 = QtWidgets.QSpacerItem(20, 9, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
372
- self.verticalLayout_7.addItem(spacerItem7)
373
- self.label_43 = QtWidgets.QLabel(self.tab_2)
374
- self.label_43.setObjectName("label_43")
546
+ self.tab_2 = QWidget()
547
+ self.tab_2.setObjectName(u"tab_2")
548
+ self.verticalLayout_7 = QVBoxLayout(self.tab_2)
549
+ self.verticalLayout_7.setObjectName(u"verticalLayout_7")
550
+ self.verticalSpacer_20 = QSpacerItem(20, 9, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
551
+
552
+ self.verticalLayout_7.addItem(self.verticalSpacer_20)
553
+
554
+ self.label_43 = QLabel(self.tab_2)
555
+ self.label_43.setObjectName(u"label_43")
556
+
375
557
  self.verticalLayout_7.addWidget(self.label_43)
376
- self.horizontalLayout_11 = QtWidgets.QHBoxLayout()
558
+
559
+ self.horizontalLayout_11 = QHBoxLayout()
560
+ self.horizontalLayout_11.setObjectName(u"horizontalLayout_11")
377
561
  self.horizontalLayout_11.setContentsMargins(10, 20, 10, -1)
378
- self.horizontalLayout_11.setObjectName("horizontalLayout_11")
379
- self.sched_import_pushButton = QtWidgets.QPushButton(self.tab_2)
380
- self.sched_import_pushButton.setObjectName("sched_import_pushButton")
562
+ self.sched_import_pushButton = QPushButton(self.tab_2)
563
+ self.sched_import_pushButton.setObjectName(u"sched_import_pushButton")
564
+
381
565
  self.horizontalLayout_11.addWidget(self.sched_import_pushButton)
382
- self.horizontalLayout_14 = QtWidgets.QHBoxLayout()
383
- self.horizontalLayout_14.setObjectName("horizontalLayout_14")
384
- self.label_40 = QtWidgets.QLabel(self.tab_2)
385
- self.label_40.setObjectName("label_40")
566
+
567
+ self.horizontalLayout_14 = QHBoxLayout()
568
+ self.horizontalLayout_14.setObjectName(u"horizontalLayout_14")
569
+ self.label_40 = QLabel(self.tab_2)
570
+ self.label_40.setObjectName(u"label_40")
571
+
386
572
  self.horizontalLayout_14.addWidget(self.label_40)
387
- self.sched_import_timeEdit = QtWidgets.QTimeEdit(self.tab_2)
388
- self.sched_import_timeEdit.setObjectName("sched_import_timeEdit")
573
+
574
+ self.sched_import_timeEdit = QTimeEdit(self.tab_2)
575
+ self.sched_import_timeEdit.setObjectName(u"sched_import_timeEdit")
576
+
389
577
  self.horizontalLayout_14.addWidget(self.sched_import_timeEdit)
390
- spacerItem8 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
391
- self.horizontalLayout_14.addItem(spacerItem8)
578
+
579
+ self.horizontalSpacer_7 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
580
+
581
+ self.horizontalLayout_14.addItem(self.horizontalSpacer_7)
582
+
583
+
392
584
  self.horizontalLayout_11.addLayout(self.horizontalLayout_14)
585
+
586
+
393
587
  self.verticalLayout_7.addLayout(self.horizontalLayout_11)
394
- spacerItem9 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
395
- self.verticalLayout_7.addItem(spacerItem9)
396
- self.horizontalLayout_18 = QtWidgets.QHBoxLayout()
588
+
589
+ self.verticalSpacer_11 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
590
+
591
+ self.verticalLayout_7.addItem(self.verticalSpacer_11)
592
+
593
+ self.horizontalLayout_18 = QHBoxLayout()
594
+ self.horizontalLayout_18.setObjectName(u"horizontalLayout_18")
397
595
  self.horizontalLayout_18.setContentsMargins(10, -1, 10, -1)
398
- self.horizontalLayout_18.setObjectName("horizontalLayout_18")
399
- self.start_import_pushButton = QtWidgets.QPushButton(self.tab_2)
400
- self.start_import_pushButton.setObjectName("start_import_pushButton")
596
+ self.start_import_pushButton = QPushButton(self.tab_2)
597
+ self.start_import_pushButton.setObjectName(u"start_import_pushButton")
598
+
401
599
  self.horizontalLayout_18.addWidget(self.start_import_pushButton)
402
- self.import_status_label = QtWidgets.QLabel(self.tab_2)
403
- self.import_status_label.setObjectName("import_status_label")
600
+
601
+ self.import_status_label = QLabel(self.tab_2)
602
+ self.import_status_label.setObjectName(u"import_status_label")
603
+
404
604
  self.horizontalLayout_18.addWidget(self.import_status_label)
405
- spacerItem10 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
406
- self.horizontalLayout_18.addItem(spacerItem10)
605
+
606
+ self.horizontalSpacer_8 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
607
+
608
+ self.horizontalLayout_18.addItem(self.horizontalSpacer_8)
609
+
610
+
407
611
  self.verticalLayout_7.addLayout(self.horizontalLayout_18)
408
- spacerItem11 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
409
- self.verticalLayout_7.addItem(spacerItem11)
410
- self.groupBox_5 = QtWidgets.QGroupBox(self.tab_2)
411
- self.groupBox_5.setObjectName("groupBox_5")
412
- self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.groupBox_5)
413
- self.verticalLayout_5.setObjectName("verticalLayout_5")
414
- self.gridLayout = QtWidgets.QGridLayout()
415
- self.gridLayout.setObjectName("gridLayout")
416
- self.hdf5_time_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
417
- self.hdf5_time_progressBar.setProperty("value", 0)
418
- self.hdf5_time_progressBar.setObjectName("hdf5_time_progressBar")
612
+
613
+ self.verticalSpacer_10 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
614
+
615
+ self.verticalLayout_7.addItem(self.verticalSpacer_10)
616
+
617
+ self.groupBox_5 = QGroupBox(self.tab_2)
618
+ self.groupBox_5.setObjectName(u"groupBox_5")
619
+ self.verticalLayout_5 = QVBoxLayout(self.groupBox_5)
620
+ self.verticalLayout_5.setObjectName(u"verticalLayout_5")
621
+ self.gridLayout = QGridLayout()
622
+ self.gridLayout.setObjectName(u"gridLayout")
623
+ self.hdf5_time_progressBar = QProgressBar(self.groupBox_5)
624
+ self.hdf5_time_progressBar.setObjectName(u"hdf5_time_progressBar")
625
+ self.hdf5_time_progressBar.setValue(0)
626
+
419
627
  self.gridLayout.addWidget(self.hdf5_time_progressBar, 4, 1, 1, 1)
420
- self.hdf5_weight_label = QtWidgets.QLabel(self.groupBox_5)
421
- self.hdf5_weight_label.setObjectName("hdf5_weight_label")
628
+
629
+ self.hdf5_weight_label = QLabel(self.groupBox_5)
630
+ self.hdf5_weight_label.setObjectName(u"hdf5_weight_label")
631
+
422
632
  self.gridLayout.addWidget(self.hdf5_weight_label, 5, 1, 1, 1)
423
- self.label_14 = QtWidgets.QLabel(self.groupBox_5)
424
- self.label_14.setObjectName("label_14")
633
+
634
+ self.label_14 = QLabel(self.groupBox_5)
635
+ self.label_14.setObjectName(u"label_14")
636
+
425
637
  self.gridLayout.addWidget(self.label_14, 2, 0, 1, 1)
426
- self.hdf5_trans_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
427
- self.hdf5_trans_progressBar.setProperty("value", 0)
428
- self.hdf5_trans_progressBar.setObjectName("hdf5_trans_progressBar")
638
+
639
+ self.hdf5_trans_progressBar = QProgressBar(self.groupBox_5)
640
+ self.hdf5_trans_progressBar.setObjectName(u"hdf5_trans_progressBar")
641
+ self.hdf5_trans_progressBar.setValue(0)
642
+
429
643
  self.gridLayout.addWidget(self.hdf5_trans_progressBar, 3, 1, 1, 1)
430
- self.label_4 = QtWidgets.QLabel(self.groupBox_5)
431
- self.label_4.setObjectName("label_4")
644
+
645
+ self.label_4 = QLabel(self.groupBox_5)
646
+ self.label_4.setObjectName(u"label_4")
647
+
432
648
  self.gridLayout.addWidget(self.label_4, 3, 0, 1, 1)
433
- self.label_8 = QtWidgets.QLabel(self.groupBox_5)
434
- self.label_8.setObjectName("label_8")
649
+
650
+ self.label_8 = QLabel(self.groupBox_5)
651
+ self.label_8.setObjectName(u"label_8")
652
+
435
653
  self.gridLayout.addWidget(self.label_8, 0, 0, 1, 1)
436
- self.label_5 = QtWidgets.QLabel(self.groupBox_5)
437
- self.label_5.setObjectName("label_5")
654
+
655
+ self.label_5 = QLabel(self.groupBox_5)
656
+ self.label_5.setObjectName(u"label_5")
657
+
438
658
  self.gridLayout.addWidget(self.label_5, 4, 0, 1, 1)
439
- self.hdf5_5min_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
440
- self.hdf5_5min_progressBar.setProperty("value", 0)
441
- self.hdf5_5min_progressBar.setObjectName("hdf5_5min_progressBar")
659
+
660
+ self.hdf5_5min_progressBar = QProgressBar(self.groupBox_5)
661
+ self.hdf5_5min_progressBar.setObjectName(u"hdf5_5min_progressBar")
662
+ self.hdf5_5min_progressBar.setValue(0)
663
+
442
664
  self.gridLayout.addWidget(self.hdf5_5min_progressBar, 1, 1, 1, 1)
443
- self.hdf5_day_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
444
- self.hdf5_day_progressBar.setProperty("value", 0)
445
- self.hdf5_day_progressBar.setObjectName("hdf5_day_progressBar")
665
+
666
+ self.hdf5_day_progressBar = QProgressBar(self.groupBox_5)
667
+ self.hdf5_day_progressBar.setObjectName(u"hdf5_day_progressBar")
668
+ self.hdf5_day_progressBar.setValue(0)
669
+
446
670
  self.gridLayout.addWidget(self.hdf5_day_progressBar, 0, 1, 1, 1)
447
- self.label_12 = QtWidgets.QLabel(self.groupBox_5)
448
- self.label_12.setObjectName("label_12")
671
+
672
+ self.label_12 = QLabel(self.groupBox_5)
673
+ self.label_12.setObjectName(u"label_12")
674
+
449
675
  self.gridLayout.addWidget(self.label_12, 1, 0, 1, 1)
450
- self.hdf5_min_progressBar = QtWidgets.QProgressBar(self.groupBox_5)
451
- self.hdf5_min_progressBar.setProperty("value", 0)
452
- self.hdf5_min_progressBar.setObjectName("hdf5_min_progressBar")
676
+
677
+ self.hdf5_min_progressBar = QProgressBar(self.groupBox_5)
678
+ self.hdf5_min_progressBar.setObjectName(u"hdf5_min_progressBar")
679
+ self.hdf5_min_progressBar.setValue(0)
680
+
453
681
  self.gridLayout.addWidget(self.hdf5_min_progressBar, 2, 1, 1, 1)
454
- self.label_9 = QtWidgets.QLabel(self.groupBox_5)
455
- self.label_9.setObjectName("label_9")
682
+
683
+ self.label_9 = QLabel(self.groupBox_5)
684
+ self.label_9.setObjectName(u"label_9")
685
+
456
686
  self.gridLayout.addWidget(self.label_9, 5, 0, 1, 1)
457
- spacerItem12 = QtWidgets.QSpacerItem(5, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
458
- self.gridLayout.addItem(spacerItem12, 0, 2, 1, 1)
687
+
688
+ self.horizontalSpacer_14 = QSpacerItem(5, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
689
+
690
+ self.gridLayout.addItem(self.horizontalSpacer_14, 0, 2, 1, 1)
691
+
692
+
459
693
  self.verticalLayout_5.addLayout(self.gridLayout)
460
- spacerItem13 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
461
- self.verticalLayout_5.addItem(spacerItem13)
462
- self.import_detail_textEdit = QtWidgets.QTextEdit(self.groupBox_5)
463
- self.import_detail_textEdit.setFrameShape(QtWidgets.QFrame.NoFrame)
694
+
695
+ self.verticalSpacer_9 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
696
+
697
+ self.verticalLayout_5.addItem(self.verticalSpacer_9)
698
+
699
+ self.import_detail_textEdit = QTextEdit(self.groupBox_5)
700
+ self.import_detail_textEdit.setObjectName(u"import_detail_textEdit")
701
+ self.import_detail_textEdit.setFrameShape(QFrame.NoFrame)
464
702
  self.import_detail_textEdit.setReadOnly(True)
465
- self.import_detail_textEdit.setObjectName("import_detail_textEdit")
703
+
466
704
  self.verticalLayout_5.addWidget(self.import_detail_textEdit)
705
+
706
+
467
707
  self.verticalLayout_7.addWidget(self.groupBox_5)
708
+
468
709
  self.tabWidget.addTab(self.tab_2, "")
469
- self.tab_6 = QtWidgets.QWidget()
470
- self.tab_6.setObjectName("tab_6")
471
- self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.tab_6)
472
- self.verticalLayout_3.setObjectName("verticalLayout_3")
473
- self.groupBox_6 = QtWidgets.QGroupBox(self.tab_6)
474
- self.groupBox_6.setObjectName("groupBox_6")
475
- self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.groupBox_6)
476
- self.verticalLayout_4.setObjectName("verticalLayout_4")
477
- self.verticalLayout = QtWidgets.QVBoxLayout()
710
+ self.tab_6 = QWidget()
711
+ self.tab_6.setObjectName(u"tab_6")
712
+ self.verticalLayout_3 = QVBoxLayout(self.tab_6)
713
+ self.verticalLayout_3.setObjectName(u"verticalLayout_3")
714
+ self.groupBox_6 = QGroupBox(self.tab_6)
715
+ self.groupBox_6.setObjectName(u"groupBox_6")
716
+ self.verticalLayout_4 = QVBoxLayout(self.groupBox_6)
717
+ self.verticalLayout_4.setObjectName(u"verticalLayout_4")
718
+ self.verticalLayout = QVBoxLayout()
719
+ self.verticalLayout.setObjectName(u"verticalLayout")
478
720
  self.verticalLayout.setContentsMargins(20, 20, -1, -1)
479
- self.verticalLayout.setObjectName("verticalLayout")
480
- self.label_35 = QtWidgets.QLabel(self.groupBox_6)
481
- self.label_35.setObjectName("label_35")
721
+ self.label_35 = QLabel(self.groupBox_6)
722
+ self.label_35.setObjectName(u"label_35")
723
+
482
724
  self.verticalLayout.addWidget(self.label_35)
483
- self.label_36 = QtWidgets.QLabel(self.groupBox_6)
484
- self.label_36.setObjectName("label_36")
725
+
726
+ self.label_36 = QLabel(self.groupBox_6)
727
+ self.label_36.setObjectName(u"label_36")
728
+
485
729
  self.verticalLayout.addWidget(self.label_36)
730
+
731
+
486
732
  self.verticalLayout_4.addLayout(self.verticalLayout)
487
- spacerItem14 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
488
- self.verticalLayout_4.addItem(spacerItem14)
489
- self.gridLayout_6 = QtWidgets.QGridLayout()
733
+
734
+ self.verticalSpacer_7 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
735
+
736
+ self.verticalLayout_4.addItem(self.verticalSpacer_7)
737
+
738
+ self.gridLayout_6 = QGridLayout()
739
+ self.gridLayout_6.setObjectName(u"gridLayout_6")
490
740
  self.gridLayout_6.setContentsMargins(20, -1, -1, -1)
491
- self.gridLayout_6.setObjectName("gridLayout_6")
492
- self.preload_month_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
741
+ self.preload_month_spinBox = QSpinBox(self.groupBox_6)
742
+ self.preload_month_spinBox.setObjectName(u"preload_month_spinBox")
493
743
  self.preload_month_spinBox.setMaximum(999999)
494
- self.preload_month_spinBox.setObjectName("preload_month_spinBox")
744
+
495
745
  self.gridLayout_6.addWidget(self.preload_month_spinBox, 2, 2, 1, 1)
496
- self.preload_quarter_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
746
+
747
+ self.preload_quarter_spinBox = QSpinBox(self.groupBox_6)
748
+ self.preload_quarter_spinBox.setObjectName(u"preload_quarter_spinBox")
497
749
  self.preload_quarter_spinBox.setMaximum(999999)
498
- self.preload_quarter_spinBox.setObjectName("preload_quarter_spinBox")
750
+
499
751
  self.gridLayout_6.addWidget(self.preload_quarter_spinBox, 3, 2, 1, 1)
500
- self.preload_min5_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
501
- self.preload_min5_checkBox.setObjectName("preload_min5_checkBox")
752
+
753
+ self.preload_min5_checkBox = QCheckBox(self.groupBox_6)
754
+ self.preload_min5_checkBox.setObjectName(u"preload_min5_checkBox")
755
+
502
756
  self.gridLayout_6.addWidget(self.preload_min5_checkBox, 7, 0, 1, 1)
503
- self.label_33 = QtWidgets.QLabel(self.groupBox_6)
504
- self.label_33.setObjectName("label_33")
757
+
758
+ self.label_33 = QLabel(self.groupBox_6)
759
+ self.label_33.setObjectName(u"label_33")
760
+
505
761
  self.gridLayout_6.addWidget(self.label_33, 9, 1, 1, 1)
506
- self.label_26 = QtWidgets.QLabel(self.groupBox_6)
507
- self.label_26.setObjectName("label_26")
762
+
763
+ self.label_26 = QLabel(self.groupBox_6)
764
+ self.label_26.setObjectName(u"label_26")
765
+
508
766
  self.gridLayout_6.addWidget(self.label_26, 2, 1, 1, 1)
509
- self.preload_week_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
767
+
768
+ self.preload_week_spinBox = QSpinBox(self.groupBox_6)
769
+ self.preload_week_spinBox.setObjectName(u"preload_week_spinBox")
510
770
  self.preload_week_spinBox.setMaximum(999999)
511
- self.preload_week_spinBox.setObjectName("preload_week_spinBox")
771
+
512
772
  self.gridLayout_6.addWidget(self.preload_week_spinBox, 1, 2, 1, 1)
513
- self.label_27 = QtWidgets.QLabel(self.groupBox_6)
514
- self.label_27.setObjectName("label_27")
773
+
774
+ self.label_27 = QLabel(self.groupBox_6)
775
+ self.label_27.setObjectName(u"label_27")
776
+
515
777
  self.gridLayout_6.addWidget(self.label_27, 3, 1, 1, 1)
516
- self.preload_year_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
517
- self.preload_year_checkBox.setObjectName("preload_year_checkBox")
778
+
779
+ self.preload_year_checkBox = QCheckBox(self.groupBox_6)
780
+ self.preload_year_checkBox.setObjectName(u"preload_year_checkBox")
781
+
518
782
  self.gridLayout_6.addWidget(self.preload_year_checkBox, 5, 0, 1, 1)
519
- self.preload_halfyear_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
783
+
784
+ self.preload_halfyear_spinBox = QSpinBox(self.groupBox_6)
785
+ self.preload_halfyear_spinBox.setObjectName(u"preload_halfyear_spinBox")
520
786
  self.preload_halfyear_spinBox.setMaximum(999999)
521
- self.preload_halfyear_spinBox.setObjectName("preload_halfyear_spinBox")
787
+
522
788
  self.gridLayout_6.addWidget(self.preload_halfyear_spinBox, 4, 2, 1, 1)
523
- self.preload_day_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
789
+
790
+ self.preload_day_spinBox = QSpinBox(self.groupBox_6)
791
+ self.preload_day_spinBox.setObjectName(u"preload_day_spinBox")
524
792
  self.preload_day_spinBox.setMaximum(999999)
525
- self.preload_day_spinBox.setObjectName("preload_day_spinBox")
793
+
526
794
  self.gridLayout_6.addWidget(self.preload_day_spinBox, 0, 2, 1, 1)
527
- self.preload_min30_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
528
- self.preload_min30_checkBox.setObjectName("preload_min30_checkBox")
795
+
796
+ self.preload_min30_checkBox = QCheckBox(self.groupBox_6)
797
+ self.preload_min30_checkBox.setObjectName(u"preload_min30_checkBox")
798
+
529
799
  self.gridLayout_6.addWidget(self.preload_min30_checkBox, 9, 0, 1, 1)
530
- self.label_28 = QtWidgets.QLabel(self.groupBox_6)
531
- self.label_28.setObjectName("label_28")
800
+
801
+ self.label_28 = QLabel(self.groupBox_6)
802
+ self.label_28.setObjectName(u"label_28")
803
+
532
804
  self.gridLayout_6.addWidget(self.label_28, 4, 1, 1, 1)
533
- self.preload_min15_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
805
+
806
+ self.preload_min15_spinBox = QSpinBox(self.groupBox_6)
807
+ self.preload_min15_spinBox.setObjectName(u"preload_min15_spinBox")
534
808
  self.preload_min15_spinBox.setMaximum(999999)
535
- self.preload_min15_spinBox.setObjectName("preload_min15_spinBox")
809
+
536
810
  self.gridLayout_6.addWidget(self.preload_min15_spinBox, 8, 2, 1, 1)
537
- self.save_pushButton = QtWidgets.QPushButton(self.groupBox_6)
538
- self.save_pushButton.setObjectName("save_pushButton")
811
+
812
+ self.save_pushButton = QPushButton(self.groupBox_6)
813
+ self.save_pushButton.setObjectName(u"save_pushButton")
814
+
539
815
  self.gridLayout_6.addWidget(self.save_pushButton, 4, 4, 1, 1)
540
- self.label_34 = QtWidgets.QLabel(self.groupBox_6)
541
- self.label_34.setObjectName("label_34")
816
+
817
+ self.label_34 = QLabel(self.groupBox_6)
818
+ self.label_34.setObjectName(u"label_34")
819
+
542
820
  self.gridLayout_6.addWidget(self.label_34, 10, 1, 1, 1)
543
- self.preload_hour2_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
544
- self.preload_hour2_checkBox.setObjectName("preload_hour2_checkBox")
821
+
822
+ self.preload_hour2_checkBox = QCheckBox(self.groupBox_6)
823
+ self.preload_hour2_checkBox.setObjectName(u"preload_hour2_checkBox")
824
+
545
825
  self.gridLayout_6.addWidget(self.preload_hour2_checkBox, 11, 0, 1, 1)
546
- self.preload_halfyear_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
547
- self.preload_halfyear_checkBox.setObjectName("preload_halfyear_checkBox")
826
+
827
+ self.preload_halfyear_checkBox = QCheckBox(self.groupBox_6)
828
+ self.preload_halfyear_checkBox.setObjectName(u"preload_halfyear_checkBox")
829
+
548
830
  self.gridLayout_6.addWidget(self.preload_halfyear_checkBox, 4, 0, 1, 1)
549
- self.preload_day_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
550
- self.preload_day_checkBox.setObjectName("preload_day_checkBox")
831
+
832
+ self.preload_day_checkBox = QCheckBox(self.groupBox_6)
833
+ self.preload_day_checkBox.setObjectName(u"preload_day_checkBox")
834
+
551
835
  self.gridLayout_6.addWidget(self.preload_day_checkBox, 0, 0, 1, 1)
552
- self.label_24 = QtWidgets.QLabel(self.groupBox_6)
553
- self.label_24.setObjectName("label_24")
836
+
837
+ self.label_24 = QLabel(self.groupBox_6)
838
+ self.label_24.setObjectName(u"label_24")
839
+
554
840
  self.gridLayout_6.addWidget(self.label_24, 0, 1, 1, 1)
555
- self.preload_min1_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
556
- self.preload_min1_checkBox.setObjectName("preload_min1_checkBox")
841
+
842
+ self.preload_min1_checkBox = QCheckBox(self.groupBox_6)
843
+ self.preload_min1_checkBox.setObjectName(u"preload_min1_checkBox")
844
+
557
845
  self.gridLayout_6.addWidget(self.preload_min1_checkBox, 6, 0, 1, 1)
558
- self.preload_min15_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
559
- self.preload_min15_checkBox.setObjectName("preload_min15_checkBox")
846
+
847
+ self.preload_min15_checkBox = QCheckBox(self.groupBox_6)
848
+ self.preload_min15_checkBox.setObjectName(u"preload_min15_checkBox")
849
+
560
850
  self.gridLayout_6.addWidget(self.preload_min15_checkBox, 8, 0, 1, 1)
561
- self.preload_min1_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
851
+
852
+ self.preload_min1_spinBox = QSpinBox(self.groupBox_6)
853
+ self.preload_min1_spinBox.setObjectName(u"preload_min1_spinBox")
562
854
  self.preload_min1_spinBox.setMaximum(999999)
563
- self.preload_min1_spinBox.setObjectName("preload_min1_spinBox")
855
+
564
856
  self.gridLayout_6.addWidget(self.preload_min1_spinBox, 6, 2, 1, 1)
565
- self.preload_min60_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
566
- self.preload_min60_checkBox.setObjectName("preload_min60_checkBox")
857
+
858
+ self.preload_min60_checkBox = QCheckBox(self.groupBox_6)
859
+ self.preload_min60_checkBox.setObjectName(u"preload_min60_checkBox")
860
+
567
861
  self.gridLayout_6.addWidget(self.preload_min60_checkBox, 10, 0, 1, 1)
568
- self.preload_min60_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
862
+
863
+ self.preload_min60_spinBox = QSpinBox(self.groupBox_6)
864
+ self.preload_min60_spinBox.setObjectName(u"preload_min60_spinBox")
569
865
  self.preload_min60_spinBox.setMaximum(999999)
570
- self.preload_min60_spinBox.setObjectName("preload_min60_spinBox")
866
+
571
867
  self.gridLayout_6.addWidget(self.preload_min60_spinBox, 10, 2, 1, 1)
572
- self.label_29 = QtWidgets.QLabel(self.groupBox_6)
573
- self.label_29.setObjectName("label_29")
868
+
869
+ self.label_29 = QLabel(self.groupBox_6)
870
+ self.label_29.setObjectName(u"label_29")
871
+
574
872
  self.gridLayout_6.addWidget(self.label_29, 5, 1, 1, 1)
575
- self.preload_hour2_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
873
+
874
+ self.preload_hour2_spinBox = QSpinBox(self.groupBox_6)
875
+ self.preload_hour2_spinBox.setObjectName(u"preload_hour2_spinBox")
576
876
  self.preload_hour2_spinBox.setMaximum(999999)
577
- self.preload_hour2_spinBox.setObjectName("preload_hour2_spinBox")
877
+
578
878
  self.gridLayout_6.addWidget(self.preload_hour2_spinBox, 11, 2, 1, 1)
579
- self.preload_week_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
580
- self.preload_week_checkBox.setObjectName("preload_week_checkBox")
879
+
880
+ self.preload_week_checkBox = QCheckBox(self.groupBox_6)
881
+ self.preload_week_checkBox.setObjectName(u"preload_week_checkBox")
882
+
581
883
  self.gridLayout_6.addWidget(self.preload_week_checkBox, 1, 0, 1, 1)
582
- spacerItem15 = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum)
583
- self.gridLayout_6.addItem(spacerItem15, 4, 3, 1, 1)
584
- self.preload_quarter_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
585
- self.preload_quarter_checkBox.setObjectName("preload_quarter_checkBox")
884
+
885
+ self.horizontalSpacer_6 = QSpacerItem(20, 20, QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Minimum)
886
+
887
+ self.gridLayout_6.addItem(self.horizontalSpacer_6, 4, 3, 1, 1)
888
+
889
+ self.preload_quarter_checkBox = QCheckBox(self.groupBox_6)
890
+ self.preload_quarter_checkBox.setObjectName(u"preload_quarter_checkBox")
891
+
586
892
  self.gridLayout_6.addWidget(self.preload_quarter_checkBox, 3, 0, 1, 1)
587
- self.label_31 = QtWidgets.QLabel(self.groupBox_6)
588
- self.label_31.setObjectName("label_31")
893
+
894
+ self.label_31 = QLabel(self.groupBox_6)
895
+ self.label_31.setObjectName(u"label_31")
896
+
589
897
  self.gridLayout_6.addWidget(self.label_31, 7, 1, 1, 1)
590
- self.label_25 = QtWidgets.QLabel(self.groupBox_6)
591
- self.label_25.setObjectName("label_25")
898
+
899
+ self.label_25 = QLabel(self.groupBox_6)
900
+ self.label_25.setObjectName(u"label_25")
901
+
592
902
  self.gridLayout_6.addWidget(self.label_25, 1, 1, 1, 1)
593
- self.preload_month_checkBox = QtWidgets.QCheckBox(self.groupBox_6)
594
- self.preload_month_checkBox.setObjectName("preload_month_checkBox")
903
+
904
+ self.preload_month_checkBox = QCheckBox(self.groupBox_6)
905
+ self.preload_month_checkBox.setObjectName(u"preload_month_checkBox")
906
+
595
907
  self.gridLayout_6.addWidget(self.preload_month_checkBox, 2, 0, 1, 1)
596
- self.label_30 = QtWidgets.QLabel(self.groupBox_6)
597
- self.label_30.setObjectName("label_30")
908
+
909
+ self.label_30 = QLabel(self.groupBox_6)
910
+ self.label_30.setObjectName(u"label_30")
911
+
598
912
  self.gridLayout_6.addWidget(self.label_30, 6, 1, 1, 1)
599
- self.preload_min5_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
913
+
914
+ self.preload_min5_spinBox = QSpinBox(self.groupBox_6)
915
+ self.preload_min5_spinBox.setObjectName(u"preload_min5_spinBox")
600
916
  self.preload_min5_spinBox.setMaximum(999999)
601
- self.preload_min5_spinBox.setObjectName("preload_min5_spinBox")
917
+
602
918
  self.gridLayout_6.addWidget(self.preload_min5_spinBox, 7, 2, 1, 1)
603
- self.label_42 = QtWidgets.QLabel(self.groupBox_6)
604
- self.label_42.setObjectName("label_42")
919
+
920
+ self.label_42 = QLabel(self.groupBox_6)
921
+ self.label_42.setObjectName(u"label_42")
922
+
605
923
  self.gridLayout_6.addWidget(self.label_42, 11, 1, 1, 1)
606
- self.label_32 = QtWidgets.QLabel(self.groupBox_6)
607
- self.label_32.setObjectName("label_32")
924
+
925
+ self.label_32 = QLabel(self.groupBox_6)
926
+ self.label_32.setObjectName(u"label_32")
927
+
608
928
  self.gridLayout_6.addWidget(self.label_32, 8, 1, 1, 1)
609
- self.preload_min30_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
929
+
930
+ self.preload_min30_spinBox = QSpinBox(self.groupBox_6)
931
+ self.preload_min30_spinBox.setObjectName(u"preload_min30_spinBox")
610
932
  self.preload_min30_spinBox.setMaximum(999999)
611
- self.preload_min30_spinBox.setObjectName("preload_min30_spinBox")
933
+
612
934
  self.gridLayout_6.addWidget(self.preload_min30_spinBox, 9, 2, 1, 1)
613
- self.preload_year_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
935
+
936
+ self.preload_year_spinBox = QSpinBox(self.groupBox_6)
937
+ self.preload_year_spinBox.setObjectName(u"preload_year_spinBox")
614
938
  self.preload_year_spinBox.setMaximum(999999)
615
- self.preload_year_spinBox.setObjectName("preload_year_spinBox")
939
+
616
940
  self.gridLayout_6.addWidget(self.preload_year_spinBox, 5, 2, 1, 1)
941
+
942
+
617
943
  self.verticalLayout_4.addLayout(self.gridLayout_6)
618
- spacerItem16 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
619
- self.verticalLayout_4.addItem(spacerItem16)
944
+
945
+ self.verticalSpacer_8 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
946
+
947
+ self.verticalLayout_4.addItem(self.verticalSpacer_8)
948
+
949
+
620
950
  self.verticalLayout_3.addWidget(self.groupBox_6)
951
+
621
952
  self.tabWidget.addTab(self.tab_6, "")
622
- self.tab = QtWidgets.QWidget()
623
- self.tab.setObjectName("tab")
624
- self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.tab)
625
- self.verticalLayout_2.setObjectName("verticalLayout_2")
626
- spacerItem17 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
627
- self.verticalLayout_2.addItem(spacerItem17)
628
- self.horizontalLayout_15 = QtWidgets.QHBoxLayout()
953
+ self.tab = QWidget()
954
+ self.tab.setObjectName(u"tab")
955
+ self.verticalLayout_2 = QVBoxLayout(self.tab)
956
+ self.verticalLayout_2.setObjectName(u"verticalLayout_2")
957
+ self.verticalSpacer_3 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
958
+
959
+ self.verticalLayout_2.addItem(self.verticalSpacer_3)
960
+
961
+ self.horizontalLayout_15 = QHBoxLayout()
962
+ self.horizontalLayout_15.setObjectName(u"horizontalLayout_15")
629
963
  self.horizontalLayout_15.setContentsMargins(20, -1, -1, -1)
630
- self.horizontalLayout_15.setObjectName("horizontalLayout_15")
631
- self.collect_start_pushButton = QtWidgets.QPushButton(self.tab)
632
- self.collect_start_pushButton.setObjectName("collect_start_pushButton")
964
+ self.collect_start_pushButton = QPushButton(self.tab)
965
+ self.collect_start_pushButton.setObjectName(u"collect_start_pushButton")
966
+
633
967
  self.horizontalLayout_15.addWidget(self.collect_start_pushButton)
634
- self.collect_status_label = QtWidgets.QLabel(self.tab)
635
- self.collect_status_label.setObjectName("collect_status_label")
968
+
969
+ self.collect_status_label = QLabel(self.tab)
970
+ self.collect_status_label.setObjectName(u"collect_status_label")
971
+
636
972
  self.horizontalLayout_15.addWidget(self.collect_status_label)
637
- spacerItem18 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
638
- self.horizontalLayout_15.addItem(spacerItem18)
973
+
974
+ self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
975
+
976
+ self.horizontalLayout_15.addItem(self.horizontalSpacer)
977
+
978
+
639
979
  self.verticalLayout_2.addLayout(self.horizontalLayout_15)
640
- spacerItem19 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
641
- self.verticalLayout_2.addItem(spacerItem19)
642
- self.horizontalLayout_13 = QtWidgets.QHBoxLayout()
980
+
981
+ self.verticalSpacer = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
982
+
983
+ self.verticalLayout_2.addItem(self.verticalSpacer)
984
+
985
+ self.horizontalLayout_13 = QHBoxLayout()
986
+ self.horizontalLayout_13.setObjectName(u"horizontalLayout_13")
643
987
  self.horizontalLayout_13.setContentsMargins(20, -1, -1, -1)
644
- self.horizontalLayout_13.setObjectName("horizontalLayout_13")
645
- self.label_39 = QtWidgets.QLabel(self.tab)
646
- self.label_39.setObjectName("label_39")
988
+ self.label_39 = QLabel(self.tab)
989
+ self.label_39.setObjectName(u"label_39")
990
+
647
991
  self.horizontalLayout_13.addWidget(self.label_39)
648
- self.collect_source_comboBox = QtWidgets.QComboBox(self.tab)
649
- self.collect_source_comboBox.setObjectName("collect_source_comboBox")
992
+
993
+ self.collect_source_comboBox = QComboBox(self.tab)
650
994
  self.collect_source_comboBox.addItem("")
651
995
  self.collect_source_comboBox.addItem("")
996
+ self.collect_source_comboBox.setObjectName(u"collect_source_comboBox")
997
+
652
998
  self.horizontalLayout_13.addWidget(self.collect_source_comboBox)
653
- spacerItem20 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
654
- self.horizontalLayout_13.addItem(spacerItem20)
999
+
1000
+ self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1001
+
1002
+ self.horizontalLayout_13.addItem(self.horizontalSpacer_2)
1003
+
1004
+
655
1005
  self.verticalLayout_2.addLayout(self.horizontalLayout_13)
656
- spacerItem21 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
657
- self.verticalLayout_2.addItem(spacerItem21)
658
- self.horizontalLayout_10 = QtWidgets.QHBoxLayout()
1006
+
1007
+ self.verticalSpacer_2 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
1008
+
1009
+ self.verticalLayout_2.addItem(self.verticalSpacer_2)
1010
+
1011
+ self.horizontalLayout_10 = QHBoxLayout()
1012
+ self.horizontalLayout_10.setObjectName(u"horizontalLayout_10")
659
1013
  self.horizontalLayout_10.setContentsMargins(20, -1, -1, -1)
660
- self.horizontalLayout_10.setObjectName("horizontalLayout_10")
661
- self.label_23 = QtWidgets.QLabel(self.tab)
662
- self.label_23.setObjectName("label_23")
1014
+ self.label_23 = QLabel(self.tab)
1015
+ self.label_23.setObjectName(u"label_23")
1016
+
663
1017
  self.horizontalLayout_10.addWidget(self.label_23)
664
- self.collect_sample_spinBox = QtWidgets.QSpinBox(self.tab)
1018
+
1019
+ self.collect_sample_spinBox = QSpinBox(self.tab)
1020
+ self.collect_sample_spinBox.setObjectName(u"collect_sample_spinBox")
665
1021
  self.collect_sample_spinBox.setMaximum(86400)
666
- self.collect_sample_spinBox.setObjectName("collect_sample_spinBox")
1022
+
667
1023
  self.horizontalLayout_10.addWidget(self.collect_sample_spinBox)
668
- spacerItem22 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
669
- self.horizontalLayout_10.addItem(spacerItem22)
1024
+
1025
+ self.horizontalSpacer_3 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1026
+
1027
+ self.horizontalLayout_10.addItem(self.horizontalSpacer_3)
1028
+
1029
+
670
1030
  self.verticalLayout_2.addLayout(self.horizontalLayout_10)
671
- spacerItem23 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
672
- self.verticalLayout_2.addItem(spacerItem23)
673
- self.horizontalLayout_8 = QtWidgets.QHBoxLayout()
1031
+
1032
+ self.verticalSpacer_4 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1033
+
1034
+ self.verticalLayout_2.addItem(self.verticalSpacer_4)
1035
+
1036
+ self.horizontalLayout_8 = QHBoxLayout()
1037
+ self.horizontalLayout_8.setObjectName(u"horizontalLayout_8")
674
1038
  self.horizontalLayout_8.setContentsMargins(20, -1, -1, -1)
675
- self.horizontalLayout_8.setObjectName("horizontalLayout_8")
676
- self.label_21 = QtWidgets.QLabel(self.tab)
677
- self.label_21.setObjectName("label_21")
1039
+ self.label_21 = QLabel(self.tab)
1040
+ self.label_21.setObjectName(u"label_21")
1041
+
678
1042
  self.horizontalLayout_8.addWidget(self.label_21)
679
- self.horizontalLayout_6 = QtWidgets.QHBoxLayout()
680
- self.horizontalLayout_6.setObjectName("horizontalLayout_6")
681
- self.collect_phase1_start_timeEdit = QtWidgets.QTimeEdit(self.tab)
682
- self.collect_phase1_start_timeEdit.setCurrentSection(QtWidgets.QDateTimeEdit.HourSection)
683
- self.collect_phase1_start_timeEdit.setObjectName("collect_phase1_start_timeEdit")
1043
+
1044
+ self.horizontalLayout_6 = QHBoxLayout()
1045
+ self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
1046
+ self.collect_phase1_start_timeEdit = QTimeEdit(self.tab)
1047
+ self.collect_phase1_start_timeEdit.setObjectName(u"collect_phase1_start_timeEdit")
1048
+ self.collect_phase1_start_timeEdit.setCurrentSection(QDateTimeEdit.HourSection)
1049
+
684
1050
  self.horizontalLayout_6.addWidget(self.collect_phase1_start_timeEdit)
685
- self.label_22 = QtWidgets.QLabel(self.tab)
686
- self.label_22.setObjectName("label_22")
1051
+
1052
+ self.label_22 = QLabel(self.tab)
1053
+ self.label_22.setObjectName(u"label_22")
1054
+
687
1055
  self.horizontalLayout_6.addWidget(self.label_22)
688
- self.collect_phase1_last_timeEdit = QtWidgets.QTimeEdit(self.tab)
689
- self.collect_phase1_last_timeEdit.setObjectName("collect_phase1_last_timeEdit")
1056
+
1057
+ self.collect_phase1_last_timeEdit = QTimeEdit(self.tab)
1058
+ self.collect_phase1_last_timeEdit.setObjectName(u"collect_phase1_last_timeEdit")
1059
+
690
1060
  self.horizontalLayout_6.addWidget(self.collect_phase1_last_timeEdit)
691
- spacerItem24 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
692
- self.horizontalLayout_6.addItem(spacerItem24)
1061
+
1062
+ self.horizontalSpacer_4 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1063
+
1064
+ self.horizontalLayout_6.addItem(self.horizontalSpacer_4)
1065
+
1066
+
693
1067
  self.horizontalLayout_8.addLayout(self.horizontalLayout_6)
1068
+
1069
+
694
1070
  self.verticalLayout_2.addLayout(self.horizontalLayout_8)
695
- self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
1071
+
1072
+ self.horizontalLayout_9 = QHBoxLayout()
1073
+ self.horizontalLayout_9.setObjectName(u"horizontalLayout_9")
696
1074
  self.horizontalLayout_9.setContentsMargins(20, -1, -1, -1)
697
- self.horizontalLayout_9.setObjectName("horizontalLayout_9")
698
- self.label_37 = QtWidgets.QLabel(self.tab)
699
- self.label_37.setObjectName("label_37")
1075
+ self.label_37 = QLabel(self.tab)
1076
+ self.label_37.setObjectName(u"label_37")
1077
+
700
1078
  self.horizontalLayout_9.addWidget(self.label_37)
701
- self.horizontalLayout_7 = QtWidgets.QHBoxLayout()
702
- self.horizontalLayout_7.setObjectName("horizontalLayout_7")
703
- self.collect_phase2_start_timeEdit = QtWidgets.QTimeEdit(self.tab)
704
- self.collect_phase2_start_timeEdit.setCurrentSection(QtWidgets.QDateTimeEdit.HourSection)
705
- self.collect_phase2_start_timeEdit.setObjectName("collect_phase2_start_timeEdit")
1079
+
1080
+ self.horizontalLayout_7 = QHBoxLayout()
1081
+ self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
1082
+ self.collect_phase2_start_timeEdit = QTimeEdit(self.tab)
1083
+ self.collect_phase2_start_timeEdit.setObjectName(u"collect_phase2_start_timeEdit")
1084
+ self.collect_phase2_start_timeEdit.setCurrentSection(QDateTimeEdit.HourSection)
1085
+
706
1086
  self.horizontalLayout_7.addWidget(self.collect_phase2_start_timeEdit)
707
- self.label_38 = QtWidgets.QLabel(self.tab)
708
- self.label_38.setObjectName("label_38")
1087
+
1088
+ self.label_38 = QLabel(self.tab)
1089
+ self.label_38.setObjectName(u"label_38")
1090
+
709
1091
  self.horizontalLayout_7.addWidget(self.label_38)
710
- self.collect_phase2_last_timeEdit = QtWidgets.QTimeEdit(self.tab)
711
- self.collect_phase2_last_timeEdit.setObjectName("collect_phase2_last_timeEdit")
1092
+
1093
+ self.collect_phase2_last_timeEdit = QTimeEdit(self.tab)
1094
+ self.collect_phase2_last_timeEdit.setObjectName(u"collect_phase2_last_timeEdit")
1095
+
712
1096
  self.horizontalLayout_7.addWidget(self.collect_phase2_last_timeEdit)
713
- spacerItem25 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
714
- self.horizontalLayout_7.addItem(spacerItem25)
1097
+
1098
+ self.horizontalSpacer_5 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1099
+
1100
+ self.horizontalLayout_7.addItem(self.horizontalSpacer_5)
1101
+
1102
+
715
1103
  self.horizontalLayout_9.addLayout(self.horizontalLayout_7)
1104
+
1105
+
716
1106
  self.verticalLayout_2.addLayout(self.horizontalLayout_9)
717
- spacerItem26 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
718
- self.verticalLayout_2.addItem(spacerItem26)
719
- self.horizontalLayout_16 = QtWidgets.QHBoxLayout()
1107
+
1108
+ self.verticalSpacer_5 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1109
+
1110
+ self.verticalLayout_2.addItem(self.verticalSpacer_5)
1111
+
1112
+ self.horizontalLayout_16 = QHBoxLayout()
1113
+ self.horizontalLayout_16.setObjectName(u"horizontalLayout_16")
720
1114
  self.horizontalLayout_16.setContentsMargins(20, 0, -1, -1)
721
- self.horizontalLayout_16.setObjectName("horizontalLayout_16")
722
- self.collect_use_zhima_checkBox = QtWidgets.QCheckBox(self.tab)
723
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed)
724
- sizePolicy.setHorizontalStretch(0)
725
- sizePolicy.setVerticalStretch(0)
726
- sizePolicy.setHeightForWidth(self.collect_use_zhima_checkBox.sizePolicy().hasHeightForWidth())
727
- self.collect_use_zhima_checkBox.setSizePolicy(sizePolicy)
728
- self.collect_use_zhima_checkBox.setObjectName("collect_use_zhima_checkBox")
1115
+ self.collect_use_zhima_checkBox = QCheckBox(self.tab)
1116
+ self.collect_use_zhima_checkBox.setObjectName(u"collect_use_zhima_checkBox")
1117
+ sizePolicy1.setHeightForWidth(self.collect_use_zhima_checkBox.sizePolicy().hasHeightForWidth())
1118
+ self.collect_use_zhima_checkBox.setSizePolicy(sizePolicy1)
1119
+
729
1120
  self.horizontalLayout_16.addWidget(self.collect_use_zhima_checkBox)
1121
+
1122
+
730
1123
  self.verticalLayout_2.addLayout(self.horizontalLayout_16)
731
- spacerItem27 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
732
- self.verticalLayout_2.addItem(spacerItem27)
733
- self.horizontalLayout_17 = QtWidgets.QHBoxLayout()
1124
+
1125
+ self.verticalSpacer_6 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1126
+
1127
+ self.verticalLayout_2.addItem(self.verticalSpacer_6)
1128
+
1129
+ self.horizontalLayout_17 = QHBoxLayout()
1130
+ self.horizontalLayout_17.setObjectName(u"horizontalLayout_17")
734
1131
  self.horizontalLayout_17.setContentsMargins(20, 0, -1, -1)
735
- self.horizontalLayout_17.setObjectName("horizontalLayout_17")
736
- self.textBrowser = QtWidgets.QTextBrowser(self.tab)
737
- self.textBrowser.setObjectName("textBrowser")
1132
+ self.textBrowser = QTextBrowser(self.tab)
1133
+ self.textBrowser.setObjectName(u"textBrowser")
1134
+
738
1135
  self.horizontalLayout_17.addWidget(self.textBrowser)
1136
+
1137
+
739
1138
  self.verticalLayout_2.addLayout(self.horizontalLayout_17)
1139
+
740
1140
  self.tabWidget.addTab(self.tab, "")
741
- self.tab_star = QtWidgets.QWidget()
1141
+ self.tab_star = QWidget()
1142
+ self.tab_star.setObjectName(u"tab_star")
742
1143
  self.tab_star.setEnabled(True)
743
- self.tab_star.setObjectName("tab_star")
744
- self.verticalLayout_18 = QtWidgets.QVBoxLayout(self.tab_star)
745
- self.verticalLayout_18.setObjectName("verticalLayout_18")
746
- spacerItem28 = QtWidgets.QSpacerItem(5, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
747
- self.verticalLayout_18.addItem(spacerItem28)
748
- self.label_46 = QtWidgets.QLabel(self.tab_star)
749
- font = QtGui.QFont()
750
- font.setFamily("Arial")
1144
+ self.verticalLayout_18 = QVBoxLayout(self.tab_star)
1145
+ self.verticalLayout_18.setObjectName(u"verticalLayout_18")
1146
+ self.verticalSpacer_13 = QSpacerItem(5, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
1147
+
1148
+ self.verticalLayout_18.addItem(self.verticalSpacer_13)
1149
+
1150
+ self.label_46 = QLabel(self.tab_star)
1151
+ self.label_46.setObjectName(u"label_46")
1152
+ font = QFont()
1153
+ font.setFamilies([u"Arial"])
751
1154
  self.label_46.setFont(font)
752
1155
  self.label_46.setWordWrap(True)
753
- self.label_46.setObjectName("label_46")
1156
+
754
1157
  self.verticalLayout_18.addWidget(self.label_46)
755
- self.line_2 = QtWidgets.QFrame(self.tab_star)
756
- self.line_2.setFrameShape(QtWidgets.QFrame.HLine)
757
- self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken)
758
- self.line_2.setObjectName("line_2")
1158
+
1159
+ self.line_2 = QFrame(self.tab_star)
1160
+ self.line_2.setObjectName(u"line_2")
1161
+ self.line_2.setFrameShape(QFrame.Shape.HLine)
1162
+ self.line_2.setFrameShadow(QFrame.Shadow.Sunken)
1163
+
759
1164
  self.verticalLayout_18.addWidget(self.line_2)
760
- self.verticalLayout_15 = QtWidgets.QVBoxLayout()
761
- self.verticalLayout_15.setObjectName("verticalLayout_15")
762
- self.label_47 = QtWidgets.QLabel(self.tab_star)
763
- font = QtGui.QFont()
764
- font.setBold(True)
765
- self.label_47.setFont(font)
766
- self.label_47.setObjectName("label_47")
1165
+
1166
+ self.verticalLayout_15 = QVBoxLayout()
1167
+ self.verticalLayout_15.setObjectName(u"verticalLayout_15")
1168
+ self.label_47 = QLabel(self.tab_star)
1169
+ self.label_47.setObjectName(u"label_47")
1170
+ font1 = QFont()
1171
+ font1.setBold(True)
1172
+ self.label_47.setFont(font1)
1173
+
767
1174
  self.verticalLayout_15.addWidget(self.label_47)
768
- self.horizontalLayout_20 = QtWidgets.QHBoxLayout()
769
- self.horizontalLayout_20.setObjectName("horizontalLayout_20")
770
- self.label_45 = QtWidgets.QLabel(self.tab_star)
771
- self.label_45.setObjectName("label_45")
1175
+
1176
+ self.horizontalLayout_20 = QHBoxLayout()
1177
+ self.horizontalLayout_20.setObjectName(u"horizontalLayout_20")
1178
+ self.label_45 = QLabel(self.tab_star)
1179
+ self.label_45.setObjectName(u"label_45")
1180
+
772
1181
  self.horizontalLayout_20.addWidget(self.label_45)
773
- self.email_lineEdit = QtWidgets.QLineEdit(self.tab_star)
774
- self.email_lineEdit.setObjectName("email_lineEdit")
1182
+
1183
+ self.email_lineEdit = QLineEdit(self.tab_star)
1184
+ self.email_lineEdit.setObjectName(u"email_lineEdit")
1185
+
775
1186
  self.horizontalLayout_20.addWidget(self.email_lineEdit)
776
- self.fetch_trial_pushButton = QtWidgets.QPushButton(self.tab_star)
777
- self.fetch_trial_pushButton.setObjectName("fetch_trial_pushButton")
1187
+
1188
+ self.fetch_trial_pushButton = QPushButton(self.tab_star)
1189
+ self.fetch_trial_pushButton.setObjectName(u"fetch_trial_pushButton")
1190
+
778
1191
  self.horizontalLayout_20.addWidget(self.fetch_trial_pushButton)
1192
+
1193
+
779
1194
  self.verticalLayout_15.addLayout(self.horizontalLayout_20)
1195
+
1196
+
780
1197
  self.verticalLayout_18.addLayout(self.verticalLayout_15)
781
- self.line_3 = QtWidgets.QFrame(self.tab_star)
782
- self.line_3.setFrameShape(QtWidgets.QFrame.HLine)
783
- self.line_3.setFrameShadow(QtWidgets.QFrame.Sunken)
784
- self.line_3.setObjectName("line_3")
1198
+
1199
+ self.line_3 = QFrame(self.tab_star)
1200
+ self.line_3.setObjectName(u"line_3")
1201
+ self.line_3.setFrameShape(QFrame.Shape.HLine)
1202
+ self.line_3.setFrameShadow(QFrame.Shadow.Sunken)
1203
+
785
1204
  self.verticalLayout_18.addWidget(self.line_3)
786
- self.verticalLayout_16 = QtWidgets.QVBoxLayout()
787
- self.verticalLayout_16.setObjectName("verticalLayout_16")
788
- self.label_48 = QtWidgets.QLabel(self.tab_star)
789
- font = QtGui.QFont()
790
- font.setBold(True)
791
- self.label_48.setFont(font)
792
- self.label_48.setObjectName("label_48")
1205
+
1206
+ self.verticalLayout_16 = QVBoxLayout()
1207
+ self.verticalLayout_16.setObjectName(u"verticalLayout_16")
1208
+ self.label_48 = QLabel(self.tab_star)
1209
+ self.label_48.setObjectName(u"label_48")
1210
+ self.label_48.setFont(font1)
1211
+
793
1212
  self.verticalLayout_16.addWidget(self.label_48)
794
- self.label_44 = QtWidgets.QLabel(self.tab_star)
795
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
796
- sizePolicy.setHorizontalStretch(0)
797
- sizePolicy.setVerticalStretch(0)
798
- sizePolicy.setHeightForWidth(self.label_44.sizePolicy().hasHeightForWidth())
799
- self.label_44.setSizePolicy(sizePolicy)
800
- self.label_44.setMaximumSize(QtCore.QSize(300, 160))
801
- self.label_44.setText("")
802
- self.label_44.setPixmap(QtGui.QPixmap("../images/star.png"))
1213
+
1214
+ self.label_44 = QLabel(self.tab_star)
1215
+ self.label_44.setObjectName(u"label_44")
1216
+ sizePolicy3 = QSizePolicy(QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Fixed)
1217
+ sizePolicy3.setHorizontalStretch(0)
1218
+ sizePolicy3.setVerticalStretch(0)
1219
+ sizePolicy3.setHeightForWidth(self.label_44.sizePolicy().hasHeightForWidth())
1220
+ self.label_44.setSizePolicy(sizePolicy3)
1221
+ self.label_44.setMaximumSize(QSize(300, 160))
1222
+ self.label_44.setPixmap(QPixmap(u"../images/star.png"))
803
1223
  self.label_44.setScaledContents(True)
804
- self.label_44.setObjectName("label_44")
1224
+
805
1225
  self.verticalLayout_16.addWidget(self.label_44)
1226
+
1227
+
806
1228
  self.verticalLayout_18.addLayout(self.verticalLayout_16)
807
- self.line_4 = QtWidgets.QFrame(self.tab_star)
808
- self.line_4.setFrameShape(QtWidgets.QFrame.HLine)
809
- self.line_4.setFrameShadow(QtWidgets.QFrame.Sunken)
810
- self.line_4.setObjectName("line_4")
1229
+
1230
+ self.line_4 = QFrame(self.tab_star)
1231
+ self.line_4.setObjectName(u"line_4")
1232
+ self.line_4.setFrameShape(QFrame.Shape.HLine)
1233
+ self.line_4.setFrameShadow(QFrame.Shadow.Sunken)
1234
+
811
1235
  self.verticalLayout_18.addWidget(self.line_4)
812
- self.verticalLayout_17 = QtWidgets.QVBoxLayout()
813
- self.verticalLayout_17.setObjectName("verticalLayout_17")
814
- self.label_49 = QtWidgets.QLabel(self.tab_star)
815
- font = QtGui.QFont()
816
- font.setBold(True)
817
- self.label_49.setFont(font)
818
- self.label_49.setObjectName("label_49")
1236
+
1237
+ self.verticalLayout_17 = QVBoxLayout()
1238
+ self.verticalLayout_17.setObjectName(u"verticalLayout_17")
1239
+ self.label_49 = QLabel(self.tab_star)
1240
+ self.label_49.setObjectName(u"label_49")
1241
+ self.label_49.setFont(font1)
1242
+
819
1243
  self.verticalLayout_17.addWidget(self.label_49)
820
- self.label_license = QtWidgets.QLabel(self.tab_star)
821
- self.label_license.setObjectName("label_license")
1244
+
1245
+ self.label_license = QLabel(self.tab_star)
1246
+ self.label_license.setObjectName(u"label_license")
1247
+
822
1248
  self.verticalLayout_17.addWidget(self.label_license)
1249
+
1250
+
823
1251
  self.verticalLayout_18.addLayout(self.verticalLayout_17)
824
- spacerItem29 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
825
- self.verticalLayout_18.addItem(spacerItem29)
1252
+
1253
+ self.verticalSpacer_21 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
1254
+
1255
+ self.verticalLayout_18.addItem(self.verticalSpacer_21)
1256
+
826
1257
  self.tabWidget.addTab(self.tab_star, "")
1258
+
827
1259
  self.horizontalLayout_12.addWidget(self.tabWidget)
828
- self.verticalLayout_6 = QtWidgets.QVBoxLayout()
829
- self.verticalLayout_6.setObjectName("verticalLayout_6")
830
- self.label_41 = QtWidgets.QLabel(self.centralwidget)
831
- self.label_41.setObjectName("label_41")
1260
+
1261
+ self.verticalLayout_6 = QVBoxLayout()
1262
+ self.verticalLayout_6.setObjectName(u"verticalLayout_6")
1263
+ self.label_41 = QLabel(self.centralwidget)
1264
+ self.label_41.setObjectName(u"label_41")
1265
+
832
1266
  self.verticalLayout_6.addWidget(self.label_41)
833
- self.log_textEdit = QtWidgets.QTextEdit(self.centralwidget)
1267
+
1268
+ self.log_textEdit = QTextEdit(self.centralwidget)
1269
+ self.log_textEdit.setObjectName(u"log_textEdit")
834
1270
  self.log_textEdit.setReadOnly(True)
835
1271
  self.log_textEdit.setAcceptRichText(True)
836
- self.log_textEdit.setObjectName("log_textEdit")
1272
+
837
1273
  self.verticalLayout_6.addWidget(self.log_textEdit)
1274
+
1275
+
838
1276
  self.horizontalLayout_12.addLayout(self.verticalLayout_6)
1277
+
839
1278
  MainWindow.setCentralWidget(self.centralwidget)
840
1279
 
841
1280
  self.retranslateUi(MainWindow)
842
- self.tabWidget.setCurrentIndex(5)
843
- QtCore.QMetaObject.connectSlotsByName(MainWindow)
1281
+
1282
+ self.tabWidget.setCurrentIndex(0)
1283
+
1284
+
1285
+ QMetaObject.connectSlotsByName(MainWindow)
1286
+ # setupUi
844
1287
 
845
1288
  def retranslateUi(self, MainWindow):
846
- _translate = QtCore.QCoreApplication.translate
847
- MainWindow.setWindowTitle(_translate("MainWindow", "数据导入工具"))
848
- self.groupBox_2.setTitle(_translate("MainWindow", "数据源设置"))
849
- self.pytdx_radioButton.setText(_translate("MainWindow", "使用Pytdx下载数据"))
850
- self.label_16.setText(_translate("MainWindow", "同时使用"))
851
- self.label_17.setText(_translate("MainWindow", "个通达信服务器进行下载"))
852
- self.tdx_radioButton.setText(_translate("MainWindow", "使用通达信盘后数据(不支持分笔、分时数据,需要配置安装路径)"))
853
- self.select_tdx_dir_pushButton.setText(_translate("MainWindow", "选择"))
854
- self.label_2.setText(_translate("MainWindow", "通达信安装目录:"))
855
- self.qmt_radioButton.setText(_translate("MainWindow", "使用 qmt 数据下载(需要 miniqmt)(屏蔽,qmt下载数据太慢,且不稳定)"))
856
- self.groupBox_7.setTitle(_translate("MainWindow", "导入设置"))
857
- self.import_weight_checkBox.setText(_translate("MainWindow", "下载权息数据"))
858
- self.import_history_finance_checkBox.setText(_translate("MainWindow", "下载历史财务数据"))
859
- self.import_block_checkBox.setText(_translate("MainWindow", "下载行业与指数板块"))
860
- self.import_stock_checkBox.setText(_translate("MainWindow", "股票"))
861
- self.import_fund_checkBox.setText(_translate("MainWindow", "基金"))
862
- self.import_future_checkBox.setText(_translate("MainWindow", "期货"))
863
- self.import_day_checkBox.setText(_translate("MainWindow", "日线"))
864
- self.import_min5_checkBox.setText(_translate("MainWindow", "5分钟线"))
865
- self.import_min_checkBox.setText(_translate("MainWindow", "1分钟线"))
866
- self.import_trans_checkBox.setText(_translate("MainWindow", "分笔"))
867
- self.import_time_checkBox.setText(_translate("MainWindow", "分时"))
868
- self.label_7.setText(_translate("MainWindow", "初次导入分时起始日期:"))
869
- self.label_6.setText(_translate("MainWindow", "初次导入分笔起始日期:"))
870
- self.label_3.setText(_translate("MainWindow", "初次导入日线起始日期:"))
871
- self.label_10.setText(_translate("MainWindow", "初次导入5分钟线起始日期:"))
872
- self.label_15.setText(_translate("MainWindow", "初次导入1分钟线起始日期:"))
873
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), _translate("MainWindow", "导入设置"))
874
- self.groupBox_4.setTitle(_translate("MainWindow", "存储引擎设置"))
875
- self.enable_hdf55_radioButton.setText(_translate("MainWindow", "使用HDF5(推荐)"))
876
- self.enable_mysql_radioButton.setText(_translate("MainWindow", "使用MYSQL"))
877
- self.enable_clickhouse_radioButton.setText(_translate("MainWindow", "使用Clickhouse(捐赠权益)"))
878
- self.groupBox_3.setTitle(_translate("MainWindow", "HDF5存储设置"))
879
- self.hdf5_dir_pushButton.setText(_translate("MainWindow", "选择"))
880
- self.label.setText(_translate("MainWindow", "目标数据(HDF5)存放目录:"))
881
- self.groupBox.setTitle(_translate("MainWindow", "MYSQL存储设置"))
882
- self.label_11.setText(_translate("MainWindow", "用户名:"))
883
- self.label_19.setText(_translate("MainWindow", "端口号:"))
884
- self.label_13.setText(_translate("MainWindow", "密码"))
885
- self.mysql_tmpdir_pushButton.setText(_translate("MainWindow", "选择"))
886
- self.mysql_test_pushButton.setText(_translate("MainWindow", "测试连接"))
887
- self.label_20.setText(_translate("MainWindow", "临本机时文件目录:"))
888
- self.label_18.setText(_translate("MainWindow", "主机名/IP:"))
889
- self.groupBox_8.setTitle(_translate("MainWindow", "Clickhouse设置(捐赠权益)"))
890
- self.label_53.setText(_translate("MainWindow", "本机临时文件目录:"))
891
- self.label_54.setText(_translate("MainWindow", "主机名/IP:"))
892
- self.label_51.setText(_translate("MainWindow", "HTTP端口号:"))
893
- self.label_50.setText(_translate("MainWindow", "用户名:"))
894
- self.label_55.setText(_translate("MainWindow", "TCP端口号"))
895
- self.label_52.setText(_translate("MainWindow", "密码"))
896
- self.clickhouse_test_pushButton.setText(_translate("MainWindow", "测试连接"))
897
- self.clickhouse_tmpdir_pushButton.setText(_translate("MainWindow", "选择"))
898
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_3), _translate("MainWindow", "存储设置"))
899
- self.label_43.setText(_translate("MainWindow", " 注:HDF5存储导入时,请关闭其他 hikyuu 进程,HDF5不支持同时读写!"))
900
- self.sched_import_pushButton.setText(_translate("MainWindow", "启动定时导入"))
901
- self.label_40.setText(_translate("MainWindow", "导入执行时间:"))
902
- self.start_import_pushButton.setText(_translate("MainWindow", "手工执行导入"))
903
- self.import_status_label.setText(_translate("MainWindow", "请勿盘中导入!"))
904
- self.groupBox_5.setTitle(_translate("MainWindow", "导入进展"))
905
- self.hdf5_weight_label.setText(_translate("MainWindow", "TextLabel"))
906
- self.label_14.setText(_translate("MainWindow", "导入1分钟线:"))
907
- self.label_4.setText(_translate("MainWindow", "导入分笔数据:"))
908
- self.label_8.setText(_translate("MainWindow", "导入日线:"))
909
- self.label_5.setText(_translate("MainWindow", "导入分时数据:"))
910
- self.label_12.setText(_translate("MainWindow", "导入5分钟线:"))
911
- self.label_9.setText(_translate("MainWindow", "导入权息数据:"))
912
- self.import_detail_textEdit.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
1289
+ MainWindow.setWindowTitle(QCoreApplication.translate("MainWindow", u"\u6570\u636e\u5bfc\u5165\u5de5\u5177", None))
1290
+ self.groupBox_2.setTitle(QCoreApplication.translate("MainWindow", u"\u6570\u636e\u6e90\u8bbe\u7f6e", None))
1291
+ self.pytdx_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528Pytdx\u4e0b\u8f7d\u6570\u636e", None))
1292
+ self.label_16.setText(QCoreApplication.translate("MainWindow", u"\u540c\u65f6\u4f7f\u7528", None))
1293
+ self.label_17.setText(QCoreApplication.translate("MainWindow", u"\u4e2a\u901a\u8fbe\u4fe1\u670d\u52a1\u5668\u8fdb\u884c\u4e0b\u8f7d", None))
1294
+ self.tdx_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528\u901a\u8fbe\u4fe1\u76d8\u540e\u6570\u636e\uff08\u4e0d\u652f\u6301\u5206\u7b14\u3001\u5206\u65f6\u6570\u636e\uff0c\u9700\u8981\u914d\u7f6e\u5b89\u88c5\u8def\u5f84\uff09", None))
1295
+ self.select_tdx_dir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1296
+ self.label_2.setText(QCoreApplication.translate("MainWindow", u"\u901a\u8fbe\u4fe1\u5b89\u88c5\u76ee\u5f55\uff1a", None))
1297
+ self.qmt_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528 qmt \u6570\u636e\u4e0b\u8f7d\uff08\u9700\u8981 miniqmt\uff09\uff08\u5c4f\u853d\uff0cqmt\u4e0b\u8f7d\u6570\u636e\u592a\u6162\uff0c\u4e14\u4e0d\u7a33\u5b9a\uff09", None))
1298
+ self.groupBox_7.setTitle(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8bbe\u7f6e", None))
1299
+ self.import_weight_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u6743\u606f\u6570\u636e", None))
1300
+ self.import_history_finance_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u5386\u53f2\u8d22\u52a1\u6570\u636e", None))
1301
+ self.import_block_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u884c\u4e1a\u4e0e\u6307\u6570\u677f\u5757", None))
1302
+ self.import_stock_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u80a1\u7968", None))
1303
+ self.import_fund_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u57fa\u91d1", None))
1304
+ self.import_future_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u671f\u8d27", None))
1305
+ self.import_day_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u65e5\u7ebf", None))
1306
+ self.import_min5_checkBox.setText(QCoreApplication.translate("MainWindow", u"5\u5206\u949f\u7ebf", None))
1307
+ self.import_min_checkBox.setText(QCoreApplication.translate("MainWindow", u"1\u5206\u949f\u7ebf", None))
1308
+ self.import_trans_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u5206\u7b14", None))
1309
+ self.import_time_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u5206\u65f6", None))
1310
+ self.label_7.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u5206\u65f6\u8d77\u59cb\u65e5\u671f\uff1a", None))
1311
+ self.label_6.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u5206\u7b14\u8d77\u59cb\u65e5\u671f\uff1a", None))
1312
+ self.label_3.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u65e5\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1313
+ self.label_10.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u51655\u5206\u949f\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1314
+ self.label_15.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u51651\u5206\u949f\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1315
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8bbe\u7f6e", None))
1316
+ self.groupBox_4.setTitle(QCoreApplication.translate("MainWindow", u"\u5b58\u50a8\u5f15\u64ce\u8bbe\u7f6e", None))
1317
+ self.enable_hdf55_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528HDF5\uff08\u63a8\u8350\uff09", None))
1318
+ self.enable_mysql_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528MYSQL", None))
1319
+ self.enable_clickhouse_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528Clickhouse(\u6350\u8d60\u6743\u76ca\uff09", None))
1320
+ self.groupBox_3.setTitle(QCoreApplication.translate("MainWindow", u"HDF5\u5b58\u50a8\u8bbe\u7f6e", None))
1321
+ self.hdf5_dir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1322
+ self.label.setText(QCoreApplication.translate("MainWindow", u"\u76ee\u6807\u6570\u636e\uff08HDF5\uff09\u5b58\u653e\u76ee\u5f55\uff1a", None))
1323
+ self.groupBox.setTitle(QCoreApplication.translate("MainWindow", u"MYSQL\u5b58\u50a8\u8bbe\u7f6e", None))
1324
+ self.label_11.setText(QCoreApplication.translate("MainWindow", u"\u7528\u6237\u540d\uff1a", None))
1325
+ self.label_19.setText(QCoreApplication.translate("MainWindow", u"\u7aef\u53e3\u53f7\uff1a", None))
1326
+ self.label_13.setText(QCoreApplication.translate("MainWindow", u"\u5bc6\u7801", None))
1327
+ self.mysql_tmpdir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1328
+ self.mysql_test_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u6d4b\u8bd5\u8fde\u63a5", None))
1329
+ self.label_20.setText(QCoreApplication.translate("MainWindow", u"\u4e34\u672c\u673a\u65f6\u6587\u4ef6\u76ee\u5f55\uff1a", None))
1330
+ self.label_18.setText(QCoreApplication.translate("MainWindow", u"\u4e3b\u673a\u540d/IP\uff1a", None))
1331
+ self.groupBox_8.setTitle(QCoreApplication.translate("MainWindow", u"Clickhouse\u8bbe\u7f6e(\u6350\u8d60\u6743\u76ca)", None))
1332
+ self.label_53.setText(QCoreApplication.translate("MainWindow", u"\u672c\u673a\u4e34\u65f6\u6587\u4ef6\u76ee\u5f55\uff1a", None))
1333
+ self.label_54.setText(QCoreApplication.translate("MainWindow", u"\u4e3b\u673a\u540d/IP\uff1a", None))
1334
+ self.label_51.setText(QCoreApplication.translate("MainWindow", u"HTTP\u7aef\u53e3\u53f7\uff1a", None))
1335
+ self.label_50.setText(QCoreApplication.translate("MainWindow", u"\u7528\u6237\u540d\uff1a", None))
1336
+ self.label_55.setText(QCoreApplication.translate("MainWindow", u"TCP\u7aef\u53e3\u53f7", None))
1337
+ self.label_52.setText(QCoreApplication.translate("MainWindow", u"\u5bc6\u7801", None))
1338
+ self.clickhouse_test_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u6d4b\u8bd5\u8fde\u63a5", None))
1339
+ self.clickhouse_tmpdir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1340
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_3), QCoreApplication.translate("MainWindow", u"\u5b58\u50a8\u8bbe\u7f6e", None))
1341
+ self.label_43.setText(QCoreApplication.translate("MainWindow", u" \u6ce8\uff1aHDF5\u5b58\u50a8\u5bfc\u5165\u65f6\uff0c\u8bf7\u5173\u95ed\u5176\u4ed6 hikyuu \u8fdb\u7a0b\uff0cHDF5\u4e0d\u652f\u6301\u540c\u65f6\u8bfb\u5199\uff01", None))
1342
+ self.sched_import_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u542f\u52a8\u5b9a\u65f6\u5bfc\u5165", None))
1343
+ self.label_40.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u6267\u884c\u65f6\u95f4\uff1a", None))
1344
+ self.start_import_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u624b\u5de5\u6267\u884c\u5bfc\u5165", None))
1345
+ self.import_status_label.setText(QCoreApplication.translate("MainWindow", u"\u8bf7\u52ff\u76d8\u4e2d\u5bfc\u5165\uff01", None))
1346
+ self.groupBox_5.setTitle(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8fdb\u5c55", None))
1347
+ self.hdf5_weight_label.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1348
+ self.label_14.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u51651\u5206\u949f\u7ebf\uff1a", None))
1349
+ self.label_4.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u5206\u7b14\u6570\u636e\uff1a", None))
1350
+ self.label_8.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u65e5\u7ebf\uff1a", None))
1351
+ self.label_5.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u5206\u65f6\u6570\u636e\uff1a", None))
1352
+ self.label_12.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u51655\u5206\u949f\u7ebf\uff1a", None))
1353
+ self.label_9.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u6743\u606f\u6570\u636e\uff1a", None))
1354
+ self.import_detail_textEdit.setHtml(QCoreApplication.translate("MainWindow", u"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
913
1355
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
914
1356
  "p, li { white-space: pre-wrap; }\n"
915
1357
  "hr { height: 1px; border-width: 0; }\n"
916
1358
  "li.unchecked::marker { content: \"\\2610\"; }\n"
917
1359
  "li.checked::marker { content: \"\\2612\"; }\n"
918
- "</style></head><body style=\" font-family:\'Microsoft YaHei UI\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
919
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证日线记录:</span></p>\n"
920
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证日线记录:</span></p>\n"
921
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证5分钟线记录:</span></p>\n"
922
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证5分钟线记录:</span></p>\n"
923
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证1分钟线记录:</span></p>\n"
924
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证1分钟线记录:</span></p>\n"
925
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证分笔记录:</span></p>\n"
926
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证分笔记录:</span></p>\n"
927
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入上证分时数据:</span></p>\n"
928
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入深证分时数据:</span></p>\n"
929
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入权息数据数:</span></p>\n"
930
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">导入完毕!</span></p></body></html>"))
931
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), _translate("MainWindow", "执行导入"))
932
- self.groupBox_6.setTitle(_translate("MainWindow", "预加载设置"))
933
- self.label_35.setText(_translate("MainWindow", "此处为 Hikyuu 运行时的数据预加载设置,请根据机器内存大小选择"))
934
- self.label_36.setText(_translate("MainWindow", "(目前加载全部日线数据目前需要约需900M内存)"))
935
- self.preload_min5_checkBox.setText(_translate("MainWindow", "预加载5分钟线"))
936
- self.label_33.setText(_translate("MainWindow", "最大缓存数量:"))
937
- self.label_26.setText(_translate("MainWindow", "最大缓存数量:"))
938
- self.label_27.setText(_translate("MainWindow", "最大缓存数量:"))
939
- self.preload_year_checkBox.setText(_translate("MainWindow", "预加载年线"))
940
- self.preload_min30_checkBox.setText(_translate("MainWindow", "预加载30分钟线"))
941
- self.label_28.setText(_translate("MainWindow", "最大缓存数量:"))
942
- self.save_pushButton.setText(_translate("MainWindow", "保存设置"))
943
- self.label_34.setText(_translate("MainWindow", "最大缓存数量:"))
944
- self.preload_hour2_checkBox.setText(_translate("MainWindow", "预加载120分钟线"))
945
- self.preload_halfyear_checkBox.setText(_translate("MainWindow", "预加载半年线"))
946
- self.preload_day_checkBox.setText(_translate("MainWindow", "预加载日线"))
947
- self.label_24.setText(_translate("MainWindow", "最大缓存数量:"))
948
- self.preload_min1_checkBox.setText(_translate("MainWindow", "预加载1分钟线"))
949
- self.preload_min15_checkBox.setText(_translate("MainWindow", "预加载15分钟线"))
950
- self.preload_min60_checkBox.setText(_translate("MainWindow", "预加载60分钟线"))
951
- self.label_29.setText(_translate("MainWindow", "最大缓存数量:"))
952
- self.preload_week_checkBox.setText(_translate("MainWindow", "预加载周线"))
953
- self.preload_quarter_checkBox.setText(_translate("MainWindow", "预加载季线"))
954
- self.label_31.setText(_translate("MainWindow", "最大缓存数量:"))
955
- self.label_25.setText(_translate("MainWindow", "最大缓存数量:"))
956
- self.preload_month_checkBox.setText(_translate("MainWindow", "预加载月线"))
957
- self.label_30.setText(_translate("MainWindow", "最大缓存数量:"))
958
- self.label_42.setText(_translate("MainWindow", "最大缓存数量:"))
959
- self.label_32.setText(_translate("MainWindow", "最大缓存数量:"))
960
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), _translate("MainWindow", "预加载设置"))
961
- self.collect_start_pushButton.setText(_translate("MainWindow", "启动采集"))
962
- self.collect_status_label.setText(_translate("MainWindow", "TextLabel"))
963
- self.label_39.setText(_translate("MainWindow", "行情数据源:"))
964
- self.collect_source_comboBox.setItemText(0, _translate("MainWindow", "qq"))
965
- self.collect_source_comboBox.setItemText(1, _translate("MainWindow", "qmt"))
966
- self.label_23.setText(_translate("MainWindow", "采集间隔(秒):"))
967
- self.label_21.setText(_translate("MainWindow", "执行时间段1:"))
968
- self.label_22.setText(_translate("MainWindow", "-"))
969
- self.label_37.setText(_translate("MainWindow", "执行时间段2:"))
970
- self.label_38.setText(_translate("MainWindow", "-"))
971
- self.collect_use_zhima_checkBox.setText(_translate("MainWindow", "使用芝麻代理"))
972
- self.textBrowser.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
1360
+ "</style></head><body style=\" font-size:13pt; font-weight:400; font-style:normal;\">\n"
1361
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc1\u65e5\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1362
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6df1\u8bc1\u65e5\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1363
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; "
1364
+ "text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc15\u5206\u949f\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1365
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6df1\u8bc15\u5206\u949f\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1366
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc11\u5206\u949f\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1367
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6df1\u8bc11\u5206\u949f\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1368
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc1\u5206\u7b14\u8bb0\u5f55\uff1a"
1369
+ "</span></p>\n"
1370
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6df1\u8bc1\u5206\u7b14\u8bb0\u5f55\uff1a</span></p>\n"
1371
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc1\u5206\u65f6\u6570\u636e\uff1a</span></p>\n"
1372
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6df1\u8bc1\u5206\u65f6\u6570\u636e\uff1a</span></p>\n"
1373
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u6743\u606f\u6570\u636e\u6570\uff1a</span></p>\n"
1374
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><s"
1375
+ "pan style=\" font-size:9pt;\">\u5bfc\u5165\u5b8c\u6bd5\uff01</span></p></body></html>", None))
1376
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), QCoreApplication.translate("MainWindow", u"\u6267\u884c\u5bfc\u5165", None))
1377
+ self.groupBox_6.setTitle(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u8bbe\u7f6e", None))
1378
+ self.label_35.setText(QCoreApplication.translate("MainWindow", u"\u6b64\u5904\u4e3a Hikyuu \u8fd0\u884c\u65f6\u7684\u6570\u636e\u9884\u52a0\u8f7d\u8bbe\u7f6e\uff0c\u8bf7\u6839\u636e\u673a\u5668\u5185\u5b58\u5927\u5c0f\u9009\u62e9", None))
1379
+ self.label_36.setText(QCoreApplication.translate("MainWindow", u"\uff08\u76ee\u524d\u52a0\u8f7d\u5168\u90e8\u65e5\u7ebf\u6570\u636e\u76ee\u524d\u9700\u8981\u7ea6\u9700900M\u5185\u5b58\uff09", None))
1380
+ self.preload_min5_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d5\u5206\u949f\u7ebf", None))
1381
+ self.label_33.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1382
+ self.label_26.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1383
+ self.label_27.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1384
+ self.preload_year_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5e74\u7ebf", None))
1385
+ self.preload_min30_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d30\u5206\u949f\u7ebf", None))
1386
+ self.label_28.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1387
+ self.save_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u4fdd\u5b58\u8bbe\u7f6e", None))
1388
+ self.label_34.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1389
+ self.preload_hour2_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d120\u5206\u949f\u7ebf", None))
1390
+ self.preload_halfyear_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u534a\u5e74\u7ebf", None))
1391
+ self.preload_day_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u65e5\u7ebf", None))
1392
+ self.label_24.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1393
+ self.preload_min1_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d1\u5206\u949f\u7ebf", None))
1394
+ self.preload_min15_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d15\u5206\u949f\u7ebf", None))
1395
+ self.preload_min60_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d60\u5206\u949f\u7ebf", None))
1396
+ self.label_29.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1397
+ self.preload_week_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5468\u7ebf", None))
1398
+ self.preload_quarter_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5b63\u7ebf", None))
1399
+ self.label_31.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1400
+ self.label_25.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1401
+ self.preload_month_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u6708\u7ebf", None))
1402
+ self.label_30.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1403
+ self.label_42.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1404
+ self.label_32.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1405
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u8bbe\u7f6e", None))
1406
+ self.collect_start_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u542f\u52a8\u91c7\u96c6", None))
1407
+ self.collect_status_label.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1408
+ self.label_39.setText(QCoreApplication.translate("MainWindow", u"\u884c\u60c5\u6570\u636e\u6e90\uff1a", None))
1409
+ self.collect_source_comboBox.setItemText(0, QCoreApplication.translate("MainWindow", u"qq", None))
1410
+ self.collect_source_comboBox.setItemText(1, QCoreApplication.translate("MainWindow", u"qmt", None))
1411
+
1412
+ self.label_23.setText(QCoreApplication.translate("MainWindow", u"\u91c7\u96c6\u95f4\u9694\uff08\u79d2\uff09\uff1a", None))
1413
+ self.label_21.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65f6\u95f4\u6bb51\uff1a", None))
1414
+ self.label_22.setText(QCoreApplication.translate("MainWindow", u"-", None))
1415
+ self.label_37.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65f6\u95f4\u6bb52\uff1a", None))
1416
+ self.label_38.setText(QCoreApplication.translate("MainWindow", u"-", None))
1417
+ self.collect_use_zhima_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528\u829d\u9ebb\u4ee3\u7406", None))
1418
+ self.textBrowser.setHtml(QCoreApplication.translate("MainWindow", u"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
973
1419
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
974
1420
  "p, li { white-space: pre-wrap; }\n"
975
1421
  "hr { height: 1px; border-width: 0; }\n"
976
1422
  "li.unchecked::marker { content: \"\\2610\"; }\n"
977
1423
  "li.checked::marker { content: \"\\2612\"; }\n"
978
- "</style></head><body style=\" font-family:\'Microsoft YaHei UI\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
979
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">注:</span></p>\n"
980
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\'; font-size:10pt; font-weight:600; color:#ff0000;\">1、行情采集服务仅对预加载数据有效</span><span style=\" font-family:\'SimSun\';\">,在行情采集服务运行期间,hikyuu.interactive运行时将自动连接采集服务获取行情数据,并更新预加载的内容数据。</span></p>\n"
981
- "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'SimSun\';\"><br /></p>\n"
982
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\';\">2、如使用芝麻代理(</span><a href=\"http://h.zhimaruanjian.com/\"><span style=\" font-family:\'SimSun\'; text-decoration: underline; color:#0000ff;\">http://h.zhimaruanjian.com/</span></a><span style=\" font-family:\'SimSun\';\">),请自行申请(需付费),并确保ip为其白名单。</span></p>\n"
983
- "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'SimSun\';\"><br /></p>\n"
984
- "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'SimSun\'; font-weight:696; color:#0000ff;\">3、此处采集为网络采集,更推荐直接运行安装目录下gui子目录下的 start_qmt.py ,使用miniqmt 实时服务。该程序独立运行,不用关闭,和这里的采集效果一样。注意:miniqmt需要QMT交易端配合,且在同一机器上执行。</span></p></body></html>"))
985
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "行情采集服务"))
986
- self.label_46.setText(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
1424
+ "</style></head><body style=\" font-size:13pt; font-weight:400; font-style:normal;\">\n"
1425
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">\u6ce8\uff1a</span></p>\n"
1426
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt; font-weight:600; color:#ff0000;\">1\u3001\u884c\u60c5\u91c7\u96c6\u670d\u52a1\u4ec5\u5bf9\u9884\u52a0\u8f7d\u6570\u636e\u6709\u6548</span><span style=\" font-size:9pt;\">\uff0c\u5728\u884c\u60c5\u91c7\u96c6\u670d\u52a1"
1427
+ "\u8fd0\u884c\u671f\u95f4\uff0chikyuu.interactive\u8fd0\u884c\u65f6\u5c06\u81ea\u52a8\u8fde\u63a5\u91c7\u96c6\u670d\u52a1\u83b7\u53d6\u884c\u60c5\u6570\u636e\uff0c\u5e76\u66f4\u65b0\u9884\u52a0\u8f7d\u7684\u5185\u5bb9\u6570\u636e\u3002</span></p>\n"
1428
+ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;\"><br /></p>\n"
1429
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt;\">2\u3001\u5982\u4f7f\u7528\u829d\u9ebb\u4ee3\u7406\uff08</span><a href=\"http://h.zhimaruanjian.com/\"><span style=\" font-size:9pt; text-decoration: underline; color:#0000ff;\">http://h.zhimaruanjian.com/</span></a><span style=\" font-size:9pt;\">\uff09\uff0c\u8bf7\u81ea\u884c\u7533\u8bf7\uff08\u9700\u4ed8\u8d39\uff09\uff0c\u5e76\u786e\u4fddip\u4e3a\u5176\u767d\u540d\u5355\u3002</span></p>\n"
1430
+ "<p style=\"-qt-paragraph-type:empty; margin-top:0"
1431
+ "px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;\"><br /></p>\n"
1432
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:9pt; font-weight:696; color:#0000ff;\">3\u3001\u6b64\u5904\u91c7\u96c6\u4e3a\u7f51\u7edc\u91c7\u96c6\uff0c\u66f4\u63a8\u8350\u76f4\u63a5\u8fd0\u884c\u5b89\u88c5\u76ee\u5f55\u4e0bgui\u5b50\u76ee\u5f55\u4e0b\u7684 start_qmt.py ,\u4f7f\u7528miniqmt \u5b9e\u65f6\u670d\u52a1\u3002\u8be5\u7a0b\u5e8f\u72ec\u7acb\u8fd0\u884c\uff0c\u4e0d\u7528\u5173\u95ed\uff0c\u548c\u8fd9\u91cc\u7684\u91c7\u96c6\u6548\u679c\u4e00\u6837\u3002\u6ce8\u610f\uff1aminiqmt\u9700\u8981QMT\u4ea4\u6613\u7aef\u914d\u5408\uff0c\u4e14\u5728\u540c\u4e00\u673a\u5668\u4e0a\u6267\u884c\u3002</span></p></body></html>", None))
1433
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), QCoreApplication.translate("MainWindow", u"\u884c\u60c5\u91c7\u96c6\u670d\u52a1", None))
1434
+ self.label_46.setText(QCoreApplication.translate("MainWindow", u"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
987
1435
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
988
1436
  "p, li { white-space: pre-wrap; }\n"
989
1437
  "hr { height: 1px; border-width: 0; }\n"
990
1438
  "li.unchecked::marker { content: \"\\2610\"; }\n"
991
1439
  "li.checked::marker { content: \"\\2612\"; }\n"
992
- "</style></head><body style=\" font-family:\'Arial\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
993
- "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt;\">Hikyuu </span><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt; font-weight:700;\">专注于量化交易领域的核心技术构建,涵盖交易模型开发、极速计算引擎、高效回测框架及实盘拓展能力</span><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt;\">,定位为量化交易的基础设施级计算引擎,为量化交易爱好者提供高性能底层架构支持。随着社区规模扩大,分散了作者在策略研究上的精力。为保障项目的可持续性,现对捐赠用户提供部分额外功能作为回馈,感谢社区伙伴的支持!</span></p>\n"
994
- "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt;\">捐赠功能以插件的方式提供,采用独立授权许可,完全在 hikyuu 之外,对喜欢自行编译扩展的朋友没有影响。因插件许可授权需要采集硬件信息,如有疑虑只要不申请试用许可和正式许可授权,不会触发硬件信息采集,如申请,视为同意采集。</span></p>\n"
995
- "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt; font-weight:700;\">详情参见:</span><a href=\"https://hikyuu.readthedocs.io/zh-cn/latest/vip/vip-plan.html\"><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt; text-decoration: underline; color:#3586ff;\">捐赠权益</span></a><span style=\" font-family:\'.AppleSystemUIFont\'; font-size:10pt; font-weight:700;\"> ,感谢大家的支持!</span></p></body></html>"))
996
- self.label_47.setText(_translate("MainWindow", "申请捐赠功能试用(30天试用)"))
997
- self.label_45.setText(_translate("MainWindow", "电子邮件地址:"))
998
- self.fetch_trial_pushButton.setText(_translate("MainWindow", "申请试用许可"))
999
- self.label_48.setText(_translate("MainWindow", "加入知识星球进行捐赠(可同时在3台设备上使用捐赠功能)"))
1000
- self.label_49.setText(_translate("MainWindow", "当前捐赠授权信息"))
1001
- self.label_license.setText(_translate("MainWindow", "TextLabel"))
1002
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_star), _translate("MainWindow", "项目捐赠"))
1003
- self.label_41.setText(_translate("MainWindow", "执行日志"))
1440
+ "</style></head><body style=\" font-family:'Arial'; font-size:13pt; font-weight:400; font-style:normal;\">\n"
1441
+ "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:12pt;\">Hikyuu </span><span style=\" font-size:12pt; font-weight:700;\">\u4e13\u6ce8\u4e8e\u91cf\u5316\u4ea4\u6613\u9886\u57df\u7684\u6838\u5fc3\u6280\u672f\u6784\u5efa\uff0c\u6db5\u76d6\u4ea4\u6613\u6a21\u578b\u5f00\u53d1\u3001\u6781\u901f\u8ba1\u7b97\u5f15\u64ce\u3001\u9ad8\u6548\u56de\u6d4b\u6846\u67b6\u53ca\u5b9e\u76d8\u62d3\u5c55\u80fd\u529b</span><span style=\" font-size"
1442
+ ":12pt;\">\uff0c\u5b9a\u4f4d\u4e3a\u91cf\u5316\u4ea4\u6613\u7684\u57fa\u7840\u8bbe\u65bd\u7ea7\u8ba1\u7b97\u5f15\u64ce\uff0c\u4e3a\u91cf\u5316\u4ea4\u6613\u7231\u597d\u8005\u63d0\u4f9b\u9ad8\u6027\u80fd\u5e95\u5c42\u67b6\u6784\u652f\u6301\u3002\u968f\u7740\u793e\u533a\u89c4\u6a21\u6269\u5927\uff0c\u5206\u6563\u4e86\u4f5c\u8005\u5728\u7b56\u7565\u7814\u7a76\u4e0a\u7684\u7cbe\u529b\u3002\u4e3a\u4fdd\u969c\u9879\u76ee\u7684\u53ef\u6301\u7eed\u6027\uff0c\u73b0\u5bf9\u6350\u8d60\u7528\u6237\u63d0\u4f9b\u90e8\u5206\u989d\u5916\u529f\u80fd\u4f5c\u4e3a\u56de\u9988\uff0c\u611f\u8c22\u793e\u533a\u4f19\u4f34\u7684\u652f\u6301\uff01</span></p>\n"
1443
+ "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:12pt;\">\u6350\u8d60\u529f\u80fd\u4ee5\u63d2\u4ef6\u7684\u65b9\u5f0f\u63d0\u4f9b\uff0c\u91c7\u7528\u72ec\u7acb\u6388\u6743\u8bb8\u53ef\uff0c\u5b8c\u5168\u5728 hikyuu \u4e4b\u5916\uff0c\u5bf9\u559c\u6b22\u81ea\u884c\u7f16\u8bd1\u6269\u5c55"
1444
+ "\u7684\u670b\u53cb\u6ca1\u6709\u5f71\u54cd\u3002\u56e0\u63d2\u4ef6\u8bb8\u53ef\u6388\u6743\u9700\u8981\u91c7\u96c6\u786c\u4ef6\u4fe1\u606f\uff0c\u5982\u6709\u7591\u8651\u53ea\u8981\u4e0d\u7533\u8bf7\u8bd5\u7528\u8bb8\u53ef\u548c\u6b63\u5f0f\u8bb8\u53ef\u6388\u6743\uff0c\u4e0d\u4f1a\u89e6\u53d1\u786c\u4ef6\u4fe1\u606f\u91c7\u96c6\uff0c\u5982\u7533\u8bf7\uff0c\u89c6\u4e3a\u540c\u610f\u91c7\u96c6\u3002</span></p>\n"
1445
+ "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:12pt; font-weight:700;\">\u8be6\u60c5\u53c2\u89c1\uff1a</span><a href=\"https://hikyuu.readthedocs.io/zh-cn/latest/vip/vip-plan.html\"><span style=\" font-size:12pt; text-decoration: underline; color:#3586ff;\">\u6350\u8d60\u6743\u76ca</span></a><span style=\" font-size:12pt; font-weight:700;\"> \uff0c\u611f\u8c22\u5927\u5bb6\u7684\u652f\u6301\uff01</span></p></body></html>", None))
1446
+ self.label_47.setText(QCoreApplication.translate("MainWindow", u"\u7533\u8bf7\u6350\u8d60\u529f\u80fd\u8bd5\u7528\uff0830\u5929\u8bd5\u7528\uff09", None))
1447
+ self.label_45.setText(QCoreApplication.translate("MainWindow", u"\u7535\u5b50\u90ae\u4ef6\u5730\u5740:", None))
1448
+ self.fetch_trial_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u7533\u8bf7\u8bd5\u7528\u8bb8\u53ef", None))
1449
+ self.label_48.setText(QCoreApplication.translate("MainWindow", u"\u52a0\u5165\u77e5\u8bc6\u661f\u7403\u8fdb\u884c\u6350\u8d60\uff08\u53ef\u540c\u65f6\u57283\u53f0\u8bbe\u5907\u4e0a\u4f7f\u7528\u6350\u8d60\u529f\u80fd\uff09", None))
1450
+ self.label_44.setText("")
1451
+ self.label_49.setText(QCoreApplication.translate("MainWindow", u"\u5f53\u524d\u6350\u8d60\u6388\u6743\u4fe1\u606f", None))
1452
+ self.label_license.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1453
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_star), QCoreApplication.translate("MainWindow", u"\u9879\u76ee\u6350\u8d60", None))
1454
+ self.label_41.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65e5\u5fd7", None))
1455
+ # retranslateUi
1456
+