hikyuu 2.6.8.5__py3-none-win_amd64.whl → 2.7.0__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 (201) hide show
  1. hikyuu/__init__.py +31 -16
  2. hikyuu/__init__.pyi +610 -590
  3. hikyuu/analysis/__init__.pyi +584 -563
  4. hikyuu/analysis/analysis.pyi +585 -564
  5. hikyuu/core.py +2 -0
  6. hikyuu/core.pyi +586 -565
  7. hikyuu/cpp/__init__.pyi +2 -2
  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 +501 -104
  14. hikyuu/cpp/core311.pyd +0 -0
  15. hikyuu/cpp/core311.pyi +501 -104
  16. hikyuu/cpp/core312.pyd +0 -0
  17. hikyuu/cpp/core312.pyi +501 -104
  18. hikyuu/cpp/core313.pyd +0 -0
  19. hikyuu/cpp/core313.pyi +501 -104
  20. hikyuu/cpp/hikyuu.dll +0 -0
  21. hikyuu/cpp/hikyuu.lib +0 -0
  22. hikyuu/cpp/i18n/zh_CN/hikyuu.mo +0 -0
  23. hikyuu/data/clickhouse_upgrade/createdb.sql +105 -105
  24. hikyuu/data/common.py +3 -3
  25. hikyuu/data/common_clickhouse.py +1 -1
  26. hikyuu/data/download_block.py +351 -0
  27. hikyuu/data/em_block_to_clickhouse.py +26 -74
  28. hikyuu/data/em_block_to_mysql.py +25 -75
  29. hikyuu/data/em_block_to_sqlite.py +26 -78
  30. hikyuu/data/hku_config_template.py +3 -3
  31. hikyuu/data/pytdx_to_clickhouse.py +15 -11
  32. hikyuu/data/pytdx_to_h5.py +6 -2
  33. hikyuu/data/pytdx_to_mysql.py +5 -1
  34. hikyuu/data/pytdx_weight_to_clickhouse.py +1 -1
  35. hikyuu/data/pytdx_weight_to_mysql.py +1 -1
  36. hikyuu/data/pytdx_weight_to_sqlite.py +1 -1
  37. hikyuu/data/zh_bond10_to_clickhouse.py +1 -1
  38. hikyuu/draw/drawplot/__init__.pyi +8 -8
  39. hikyuu/draw/drawplot/bokeh_draw.pyi +600 -580
  40. hikyuu/draw/drawplot/common.pyi +1 -1
  41. hikyuu/draw/drawplot/echarts_draw.pyi +602 -582
  42. hikyuu/draw/drawplot/matplotlib_draw.py +4 -74
  43. hikyuu/draw/drawplot/matplotlib_draw.pyi +612 -592
  44. hikyuu/draw/elder.pyi +11 -11
  45. hikyuu/draw/kaufman.pyi +18 -18
  46. hikyuu/draw/volume.pyi +10 -10
  47. hikyuu/examples/notebook/Demo/Demo1.ipynb +48 -33
  48. hikyuu/extend.py +0 -8
  49. hikyuu/extend.pyi +594 -574
  50. hikyuu/fetcher/stock/zh_block_em.py +12 -40
  51. hikyuu/gui/HikyuuTDX.py +99 -31
  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 +1196 -717
  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/gui/images/liandongxiaopu.png +0 -0
  63. hikyuu/hub.pyi +6 -6
  64. hikyuu/include/hikyuu/DataType.h +4 -16
  65. hikyuu/include/hikyuu/KData.h +6 -3
  66. hikyuu/include/hikyuu/KDataPrivatedBufferImp.h +1 -1
  67. hikyuu/include/hikyuu/KDataSharedBufferImp.h +1 -1
  68. hikyuu/include/hikyuu/KQuery.h +2 -2
  69. hikyuu/include/hikyuu/Stock.h +4 -1
  70. hikyuu/include/hikyuu/StockManager.h +13 -3
  71. hikyuu/include/hikyuu/config.h +0 -3
  72. hikyuu/include/hikyuu/data_driver/BaseInfoDriver.h +8 -0
  73. hikyuu/include/hikyuu/data_driver/BlockInfoDriver.h +6 -0
  74. hikyuu/include/hikyuu/data_driver/KDataDriver.h +26 -1
  75. hikyuu/include/hikyuu/data_driver/base_info/mysql/MySQLBaseInfoDriver.h +1 -1
  76. hikyuu/include/hikyuu/data_driver/base_info/sqlite/SQLiteBaseInfoDriver.h +1 -1
  77. hikyuu/include/hikyuu/data_driver/block_info/mysql/MySQLBlockInfoDriver.h +2 -1
  78. hikyuu/include/hikyuu/data_driver/block_info/qianlong/QLBlockInfoDriver.h +2 -1
  79. hikyuu/include/hikyuu/data_driver/block_info/sqlite/SQLiteBlockInfoDriver.h +2 -1
  80. hikyuu/include/hikyuu/data_driver/kdata/DoNothingKDataDriver.h +1 -1
  81. hikyuu/include/hikyuu/data_driver/kdata/cvs/KDataTempCsvDriver.h +1 -1
  82. hikyuu/include/hikyuu/data_driver/kdata/hdf5/H5KDataDriver.h +1 -1
  83. hikyuu/include/hikyuu/data_driver/kdata/mysql/MySQLKDataDriver.h +1 -1
  84. hikyuu/include/hikyuu/data_driver/kdata/sqlite/SQLiteKDataDriver.h +1 -1
  85. hikyuu/include/hikyuu/data_driver/kdata/tdx/TdxKDataDriver.h +1 -1
  86. hikyuu/include/hikyuu/hikyuu.h +1 -1
  87. hikyuu/include/hikyuu/indicator/build_in.h +1 -0
  88. hikyuu/include/hikyuu/indicator/crt/CYCLE.h +4 -4
  89. hikyuu/include/hikyuu/indicator/crt/HSL.h +2 -2
  90. hikyuu/include/hikyuu/indicator/crt/QUANTILE_TRUNC.h +30 -0
  91. hikyuu/include/hikyuu/indicator/crt/TURNOVER.h +1 -0
  92. hikyuu/include/hikyuu/indicator/crt/ZSCORE.h +2 -2
  93. hikyuu/include/hikyuu/indicator/imp/IQuantileTrunc.h +25 -0
  94. hikyuu/include/hikyuu/misc.h +38 -0
  95. hikyuu/include/hikyuu/plugin/dataserver.h +2 -1
  96. hikyuu/include/hikyuu/plugin/device.h +10 -0
  97. hikyuu/include/hikyuu/plugin/extind.h +37 -0
  98. hikyuu/include/hikyuu/plugin/interface/DataServerPluginInterface.h +2 -2
  99. hikyuu/include/hikyuu/plugin/interface/DevicePluginInterface.h +2 -0
  100. hikyuu/include/hikyuu/plugin/interface/ExtendIndicatorsPluginInterface.h +12 -0
  101. hikyuu/include/hikyuu/plugin/interface/plugins.h +0 -5
  102. hikyuu/include/hikyuu/python/pybind_utils.h +0 -12
  103. hikyuu/include/hikyuu/strategy/RunSystemInStrategy.h +3 -0
  104. hikyuu/include/hikyuu/trade_manage/Performance.h +4 -4
  105. hikyuu/include/hikyuu/trade_manage/TradeManagerBase.h +10 -1
  106. hikyuu/include/hikyuu/trade_sys/moneymanager/imp/FixedCapitalFundsMM.h +0 -4
  107. hikyuu/include/hikyuu/trade_sys/multifactor/MultiFactorBase.h +36 -3
  108. hikyuu/include/hikyuu/trade_sys/multifactor/NormalizeBase.h +125 -0
  109. hikyuu/include/hikyuu/trade_sys/multifactor/ScoresFilterBase.h +125 -0
  110. hikyuu/include/hikyuu/trade_sys/multifactor/build_in.h +3 -0
  111. hikyuu/include/hikyuu/trade_sys/multifactor/buildin_norm.h +36 -0
  112. hikyuu/include/hikyuu/trade_sys/multifactor/buildin_scfilter.h +51 -0
  113. hikyuu/include/hikyuu/trade_sys/multifactor/filter/GroupSCFilter.h +24 -0
  114. hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreLessOrEqualValueSCFilter.h +24 -0
  115. hikyuu/include/hikyuu/trade_sys/multifactor/filter/IgnoreNanSCFilter.h +24 -0
  116. hikyuu/include/hikyuu/trade_sys/multifactor/filter/MinAmountPercentSCFilter.h +25 -0
  117. hikyuu/include/hikyuu/trade_sys/multifactor/filter/PriceSCFilter.h +24 -0
  118. hikyuu/include/hikyuu/trade_sys/multifactor/filter/TopNSCFilter.h +24 -0
  119. hikyuu/include/hikyuu/trade_sys/multifactor/imp/EqualWeightMultiFactor.h +1 -1
  120. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICIRMultiFactor.h +1 -1
  121. hikyuu/include/hikyuu/trade_sys/multifactor/imp/ICMultiFactor.h +1 -1
  122. hikyuu/include/hikyuu/trade_sys/multifactor/imp/WeightMultiFactor.h +1 -1
  123. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormMinMax.h +23 -0
  124. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantile.h +28 -0
  125. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormQuantileUniform.h +28 -0
  126. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/NormZScore.h +25 -0
  127. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/__init__.py +1 -0
  128. hikyuu/include/hikyuu/trade_sys/multifactor/normalize/quantile_trunc.h +16 -0
  129. hikyuu/include/hikyuu/trade_sys/portfolio/Portfolio.h +7 -0
  130. hikyuu/include/hikyuu/trade_sys/portfolio/imp/SimplePortfolio.h +7 -0
  131. hikyuu/include/hikyuu/trade_sys/portfolio/imp/WithoutAFPortfolio.h +7 -0
  132. hikyuu/include/hikyuu/trade_sys/selector/SelectorBase.h +49 -0
  133. hikyuu/include/hikyuu/trade_sys/selector/build_in.h +1 -0
  134. hikyuu/include/hikyuu/trade_sys/selector/crt/SE_MultiFactor2.h +40 -0
  135. hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector.h +0 -3
  136. hikyuu/include/hikyuu/trade_sys/selector/imp/MultiFactorSelector2.h +49 -0
  137. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorSelector.h +1 -1
  138. hikyuu/include/hikyuu/trade_sys/selector/imp/logic/OperatorValueSelector.h +1 -1
  139. hikyuu/include/hikyuu/trade_sys/signal/imp/BandSignal2.h +0 -4
  140. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/AddValueSignal.h +2 -2
  141. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/DivValueSignal.h +2 -2
  142. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/MulValueSignal.h +2 -2
  143. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorSignal.h +1 -1
  144. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/OperatorValueSignal.h +4 -4
  145. hikyuu/include/hikyuu/trade_sys/signal/imp/logic/SubValueSignal.h +2 -2
  146. hikyuu/include/hikyuu/trade_sys/slippage/build_in.h +5 -1
  147. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_LogNormal.h +22 -0
  148. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_Normal.h +22 -0
  149. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_TruncNormal.h +25 -0
  150. hikyuu/include/hikyuu/trade_sys/slippage/crt/SP_Uniform.h +23 -0
  151. hikyuu/include/hikyuu/trade_sys/slippage/imp/LogNormalSlippage.h +28 -0
  152. hikyuu/include/hikyuu/trade_sys/slippage/imp/NormalSlippage.h +28 -0
  153. hikyuu/include/hikyuu/trade_sys/slippage/imp/TruncNormalSlippage.h +28 -0
  154. hikyuu/include/hikyuu/trade_sys/slippage/imp/UniformSlippage.h +24 -0
  155. hikyuu/include/hikyuu/trade_sys/system/System.h +14 -1
  156. hikyuu/include/hikyuu/utilities/SpendTimer.h +17 -7
  157. hikyuu/include/hikyuu/utilities/arithmetic.h +45 -0
  158. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLConnect.h +1 -1
  159. hikyuu/include/hikyuu/utilities/db_connect/mysql/MySQLStatement.h +1 -1
  160. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteConnect.h +1 -1
  161. hikyuu/include/hikyuu/utilities/db_connect/sqlite/SQLiteStatement.h +1 -1
  162. hikyuu/include/hikyuu/utilities/plugin/PluginLoader.h +4 -1
  163. hikyuu/include/hikyuu/version.h +5 -5
  164. hikyuu/plugin/backtest.dll +0 -0
  165. hikyuu/plugin/clickhousedriver.dll +0 -0
  166. hikyuu/plugin/dataserver.dll +0 -0
  167. hikyuu/plugin/dataserver_parquet.dll +0 -0
  168. hikyuu/plugin/device.dll +0 -0
  169. hikyuu/plugin/extind.dll +0 -0
  170. hikyuu/plugin/hkuextra.dll +0 -0
  171. hikyuu/plugin/import2hdf5.dll +0 -0
  172. hikyuu/plugin/tmreport.dll +0 -0
  173. hikyuu/trade_manage/__init__.pyi +600 -580
  174. hikyuu/trade_manage/broker.pyi +3 -3
  175. hikyuu/trade_manage/broker_easytrader.pyi +1 -1
  176. hikyuu/trade_manage/trade.py +0 -2
  177. hikyuu/trade_manage/trade.pyi +600 -580
  178. hikyuu/util/__init__.pyi +2 -2
  179. hikyuu/util/singleton.pyi +1 -1
  180. {hikyuu-2.6.8.5.dist-info → hikyuu-2.7.0.dist-info}/METADATA +36 -33
  181. {hikyuu-2.6.8.5.dist-info → hikyuu-2.7.0.dist-info}/RECORD +185 -168
  182. {hikyuu-2.6.8.5.dist-info → hikyuu-2.7.0.dist-info}/top_level.txt +2 -2
  183. hikyuu/cpp/core39.pyd +0 -0
  184. hikyuu/cpp/core39.pyi +0 -14381
  185. hikyuu/data_driver/__init__.py +0 -49
  186. hikyuu/data_driver/jqdata_data_driver.py +0 -277
  187. hikyuu/data_driver/pytdx_data_driver.py +0 -292
  188. hikyuu/fetcher/stock/zh_stock_a_huatai.py +0 -51
  189. hikyuu/fetcher/stock/zh_stock_a_pytdx.py +0 -129
  190. hikyuu/gui/data/CollectToMemThread.py +0 -123
  191. hikyuu/gui/data/CollectToMySQLThread.py +0 -178
  192. hikyuu/gui/start_huatai_insight.py +0 -510
  193. hikyuu/include/hikyuu/plugin/hkuviews.h +0 -36
  194. hikyuu/include/hikyuu/plugin/interface/HkuViewsPluginInterface.h +0 -34
  195. hikyuu/include/hikyuu/views/arrow_common.h +0 -38
  196. hikyuu/include/hikyuu/views/arrow_views.h +0 -117
  197. hikyuu/plugin/hkuviews.dll +0 -0
  198. hikyuu/tools/update_block_info.py +0 -168
  199. /hikyuu/include/hikyuu/{views → trade_sys/multifactor/filter}/__init__.py +0 -0
  200. {hikyuu-2.6.8.5.dist-info → hikyuu-2.7.0.dist-info}/WHEEL +0 -0
  201. {hikyuu-2.6.8.5.dist-info → hikyuu-2.7.0.dist-info}/entry_points.txt +0 -0
@@ -1,1003 +1,1482 @@
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.10.0
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, QLayout, QLineEdit,
21
+ QMainWindow, QProgressBar, QPushButton, QRadioButton,
22
+ QSizePolicy, QSpacerItem, QSpinBox, QTabWidget,
23
+ QTextBrowser, QTextEdit, QTimeEdit, QVBoxLayout,
24
+ QWidget)
13
25
 
14
26
  class Ui_MainWindow(object):
15
27
  def setupUi(self, MainWindow):
16
- MainWindow.setObjectName("MainWindow")
17
- 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)
28
+ if not MainWindow.objectName():
29
+ MainWindow.setObjectName(u"MainWindow")
30
+ MainWindow.resize(1139, 713)
31
+ self.centralwidget = QWidget(MainWindow)
32
+ self.centralwidget.setObjectName(u"centralwidget")
33
+ self.horizontalLayout_12 = QHBoxLayout(self.centralwidget)
34
+ self.horizontalLayout_12.setObjectName(u"horizontalLayout_12")
35
+ self.tabWidget = QTabWidget(self.centralwidget)
36
+ self.tabWidget.setObjectName(u"tabWidget")
23
37
  self.tabWidget.setEnabled(True)
24
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding)
38
+ sizePolicy = QSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Expanding)
25
39
  sizePolicy.setHorizontalStretch(0)
26
40
  sizePolicy.setVerticalStretch(0)
27
41
  sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth())
28
42
  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()
43
+ self.tab_4 = QWidget()
44
+ self.tab_4.setObjectName(u"tab_4")
45
+ self.verticalLayout_13 = QVBoxLayout(self.tab_4)
46
+ self.verticalLayout_13.setObjectName(u"verticalLayout_13")
47
+ self.groupBox_2 = QGroupBox(self.tab_4)
48
+ self.groupBox_2.setObjectName(u"groupBox_2")
49
+ sizePolicy1 = QSizePolicy(QSizePolicy.Policy.Preferred, QSizePolicy.Policy.Fixed)
50
+ sizePolicy1.setHorizontalStretch(0)
51
+ sizePolicy1.setVerticalStretch(0)
52
+ sizePolicy1.setHeightForWidth(self.groupBox_2.sizePolicy().hasHeightForWidth())
53
+ self.groupBox_2.setSizePolicy(sizePolicy1)
54
+ self.verticalLayout_12 = QVBoxLayout(self.groupBox_2)
55
+ self.verticalLayout_12.setObjectName(u"verticalLayout_12")
56
+ self.horizontalLayout = QHBoxLayout()
57
+ self.horizontalLayout.setObjectName(u"horizontalLayout")
44
58
  self.horizontalLayout.setContentsMargins(10, 10, -1, -1)
45
- self.horizontalLayout.setObjectName("horizontalLayout")
46
- self.pytdx_radioButton = QtWidgets.QRadioButton(self.groupBox_2)
59
+ self.pytdx_radioButton = QRadioButton(self.groupBox_2)
60
+ self.pytdx_radioButton.setObjectName(u"pytdx_radioButton")
47
61
  self.pytdx_radioButton.setEnabled(True)
48
- self.pytdx_radioButton.setObjectName("pytdx_radioButton")
62
+
49
63
  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")
64
+
65
+ self.label_16 = QLabel(self.groupBox_2)
66
+ self.label_16.setObjectName(u"label_16")
67
+ self.label_16.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)
68
+
53
69
  self.horizontalLayout.addWidget(self.label_16)
54
- self.use_tdx_number_spinBox = QtWidgets.QSpinBox(self.groupBox_2)
70
+
71
+ self.use_tdx_number_spinBox = QSpinBox(self.groupBox_2)
72
+ self.use_tdx_number_spinBox.setObjectName(u"use_tdx_number_spinBox")
55
73
  self.use_tdx_number_spinBox.setMinimum(1)
56
74
  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")
75
+ self.use_tdx_number_spinBox.setValue(10)
76
+
59
77
  self.horizontalLayout.addWidget(self.use_tdx_number_spinBox)
60
- self.label_17 = QtWidgets.QLabel(self.groupBox_2)
61
- self.label_17.setObjectName("label_17")
78
+
79
+ self.label_17 = QLabel(self.groupBox_2)
80
+ self.label_17.setObjectName(u"label_17")
81
+
62
82
  self.horizontalLayout.addWidget(self.label_17)
63
- spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
64
- self.horizontalLayout.addItem(spacerItem)
83
+
84
+ self.horizontalSpacer_13 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
85
+
86
+ self.horizontalLayout.addItem(self.horizontalSpacer_13)
87
+
88
+
65
89
  self.verticalLayout_12.addLayout(self.horizontalLayout)
66
- self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
90
+
91
+ self.horizontalLayout_5 = QHBoxLayout()
92
+ self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
67
93
  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")
94
+ self.tdx_radioButton = QRadioButton(self.groupBox_2)
95
+ self.tdx_radioButton.setObjectName(u"tdx_radioButton")
96
+
71
97
  self.horizontalLayout_5.addWidget(self.tdx_radioButton)
98
+
99
+
72
100
  self.verticalLayout_12.addLayout(self.horizontalLayout_5)
73
- self.gridLayout_2 = QtWidgets.QGridLayout()
101
+
102
+ self.gridLayout_2 = QGridLayout()
103
+ self.gridLayout_2.setObjectName(u"gridLayout_2")
74
104
  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")
105
+ self.select_tdx_dir_pushButton = QPushButton(self.groupBox_2)
106
+ self.select_tdx_dir_pushButton.setObjectName(u"select_tdx_dir_pushButton")
107
+ sizePolicy1.setHeightForWidth(self.select_tdx_dir_pushButton.sizePolicy().hasHeightForWidth())
108
+ self.select_tdx_dir_pushButton.setSizePolicy(sizePolicy1)
109
+
83
110
  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")
111
+
112
+ self.label_2 = QLabel(self.groupBox_2)
113
+ self.label_2.setObjectName(u"label_2")
114
+
86
115
  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")
116
+
117
+ self.tdx_dir_lineEdit = QLineEdit(self.groupBox_2)
118
+ self.tdx_dir_lineEdit.setObjectName(u"tdx_dir_lineEdit")
119
+ sizePolicy2 = QSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed)
120
+ sizePolicy2.setHorizontalStretch(1)
121
+ sizePolicy2.setVerticalStretch(0)
122
+ sizePolicy2.setHeightForWidth(self.tdx_dir_lineEdit.sizePolicy().hasHeightForWidth())
123
+ self.tdx_dir_lineEdit.setSizePolicy(sizePolicy2)
124
+
94
125
  self.gridLayout_2.addWidget(self.tdx_dir_lineEdit, 0, 1, 1, 2)
126
+
127
+
95
128
  self.verticalLayout_12.addLayout(self.gridLayout_2)
96
- self.horizontalLayout_24 = QtWidgets.QHBoxLayout()
129
+
130
+ self.horizontalLayout_24 = QHBoxLayout()
131
+ self.horizontalLayout_24.setObjectName(u"horizontalLayout_24")
97
132
  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")
133
+ self.qmt_radioButton = QRadioButton(self.groupBox_2)
134
+ self.qmt_radioButton.setObjectName(u"qmt_radioButton")
135
+
101
136
  self.horizontalLayout_24.addWidget(self.qmt_radioButton)
137
+
138
+
102
139
  self.verticalLayout_12.addLayout(self.horizontalLayout_24)
140
+
141
+
103
142
  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()
143
+
144
+ self.groupBox_7 = QGroupBox(self.tab_4)
145
+ self.groupBox_7.setObjectName(u"groupBox_7")
146
+ self.verticalLayout_11 = QVBoxLayout(self.groupBox_7)
147
+ self.verticalLayout_11.setObjectName(u"verticalLayout_11")
148
+ self.horizontalLayout_4 = QHBoxLayout()
149
+ self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
109
150
  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")
151
+ self.import_weight_checkBox = QCheckBox(self.groupBox_7)
152
+ self.import_weight_checkBox.setObjectName(u"import_weight_checkBox")
153
+
113
154
  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")
155
+
156
+ self.import_history_finance_checkBox = QCheckBox(self.groupBox_7)
157
+ self.import_history_finance_checkBox.setObjectName(u"import_history_finance_checkBox")
158
+
116
159
  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")
160
+
161
+ self.import_block_checkBox = QCheckBox(self.groupBox_7)
162
+ self.import_block_checkBox.setObjectName(u"import_block_checkBox")
163
+
119
164
  self.horizontalLayout_4.addWidget(self.import_block_checkBox)
165
+
166
+
120
167
  self.verticalLayout_11.addLayout(self.horizontalLayout_4)
121
- self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
168
+
169
+ self.horizontalLayout_3 = QHBoxLayout()
170
+ self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
122
171
  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")
172
+ self.import_stock_checkBox = QCheckBox(self.groupBox_7)
173
+ self.import_stock_checkBox.setObjectName(u"import_stock_checkBox")
174
+
126
175
  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")
176
+
177
+ self.import_fund_checkBox = QCheckBox(self.groupBox_7)
178
+ self.import_fund_checkBox.setObjectName(u"import_fund_checkBox")
179
+
129
180
  self.horizontalLayout_3.addWidget(self.import_fund_checkBox)
130
- self.import_future_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
181
+
182
+ self.import_future_checkBox = QCheckBox(self.groupBox_7)
183
+ self.import_future_checkBox.setObjectName(u"import_future_checkBox")
131
184
  self.import_future_checkBox.setEnabled(False)
132
- self.import_future_checkBox.setObjectName("import_future_checkBox")
185
+
133
186
  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)
187
+
188
+ self.horizontalSpacer_11 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
189
+
190
+ self.horizontalLayout_3.addItem(self.horizontalSpacer_11)
191
+
192
+
136
193
  self.verticalLayout_11.addLayout(self.horizontalLayout_3)
137
- self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
194
+
195
+ self.horizontalLayout_2 = QHBoxLayout()
196
+ self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
138
197
  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")
198
+ self.import_day_checkBox = QCheckBox(self.groupBox_7)
199
+ self.import_day_checkBox.setObjectName(u"import_day_checkBox")
200
+
142
201
  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")
202
+
203
+ self.import_min5_checkBox = QCheckBox(self.groupBox_7)
204
+ self.import_min5_checkBox.setObjectName(u"import_min5_checkBox")
205
+
145
206
  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")
207
+
208
+ self.import_min_checkBox = QCheckBox(self.groupBox_7)
209
+ self.import_min_checkBox.setObjectName(u"import_min_checkBox")
210
+
148
211
  self.horizontalLayout_2.addWidget(self.import_min_checkBox)
149
- self.import_trans_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
212
+
213
+ self.import_trans_checkBox = QCheckBox(self.groupBox_7)
214
+ self.import_trans_checkBox.setObjectName(u"import_trans_checkBox")
150
215
  self.import_trans_checkBox.setEnabled(True)
151
- self.import_trans_checkBox.setObjectName("import_trans_checkBox")
216
+
152
217
  self.horizontalLayout_2.addWidget(self.import_trans_checkBox)
153
- self.import_time_checkBox = QtWidgets.QCheckBox(self.groupBox_7)
218
+
219
+ self.import_time_checkBox = QCheckBox(self.groupBox_7)
220
+ self.import_time_checkBox.setObjectName(u"import_time_checkBox")
154
221
  self.import_time_checkBox.setEnabled(True)
155
- self.import_time_checkBox.setObjectName("import_time_checkBox")
222
+
156
223
  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)
224
+
225
+ self.horizontalSpacer_12 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
226
+
227
+ self.horizontalLayout_2.addItem(self.horizontalSpacer_12)
228
+
229
+
159
230
  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")
231
+
232
+ self.line = QFrame(self.groupBox_7)
233
+ self.line.setObjectName(u"line")
234
+ self.line.setFrameShape(QFrame.Shape.HLine)
235
+ self.line.setFrameShadow(QFrame.Shadow.Sunken)
236
+
164
237
  self.verticalLayout_11.addWidget(self.line)
165
- self.gridLayout_4 = QtWidgets.QGridLayout()
238
+
239
+ self.gridLayout_4 = QGridLayout()
240
+ self.gridLayout_4.setObjectName(u"gridLayout_4")
166
241
  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")
242
+ self.label_7 = QLabel(self.groupBox_7)
243
+ self.label_7.setObjectName(u"label_7")
244
+
170
245
  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")
246
+
247
+ self.label_6 = QLabel(self.groupBox_7)
248
+ self.label_6.setObjectName(u"label_6")
249
+
173
250
  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)))
251
+
252
+ self.min5_start_dateEdit = QDateEdit(self.groupBox_7)
253
+ self.min5_start_dateEdit.setObjectName(u"min5_start_dateEdit")
254
+ self.min5_start_dateEdit.setMinimumDateTime(QDateTime(QDate(1989, 12, 21), QTime(0, 0, 0)))
176
255
  self.min5_start_dateEdit.setCalendarPopup(True)
177
- self.min5_start_dateEdit.setObjectName("min5_start_dateEdit")
256
+
178
257
  self.gridLayout_4.addWidget(self.min5_start_dateEdit, 1, 1, 1, 1)
179
- self.min_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
258
+
259
+ self.min_start_dateEdit = QDateEdit(self.groupBox_7)
260
+ self.min_start_dateEdit.setObjectName(u"min_start_dateEdit")
180
261
  self.min_start_dateEdit.setCalendarPopup(True)
181
- self.min_start_dateEdit.setObjectName("min_start_dateEdit")
262
+
182
263
  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")
264
+
265
+ self.label_3 = QLabel(self.groupBox_7)
266
+ self.label_3.setObjectName(u"label_3")
267
+
185
268
  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")
269
+
270
+ self.label_10 = QLabel(self.groupBox_7)
271
+ self.label_10.setObjectName(u"label_10")
272
+
188
273
  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")
274
+
275
+ self.label_15 = QLabel(self.groupBox_7)
276
+ self.label_15.setObjectName(u"label_15")
277
+
191
278
  self.gridLayout_4.addWidget(self.label_15, 2, 0, 1, 1)
192
- self.trans_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
279
+
280
+ self.trans_start_dateEdit = QDateEdit(self.groupBox_7)
281
+ self.trans_start_dateEdit.setObjectName(u"trans_start_dateEdit")
193
282
  self.trans_start_dateEdit.setCalendarPopup(True)
194
- self.trans_start_dateEdit.setObjectName("trans_start_dateEdit")
283
+
195
284
  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)))
285
+
286
+ self.day_start_dateEdit = QDateEdit(self.groupBox_7)
287
+ self.day_start_dateEdit.setObjectName(u"day_start_dateEdit")
288
+ self.day_start_dateEdit.setMinimumDateTime(QDateTime(QDate(1989, 12, 21), QTime(0, 0, 0)))
198
289
  self.day_start_dateEdit.setCalendarPopup(True)
199
- self.day_start_dateEdit.setObjectName("day_start_dateEdit")
290
+
200
291
  self.gridLayout_4.addWidget(self.day_start_dateEdit, 0, 1, 1, 1)
201
- self.time_start_dateEdit = QtWidgets.QDateEdit(self.groupBox_7)
292
+
293
+ self.time_start_dateEdit = QDateEdit(self.groupBox_7)
294
+ self.time_start_dateEdit.setObjectName(u"time_start_dateEdit")
202
295
  self.time_start_dateEdit.setCalendarPopup(True)
203
- self.time_start_dateEdit.setObjectName("time_start_dateEdit")
296
+
204
297
  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)
298
+
299
+ self.horizontalSpacer_9 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
300
+
301
+ self.gridLayout_4.addItem(self.horizontalSpacer_9, 1, 2, 1, 1)
302
+
303
+
207
304
  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)
305
+
306
+ self.verticalSpacer_16 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
307
+
308
+ self.verticalLayout_11.addItem(self.verticalSpacer_16)
309
+
310
+
210
311
  self.verticalLayout_13.addWidget(self.groupBox_7)
312
+
211
313
  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()
314
+ self.tab_3 = QWidget()
315
+ self.tab_3.setObjectName(u"tab_3")
316
+ self.verticalLayout_8 = QVBoxLayout(self.tab_3)
317
+ self.verticalLayout_8.setObjectName(u"verticalLayout_8")
318
+ self.groupBox_4 = QGroupBox(self.tab_3)
319
+ self.groupBox_4.setObjectName(u"groupBox_4")
320
+ sizePolicy1.setHeightForWidth(self.groupBox_4.sizePolicy().hasHeightForWidth())
321
+ self.groupBox_4.setSizePolicy(sizePolicy1)
322
+ self.groupBox_4.setMinimumSize(QSize(0, 80))
323
+ self.verticalLayout_14 = QVBoxLayout(self.groupBox_4)
324
+ self.verticalLayout_14.setObjectName(u"verticalLayout_14")
325
+ self.horizontalLayout_19 = QHBoxLayout()
326
+ self.horizontalLayout_19.setObjectName(u"horizontalLayout_19")
227
327
  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")
328
+ self.enable_hdf55_radioButton = QRadioButton(self.groupBox_4)
329
+ self.enable_hdf55_radioButton.setObjectName(u"enable_hdf55_radioButton")
330
+
231
331
  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")
332
+
333
+ self.enable_mysql_radioButton = QRadioButton(self.groupBox_4)
334
+ self.enable_mysql_radioButton.setObjectName(u"enable_mysql_radioButton")
335
+
234
336
  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")
337
+
338
+ self.enable_clickhouse_radioButton = QRadioButton(self.groupBox_4)
339
+ self.enable_clickhouse_radioButton.setObjectName(u"enable_clickhouse_radioButton")
340
+
237
341
  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)
342
+
343
+ self.horizontalSpacer_10 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
344
+
345
+ self.horizontalLayout_19.addItem(self.horizontalSpacer_10)
346
+
347
+
240
348
  self.verticalLayout_14.addLayout(self.horizontalLayout_19)
349
+
350
+
241
351
  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()
352
+
353
+ self.groupBox_3 = QGroupBox(self.tab_3)
354
+ self.groupBox_3.setObjectName(u"groupBox_3")
355
+ sizePolicy1.setHeightForWidth(self.groupBox_3.sizePolicy().hasHeightForWidth())
356
+ self.groupBox_3.setSizePolicy(sizePolicy1)
357
+ self.groupBox_3.setMinimumSize(QSize(0, 80))
358
+ self.verticalLayout_10 = QVBoxLayout(self.groupBox_3)
359
+ self.verticalLayout_10.setObjectName(u"verticalLayout_10")
360
+ self.gridLayout_3 = QGridLayout()
361
+ self.gridLayout_3.setObjectName(u"gridLayout_3")
253
362
  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")
363
+ self.hdf5_dir_lineEdit = QLineEdit(self.groupBox_3)
364
+ self.hdf5_dir_lineEdit.setObjectName(u"hdf5_dir_lineEdit")
365
+
257
366
  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")
367
+
368
+ self.hdf5_dir_pushButton = QPushButton(self.groupBox_3)
369
+ self.hdf5_dir_pushButton.setObjectName(u"hdf5_dir_pushButton")
370
+
260
371
  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")
372
+
373
+ self.label = QLabel(self.groupBox_3)
374
+ self.label.setObjectName(u"label")
375
+
263
376
  self.gridLayout_3.addWidget(self.label, 0, 0, 1, 1)
377
+
378
+
264
379
  self.verticalLayout_10.addLayout(self.gridLayout_3)
380
+
381
+
265
382
  self.verticalLayout_8.addWidget(self.groupBox_3)
266
- self.groupBox = QtWidgets.QGroupBox(self.tab_3)
383
+
384
+ self.groupBox = QGroupBox(self.tab_3)
385
+ self.groupBox.setObjectName(u"groupBox")
267
386
  self.groupBox.setFlat(False)
268
387
  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()
388
+ self.verticalLayout_9 = QVBoxLayout(self.groupBox)
389
+ self.verticalLayout_9.setObjectName(u"verticalLayout_9")
390
+ self.gridLayout_5 = QGridLayout()
391
+ self.gridLayout_5.setObjectName(u"gridLayout_5")
273
392
  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")
393
+ self.mysql_usr_lineEdit = QLineEdit(self.groupBox)
394
+ self.mysql_usr_lineEdit.setObjectName(u"mysql_usr_lineEdit")
395
+
277
396
  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")
397
+
398
+ self.label_11 = QLabel(self.groupBox)
399
+ self.label_11.setObjectName(u"label_11")
400
+
280
401
  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")
402
+
403
+ self.mysql_port_lineEdit = QLineEdit(self.groupBox)
404
+ self.mysql_port_lineEdit.setObjectName(u"mysql_port_lineEdit")
405
+
283
406
  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")
407
+
408
+ self.label_19 = QLabel(self.groupBox)
409
+ self.label_19.setObjectName(u"label_19")
410
+
286
411
  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")
412
+
413
+ self.mysql_ip_lineEdit = QLineEdit(self.groupBox)
414
+ self.mysql_ip_lineEdit.setObjectName(u"mysql_ip_lineEdit")
415
+
289
416
  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")
417
+
418
+ self.label_13 = QLabel(self.groupBox)
419
+ self.label_13.setObjectName(u"label_13")
420
+
292
421
  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")
422
+
423
+ self.mysql_tmpdir_lineEdit = QLineEdit(self.groupBox)
424
+ self.mysql_tmpdir_lineEdit.setObjectName(u"mysql_tmpdir_lineEdit")
425
+
295
426
  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")
427
+
428
+ self.mysql_tmpdir_pushButton = QPushButton(self.groupBox)
429
+ self.mysql_tmpdir_pushButton.setObjectName(u"mysql_tmpdir_pushButton")
430
+
298
431
  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")
432
+
433
+ self.mysql_test_pushButton = QPushButton(self.groupBox)
434
+ self.mysql_test_pushButton.setObjectName(u"mysql_test_pushButton")
435
+
301
436
  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")
437
+
438
+ self.label_20 = QLabel(self.groupBox)
439
+ self.label_20.setObjectName(u"label_20")
440
+
304
441
  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")
442
+
443
+ self.label_18 = QLabel(self.groupBox)
444
+ self.label_18.setObjectName(u"label_18")
445
+
307
446
  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")
447
+
448
+ self.mysql_pwd_lineEdit = QLineEdit(self.groupBox)
449
+ self.mysql_pwd_lineEdit.setObjectName(u"mysql_pwd_lineEdit")
450
+
310
451
  self.gridLayout_5.addWidget(self.mysql_pwd_lineEdit, 4, 1, 1, 1)
452
+
453
+
311
454
  self.verticalLayout_9.addLayout(self.gridLayout_5)
455
+
456
+
312
457
  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()
458
+
459
+ self.groupBox_8 = QGroupBox(self.tab_3)
460
+ self.groupBox_8.setObjectName(u"groupBox_8")
461
+ self.verticalLayout_19 = QVBoxLayout(self.groupBox_8)
462
+ self.verticalLayout_19.setObjectName(u"verticalLayout_19")
463
+ self.gridLayout_7 = QGridLayout()
464
+ self.gridLayout_7.setObjectName(u"gridLayout_7")
318
465
  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")
466
+ self.clickhouse_pwd_lineEdit = QLineEdit(self.groupBox_8)
467
+ self.clickhouse_pwd_lineEdit.setObjectName(u"clickhouse_pwd_lineEdit")
468
+
322
469
  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")
470
+
471
+ self.label_53 = QLabel(self.groupBox_8)
472
+ self.label_53.setObjectName(u"label_53")
473
+
325
474
  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")
475
+
476
+ self.label_54 = QLabel(self.groupBox_8)
477
+ self.label_54.setObjectName(u"label_54")
478
+
328
479
  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")
480
+
481
+ self.clickhouse_ip_lineEdit = QLineEdit(self.groupBox_8)
482
+ self.clickhouse_ip_lineEdit.setObjectName(u"clickhouse_ip_lineEdit")
483
+
331
484
  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")
485
+
486
+ self.clickhouse_tmpdir_lineEdit = QLineEdit(self.groupBox_8)
487
+ self.clickhouse_tmpdir_lineEdit.setObjectName(u"clickhouse_tmpdir_lineEdit")
488
+
334
489
  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")
490
+
491
+ self.label_51 = QLabel(self.groupBox_8)
492
+ self.label_51.setObjectName(u"label_51")
493
+
337
494
  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")
495
+
496
+ self.label_50 = QLabel(self.groupBox_8)
497
+ self.label_50.setObjectName(u"label_50")
498
+
340
499
  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")
500
+
501
+ self.clickhouse_usr_lineEdit = QLineEdit(self.groupBox_8)
502
+ self.clickhouse_usr_lineEdit.setObjectName(u"clickhouse_usr_lineEdit")
503
+
343
504
  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")
505
+
506
+ self.label_55 = QLabel(self.groupBox_8)
507
+ self.label_55.setObjectName(u"label_55")
508
+
346
509
  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")
510
+
511
+ self.clickhouse_port_lineEdit = QLineEdit(self.groupBox_8)
512
+ self.clickhouse_port_lineEdit.setObjectName(u"clickhouse_port_lineEdit")
513
+
349
514
  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")
515
+
516
+ self.label_52 = QLabel(self.groupBox_8)
517
+ self.label_52.setObjectName(u"label_52")
518
+
352
519
  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")
520
+
521
+ self.clickhouse_test_pushButton = QPushButton(self.groupBox_8)
522
+ self.clickhouse_test_pushButton.setObjectName(u"clickhouse_test_pushButton")
523
+
355
524
  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")
525
+
526
+ self.clickhouse_tmpdir_pushButton = QPushButton(self.groupBox_8)
527
+ self.clickhouse_tmpdir_pushButton.setObjectName(u"clickhouse_tmpdir_pushButton")
528
+
358
529
  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")
530
+
531
+ self.clickhouse_http_port_lineEdit = QLineEdit(self.groupBox_8)
532
+ self.clickhouse_http_port_lineEdit.setObjectName(u"clickhouse_http_port_lineEdit")
533
+
361
534
  self.gridLayout_7.addWidget(self.clickhouse_http_port_lineEdit, 2, 1, 1, 1)
535
+
536
+
362
537
  self.verticalLayout_19.addLayout(self.gridLayout_7)
538
+
539
+
363
540
  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)
541
+
542
+ self.verticalSpacer_12 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
543
+
544
+ self.verticalLayout_8.addItem(self.verticalSpacer_12)
545
+
366
546
  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")
547
+ self.tab_2 = QWidget()
548
+ self.tab_2.setObjectName(u"tab_2")
549
+ self.verticalLayout_7 = QVBoxLayout(self.tab_2)
550
+ self.verticalLayout_7.setObjectName(u"verticalLayout_7")
551
+ self.verticalSpacer_20 = QSpacerItem(20, 9, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
552
+
553
+ self.verticalLayout_7.addItem(self.verticalSpacer_20)
554
+
555
+ self.label_43 = QLabel(self.tab_2)
556
+ self.label_43.setObjectName(u"label_43")
557
+
375
558
  self.verticalLayout_7.addWidget(self.label_43)
376
- self.horizontalLayout_11 = QtWidgets.QHBoxLayout()
559
+
560
+ self.horizontalLayout_11 = QHBoxLayout()
561
+ self.horizontalLayout_11.setObjectName(u"horizontalLayout_11")
377
562
  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")
563
+ self.sched_import_pushButton = QPushButton(self.tab_2)
564
+ self.sched_import_pushButton.setObjectName(u"sched_import_pushButton")
565
+
381
566
  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")
567
+
568
+ self.horizontalLayout_14 = QHBoxLayout()
569
+ self.horizontalLayout_14.setObjectName(u"horizontalLayout_14")
570
+ self.label_40 = QLabel(self.tab_2)
571
+ self.label_40.setObjectName(u"label_40")
572
+
386
573
  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")
574
+
575
+ self.sched_import_timeEdit = QTimeEdit(self.tab_2)
576
+ self.sched_import_timeEdit.setObjectName(u"sched_import_timeEdit")
577
+
389
578
  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)
579
+
580
+ self.horizontalSpacer_7 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
581
+
582
+ self.horizontalLayout_14.addItem(self.horizontalSpacer_7)
583
+
584
+
392
585
  self.horizontalLayout_11.addLayout(self.horizontalLayout_14)
586
+
587
+
393
588
  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()
589
+
590
+ self.verticalSpacer_11 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
591
+
592
+ self.verticalLayout_7.addItem(self.verticalSpacer_11)
593
+
594
+ self.horizontalLayout_18 = QHBoxLayout()
595
+ self.horizontalLayout_18.setObjectName(u"horizontalLayout_18")
397
596
  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")
597
+ self.start_import_pushButton = QPushButton(self.tab_2)
598
+ self.start_import_pushButton.setObjectName(u"start_import_pushButton")
599
+
401
600
  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")
601
+
602
+ self.import_status_label = QLabel(self.tab_2)
603
+ self.import_status_label.setObjectName(u"import_status_label")
604
+
404
605
  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)
606
+
607
+ self.horizontalSpacer_8 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
608
+
609
+ self.horizontalLayout_18.addItem(self.horizontalSpacer_8)
610
+
611
+
407
612
  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")
613
+
614
+ self.verticalSpacer_10 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
615
+
616
+ self.verticalLayout_7.addItem(self.verticalSpacer_10)
617
+
618
+ self.groupBox_5 = QGroupBox(self.tab_2)
619
+ self.groupBox_5.setObjectName(u"groupBox_5")
620
+ self.verticalLayout_5 = QVBoxLayout(self.groupBox_5)
621
+ self.verticalLayout_5.setObjectName(u"verticalLayout_5")
622
+ self.gridLayout = QGridLayout()
623
+ self.gridLayout.setObjectName(u"gridLayout")
624
+ self.hdf5_time_progressBar = QProgressBar(self.groupBox_5)
625
+ self.hdf5_time_progressBar.setObjectName(u"hdf5_time_progressBar")
626
+ self.hdf5_time_progressBar.setValue(0)
627
+
419
628
  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")
629
+
630
+ self.hdf5_weight_label = QLabel(self.groupBox_5)
631
+ self.hdf5_weight_label.setObjectName(u"hdf5_weight_label")
632
+
422
633
  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")
634
+
635
+ self.label_14 = QLabel(self.groupBox_5)
636
+ self.label_14.setObjectName(u"label_14")
637
+
425
638
  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")
639
+
640
+ self.hdf5_trans_progressBar = QProgressBar(self.groupBox_5)
641
+ self.hdf5_trans_progressBar.setObjectName(u"hdf5_trans_progressBar")
642
+ self.hdf5_trans_progressBar.setValue(0)
643
+
429
644
  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")
645
+
646
+ self.label_4 = QLabel(self.groupBox_5)
647
+ self.label_4.setObjectName(u"label_4")
648
+
432
649
  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")
650
+
651
+ self.label_8 = QLabel(self.groupBox_5)
652
+ self.label_8.setObjectName(u"label_8")
653
+
435
654
  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")
655
+
656
+ self.label_5 = QLabel(self.groupBox_5)
657
+ self.label_5.setObjectName(u"label_5")
658
+
438
659
  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")
660
+
661
+ self.hdf5_5min_progressBar = QProgressBar(self.groupBox_5)
662
+ self.hdf5_5min_progressBar.setObjectName(u"hdf5_5min_progressBar")
663
+ self.hdf5_5min_progressBar.setValue(0)
664
+
442
665
  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")
666
+
667
+ self.hdf5_day_progressBar = QProgressBar(self.groupBox_5)
668
+ self.hdf5_day_progressBar.setObjectName(u"hdf5_day_progressBar")
669
+ self.hdf5_day_progressBar.setValue(0)
670
+
446
671
  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")
672
+
673
+ self.label_12 = QLabel(self.groupBox_5)
674
+ self.label_12.setObjectName(u"label_12")
675
+
449
676
  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")
677
+
678
+ self.hdf5_min_progressBar = QProgressBar(self.groupBox_5)
679
+ self.hdf5_min_progressBar.setObjectName(u"hdf5_min_progressBar")
680
+ self.hdf5_min_progressBar.setValue(0)
681
+
453
682
  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")
683
+
684
+ self.label_9 = QLabel(self.groupBox_5)
685
+ self.label_9.setObjectName(u"label_9")
686
+
456
687
  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)
688
+
689
+ self.horizontalSpacer_14 = QSpacerItem(5, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
690
+
691
+ self.gridLayout.addItem(self.horizontalSpacer_14, 0, 2, 1, 1)
692
+
693
+
459
694
  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)
695
+
696
+ self.verticalSpacer_9 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
697
+
698
+ self.verticalLayout_5.addItem(self.verticalSpacer_9)
699
+
700
+ self.import_detail_textEdit = QTextEdit(self.groupBox_5)
701
+ self.import_detail_textEdit.setObjectName(u"import_detail_textEdit")
702
+ self.import_detail_textEdit.setFrameShape(QFrame.NoFrame)
464
703
  self.import_detail_textEdit.setReadOnly(True)
465
- self.import_detail_textEdit.setObjectName("import_detail_textEdit")
704
+
466
705
  self.verticalLayout_5.addWidget(self.import_detail_textEdit)
706
+
707
+
467
708
  self.verticalLayout_7.addWidget(self.groupBox_5)
709
+
468
710
  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()
711
+ self.tab_6 = QWidget()
712
+ self.tab_6.setObjectName(u"tab_6")
713
+ self.verticalLayout_3 = QVBoxLayout(self.tab_6)
714
+ self.verticalLayout_3.setObjectName(u"verticalLayout_3")
715
+ self.groupBox_6 = QGroupBox(self.tab_6)
716
+ self.groupBox_6.setObjectName(u"groupBox_6")
717
+ self.verticalLayout_4 = QVBoxLayout(self.groupBox_6)
718
+ self.verticalLayout_4.setObjectName(u"verticalLayout_4")
719
+ self.verticalLayout = QVBoxLayout()
720
+ self.verticalLayout.setObjectName(u"verticalLayout")
478
721
  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")
722
+ self.label_35 = QLabel(self.groupBox_6)
723
+ self.label_35.setObjectName(u"label_35")
724
+
482
725
  self.verticalLayout.addWidget(self.label_35)
483
- self.label_36 = QtWidgets.QLabel(self.groupBox_6)
484
- self.label_36.setObjectName("label_36")
726
+
727
+ self.label_36 = QLabel(self.groupBox_6)
728
+ self.label_36.setObjectName(u"label_36")
729
+
485
730
  self.verticalLayout.addWidget(self.label_36)
731
+
732
+
486
733
  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()
734
+
735
+ self.verticalSpacer_7 = QSpacerItem(20, 20, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
736
+
737
+ self.verticalLayout_4.addItem(self.verticalSpacer_7)
738
+
739
+ self.gridLayout_6 = QGridLayout()
740
+ self.gridLayout_6.setObjectName(u"gridLayout_6")
490
741
  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)
742
+ self.preload_month_spinBox = QSpinBox(self.groupBox_6)
743
+ self.preload_month_spinBox.setObjectName(u"preload_month_spinBox")
493
744
  self.preload_month_spinBox.setMaximum(999999)
494
- self.preload_month_spinBox.setObjectName("preload_month_spinBox")
745
+
495
746
  self.gridLayout_6.addWidget(self.preload_month_spinBox, 2, 2, 1, 1)
496
- self.preload_quarter_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
747
+
748
+ self.preload_quarter_spinBox = QSpinBox(self.groupBox_6)
749
+ self.preload_quarter_spinBox.setObjectName(u"preload_quarter_spinBox")
497
750
  self.preload_quarter_spinBox.setMaximum(999999)
498
- self.preload_quarter_spinBox.setObjectName("preload_quarter_spinBox")
751
+
499
752
  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")
753
+
754
+ self.preload_min5_checkBox = QCheckBox(self.groupBox_6)
755
+ self.preload_min5_checkBox.setObjectName(u"preload_min5_checkBox")
756
+
502
757
  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")
758
+
759
+ self.label_33 = QLabel(self.groupBox_6)
760
+ self.label_33.setObjectName(u"label_33")
761
+
505
762
  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")
763
+
764
+ self.label_26 = QLabel(self.groupBox_6)
765
+ self.label_26.setObjectName(u"label_26")
766
+
508
767
  self.gridLayout_6.addWidget(self.label_26, 2, 1, 1, 1)
509
- self.preload_week_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
768
+
769
+ self.preload_week_spinBox = QSpinBox(self.groupBox_6)
770
+ self.preload_week_spinBox.setObjectName(u"preload_week_spinBox")
510
771
  self.preload_week_spinBox.setMaximum(999999)
511
- self.preload_week_spinBox.setObjectName("preload_week_spinBox")
772
+
512
773
  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")
774
+
775
+ self.label_27 = QLabel(self.groupBox_6)
776
+ self.label_27.setObjectName(u"label_27")
777
+
515
778
  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")
779
+
780
+ self.preload_year_checkBox = QCheckBox(self.groupBox_6)
781
+ self.preload_year_checkBox.setObjectName(u"preload_year_checkBox")
782
+
518
783
  self.gridLayout_6.addWidget(self.preload_year_checkBox, 5, 0, 1, 1)
519
- self.preload_halfyear_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
784
+
785
+ self.preload_halfyear_spinBox = QSpinBox(self.groupBox_6)
786
+ self.preload_halfyear_spinBox.setObjectName(u"preload_halfyear_spinBox")
520
787
  self.preload_halfyear_spinBox.setMaximum(999999)
521
- self.preload_halfyear_spinBox.setObjectName("preload_halfyear_spinBox")
788
+
522
789
  self.gridLayout_6.addWidget(self.preload_halfyear_spinBox, 4, 2, 1, 1)
523
- self.preload_day_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
790
+
791
+ self.preload_day_spinBox = QSpinBox(self.groupBox_6)
792
+ self.preload_day_spinBox.setObjectName(u"preload_day_spinBox")
524
793
  self.preload_day_spinBox.setMaximum(999999)
525
- self.preload_day_spinBox.setObjectName("preload_day_spinBox")
794
+
526
795
  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")
796
+
797
+ self.preload_min30_checkBox = QCheckBox(self.groupBox_6)
798
+ self.preload_min30_checkBox.setObjectName(u"preload_min30_checkBox")
799
+
529
800
  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")
801
+
802
+ self.label_28 = QLabel(self.groupBox_6)
803
+ self.label_28.setObjectName(u"label_28")
804
+
532
805
  self.gridLayout_6.addWidget(self.label_28, 4, 1, 1, 1)
533
- self.preload_min15_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
806
+
807
+ self.preload_min15_spinBox = QSpinBox(self.groupBox_6)
808
+ self.preload_min15_spinBox.setObjectName(u"preload_min15_spinBox")
534
809
  self.preload_min15_spinBox.setMaximum(999999)
535
- self.preload_min15_spinBox.setObjectName("preload_min15_spinBox")
810
+
536
811
  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")
812
+
813
+ self.save_pushButton = QPushButton(self.groupBox_6)
814
+ self.save_pushButton.setObjectName(u"save_pushButton")
815
+
539
816
  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")
817
+
818
+ self.label_34 = QLabel(self.groupBox_6)
819
+ self.label_34.setObjectName(u"label_34")
820
+
542
821
  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")
822
+
823
+ self.preload_hour2_checkBox = QCheckBox(self.groupBox_6)
824
+ self.preload_hour2_checkBox.setObjectName(u"preload_hour2_checkBox")
825
+
545
826
  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")
827
+
828
+ self.preload_halfyear_checkBox = QCheckBox(self.groupBox_6)
829
+ self.preload_halfyear_checkBox.setObjectName(u"preload_halfyear_checkBox")
830
+
548
831
  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")
832
+
833
+ self.preload_day_checkBox = QCheckBox(self.groupBox_6)
834
+ self.preload_day_checkBox.setObjectName(u"preload_day_checkBox")
835
+
551
836
  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")
837
+
838
+ self.label_24 = QLabel(self.groupBox_6)
839
+ self.label_24.setObjectName(u"label_24")
840
+
554
841
  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")
842
+
843
+ self.preload_min1_checkBox = QCheckBox(self.groupBox_6)
844
+ self.preload_min1_checkBox.setObjectName(u"preload_min1_checkBox")
845
+
557
846
  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")
847
+
848
+ self.preload_min15_checkBox = QCheckBox(self.groupBox_6)
849
+ self.preload_min15_checkBox.setObjectName(u"preload_min15_checkBox")
850
+
560
851
  self.gridLayout_6.addWidget(self.preload_min15_checkBox, 8, 0, 1, 1)
561
- self.preload_min1_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
852
+
853
+ self.preload_min1_spinBox = QSpinBox(self.groupBox_6)
854
+ self.preload_min1_spinBox.setObjectName(u"preload_min1_spinBox")
562
855
  self.preload_min1_spinBox.setMaximum(999999)
563
- self.preload_min1_spinBox.setObjectName("preload_min1_spinBox")
856
+
564
857
  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")
858
+
859
+ self.preload_min60_checkBox = QCheckBox(self.groupBox_6)
860
+ self.preload_min60_checkBox.setObjectName(u"preload_min60_checkBox")
861
+
567
862
  self.gridLayout_6.addWidget(self.preload_min60_checkBox, 10, 0, 1, 1)
568
- self.preload_min60_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
863
+
864
+ self.preload_min60_spinBox = QSpinBox(self.groupBox_6)
865
+ self.preload_min60_spinBox.setObjectName(u"preload_min60_spinBox")
569
866
  self.preload_min60_spinBox.setMaximum(999999)
570
- self.preload_min60_spinBox.setObjectName("preload_min60_spinBox")
867
+
571
868
  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")
869
+
870
+ self.label_29 = QLabel(self.groupBox_6)
871
+ self.label_29.setObjectName(u"label_29")
872
+
574
873
  self.gridLayout_6.addWidget(self.label_29, 5, 1, 1, 1)
575
- self.preload_hour2_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
874
+
875
+ self.preload_hour2_spinBox = QSpinBox(self.groupBox_6)
876
+ self.preload_hour2_spinBox.setObjectName(u"preload_hour2_spinBox")
576
877
  self.preload_hour2_spinBox.setMaximum(999999)
577
- self.preload_hour2_spinBox.setObjectName("preload_hour2_spinBox")
878
+
578
879
  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")
880
+
881
+ self.preload_week_checkBox = QCheckBox(self.groupBox_6)
882
+ self.preload_week_checkBox.setObjectName(u"preload_week_checkBox")
883
+
581
884
  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")
885
+
886
+ self.horizontalSpacer_6 = QSpacerItem(20, 20, QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Minimum)
887
+
888
+ self.gridLayout_6.addItem(self.horizontalSpacer_6, 4, 3, 1, 1)
889
+
890
+ self.preload_quarter_checkBox = QCheckBox(self.groupBox_6)
891
+ self.preload_quarter_checkBox.setObjectName(u"preload_quarter_checkBox")
892
+
586
893
  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")
894
+
895
+ self.label_31 = QLabel(self.groupBox_6)
896
+ self.label_31.setObjectName(u"label_31")
897
+
589
898
  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")
899
+
900
+ self.label_25 = QLabel(self.groupBox_6)
901
+ self.label_25.setObjectName(u"label_25")
902
+
592
903
  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")
904
+
905
+ self.preload_month_checkBox = QCheckBox(self.groupBox_6)
906
+ self.preload_month_checkBox.setObjectName(u"preload_month_checkBox")
907
+
595
908
  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")
909
+
910
+ self.label_30 = QLabel(self.groupBox_6)
911
+ self.label_30.setObjectName(u"label_30")
912
+
598
913
  self.gridLayout_6.addWidget(self.label_30, 6, 1, 1, 1)
599
- self.preload_min5_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
914
+
915
+ self.preload_min5_spinBox = QSpinBox(self.groupBox_6)
916
+ self.preload_min5_spinBox.setObjectName(u"preload_min5_spinBox")
600
917
  self.preload_min5_spinBox.setMaximum(999999)
601
- self.preload_min5_spinBox.setObjectName("preload_min5_spinBox")
918
+
602
919
  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")
920
+
921
+ self.label_42 = QLabel(self.groupBox_6)
922
+ self.label_42.setObjectName(u"label_42")
923
+
605
924
  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")
925
+
926
+ self.label_32 = QLabel(self.groupBox_6)
927
+ self.label_32.setObjectName(u"label_32")
928
+
608
929
  self.gridLayout_6.addWidget(self.label_32, 8, 1, 1, 1)
609
- self.preload_min30_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
930
+
931
+ self.preload_min30_spinBox = QSpinBox(self.groupBox_6)
932
+ self.preload_min30_spinBox.setObjectName(u"preload_min30_spinBox")
610
933
  self.preload_min30_spinBox.setMaximum(999999)
611
- self.preload_min30_spinBox.setObjectName("preload_min30_spinBox")
934
+
612
935
  self.gridLayout_6.addWidget(self.preload_min30_spinBox, 9, 2, 1, 1)
613
- self.preload_year_spinBox = QtWidgets.QSpinBox(self.groupBox_6)
936
+
937
+ self.preload_year_spinBox = QSpinBox(self.groupBox_6)
938
+ self.preload_year_spinBox.setObjectName(u"preload_year_spinBox")
614
939
  self.preload_year_spinBox.setMaximum(999999)
615
- self.preload_year_spinBox.setObjectName("preload_year_spinBox")
940
+
616
941
  self.gridLayout_6.addWidget(self.preload_year_spinBox, 5, 2, 1, 1)
942
+
943
+
617
944
  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)
945
+
946
+ self.verticalSpacer_8 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
947
+
948
+ self.verticalLayout_4.addItem(self.verticalSpacer_8)
949
+
950
+
620
951
  self.verticalLayout_3.addWidget(self.groupBox_6)
952
+
621
953
  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()
954
+ self.tab = QWidget()
955
+ self.tab.setObjectName(u"tab")
956
+ self.verticalLayout_2 = QVBoxLayout(self.tab)
957
+ self.verticalLayout_2.setObjectName(u"verticalLayout_2")
958
+ self.verticalSpacer_3 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
959
+
960
+ self.verticalLayout_2.addItem(self.verticalSpacer_3)
961
+
962
+ self.horizontalLayout_15 = QHBoxLayout()
963
+ self.horizontalLayout_15.setObjectName(u"horizontalLayout_15")
629
964
  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")
965
+ self.collect_start_pushButton = QPushButton(self.tab)
966
+ self.collect_start_pushButton.setObjectName(u"collect_start_pushButton")
967
+
633
968
  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")
969
+
970
+ self.collect_status_label = QLabel(self.tab)
971
+ self.collect_status_label.setObjectName(u"collect_status_label")
972
+
636
973
  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)
974
+
975
+ self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
976
+
977
+ self.horizontalLayout_15.addItem(self.horizontalSpacer)
978
+
979
+
639
980
  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()
981
+
982
+ self.verticalSpacer = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
983
+
984
+ self.verticalLayout_2.addItem(self.verticalSpacer)
985
+
986
+ self.horizontalLayout_13 = QHBoxLayout()
987
+ self.horizontalLayout_13.setObjectName(u"horizontalLayout_13")
643
988
  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")
989
+ self.label_39 = QLabel(self.tab)
990
+ self.label_39.setObjectName(u"label_39")
991
+
647
992
  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")
993
+
994
+ self.collect_source_comboBox = QComboBox(self.tab)
650
995
  self.collect_source_comboBox.addItem("")
651
996
  self.collect_source_comboBox.addItem("")
997
+ self.collect_source_comboBox.setObjectName(u"collect_source_comboBox")
998
+
652
999
  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)
1000
+
1001
+ self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1002
+
1003
+ self.horizontalLayout_13.addItem(self.horizontalSpacer_2)
1004
+
1005
+
655
1006
  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()
1007
+
1008
+ self.verticalSpacer_2 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
1009
+
1010
+ self.verticalLayout_2.addItem(self.verticalSpacer_2)
1011
+
1012
+ self.horizontalLayout_10 = QHBoxLayout()
1013
+ self.horizontalLayout_10.setObjectName(u"horizontalLayout_10")
659
1014
  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")
1015
+ self.label_23 = QLabel(self.tab)
1016
+ self.label_23.setObjectName(u"label_23")
1017
+
663
1018
  self.horizontalLayout_10.addWidget(self.label_23)
664
- self.collect_sample_spinBox = QtWidgets.QSpinBox(self.tab)
1019
+
1020
+ self.collect_sample_spinBox = QSpinBox(self.tab)
1021
+ self.collect_sample_spinBox.setObjectName(u"collect_sample_spinBox")
665
1022
  self.collect_sample_spinBox.setMaximum(86400)
666
- self.collect_sample_spinBox.setObjectName("collect_sample_spinBox")
1023
+
667
1024
  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)
1025
+
1026
+ self.horizontalSpacer_3 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1027
+
1028
+ self.horizontalLayout_10.addItem(self.horizontalSpacer_3)
1029
+
1030
+
670
1031
  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()
1032
+
1033
+ self.verticalSpacer_4 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1034
+
1035
+ self.verticalLayout_2.addItem(self.verticalSpacer_4)
1036
+
1037
+ self.horizontalLayout_8 = QHBoxLayout()
1038
+ self.horizontalLayout_8.setObjectName(u"horizontalLayout_8")
674
1039
  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")
1040
+ self.label_21 = QLabel(self.tab)
1041
+ self.label_21.setObjectName(u"label_21")
1042
+
678
1043
  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")
1044
+
1045
+ self.horizontalLayout_6 = QHBoxLayout()
1046
+ self.horizontalLayout_6.setObjectName(u"horizontalLayout_6")
1047
+ self.collect_phase1_start_timeEdit = QTimeEdit(self.tab)
1048
+ self.collect_phase1_start_timeEdit.setObjectName(u"collect_phase1_start_timeEdit")
1049
+ self.collect_phase1_start_timeEdit.setCurrentSection(QDateTimeEdit.HourSection)
1050
+
684
1051
  self.horizontalLayout_6.addWidget(self.collect_phase1_start_timeEdit)
685
- self.label_22 = QtWidgets.QLabel(self.tab)
686
- self.label_22.setObjectName("label_22")
1052
+
1053
+ self.label_22 = QLabel(self.tab)
1054
+ self.label_22.setObjectName(u"label_22")
1055
+
687
1056
  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")
1057
+
1058
+ self.collect_phase1_last_timeEdit = QTimeEdit(self.tab)
1059
+ self.collect_phase1_last_timeEdit.setObjectName(u"collect_phase1_last_timeEdit")
1060
+
690
1061
  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)
1062
+
1063
+ self.horizontalSpacer_4 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1064
+
1065
+ self.horizontalLayout_6.addItem(self.horizontalSpacer_4)
1066
+
1067
+
693
1068
  self.horizontalLayout_8.addLayout(self.horizontalLayout_6)
1069
+
1070
+
694
1071
  self.verticalLayout_2.addLayout(self.horizontalLayout_8)
695
- self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
1072
+
1073
+ self.horizontalLayout_9 = QHBoxLayout()
1074
+ self.horizontalLayout_9.setObjectName(u"horizontalLayout_9")
696
1075
  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")
1076
+ self.label_37 = QLabel(self.tab)
1077
+ self.label_37.setObjectName(u"label_37")
1078
+
700
1079
  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")
1080
+
1081
+ self.horizontalLayout_7 = QHBoxLayout()
1082
+ self.horizontalLayout_7.setObjectName(u"horizontalLayout_7")
1083
+ self.collect_phase2_start_timeEdit = QTimeEdit(self.tab)
1084
+ self.collect_phase2_start_timeEdit.setObjectName(u"collect_phase2_start_timeEdit")
1085
+ self.collect_phase2_start_timeEdit.setCurrentSection(QDateTimeEdit.HourSection)
1086
+
706
1087
  self.horizontalLayout_7.addWidget(self.collect_phase2_start_timeEdit)
707
- self.label_38 = QtWidgets.QLabel(self.tab)
708
- self.label_38.setObjectName("label_38")
1088
+
1089
+ self.label_38 = QLabel(self.tab)
1090
+ self.label_38.setObjectName(u"label_38")
1091
+
709
1092
  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")
1093
+
1094
+ self.collect_phase2_last_timeEdit = QTimeEdit(self.tab)
1095
+ self.collect_phase2_last_timeEdit.setObjectName(u"collect_phase2_last_timeEdit")
1096
+
712
1097
  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)
1098
+
1099
+ self.horizontalSpacer_5 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1100
+
1101
+ self.horizontalLayout_7.addItem(self.horizontalSpacer_5)
1102
+
1103
+
715
1104
  self.horizontalLayout_9.addLayout(self.horizontalLayout_7)
1105
+
1106
+
716
1107
  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()
1108
+
1109
+ self.verticalSpacer_5 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1110
+
1111
+ self.verticalLayout_2.addItem(self.verticalSpacer_5)
1112
+
1113
+ self.horizontalLayout_16 = QHBoxLayout()
1114
+ self.horizontalLayout_16.setObjectName(u"horizontalLayout_16")
720
1115
  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")
1116
+ self.collect_use_zhima_checkBox = QCheckBox(self.tab)
1117
+ self.collect_use_zhima_checkBox.setObjectName(u"collect_use_zhima_checkBox")
1118
+ sizePolicy1.setHeightForWidth(self.collect_use_zhima_checkBox.sizePolicy().hasHeightForWidth())
1119
+ self.collect_use_zhima_checkBox.setSizePolicy(sizePolicy1)
1120
+
729
1121
  self.horizontalLayout_16.addWidget(self.collect_use_zhima_checkBox)
1122
+
1123
+
730
1124
  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()
1125
+
1126
+ self.verticalSpacer_6 = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Minimum)
1127
+
1128
+ self.verticalLayout_2.addItem(self.verticalSpacer_6)
1129
+
1130
+ self.horizontalLayout_17 = QHBoxLayout()
1131
+ self.horizontalLayout_17.setObjectName(u"horizontalLayout_17")
734
1132
  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")
1133
+ self.textBrowser = QTextBrowser(self.tab)
1134
+ self.textBrowser.setObjectName(u"textBrowser")
1135
+
738
1136
  self.horizontalLayout_17.addWidget(self.textBrowser)
1137
+
1138
+
739
1139
  self.verticalLayout_2.addLayout(self.horizontalLayout_17)
1140
+
740
1141
  self.tabWidget.addTab(self.tab, "")
741
- self.tab_star = QtWidgets.QWidget()
1142
+ self.tab_star = QWidget()
1143
+ self.tab_star.setObjectName(u"tab_star")
742
1144
  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")
1145
+ self.verticalLayout_18 = QVBoxLayout(self.tab_star)
1146
+ self.verticalLayout_18.setObjectName(u"verticalLayout_18")
1147
+ self.verticalSpacer_13 = QSpacerItem(5, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
1148
+
1149
+ self.verticalLayout_18.addItem(self.verticalSpacer_13)
1150
+
1151
+ self.label_46 = QLabel(self.tab_star)
1152
+ self.label_46.setObjectName(u"label_46")
1153
+ font = QFont()
1154
+ font.setFamilies([u"Arial"])
751
1155
  self.label_46.setFont(font)
752
1156
  self.label_46.setWordWrap(True)
753
- self.label_46.setObjectName("label_46")
1157
+
754
1158
  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")
1159
+
1160
+ self.line_2 = QFrame(self.tab_star)
1161
+ self.line_2.setObjectName(u"line_2")
1162
+ self.line_2.setFrameShape(QFrame.Shape.HLine)
1163
+ self.line_2.setFrameShadow(QFrame.Shadow.Sunken)
1164
+
759
1165
  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")
1166
+
1167
+ self.verticalLayout_15 = QVBoxLayout()
1168
+ self.verticalLayout_15.setObjectName(u"verticalLayout_15")
1169
+ self.label_47 = QLabel(self.tab_star)
1170
+ self.label_47.setObjectName(u"label_47")
1171
+ font1 = QFont()
1172
+ font1.setBold(True)
1173
+ self.label_47.setFont(font1)
1174
+
767
1175
  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")
1176
+
1177
+ self.horizontalLayout_20 = QHBoxLayout()
1178
+ self.horizontalLayout_20.setObjectName(u"horizontalLayout_20")
1179
+ self.label_45 = QLabel(self.tab_star)
1180
+ self.label_45.setObjectName(u"label_45")
1181
+
772
1182
  self.horizontalLayout_20.addWidget(self.label_45)
773
- self.email_lineEdit = QtWidgets.QLineEdit(self.tab_star)
774
- self.email_lineEdit.setObjectName("email_lineEdit")
1183
+
1184
+ self.email_lineEdit = QLineEdit(self.tab_star)
1185
+ self.email_lineEdit.setObjectName(u"email_lineEdit")
1186
+
775
1187
  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")
1188
+
1189
+ self.fetch_trial_pushButton = QPushButton(self.tab_star)
1190
+ self.fetch_trial_pushButton.setObjectName(u"fetch_trial_pushButton")
1191
+
778
1192
  self.horizontalLayout_20.addWidget(self.fetch_trial_pushButton)
1193
+
1194
+
779
1195
  self.verticalLayout_15.addLayout(self.horizontalLayout_20)
1196
+
1197
+
780
1198
  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")
1199
+
1200
+ self.line_3 = QFrame(self.tab_star)
1201
+ self.line_3.setObjectName(u"line_3")
1202
+ self.line_3.setFrameShape(QFrame.Shape.HLine)
1203
+ self.line_3.setFrameShadow(QFrame.Shadow.Sunken)
1204
+
785
1205
  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")
1206
+
1207
+ self.verticalLayout_16 = QVBoxLayout()
1208
+ self.verticalLayout_16.setObjectName(u"verticalLayout_16")
1209
+ self.label_48 = QLabel(self.tab_star)
1210
+ self.label_48.setObjectName(u"label_48")
1211
+ self.label_48.setFont(font1)
1212
+
793
1213
  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"))
1214
+
1215
+ self.horizontalLayout_22 = QHBoxLayout()
1216
+ self.horizontalLayout_22.setObjectName(u"horizontalLayout_22")
1217
+
1218
+ self.verticalLayout_16.addLayout(self.horizontalLayout_22)
1219
+
1220
+ self.horizontalLayout_26 = QHBoxLayout()
1221
+ self.horizontalLayout_26.setObjectName(u"horizontalLayout_26")
1222
+ self.horizontalLayout_26.setSizeConstraint(QLayout.SetFixedSize)
1223
+ self.label_44 = QLabel(self.tab_star)
1224
+ self.label_44.setObjectName(u"label_44")
1225
+ sizePolicy3 = QSizePolicy(QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Fixed)
1226
+ sizePolicy3.setHorizontalStretch(0)
1227
+ sizePolicy3.setVerticalStretch(0)
1228
+ sizePolicy3.setHeightForWidth(self.label_44.sizePolicy().hasHeightForWidth())
1229
+ self.label_44.setSizePolicy(sizePolicy3)
1230
+ self.label_44.setMaximumSize(QSize(300, 160))
1231
+ self.label_44.setPixmap(QPixmap(u"../images/star.png"))
803
1232
  self.label_44.setScaledContents(True)
804
- self.label_44.setObjectName("label_44")
805
- self.verticalLayout_16.addWidget(self.label_44)
1233
+
1234
+ self.horizontalLayout_26.addWidget(self.label_44, 0, Qt.AlignLeft)
1235
+
1236
+ self.label_56 = QLabel(self.tab_star)
1237
+ self.label_56.setObjectName(u"label_56")
1238
+ self.label_56.setMaximumSize(QSize(160, 160))
1239
+ self.label_56.setFrameShape(QFrame.NoFrame)
1240
+ self.label_56.setPixmap(QPixmap(u"../images/liandongxiaopu.png"))
1241
+ self.label_56.setScaledContents(True)
1242
+
1243
+ self.horizontalLayout_26.addWidget(self.label_56, 0, Qt.AlignLeft)
1244
+
1245
+ self.horizontalSpacer_15 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum)
1246
+
1247
+ self.horizontalLayout_26.addItem(self.horizontalSpacer_15)
1248
+
1249
+
1250
+ self.verticalLayout_16.addLayout(self.horizontalLayout_26)
1251
+
1252
+
806
1253
  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")
1254
+
1255
+ self.line_4 = QFrame(self.tab_star)
1256
+ self.line_4.setObjectName(u"line_4")
1257
+ self.line_4.setFrameShape(QFrame.Shape.HLine)
1258
+ self.line_4.setFrameShadow(QFrame.Shadow.Sunken)
1259
+
811
1260
  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")
1261
+
1262
+ self.verticalLayout_17 = QVBoxLayout()
1263
+ self.verticalLayout_17.setObjectName(u"verticalLayout_17")
1264
+ self.label_49 = QLabel(self.tab_star)
1265
+ self.label_49.setObjectName(u"label_49")
1266
+ self.label_49.setFont(font1)
1267
+
819
1268
  self.verticalLayout_17.addWidget(self.label_49)
820
- self.label_license = QtWidgets.QLabel(self.tab_star)
821
- self.label_license.setObjectName("label_license")
1269
+
1270
+ self.label_license = QLabel(self.tab_star)
1271
+ self.label_license.setObjectName(u"label_license")
1272
+
822
1273
  self.verticalLayout_17.addWidget(self.label_license)
1274
+
1275
+
823
1276
  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)
1277
+
1278
+ self.verticalSpacer_21 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding)
1279
+
1280
+ self.verticalLayout_18.addItem(self.verticalSpacer_21)
1281
+
826
1282
  self.tabWidget.addTab(self.tab_star, "")
1283
+
827
1284
  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")
1285
+
1286
+ self.verticalLayout_6 = QVBoxLayout()
1287
+ self.verticalLayout_6.setObjectName(u"verticalLayout_6")
1288
+ self.label_41 = QLabel(self.centralwidget)
1289
+ self.label_41.setObjectName(u"label_41")
1290
+
832
1291
  self.verticalLayout_6.addWidget(self.label_41)
833
- self.log_textEdit = QtWidgets.QTextEdit(self.centralwidget)
1292
+
1293
+ self.log_textEdit = QTextEdit(self.centralwidget)
1294
+ self.log_textEdit.setObjectName(u"log_textEdit")
834
1295
  self.log_textEdit.setReadOnly(True)
835
1296
  self.log_textEdit.setAcceptRichText(True)
836
- self.log_textEdit.setObjectName("log_textEdit")
1297
+
837
1298
  self.verticalLayout_6.addWidget(self.log_textEdit)
1299
+
1300
+
838
1301
  self.horizontalLayout_12.addLayout(self.verticalLayout_6)
1302
+
839
1303
  MainWindow.setCentralWidget(self.centralwidget)
840
1304
 
841
1305
  self.retranslateUi(MainWindow)
842
- self.tabWidget.setCurrentIndex(5)
843
- QtCore.QMetaObject.connectSlotsByName(MainWindow)
1306
+
1307
+ self.tabWidget.setCurrentIndex(0)
1308
+
1309
+
1310
+ QMetaObject.connectSlotsByName(MainWindow)
1311
+ # setupUi
844
1312
 
845
1313
  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"
1314
+ MainWindow.setWindowTitle(QCoreApplication.translate("MainWindow", u"\u6570\u636e\u5bfc\u5165\u5de5\u5177", None))
1315
+ self.groupBox_2.setTitle(QCoreApplication.translate("MainWindow", u"\u6570\u636e\u6e90\u8bbe\u7f6e", None))
1316
+ self.pytdx_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528Pytdx\u4e0b\u8f7d\u6570\u636e", None))
1317
+ self.label_16.setText(QCoreApplication.translate("MainWindow", u"\u540c\u65f6\u4f7f\u7528", None))
1318
+ self.label_17.setText(QCoreApplication.translate("MainWindow", u"\u4e2a\u901a\u8fbe\u4fe1\u670d\u52a1\u5668\u8fdb\u884c\u4e0b\u8f7d", None))
1319
+ 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))
1320
+ self.select_tdx_dir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1321
+ self.label_2.setText(QCoreApplication.translate("MainWindow", u"\u901a\u8fbe\u4fe1\u5b89\u88c5\u76ee\u5f55\uff1a", None))
1322
+ 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))
1323
+ self.groupBox_7.setTitle(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8bbe\u7f6e", None))
1324
+ self.import_weight_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u6743\u606f\u6570\u636e", None))
1325
+ self.import_history_finance_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u5386\u53f2\u8d22\u52a1\u6570\u636e", None))
1326
+ self.import_block_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4e0b\u8f7d\u884c\u4e1a\u4e0e\u6307\u6570\u677f\u5757", None))
1327
+ self.import_stock_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u80a1\u7968", None))
1328
+ self.import_fund_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u57fa\u91d1", None))
1329
+ self.import_future_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u671f\u8d27", None))
1330
+ self.import_day_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u65e5\u7ebf", None))
1331
+ self.import_min5_checkBox.setText(QCoreApplication.translate("MainWindow", u"5\u5206\u949f\u7ebf", None))
1332
+ self.import_min_checkBox.setText(QCoreApplication.translate("MainWindow", u"1\u5206\u949f\u7ebf", None))
1333
+ self.import_trans_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u5206\u7b14", None))
1334
+ self.import_time_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u5206\u65f6", None))
1335
+ self.label_7.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u5206\u65f6\u8d77\u59cb\u65e5\u671f\uff1a", None))
1336
+ self.label_6.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u5206\u7b14\u8d77\u59cb\u65e5\u671f\uff1a", None))
1337
+ self.label_3.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u5165\u65e5\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1338
+ self.label_10.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u51655\u5206\u949f\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1339
+ self.label_15.setText(QCoreApplication.translate("MainWindow", u"\u521d\u6b21\u5bfc\u51651\u5206\u949f\u7ebf\u8d77\u59cb\u65e5\u671f\uff1a", None))
1340
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_4), QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8bbe\u7f6e", None))
1341
+ self.groupBox_4.setTitle(QCoreApplication.translate("MainWindow", u"\u5b58\u50a8\u5f15\u64ce\u8bbe\u7f6e", None))
1342
+ self.enable_hdf55_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528HDF5\uff08\u63a8\u8350\uff09", None))
1343
+ self.enable_mysql_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528MYSQL", None))
1344
+ self.enable_clickhouse_radioButton.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528Clickhouse(\u6350\u8d60\u6743\u76ca\uff09", None))
1345
+ self.groupBox_3.setTitle(QCoreApplication.translate("MainWindow", u"HDF5\u5b58\u50a8\u8bbe\u7f6e", None))
1346
+ self.hdf5_dir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1347
+ self.label.setText(QCoreApplication.translate("MainWindow", u"\u76ee\u6807\u6570\u636e\uff08HDF5\uff09\u5b58\u653e\u76ee\u5f55\uff1a", None))
1348
+ self.groupBox.setTitle(QCoreApplication.translate("MainWindow", u"MYSQL\u5b58\u50a8\u8bbe\u7f6e", None))
1349
+ self.label_11.setText(QCoreApplication.translate("MainWindow", u"\u7528\u6237\u540d\uff1a", None))
1350
+ self.label_19.setText(QCoreApplication.translate("MainWindow", u"\u7aef\u53e3\u53f7\uff1a", None))
1351
+ self.label_13.setText(QCoreApplication.translate("MainWindow", u"\u5bc6\u7801", None))
1352
+ self.mysql_tmpdir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1353
+ self.mysql_test_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u6d4b\u8bd5\u8fde\u63a5", None))
1354
+ self.label_20.setText(QCoreApplication.translate("MainWindow", u"\u4e34\u672c\u673a\u65f6\u6587\u4ef6\u76ee\u5f55\uff1a", None))
1355
+ self.label_18.setText(QCoreApplication.translate("MainWindow", u"\u4e3b\u673a\u540d/IP\uff1a", None))
1356
+ self.groupBox_8.setTitle(QCoreApplication.translate("MainWindow", u"Clickhouse\u8bbe\u7f6e(\u6350\u8d60\u6743\u76ca)", None))
1357
+ self.label_53.setText(QCoreApplication.translate("MainWindow", u"\u672c\u673a\u4e34\u65f6\u6587\u4ef6\u76ee\u5f55\uff1a", None))
1358
+ self.label_54.setText(QCoreApplication.translate("MainWindow", u"\u4e3b\u673a\u540d/IP\uff1a", None))
1359
+ self.label_51.setText(QCoreApplication.translate("MainWindow", u"HTTP\u7aef\u53e3\u53f7\uff1a", None))
1360
+ self.label_50.setText(QCoreApplication.translate("MainWindow", u"\u7528\u6237\u540d\uff1a", None))
1361
+ self.label_55.setText(QCoreApplication.translate("MainWindow", u"TCP\u7aef\u53e3\u53f7", None))
1362
+ self.label_52.setText(QCoreApplication.translate("MainWindow", u"\u5bc6\u7801", None))
1363
+ self.clickhouse_test_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u6d4b\u8bd5\u8fde\u63a5", None))
1364
+ self.clickhouse_tmpdir_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u9009\u62e9", None))
1365
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_3), QCoreApplication.translate("MainWindow", u"\u5b58\u50a8\u8bbe\u7f6e", None))
1366
+ 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))
1367
+ self.sched_import_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u542f\u52a8\u5b9a\u65f6\u5bfc\u5165", None))
1368
+ self.label_40.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u6267\u884c\u65f6\u95f4\uff1a", None))
1369
+ self.start_import_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u624b\u5de5\u6267\u884c\u5bfc\u5165", None))
1370
+ self.import_status_label.setText(QCoreApplication.translate("MainWindow", u"\u8bf7\u52ff\u76d8\u4e2d\u5bfc\u5165\uff01", None))
1371
+ self.groupBox_5.setTitle(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u8fdb\u5c55", None))
1372
+ self.hdf5_weight_label.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1373
+ self.label_14.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u51651\u5206\u949f\u7ebf\uff1a", None))
1374
+ self.label_4.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u5206\u7b14\u6570\u636e\uff1a", None))
1375
+ self.label_8.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u65e5\u7ebf\uff1a", None))
1376
+ self.label_5.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u5206\u65f6\u6570\u636e\uff1a", None))
1377
+ self.label_12.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u51655\u5206\u949f\u7ebf\uff1a", None))
1378
+ self.label_9.setText(QCoreApplication.translate("MainWindow", u"\u5bfc\u5165\u6743\u606f\u6570\u636e\uff1a", None))
1379
+ 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
1380
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
914
1381
  "p, li { white-space: pre-wrap; }\n"
915
1382
  "hr { height: 1px; border-width: 0; }\n"
916
1383
  "li.unchecked::marker { content: \"\\2610\"; }\n"
917
1384
  "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"
1385
+ "</style></head><body style=\" font-size:13pt; font-weight:400; font-style:normal;\">\n"
1386
+ "<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"
1387
+ "<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"
1388
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; "
1389
+ "text-indent:0px;\"><span style=\" font-size:9pt;\">\u5bfc\u5165\u4e0a\u8bc15\u5206\u949f\u7ebf\u8bb0\u5f55\uff1a</span></p>\n"
1390
+ "<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"
1391
+ "<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"
1392
+ "<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"
1393
+ "<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"
1394
+ "</span></p>\n"
1395
+ "<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"
1396
+ "<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"
1397
+ "<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"
1398
+ "<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"
1399
+ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><s"
1400
+ "pan style=\" font-size:9pt;\">\u5bfc\u5165\u5b8c\u6bd5\uff01</span></p></body></html>", None))
1401
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), QCoreApplication.translate("MainWindow", u"\u6267\u884c\u5bfc\u5165", None))
1402
+ self.groupBox_6.setTitle(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u8bbe\u7f6e", None))
1403
+ 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))
1404
+ 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))
1405
+ self.preload_min5_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d5\u5206\u949f\u7ebf", None))
1406
+ self.label_33.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1407
+ self.label_26.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1408
+ self.label_27.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1409
+ self.preload_year_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5e74\u7ebf", None))
1410
+ self.preload_min30_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d30\u5206\u949f\u7ebf", None))
1411
+ self.label_28.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1412
+ self.save_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u4fdd\u5b58\u8bbe\u7f6e", None))
1413
+ self.label_34.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1414
+ self.preload_hour2_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d120\u5206\u949f\u7ebf", None))
1415
+ self.preload_halfyear_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u534a\u5e74\u7ebf", None))
1416
+ self.preload_day_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u65e5\u7ebf", None))
1417
+ self.label_24.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1418
+ self.preload_min1_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d1\u5206\u949f\u7ebf", None))
1419
+ self.preload_min15_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d15\u5206\u949f\u7ebf", None))
1420
+ self.preload_min60_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d60\u5206\u949f\u7ebf", None))
1421
+ self.label_29.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1422
+ self.preload_week_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5468\u7ebf", None))
1423
+ self.preload_quarter_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u5b63\u7ebf", None))
1424
+ self.label_31.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1425
+ self.label_25.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1426
+ self.preload_month_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u6708\u7ebf", None))
1427
+ self.label_30.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1428
+ self.label_42.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1429
+ self.label_32.setText(QCoreApplication.translate("MainWindow", u"\u6700\u5927\u7f13\u5b58\u6570\u91cf\uff1a", None))
1430
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), QCoreApplication.translate("MainWindow", u"\u9884\u52a0\u8f7d\u8bbe\u7f6e", None))
1431
+ self.collect_start_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u542f\u52a8\u91c7\u96c6", None))
1432
+ self.collect_status_label.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1433
+ self.label_39.setText(QCoreApplication.translate("MainWindow", u"\u884c\u60c5\u6570\u636e\u6e90\uff1a", None))
1434
+ self.collect_source_comboBox.setItemText(0, QCoreApplication.translate("MainWindow", u"qq", None))
1435
+ self.collect_source_comboBox.setItemText(1, QCoreApplication.translate("MainWindow", u"qmt", None))
1436
+
1437
+ self.label_23.setText(QCoreApplication.translate("MainWindow", u"\u91c7\u96c6\u95f4\u9694\uff08\u79d2\uff09\uff1a", None))
1438
+ self.label_21.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65f6\u95f4\u6bb51\uff1a", None))
1439
+ self.label_22.setText(QCoreApplication.translate("MainWindow", u"-", None))
1440
+ self.label_37.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65f6\u95f4\u6bb52\uff1a", None))
1441
+ self.label_38.setText(QCoreApplication.translate("MainWindow", u"-", None))
1442
+ self.collect_use_zhima_checkBox.setText(QCoreApplication.translate("MainWindow", u"\u4f7f\u7528\u829d\u9ebb\u4ee3\u7406", None))
1443
+ 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
1444
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
974
1445
  "p, li { white-space: pre-wrap; }\n"
975
1446
  "hr { height: 1px; border-width: 0; }\n"
976
1447
  "li.unchecked::marker { content: \"\\2610\"; }\n"
977
1448
  "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"
1449
+ "</style></head><body style=\" font-size:13pt; font-weight:400; font-style:normal;\">\n"
1450
+ "<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"
1451
+ "<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"
1452
+ "\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"
1453
+ "<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"
1454
+ "<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"
1455
+ "<p style=\"-qt-paragraph-type:empty; margin-top:0"
1456
+ "px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;\"><br /></p>\n"
1457
+ "<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))
1458
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), QCoreApplication.translate("MainWindow", u"\u884c\u60c5\u91c7\u96c6\u670d\u52a1", None))
1459
+ 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
1460
  "<html><head><meta name=\"qrichtext\" content=\"1\" /><meta charset=\"utf-8\" /><style type=\"text/css\">\n"
988
1461
  "p, li { white-space: pre-wrap; }\n"
989
1462
  "hr { height: 1px; border-width: 0; }\n"
990
1463
  "li.unchecked::marker { content: \"\\2610\"; }\n"
991
1464
  "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", "执行日志"))
1465
+ "</style></head><body style=\" font-family:'Arial'; font-size:13pt; font-weight:400; font-style:normal;\">\n"
1466
+ "<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"
1467
+ ":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"
1468
+ "<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"
1469
+ "\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"
1470
+ "<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))
1471
+ self.label_47.setText(QCoreApplication.translate("MainWindow", u"\u7533\u8bf7\u6350\u8d60\u529f\u80fd\u8bd5\u7528\uff0830\u5929\u8bd5\u7528\uff09", None))
1472
+ self.label_45.setText(QCoreApplication.translate("MainWindow", u"\u7535\u5b50\u90ae\u4ef6\u5730\u5740:", None))
1473
+ self.fetch_trial_pushButton.setText(QCoreApplication.translate("MainWindow", u"\u7533\u8bf7\u8bd5\u7528\u8bb8\u53ef", None))
1474
+ 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,\u6216\u8005\u8bf7\u4f5c\u8005\u559d\u676f\u2615\ufe0f\uff0c\u8c22\u8c22", None))
1475
+ self.label_44.setText("")
1476
+ self.label_56.setText("")
1477
+ self.label_49.setText(QCoreApplication.translate("MainWindow", u"\u5f53\u524d\u6350\u8d60\u6388\u6743\u4fe1\u606f", None))
1478
+ self.label_license.setText(QCoreApplication.translate("MainWindow", u"TextLabel", None))
1479
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_star), QCoreApplication.translate("MainWindow", u"\u9879\u76ee\u6350\u8d60", None))
1480
+ self.label_41.setText(QCoreApplication.translate("MainWindow", u"\u6267\u884c\u65e5\u5fd7", None))
1481
+ # retranslateUi
1482
+