compareitemdialog.ui 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>CompareItemDialog</class>
  4. <widget class="QDialog" name="CompareItemDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1252</width>
  10. <height>1032</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Dialog</string>
  15. </property>
  16. <property name="styleSheet">
  17. <string notr="true">QWidget#widgetBackground
  18. {
  19. background: #FFFFFF;
  20. border-radius: 8px;
  21. }
  22. QWidget#widgetTop,#widgetMute,#widgetOverload,#widgetPhase
  23. {
  24. border-bottom: 1px solid #E6E9F4;
  25. }
  26. QLabel
  27. {
  28. font-weight: 400;
  29. font-size: 14px;
  30. color: #3A3F63;
  31. }
  32. QLabel#labelTitle
  33. {
  34. font-weight: 500;
  35. font-size: 18px;
  36. }
  37. QLabel#labelBase,#label
  38. {
  39. font-weight: 500;
  40. font-size: 16px;
  41. }
  42. QLabel#labelOtherRoad,#labelMute,#labelOverload,#labelPhase
  43. {
  44. font-weight: 500;
  45. font-size: 14px;
  46. }
  47. QPushButton#btnClose
  48. {
  49. border-image: url(:/close.png);
  50. }
  51. QPushButton#btnClose:hover
  52. {
  53. border-image: url(:/close_hover.png);
  54. }
  55. QPushButton#btnCancel
  56. {
  57. background: #FFFFFF;
  58. border-radius: 16px;
  59. border: 1px solid #E6E9F4;
  60. font-weight: 500;
  61. font-size: 14px;
  62. color: #3A3F63;
  63. }
  64. QPushButton#btnCancel:hover
  65. {
  66. border: 1px solid #4458FE;
  67. color: #4458FE;
  68. }
  69. QPushButton#btnOK
  70. {
  71. background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 #4F8AFF, stop:1 #4B5EFF);
  72. border-radius: 16px;
  73. font-weight: 500;
  74. font-size: 14px;
  75. color: #FFFFFF;
  76. }
  77. QPushButton#btnOK:hover
  78. {
  79. background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 #4F8AFF, stop:1 #7182ff);
  80. }
  81. QPushButton#btnAdd
  82. {
  83. border-image: url(:/add.png);
  84. }
  85. QPushButton#btnAdd:hover
  86. {
  87. border-image: url(:/add_hover.png);
  88. }
  89. QLineEdit
  90. {
  91. background: #FFFFFF;
  92. border-radius: 4px;
  93. border: 1px solid #E6E9F4;
  94. padding-left: 12px;
  95. font-weight: 400;
  96. font-size: 14px;
  97. color: #3A3F63;
  98. }
  99. QLineEdit:hover,QLineEdit:focus
  100. {
  101. border: 1px solid #4458FE;
  102. }
  103. QCheckBox#checkBoxItem
  104. {
  105. font-weight: 400;
  106. font-size: 14px;
  107. color: #3A3F63;
  108. }
  109. QCheckBox#checkBoxItem::indicator
  110. {
  111. width: 16px;
  112. height: 16px;
  113. }
  114. QCheckBox#checkBoxItem::indicator:unchecked
  115. {
  116. image: url(:/unchecked.png);
  117. }
  118. QCheckBox#checkBoxItem::indicator:checked
  119. {
  120. image: url(:/checked.png);
  121. }
  122. QCheckBox#checkBoxMute,#checkBoxOverload,#checkBoxPhase
  123. {
  124. font-weight: 400;
  125. font-size: 14px;
  126. color: #3A3F63;
  127. }
  128. QCheckBox#checkBoxMute::indicator,
  129. #checkBoxOverload::indicator,
  130. #checkBoxPhase::indicator
  131. {
  132. width: 44px;
  133. height: 22px;
  134. }
  135. QCheckBox#checkBoxMute::indicator:unchecked,
  136. #checkBoxOverload::indicator:unchecked,
  137. #checkBoxPhase::indicator:unchecked
  138. {
  139. image: url(:/offswitch.png);
  140. }
  141. QCheckBox#checkBoxMute::indicator:checked,
  142. #checkBoxOverload::indicator:checked,
  143. #checkBoxPhase::indicator:checked
  144. {
  145. image: url(:/onswitch.png);
  146. }
  147. QScrollArea,QWidget#scrollAreaWidgetContents
  148. {
  149. background: transparent;
  150. border: none;
  151. }
  152. QScrollBar:vertical
  153. {
  154. width: 6px;
  155. border:none;
  156. background: transparent;
  157. margin-right: 0px;
  158. }
  159. QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical
  160. {
  161. background: transparent;
  162. border: none;
  163. }
  164. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
  165. {
  166. background: transparent;
  167. }
  168. QScrollBar::handle:vertical
  169. {
  170. background: #E2E2E2;
  171. border-radius: 1px;
  172. margin-right: 1px;
  173. margin-left: 1px;
  174. }
  175. QScrollBar::handle:vertical:hover
  176. {
  177. background: rgb(234, 234, 234);
  178. margin-right: 0px;
  179. margin-left: 0px;
  180. border-radius: 2px;
  181. }
  182. QScrollBar::handle:vertical:pressed
  183. {
  184. background: rgb(234, 234, 234);
  185. margin-right: 0px;
  186. margin-left: 0px;
  187. border-radius: 2px;
  188. }</string>
  189. </property>
  190. <layout class="QGridLayout" name="gridLayout">
  191. <property name="leftMargin">
  192. <number>0</number>
  193. </property>
  194. <property name="topMargin">
  195. <number>0</number>
  196. </property>
  197. <property name="rightMargin">
  198. <number>0</number>
  199. </property>
  200. <property name="bottomMargin">
  201. <number>0</number>
  202. </property>
  203. <property name="spacing">
  204. <number>0</number>
  205. </property>
  206. <item row="0" column="0">
  207. <widget class="QWidget" name="widgetBackground" native="true">
  208. <layout class="QVBoxLayout" name="verticalLayout">
  209. <property name="spacing">
  210. <number>0</number>
  211. </property>
  212. <property name="leftMargin">
  213. <number>0</number>
  214. </property>
  215. <property name="topMargin">
  216. <number>0</number>
  217. </property>
  218. <property name="rightMargin">
  219. <number>0</number>
  220. </property>
  221. <property name="bottomMargin">
  222. <number>0</number>
  223. </property>
  224. <item>
  225. <widget class="QWidget" name="widgetTop" native="true">
  226. <property name="minimumSize">
  227. <size>
  228. <width>0</width>
  229. <height>57</height>
  230. </size>
  231. </property>
  232. <property name="maximumSize">
  233. <size>
  234. <width>16777215</width>
  235. <height>57</height>
  236. </size>
  237. </property>
  238. <layout class="QHBoxLayout" name="horizontalLayout">
  239. <property name="spacing">
  240. <number>0</number>
  241. </property>
  242. <property name="leftMargin">
  243. <number>32</number>
  244. </property>
  245. <property name="topMargin">
  246. <number>0</number>
  247. </property>
  248. <property name="rightMargin">
  249. <number>16</number>
  250. </property>
  251. <property name="bottomMargin">
  252. <number>0</number>
  253. </property>
  254. <item>
  255. <widget class="QLabel" name="labelTitle">
  256. <property name="text">
  257. <string>对比项信息</string>
  258. </property>
  259. </widget>
  260. </item>
  261. <item>
  262. <widget class="QPushButton" name="btnClose">
  263. <property name="minimumSize">
  264. <size>
  265. <width>32</width>
  266. <height>32</height>
  267. </size>
  268. </property>
  269. <property name="maximumSize">
  270. <size>
  271. <width>32</width>
  272. <height>32</height>
  273. </size>
  274. </property>
  275. <property name="text">
  276. <string/>
  277. </property>
  278. </widget>
  279. </item>
  280. </layout>
  281. </widget>
  282. </item>
  283. <item>
  284. <widget class="QWidget" name="widgetContent" native="true">
  285. <layout class="QVBoxLayout" name="verticalLayout_4">
  286. <property name="spacing">
  287. <number>16</number>
  288. </property>
  289. <property name="leftMargin">
  290. <number>32</number>
  291. </property>
  292. <property name="topMargin">
  293. <number>32</number>
  294. </property>
  295. <property name="rightMargin">
  296. <number>32</number>
  297. </property>
  298. <property name="bottomMargin">
  299. <number>0</number>
  300. </property>
  301. <item>
  302. <widget class="QWidget" name="widget_5" native="true">
  303. <layout class="QVBoxLayout" name="verticalLayout_2">
  304. <property name="spacing">
  305. <number>16</number>
  306. </property>
  307. <property name="sizeConstraint">
  308. <enum>QLayout::SetNoConstraint</enum>
  309. </property>
  310. <property name="leftMargin">
  311. <number>0</number>
  312. </property>
  313. <property name="topMargin">
  314. <number>0</number>
  315. </property>
  316. <property name="rightMargin">
  317. <number>0</number>
  318. </property>
  319. <property name="bottomMargin">
  320. <number>16</number>
  321. </property>
  322. <item>
  323. <widget class="QLabel" name="labelBase">
  324. <property name="text">
  325. <string>基础信息</string>
  326. </property>
  327. </widget>
  328. </item>
  329. <item>
  330. <widget class="QWidget" name="widget_3" native="true">
  331. <property name="minimumSize">
  332. <size>
  333. <width>1094</width>
  334. <height>32</height>
  335. </size>
  336. </property>
  337. <property name="maximumSize">
  338. <size>
  339. <width>1094</width>
  340. <height>32</height>
  341. </size>
  342. </property>
  343. <layout class="QHBoxLayout" name="horizontalLayout_3">
  344. <property name="spacing">
  345. <number>0</number>
  346. </property>
  347. <property name="leftMargin">
  348. <number>0</number>
  349. </property>
  350. <property name="topMargin">
  351. <number>0</number>
  352. </property>
  353. <property name="rightMargin">
  354. <number>0</number>
  355. </property>
  356. <property name="bottomMargin">
  357. <number>0</number>
  358. </property>
  359. <item>
  360. <widget class="QLabel" name="label_11">
  361. <property name="minimumSize">
  362. <size>
  363. <width>92</width>
  364. <height>32</height>
  365. </size>
  366. </property>
  367. <property name="maximumSize">
  368. <size>
  369. <width>92</width>
  370. <height>32</height>
  371. </size>
  372. </property>
  373. <property name="text">
  374. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;对比项名称:</string>
  375. </property>
  376. <property name="alignment">
  377. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  378. </property>
  379. </widget>
  380. </item>
  381. <item>
  382. <widget class="QLineEdit" name="lineEdit_6">
  383. <property name="minimumSize">
  384. <size>
  385. <width>320</width>
  386. <height>32</height>
  387. </size>
  388. </property>
  389. <property name="maximumSize">
  390. <size>
  391. <width>320</width>
  392. <height>32</height>
  393. </size>
  394. </property>
  395. </widget>
  396. </item>
  397. <item>
  398. <spacer name="horizontalSpacer_3">
  399. <property name="orientation">
  400. <enum>Qt::Horizontal</enum>
  401. </property>
  402. <property name="sizeType">
  403. <enum>QSizePolicy::Fixed</enum>
  404. </property>
  405. <property name="sizeHint" stdset="0">
  406. <size>
  407. <width>24</width>
  408. <height>20</height>
  409. </size>
  410. </property>
  411. </spacer>
  412. </item>
  413. <item>
  414. <widget class="QCheckBox" name="checkBoxItem">
  415. <property name="text">
  416. <string>勾选启用该对比项,否则不做任何检测及对比,同时客户端界面上也不显示</string>
  417. </property>
  418. </widget>
  419. </item>
  420. </layout>
  421. </widget>
  422. </item>
  423. <item>
  424. <widget class="SingleCompareRoadWidget" name="widget_4" native="true">
  425. <property name="minimumSize">
  426. <size>
  427. <width>1106</width>
  428. <height>32</height>
  429. </size>
  430. </property>
  431. <property name="maximumSize">
  432. <size>
  433. <width>1106</width>
  434. <height>32</height>
  435. </size>
  436. </property>
  437. <property name="bDelBtnVisible" stdset="0">
  438. <bool>false</bool>
  439. </property>
  440. <property name="nIndex" stdset="0">
  441. <number>1</number>
  442. </property>
  443. </widget>
  444. </item>
  445. <item>
  446. <widget class="SingleCompareRoadWidget" name="widget_2" native="true">
  447. <property name="minimumSize">
  448. <size>
  449. <width>1106</width>
  450. <height>32</height>
  451. </size>
  452. </property>
  453. <property name="maximumSize">
  454. <size>
  455. <width>1106</width>
  456. <height>32</height>
  457. </size>
  458. </property>
  459. <property name="bDelBtnVisible" stdset="0">
  460. <bool>false</bool>
  461. </property>
  462. <property name="nIndex" stdset="0">
  463. <number>2</number>
  464. </property>
  465. </widget>
  466. </item>
  467. <item>
  468. <widget class="QWidget" name="widget" native="true">
  469. <property name="minimumSize">
  470. <size>
  471. <width>0</width>
  472. <height>224</height>
  473. </size>
  474. </property>
  475. <property name="maximumSize">
  476. <size>
  477. <width>16777215</width>
  478. <height>224</height>
  479. </size>
  480. </property>
  481. <layout class="QVBoxLayout" name="verticalLayout_3">
  482. <property name="spacing">
  483. <number>16</number>
  484. </property>
  485. <property name="leftMargin">
  486. <number>0</number>
  487. </property>
  488. <property name="topMargin">
  489. <number>0</number>
  490. </property>
  491. <property name="rightMargin">
  492. <number>0</number>
  493. </property>
  494. <property name="bottomMargin">
  495. <number>0</number>
  496. </property>
  497. <item>
  498. <widget class="QWidget" name="widget_6" native="true">
  499. <layout class="QHBoxLayout" name="horizontalLayout_5">
  500. <property name="spacing">
  501. <number>8</number>
  502. </property>
  503. <property name="leftMargin">
  504. <number>0</number>
  505. </property>
  506. <property name="topMargin">
  507. <number>0</number>
  508. </property>
  509. <property name="rightMargin">
  510. <number>0</number>
  511. </property>
  512. <property name="bottomMargin">
  513. <number>0</number>
  514. </property>
  515. <item>
  516. <widget class="QLabel" name="labelOtherRoad">
  517. <property name="text">
  518. <string>其他通道</string>
  519. </property>
  520. </widget>
  521. </item>
  522. <item>
  523. <widget class="QPushButton" name="btnAdd">
  524. <property name="minimumSize">
  525. <size>
  526. <width>32</width>
  527. <height>32</height>
  528. </size>
  529. </property>
  530. <property name="maximumSize">
  531. <size>
  532. <width>32</width>
  533. <height>32</height>
  534. </size>
  535. </property>
  536. <property name="text">
  537. <string/>
  538. </property>
  539. </widget>
  540. </item>
  541. <item>
  542. <spacer name="horizontalSpacer_4">
  543. <property name="orientation">
  544. <enum>Qt::Horizontal</enum>
  545. </property>
  546. <property name="sizeHint" stdset="0">
  547. <size>
  548. <width>40</width>
  549. <height>20</height>
  550. </size>
  551. </property>
  552. </spacer>
  553. </item>
  554. </layout>
  555. </widget>
  556. </item>
  557. <item>
  558. <widget class="QScrollArea" name="scrollArea">
  559. <property name="verticalScrollBarPolicy">
  560. <enum>Qt::ScrollBarAsNeeded</enum>
  561. </property>
  562. <property name="horizontalScrollBarPolicy">
  563. <enum>Qt::ScrollBarAlwaysOff</enum>
  564. </property>
  565. <property name="widgetResizable">
  566. <bool>true</bool>
  567. </property>
  568. <widget class="QWidget" name="scrollAreaWidgetContents">
  569. <property name="geometry">
  570. <rect>
  571. <x>0</x>
  572. <y>0</y>
  573. <width>1188</width>
  574. <height>176</height>
  575. </rect>
  576. </property>
  577. <layout class="QVBoxLayout" name="verticalLayout_6">
  578. <property name="spacing">
  579. <number>16</number>
  580. </property>
  581. <property name="leftMargin">
  582. <number>0</number>
  583. </property>
  584. <property name="topMargin">
  585. <number>0</number>
  586. </property>
  587. <property name="rightMargin">
  588. <number>0</number>
  589. </property>
  590. <property name="bottomMargin">
  591. <number>0</number>
  592. </property>
  593. <item>
  594. <spacer name="verticalSpacer">
  595. <property name="orientation">
  596. <enum>Qt::Vertical</enum>
  597. </property>
  598. <property name="sizeHint" stdset="0">
  599. <size>
  600. <width>20</width>
  601. <height>173</height>
  602. </size>
  603. </property>
  604. </spacer>
  605. </item>
  606. </layout>
  607. </widget>
  608. </widget>
  609. </item>
  610. </layout>
  611. </widget>
  612. </item>
  613. </layout>
  614. </widget>
  615. </item>
  616. <item>
  617. <widget class="QWidget" name="widget_7" native="true">
  618. <layout class="QVBoxLayout" name="verticalLayout_5">
  619. <property name="spacing">
  620. <number>16</number>
  621. </property>
  622. <property name="leftMargin">
  623. <number>0</number>
  624. </property>
  625. <property name="topMargin">
  626. <number>0</number>
  627. </property>
  628. <property name="rightMargin">
  629. <number>0</number>
  630. </property>
  631. <property name="bottomMargin">
  632. <number>0</number>
  633. </property>
  634. <item>
  635. <widget class="QLabel" name="label">
  636. <property name="minimumSize">
  637. <size>
  638. <width>0</width>
  639. <height>16</height>
  640. </size>
  641. </property>
  642. <property name="maximumSize">
  643. <size>
  644. <width>16777215</width>
  645. <height>16</height>
  646. </size>
  647. </property>
  648. <property name="text">
  649. <string>音频监测配置</string>
  650. </property>
  651. </widget>
  652. </item>
  653. <item>
  654. <widget class="QWidget" name="widgetMute" native="true">
  655. <property name="minimumSize">
  656. <size>
  657. <width>0</width>
  658. <height>116</height>
  659. </size>
  660. </property>
  661. <property name="maximumSize">
  662. <size>
  663. <width>16777215</width>
  664. <height>116</height>
  665. </size>
  666. </property>
  667. <widget class="QLabel" name="labelMute">
  668. <property name="geometry">
  669. <rect>
  670. <x>0</x>
  671. <y>0</y>
  672. <width>41</width>
  673. <height>14</height>
  674. </rect>
  675. </property>
  676. <property name="text">
  677. <string>静音</string>
  678. </property>
  679. </widget>
  680. <widget class="QLabel" name="label_3">
  681. <property name="geometry">
  682. <rect>
  683. <x>0</x>
  684. <y>30</y>
  685. <width>70</width>
  686. <height>22</height>
  687. </rect>
  688. </property>
  689. <property name="text">
  690. <string>静音检测:</string>
  691. </property>
  692. </widget>
  693. <widget class="QCheckBox" name="checkBoxMute">
  694. <property name="geometry">
  695. <rect>
  696. <x>70</x>
  697. <y>30</y>
  698. <width>76</width>
  699. <height>22</height>
  700. </rect>
  701. </property>
  702. <property name="text">
  703. <string>开启</string>
  704. </property>
  705. </widget>
  706. <widget class="QLabel" name="label_4">
  707. <property name="geometry">
  708. <rect>
  709. <x>0</x>
  710. <y>68</y>
  711. <width>70</width>
  712. <height>32</height>
  713. </rect>
  714. </property>
  715. <property name="text">
  716. <string>静音阈值:</string>
  717. </property>
  718. </widget>
  719. <widget class="QLineEdit" name="lineEditMuteThreshold">
  720. <property name="geometry">
  721. <rect>
  722. <x>82</x>
  723. <y>68</y>
  724. <width>78</width>
  725. <height>32</height>
  726. </rect>
  727. </property>
  728. </widget>
  729. <widget class="QLabel" name="label_5">
  730. <property name="geometry">
  731. <rect>
  732. <x>164</x>
  733. <y>68</y>
  734. <width>82</width>
  735. <height>32</height>
  736. </rect>
  737. </property>
  738. <property name="text">
  739. <string>(40~84)dBFS</string>
  740. </property>
  741. </widget>
  742. <widget class="QLabel" name="label_6">
  743. <property name="geometry">
  744. <rect>
  745. <x>70</x>
  746. <y>68</y>
  747. <width>5</width>
  748. <height>32</height>
  749. </rect>
  750. </property>
  751. <property name="text">
  752. <string>-</string>
  753. </property>
  754. </widget>
  755. <widget class="QLabel" name="label_7">
  756. <property name="geometry">
  757. <rect>
  758. <x>270</x>
  759. <y>68</y>
  760. <width>70</width>
  761. <height>32</height>
  762. </rect>
  763. </property>
  764. <property name="text">
  765. <string>判断时长:</string>
  766. </property>
  767. </widget>
  768. <widget class="QLineEdit" name="lineEditMuteLen">
  769. <property name="geometry">
  770. <rect>
  771. <x>340</x>
  772. <y>68</y>
  773. <width>90</width>
  774. <height>32</height>
  775. </rect>
  776. </property>
  777. </widget>
  778. <widget class="QLabel" name="label_8">
  779. <property name="geometry">
  780. <rect>
  781. <x>434</x>
  782. <y>68</y>
  783. <width>61</width>
  784. <height>32</height>
  785. </rect>
  786. </property>
  787. <property name="text">
  788. <string>(2~90)s</string>
  789. </property>
  790. </widget>
  791. <widget class="QLabel" name="label_9">
  792. <property name="geometry">
  793. <rect>
  794. <x>684</x>
  795. <y>68</y>
  796. <width>81</width>
  797. <height>32</height>
  798. </rect>
  799. </property>
  800. <property name="text">
  801. <string>(22~100)%</string>
  802. </property>
  803. </widget>
  804. <widget class="QLabel" name="label_10">
  805. <property name="geometry">
  806. <rect>
  807. <x>506</x>
  808. <y>68</y>
  809. <width>84</width>
  810. <height>32</height>
  811. </rect>
  812. </property>
  813. <property name="text">
  814. <string>静音灵敏度:</string>
  815. </property>
  816. </widget>
  817. <widget class="QLineEdit" name="lineEditMuteSensibility">
  818. <property name="geometry">
  819. <rect>
  820. <x>590</x>
  821. <y>68</y>
  822. <width>90</width>
  823. <height>32</height>
  824. </rect>
  825. </property>
  826. </widget>
  827. </widget>
  828. </item>
  829. <item>
  830. <widget class="QWidget" name="widgetOverload" native="true">
  831. <property name="minimumSize">
  832. <size>
  833. <width>0</width>
  834. <height>116</height>
  835. </size>
  836. </property>
  837. <property name="maximumSize">
  838. <size>
  839. <width>16777215</width>
  840. <height>116</height>
  841. </size>
  842. </property>
  843. <widget class="QLabel" name="labelOverload">
  844. <property name="geometry">
  845. <rect>
  846. <x>0</x>
  847. <y>0</y>
  848. <width>41</width>
  849. <height>14</height>
  850. </rect>
  851. </property>
  852. <property name="text">
  853. <string>过载</string>
  854. </property>
  855. </widget>
  856. <widget class="QLabel" name="label_13">
  857. <property name="geometry">
  858. <rect>
  859. <x>0</x>
  860. <y>30</y>
  861. <width>70</width>
  862. <height>22</height>
  863. </rect>
  864. </property>
  865. <property name="text">
  866. <string>过载检测:</string>
  867. </property>
  868. </widget>
  869. <widget class="QCheckBox" name="checkBoxOverload">
  870. <property name="geometry">
  871. <rect>
  872. <x>70</x>
  873. <y>30</y>
  874. <width>76</width>
  875. <height>22</height>
  876. </rect>
  877. </property>
  878. <property name="text">
  879. <string>开启</string>
  880. </property>
  881. </widget>
  882. <widget class="QLabel" name="label_14">
  883. <property name="geometry">
  884. <rect>
  885. <x>0</x>
  886. <y>68</y>
  887. <width>70</width>
  888. <height>32</height>
  889. </rect>
  890. </property>
  891. <property name="text">
  892. <string>过载阈值:</string>
  893. </property>
  894. </widget>
  895. <widget class="QLineEdit" name="lineEditOverloadThreshold">
  896. <property name="geometry">
  897. <rect>
  898. <x>82</x>
  899. <y>68</y>
  900. <width>78</width>
  901. <height>32</height>
  902. </rect>
  903. </property>
  904. </widget>
  905. <widget class="QLabel" name="label_15">
  906. <property name="geometry">
  907. <rect>
  908. <x>164</x>
  909. <y>68</y>
  910. <width>82</width>
  911. <height>32</height>
  912. </rect>
  913. </property>
  914. <property name="text">
  915. <string>(0~40)dBFS</string>
  916. </property>
  917. </widget>
  918. <widget class="QLabel" name="label_16">
  919. <property name="geometry">
  920. <rect>
  921. <x>70</x>
  922. <y>68</y>
  923. <width>5</width>
  924. <height>32</height>
  925. </rect>
  926. </property>
  927. <property name="text">
  928. <string>-</string>
  929. </property>
  930. </widget>
  931. <widget class="QLabel" name="label_17">
  932. <property name="geometry">
  933. <rect>
  934. <x>270</x>
  935. <y>68</y>
  936. <width>70</width>
  937. <height>32</height>
  938. </rect>
  939. </property>
  940. <property name="text">
  941. <string>判断时长:</string>
  942. </property>
  943. </widget>
  944. <widget class="QLineEdit" name="lineEditOverloadLen">
  945. <property name="geometry">
  946. <rect>
  947. <x>340</x>
  948. <y>68</y>
  949. <width>90</width>
  950. <height>32</height>
  951. </rect>
  952. </property>
  953. </widget>
  954. <widget class="QLabel" name="label_18">
  955. <property name="geometry">
  956. <rect>
  957. <x>434</x>
  958. <y>68</y>
  959. <width>61</width>
  960. <height>32</height>
  961. </rect>
  962. </property>
  963. <property name="text">
  964. <string>(2~90)s</string>
  965. </property>
  966. </widget>
  967. <widget class="QLabel" name="label_19">
  968. <property name="geometry">
  969. <rect>
  970. <x>684</x>
  971. <y>68</y>
  972. <width>81</width>
  973. <height>32</height>
  974. </rect>
  975. </property>
  976. <property name="text">
  977. <string>(22~100)%</string>
  978. </property>
  979. </widget>
  980. <widget class="QLabel" name="label_20">
  981. <property name="geometry">
  982. <rect>
  983. <x>506</x>
  984. <y>68</y>
  985. <width>84</width>
  986. <height>32</height>
  987. </rect>
  988. </property>
  989. <property name="text">
  990. <string>过载灵敏度:</string>
  991. </property>
  992. </widget>
  993. <widget class="QLineEdit" name="lineEditOverloadSensibility">
  994. <property name="geometry">
  995. <rect>
  996. <x>590</x>
  997. <y>68</y>
  998. <width>90</width>
  999. <height>32</height>
  1000. </rect>
  1001. </property>
  1002. </widget>
  1003. </widget>
  1004. </item>
  1005. <item>
  1006. <widget class="QWidget" name="widgetPhase" native="true">
  1007. <property name="minimumSize">
  1008. <size>
  1009. <width>0</width>
  1010. <height>116</height>
  1011. </size>
  1012. </property>
  1013. <property name="maximumSize">
  1014. <size>
  1015. <width>16777215</width>
  1016. <height>116</height>
  1017. </size>
  1018. </property>
  1019. <widget class="QLabel" name="labelPhase">
  1020. <property name="geometry">
  1021. <rect>
  1022. <x>0</x>
  1023. <y>0</y>
  1024. <width>41</width>
  1025. <height>14</height>
  1026. </rect>
  1027. </property>
  1028. <property name="text">
  1029. <string>反相</string>
  1030. </property>
  1031. </widget>
  1032. <widget class="QLabel" name="label_22">
  1033. <property name="geometry">
  1034. <rect>
  1035. <x>0</x>
  1036. <y>30</y>
  1037. <width>70</width>
  1038. <height>22</height>
  1039. </rect>
  1040. </property>
  1041. <property name="text">
  1042. <string>反相检测:</string>
  1043. </property>
  1044. </widget>
  1045. <widget class="QCheckBox" name="checkBoxPhase">
  1046. <property name="geometry">
  1047. <rect>
  1048. <x>70</x>
  1049. <y>30</y>
  1050. <width>76</width>
  1051. <height>22</height>
  1052. </rect>
  1053. </property>
  1054. <property name="text">
  1055. <string>开启</string>
  1056. </property>
  1057. </widget>
  1058. <widget class="QLabel" name="label_23">
  1059. <property name="geometry">
  1060. <rect>
  1061. <x>0</x>
  1062. <y>68</y>
  1063. <width>70</width>
  1064. <height>32</height>
  1065. </rect>
  1066. </property>
  1067. <property name="text">
  1068. <string>反相阈值:</string>
  1069. </property>
  1070. </widget>
  1071. <widget class="QLineEdit" name="lineEditPhaseThreshold">
  1072. <property name="geometry">
  1073. <rect>
  1074. <x>82</x>
  1075. <y>68</y>
  1076. <width>78</width>
  1077. <height>32</height>
  1078. </rect>
  1079. </property>
  1080. </widget>
  1081. <widget class="QLabel" name="label_24">
  1082. <property name="geometry">
  1083. <rect>
  1084. <x>164</x>
  1085. <y>68</y>
  1086. <width>82</width>
  1087. <height>32</height>
  1088. </rect>
  1089. </property>
  1090. <property name="text">
  1091. <string>(0~0.99)</string>
  1092. </property>
  1093. </widget>
  1094. <widget class="QLabel" name="label_25">
  1095. <property name="geometry">
  1096. <rect>
  1097. <x>70</x>
  1098. <y>68</y>
  1099. <width>5</width>
  1100. <height>32</height>
  1101. </rect>
  1102. </property>
  1103. <property name="text">
  1104. <string>-</string>
  1105. </property>
  1106. </widget>
  1107. <widget class="QLabel" name="label_26">
  1108. <property name="geometry">
  1109. <rect>
  1110. <x>270</x>
  1111. <y>68</y>
  1112. <width>70</width>
  1113. <height>32</height>
  1114. </rect>
  1115. </property>
  1116. <property name="text">
  1117. <string>判断时长:</string>
  1118. </property>
  1119. </widget>
  1120. <widget class="QLineEdit" name="lineEditPhaseLen">
  1121. <property name="geometry">
  1122. <rect>
  1123. <x>340</x>
  1124. <y>68</y>
  1125. <width>90</width>
  1126. <height>32</height>
  1127. </rect>
  1128. </property>
  1129. </widget>
  1130. <widget class="QLabel" name="label_27">
  1131. <property name="geometry">
  1132. <rect>
  1133. <x>434</x>
  1134. <y>68</y>
  1135. <width>61</width>
  1136. <height>32</height>
  1137. </rect>
  1138. </property>
  1139. <property name="text">
  1140. <string>(10~90)s</string>
  1141. </property>
  1142. </widget>
  1143. <widget class="QLabel" name="label_28">
  1144. <property name="geometry">
  1145. <rect>
  1146. <x>684</x>
  1147. <y>68</y>
  1148. <width>81</width>
  1149. <height>32</height>
  1150. </rect>
  1151. </property>
  1152. <property name="text">
  1153. <string>(22~100)%</string>
  1154. </property>
  1155. </widget>
  1156. <widget class="QLabel" name="label_29">
  1157. <property name="geometry">
  1158. <rect>
  1159. <x>506</x>
  1160. <y>68</y>
  1161. <width>84</width>
  1162. <height>32</height>
  1163. </rect>
  1164. </property>
  1165. <property name="text">
  1166. <string>反相灵敏度:</string>
  1167. </property>
  1168. </widget>
  1169. <widget class="QLineEdit" name="lineEditPhaseSensibility">
  1170. <property name="geometry">
  1171. <rect>
  1172. <x>590</x>
  1173. <y>68</y>
  1174. <width>90</width>
  1175. <height>32</height>
  1176. </rect>
  1177. </property>
  1178. </widget>
  1179. </widget>
  1180. </item>
  1181. </layout>
  1182. </widget>
  1183. </item>
  1184. </layout>
  1185. </widget>
  1186. </item>
  1187. <item>
  1188. <widget class="QWidget" name="widgetBottom" native="true">
  1189. <property name="minimumSize">
  1190. <size>
  1191. <width>0</width>
  1192. <height>96</height>
  1193. </size>
  1194. </property>
  1195. <property name="maximumSize">
  1196. <size>
  1197. <width>16777215</width>
  1198. <height>96</height>
  1199. </size>
  1200. </property>
  1201. <layout class="QHBoxLayout" name="horizontalLayout_2">
  1202. <property name="spacing">
  1203. <number>16</number>
  1204. </property>
  1205. <property name="leftMargin">
  1206. <number>32</number>
  1207. </property>
  1208. <property name="topMargin">
  1209. <number>0</number>
  1210. </property>
  1211. <property name="rightMargin">
  1212. <number>32</number>
  1213. </property>
  1214. <property name="bottomMargin">
  1215. <number>0</number>
  1216. </property>
  1217. <item>
  1218. <spacer name="horizontalSpacer">
  1219. <property name="orientation">
  1220. <enum>Qt::Horizontal</enum>
  1221. </property>
  1222. <property name="sizeHint" stdset="0">
  1223. <size>
  1224. <width>40</width>
  1225. <height>20</height>
  1226. </size>
  1227. </property>
  1228. </spacer>
  1229. </item>
  1230. <item>
  1231. <widget class="QPushButton" name="btnCancel">
  1232. <property name="minimumSize">
  1233. <size>
  1234. <width>60</width>
  1235. <height>32</height>
  1236. </size>
  1237. </property>
  1238. <property name="maximumSize">
  1239. <size>
  1240. <width>60</width>
  1241. <height>32</height>
  1242. </size>
  1243. </property>
  1244. <property name="text">
  1245. <string>取消</string>
  1246. </property>
  1247. </widget>
  1248. </item>
  1249. <item>
  1250. <widget class="QPushButton" name="btnOK">
  1251. <property name="minimumSize">
  1252. <size>
  1253. <width>60</width>
  1254. <height>32</height>
  1255. </size>
  1256. </property>
  1257. <property name="maximumSize">
  1258. <size>
  1259. <width>60</width>
  1260. <height>32</height>
  1261. </size>
  1262. </property>
  1263. <property name="text">
  1264. <string>确定</string>
  1265. </property>
  1266. </widget>
  1267. </item>
  1268. </layout>
  1269. </widget>
  1270. </item>
  1271. </layout>
  1272. </widget>
  1273. </item>
  1274. </layout>
  1275. </widget>
  1276. <customwidgets>
  1277. <customwidget>
  1278. <class>SingleCompareRoadWidget</class>
  1279. <extends>QWidget</extends>
  1280. <header>Modules/Basic/singlecompareroadwidget.h</header>
  1281. <container>1</container>
  1282. </customwidget>
  1283. </customwidgets>
  1284. <resources/>
  1285. <connections/>
  1286. </ui>