noisemonitorparamdialog.ui 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>NoiseMonitorParamDialog</class>
  4. <widget class="QDialog" name="NoiseMonitorParamDialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1000</width>
  10. <height>774</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
  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#label,#label_8,#label_9,#label_14,#label_17
  38. {
  39. font-weight: 500;
  40. font-size: 16px;
  41. }
  42. QPushButton#btnClose
  43. {
  44. border-image: url(:/close.png);
  45. }
  46. QPushButton#btnClose:hover
  47. {
  48. border-image: url(:/close_hover.png);
  49. }
  50. QPushButton#btnCancel
  51. {
  52. background: #FFFFFF;
  53. border-radius: 16px;
  54. border: 1px solid #E6E9F4;
  55. font-weight: 500;
  56. font-size: 14px;
  57. color: #3A3F63;
  58. }
  59. QPushButton#btnCancel:hover
  60. {
  61. border: 1px solid #4458FE;
  62. color: #4458FE;
  63. }
  64. QPushButton#btnOK
  65. {
  66. background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 #4F8AFF, stop:1 #4B5EFF);
  67. border-radius: 16px;
  68. font-weight: 500;
  69. font-size: 14px;
  70. color: #FFFFFF;
  71. }
  72. QPushButton#btnOK:hover
  73. {
  74. background: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 #4F8AFF, stop:1 #7182ff);
  75. }
  76. QPushButton#btnDefault
  77. {
  78. background: #FFFFFF;
  79. border-radius: 4px;
  80. border: 1px solid #E6E9F4;
  81. font-weight: 500;
  82. font-size: 14px;
  83. color: #3A3F63;
  84. }
  85. QPushButton#btnDefault:hover
  86. {
  87. border: 1px solid #4458FE;
  88. color: #4458FE;
  89. }
  90. QLineEdit
  91. {
  92. background: #FFFFFF;
  93. border-radius: 4px;
  94. border: 1px solid #E6E9F4;
  95. font-weight: 400;
  96. font-size: 14px;
  97. color: #3A3F63;
  98. padding-left: 12px;
  99. }
  100. QLineEdit:hover,QLineEdit:focus
  101. {
  102. border: 1px solid #4458FE;
  103. }</string>
  104. </property>
  105. <layout class="QGridLayout" name="gridLayout">
  106. <property name="leftMargin">
  107. <number>0</number>
  108. </property>
  109. <property name="topMargin">
  110. <number>0</number>
  111. </property>
  112. <property name="rightMargin">
  113. <number>0</number>
  114. </property>
  115. <property name="bottomMargin">
  116. <number>0</number>
  117. </property>
  118. <property name="spacing">
  119. <number>0</number>
  120. </property>
  121. <item row="0" column="0">
  122. <widget class="QWidget" name="widgetBackground" native="true">
  123. <layout class="QVBoxLayout" name="verticalLayout">
  124. <property name="spacing">
  125. <number>0</number>
  126. </property>
  127. <property name="leftMargin">
  128. <number>0</number>
  129. </property>
  130. <property name="topMargin">
  131. <number>0</number>
  132. </property>
  133. <property name="rightMargin">
  134. <number>0</number>
  135. </property>
  136. <property name="bottomMargin">
  137. <number>0</number>
  138. </property>
  139. <item>
  140. <widget class="QWidget" name="widgetTop" native="true">
  141. <property name="minimumSize">
  142. <size>
  143. <width>0</width>
  144. <height>57</height>
  145. </size>
  146. </property>
  147. <property name="maximumSize">
  148. <size>
  149. <width>16777215</width>
  150. <height>57</height>
  151. </size>
  152. </property>
  153. <layout class="QHBoxLayout" name="horizontalLayout_2">
  154. <property name="spacing">
  155. <number>0</number>
  156. </property>
  157. <property name="leftMargin">
  158. <number>32</number>
  159. </property>
  160. <property name="topMargin">
  161. <number>0</number>
  162. </property>
  163. <property name="rightMargin">
  164. <number>16</number>
  165. </property>
  166. <property name="bottomMargin">
  167. <number>0</number>
  168. </property>
  169. <item>
  170. <widget class="QLabel" name="labelTitle">
  171. <property name="text">
  172. <string>噪音监测参数</string>
  173. </property>
  174. </widget>
  175. </item>
  176. <item>
  177. <widget class="QPushButton" name="btnClose">
  178. <property name="minimumSize">
  179. <size>
  180. <width>32</width>
  181. <height>32</height>
  182. </size>
  183. </property>
  184. <property name="maximumSize">
  185. <size>
  186. <width>32</width>
  187. <height>32</height>
  188. </size>
  189. </property>
  190. <property name="text">
  191. <string/>
  192. </property>
  193. </widget>
  194. </item>
  195. </layout>
  196. </widget>
  197. </item>
  198. <item>
  199. <widget class="QWidget" name="widgetContent" native="true">
  200. <widget class="QLabel" name="label">
  201. <property name="geometry">
  202. <rect>
  203. <x>32</x>
  204. <y>32</y>
  205. <width>64</width>
  206. <height>16</height>
  207. </rect>
  208. </property>
  209. <property name="text">
  210. <string>监测信息</string>
  211. </property>
  212. </widget>
  213. <widget class="QLabel" name="label_2">
  214. <property name="geometry">
  215. <rect>
  216. <x>32</x>
  217. <y>64</y>
  218. <width>176</width>
  219. <height>32</height>
  220. </rect>
  221. </property>
  222. <property name="minimumSize">
  223. <size>
  224. <width>0</width>
  225. <height>0</height>
  226. </size>
  227. </property>
  228. <property name="maximumSize">
  229. <size>
  230. <width>16777215</width>
  231. <height>16777215</height>
  232. </size>
  233. </property>
  234. <property name="text">
  235. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;注册码:</string>
  236. </property>
  237. <property name="alignment">
  238. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  239. </property>
  240. </widget>
  241. <widget class="QLineEdit" name="lineEdit">
  242. <property name="geometry">
  243. <rect>
  244. <x>208</x>
  245. <y>64</y>
  246. <width>208</width>
  247. <height>32</height>
  248. </rect>
  249. </property>
  250. </widget>
  251. <widget class="QLineEdit" name="lineEdit_2">
  252. <property name="geometry">
  253. <rect>
  254. <x>208</x>
  255. <y>112</y>
  256. <width>208</width>
  257. <height>32</height>
  258. </rect>
  259. </property>
  260. </widget>
  261. <widget class="QLabel" name="label_3">
  262. <property name="geometry">
  263. <rect>
  264. <x>32</x>
  265. <y>112</y>
  266. <width>176</width>
  267. <height>32</height>
  268. </rect>
  269. </property>
  270. <property name="minimumSize">
  271. <size>
  272. <width>0</width>
  273. <height>0</height>
  274. </size>
  275. </property>
  276. <property name="maximumSize">
  277. <size>
  278. <width>16777215</width>
  279. <height>16777215</height>
  280. </size>
  281. </property>
  282. <property name="text">
  283. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;连续几次噪音判断为预警:</string>
  284. </property>
  285. <property name="alignment">
  286. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  287. </property>
  288. </widget>
  289. <widget class="QLineEdit" name="lineEdit_3">
  290. <property name="geometry">
  291. <rect>
  292. <x>694</x>
  293. <y>64</y>
  294. <width>208</width>
  295. <height>32</height>
  296. </rect>
  297. </property>
  298. </widget>
  299. <widget class="QLabel" name="label_4">
  300. <property name="geometry">
  301. <rect>
  302. <x>504</x>
  303. <y>64</y>
  304. <width>190</width>
  305. <height>32</height>
  306. </rect>
  307. </property>
  308. <property name="minimumSize">
  309. <size>
  310. <width>0</width>
  311. <height>0</height>
  312. </size>
  313. </property>
  314. <property name="maximumSize">
  315. <size>
  316. <width>16777215</width>
  317. <height>16777215</height>
  318. </size>
  319. </property>
  320. <property name="text">
  321. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音检测持续次数:</string>
  322. </property>
  323. <property name="alignment">
  324. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  325. </property>
  326. </widget>
  327. <widget class="QLineEdit" name="lineEdit_4">
  328. <property name="geometry">
  329. <rect>
  330. <x>694</x>
  331. <y>112</y>
  332. <width>208</width>
  333. <height>32</height>
  334. </rect>
  335. </property>
  336. </widget>
  337. <widget class="QLabel" name="label_5">
  338. <property name="geometry">
  339. <rect>
  340. <x>504</x>
  341. <y>112</y>
  342. <width>190</width>
  343. <height>32</height>
  344. </rect>
  345. </property>
  346. <property name="minimumSize">
  347. <size>
  348. <width>0</width>
  349. <height>0</height>
  350. </size>
  351. </property>
  352. <property name="maximumSize">
  353. <size>
  354. <width>16777215</width>
  355. <height>16777215</height>
  356. </size>
  357. </property>
  358. <property name="text">
  359. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;持续次数里噪音次数百分比:</string>
  360. </property>
  361. <property name="alignment">
  362. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  363. </property>
  364. </widget>
  365. <widget class="QLineEdit" name="lineEdit_5">
  366. <property name="geometry">
  367. <rect>
  368. <x>208</x>
  369. <y>208</y>
  370. <width>208</width>
  371. <height>32</height>
  372. </rect>
  373. </property>
  374. </widget>
  375. <widget class="QLabel" name="label_6">
  376. <property name="geometry">
  377. <rect>
  378. <x>32</x>
  379. <y>208</y>
  380. <width>176</width>
  381. <height>32</height>
  382. </rect>
  383. </property>
  384. <property name="minimumSize">
  385. <size>
  386. <width>0</width>
  387. <height>0</height>
  388. </size>
  389. </property>
  390. <property name="maximumSize">
  391. <size>
  392. <width>16777215</width>
  393. <height>16777215</height>
  394. </size>
  395. </property>
  396. <property name="text">
  397. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;连续几次噪音判断为预警:</string>
  398. </property>
  399. <property name="alignment">
  400. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  401. </property>
  402. </widget>
  403. <widget class="QLineEdit" name="lineEdit_6">
  404. <property name="geometry">
  405. <rect>
  406. <x>694</x>
  407. <y>208</y>
  408. <width>208</width>
  409. <height>32</height>
  410. </rect>
  411. </property>
  412. </widget>
  413. <widget class="QLabel" name="label_7">
  414. <property name="geometry">
  415. <rect>
  416. <x>504</x>
  417. <y>208</y>
  418. <width>190</width>
  419. <height>32</height>
  420. </rect>
  421. </property>
  422. <property name="minimumSize">
  423. <size>
  424. <width>0</width>
  425. <height>0</height>
  426. </size>
  427. </property>
  428. <property name="maximumSize">
  429. <size>
  430. <width>16777215</width>
  431. <height>16777215</height>
  432. </size>
  433. </property>
  434. <property name="text">
  435. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;频率分量最大值:</string>
  436. </property>
  437. <property name="alignment">
  438. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  439. </property>
  440. </widget>
  441. <widget class="QLabel" name="label_8">
  442. <property name="geometry">
  443. <rect>
  444. <x>32</x>
  445. <y>176</y>
  446. <width>250</width>
  447. <height>16</height>
  448. </rect>
  449. </property>
  450. <property name="text">
  451. <string>分析频率分量的范围 (单位Hz)</string>
  452. </property>
  453. </widget>
  454. <widget class="QLineEdit" name="lineEdit_7">
  455. <property name="geometry">
  456. <rect>
  457. <x>694</x>
  458. <y>304</y>
  459. <width>208</width>
  460. <height>32</height>
  461. </rect>
  462. </property>
  463. </widget>
  464. <widget class="QLabel" name="label_9">
  465. <property name="geometry">
  466. <rect>
  467. <x>32</x>
  468. <y>272</y>
  469. <width>250</width>
  470. <height>16</height>
  471. </rect>
  472. </property>
  473. <property name="text">
  474. <string>单音(正弦、方波、锯齿波等)</string>
  475. </property>
  476. </widget>
  477. <widget class="QLabel" name="label_10">
  478. <property name="geometry">
  479. <rect>
  480. <x>32</x>
  481. <y>304</y>
  482. <width>176</width>
  483. <height>32</height>
  484. </rect>
  485. </property>
  486. <property name="minimumSize">
  487. <size>
  488. <width>0</width>
  489. <height>0</height>
  490. </size>
  491. </property>
  492. <property name="maximumSize">
  493. <size>
  494. <width>16777215</width>
  495. <height>16777215</height>
  496. </size>
  497. </property>
  498. <property name="text">
  499. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;单音阈值:</string>
  500. </property>
  501. <property name="alignment">
  502. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  503. </property>
  504. </widget>
  505. <widget class="QLineEdit" name="lineEdit_8">
  506. <property name="geometry">
  507. <rect>
  508. <x>208</x>
  509. <y>304</y>
  510. <width>208</width>
  511. <height>32</height>
  512. </rect>
  513. </property>
  514. </widget>
  515. <widget class="QLabel" name="label_11">
  516. <property name="geometry">
  517. <rect>
  518. <x>504</x>
  519. <y>304</y>
  520. <width>190</width>
  521. <height>32</height>
  522. </rect>
  523. </property>
  524. <property name="minimumSize">
  525. <size>
  526. <width>0</width>
  527. <height>0</height>
  528. </size>
  529. </property>
  530. <property name="maximumSize">
  531. <size>
  532. <width>16777215</width>
  533. <height>16777215</height>
  534. </size>
  535. </property>
  536. <property name="text">
  537. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;单音最小分量:</string>
  538. </property>
  539. <property name="alignment">
  540. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  541. </property>
  542. </widget>
  543. <widget class="QLineEdit" name="lineEdit_9">
  544. <property name="geometry">
  545. <rect>
  546. <x>694</x>
  547. <y>400</y>
  548. <width>208</width>
  549. <height>32</height>
  550. </rect>
  551. </property>
  552. </widget>
  553. <widget class="QLabel" name="label_12">
  554. <property name="geometry">
  555. <rect>
  556. <x>504</x>
  557. <y>400</y>
  558. <width>190</width>
  559. <height>32</height>
  560. </rect>
  561. </property>
  562. <property name="minimumSize">
  563. <size>
  564. <width>0</width>
  565. <height>0</height>
  566. </size>
  567. </property>
  568. <property name="maximumSize">
  569. <size>
  570. <width>16777215</width>
  571. <height>16777215</height>
  572. </size>
  573. </property>
  574. <property name="text">
  575. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音最小分量:</string>
  576. </property>
  577. <property name="alignment">
  578. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  579. </property>
  580. </widget>
  581. <widget class="QLineEdit" name="lineEdit_10">
  582. <property name="geometry">
  583. <rect>
  584. <x>208</x>
  585. <y>400</y>
  586. <width>208</width>
  587. <height>32</height>
  588. </rect>
  589. </property>
  590. </widget>
  591. <widget class="QLabel" name="label_13">
  592. <property name="geometry">
  593. <rect>
  594. <x>32</x>
  595. <y>400</y>
  596. <width>176</width>
  597. <height>32</height>
  598. </rect>
  599. </property>
  600. <property name="minimumSize">
  601. <size>
  602. <width>0</width>
  603. <height>0</height>
  604. </size>
  605. </property>
  606. <property name="maximumSize">
  607. <size>
  608. <width>16777215</width>
  609. <height>16777215</height>
  610. </size>
  611. </property>
  612. <property name="text">
  613. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音阈值:</string>
  614. </property>
  615. <property name="alignment">
  616. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  617. </property>
  618. </widget>
  619. <widget class="QLabel" name="label_14">
  620. <property name="geometry">
  621. <rect>
  622. <x>32</x>
  623. <y>368</y>
  624. <width>250</width>
  625. <height>16</height>
  626. </rect>
  627. </property>
  628. <property name="text">
  629. <string>噪声(白噪、分红噪、布朗噪等)</string>
  630. </property>
  631. </widget>
  632. <widget class="QPushButton" name="btnDefault">
  633. <property name="geometry">
  634. <rect>
  635. <x>209</x>
  636. <y>448</y>
  637. <width>88</width>
  638. <height>32</height>
  639. </rect>
  640. </property>
  641. <property name="text">
  642. <string>默认设置</string>
  643. </property>
  644. </widget>
  645. <widget class="QLabel" name="label_15">
  646. <property name="geometry">
  647. <rect>
  648. <x>308</x>
  649. <y>448</y>
  650. <width>600</width>
  651. <height>32</height>
  652. </rect>
  653. </property>
  654. <property name="text">
  655. <string>使用较小噪音系数(漏报减少,误报率加大),使用较大嗓音系数(误报减少,漏报率加大)</string>
  656. </property>
  657. </widget>
  658. <widget class="QLineEdit" name="lineEdit_11">
  659. <property name="geometry">
  660. <rect>
  661. <x>694</x>
  662. <y>544</y>
  663. <width>208</width>
  664. <height>32</height>
  665. </rect>
  666. </property>
  667. </widget>
  668. <widget class="QLabel" name="label_16">
  669. <property name="geometry">
  670. <rect>
  671. <x>32</x>
  672. <y>544</y>
  673. <width>176</width>
  674. <height>32</height>
  675. </rect>
  676. </property>
  677. <property name="minimumSize">
  678. <size>
  679. <width>0</width>
  680. <height>0</height>
  681. </size>
  682. </property>
  683. <property name="maximumSize">
  684. <size>
  685. <width>16777215</width>
  686. <height>16777215</height>
  687. </size>
  688. </property>
  689. <property name="text">
  690. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音判断时长(毫秒):</string>
  691. </property>
  692. <property name="alignment">
  693. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  694. </property>
  695. </widget>
  696. <widget class="QLabel" name="label_17">
  697. <property name="geometry">
  698. <rect>
  699. <x>32</x>
  700. <y>512</y>
  701. <width>232</width>
  702. <height>16</height>
  703. </rect>
  704. </property>
  705. <property name="text">
  706. <string>基础噪音判断</string>
  707. </property>
  708. </widget>
  709. <widget class="QLineEdit" name="lineEdit_12">
  710. <property name="geometry">
  711. <rect>
  712. <x>208</x>
  713. <y>544</y>
  714. <width>208</width>
  715. <height>32</height>
  716. </rect>
  717. </property>
  718. </widget>
  719. <widget class="QLabel" name="label_18">
  720. <property name="geometry">
  721. <rect>
  722. <x>504</x>
  723. <y>544</y>
  724. <width>190</width>
  725. <height>32</height>
  726. </rect>
  727. </property>
  728. <property name="minimumSize">
  729. <size>
  730. <width>0</width>
  731. <height>0</height>
  732. </size>
  733. </property>
  734. <property name="maximumSize">
  735. <size>
  736. <width>16777215</width>
  737. <height>16777215</height>
  738. </size>
  739. </property>
  740. <property name="text">
  741. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音判断百分比:</string>
  742. </property>
  743. <property name="alignment">
  744. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  745. </property>
  746. </widget>
  747. <widget class="QLineEdit" name="lineEdit_13">
  748. <property name="geometry">
  749. <rect>
  750. <x>208</x>
  751. <y>592</y>
  752. <width>208</width>
  753. <height>32</height>
  754. </rect>
  755. </property>
  756. </widget>
  757. <widget class="QLabel" name="label_19">
  758. <property name="geometry">
  759. <rect>
  760. <x>32</x>
  761. <y>592</y>
  762. <width>176</width>
  763. <height>32</height>
  764. </rect>
  765. </property>
  766. <property name="minimumSize">
  767. <size>
  768. <width>0</width>
  769. <height>0</height>
  770. </size>
  771. </property>
  772. <property name="maximumSize">
  773. <size>
  774. <width>16777215</width>
  775. <height>16777215</height>
  776. </size>
  777. </property>
  778. <property name="text">
  779. <string>&lt;font color = #D21F21 &gt;*&lt;/font&gt;噪音最大DB值:</string>
  780. </property>
  781. <property name="alignment">
  782. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  783. </property>
  784. </widget>
  785. <widget class="QLabel" name="label_20">
  786. <property name="geometry">
  787. <rect>
  788. <x>906</x>
  789. <y>64</y>
  790. <width>70</width>
  791. <height>32</height>
  792. </rect>
  793. </property>
  794. <property name="text">
  795. <string>(1~100)</string>
  796. </property>
  797. </widget>
  798. <widget class="QLabel" name="label_21">
  799. <property name="geometry">
  800. <rect>
  801. <x>420</x>
  802. <y>304</y>
  803. <width>70</width>
  804. <height>32</height>
  805. </rect>
  806. </property>
  807. <property name="text">
  808. <string>(0.0~1.0)</string>
  809. </property>
  810. </widget>
  811. <widget class="QLabel" name="label_22">
  812. <property name="geometry">
  813. <rect>
  814. <x>420</x>
  815. <y>400</y>
  816. <width>70</width>
  817. <height>32</height>
  818. </rect>
  819. </property>
  820. <property name="text">
  821. <string>(0.0~1.0)</string>
  822. </property>
  823. </widget>
  824. <widget class="QLabel" name="label_23">
  825. <property name="geometry">
  826. <rect>
  827. <x>906</x>
  828. <y>112</y>
  829. <width>70</width>
  830. <height>32</height>
  831. </rect>
  832. </property>
  833. <property name="text">
  834. <string>(1~100)%</string>
  835. </property>
  836. </widget>
  837. <widget class="QLabel" name="label_24">
  838. <property name="geometry">
  839. <rect>
  840. <x>906</x>
  841. <y>304</y>
  842. <width>70</width>
  843. <height>32</height>
  844. </rect>
  845. </property>
  846. <property name="text">
  847. <string>(-30~30)</string>
  848. </property>
  849. </widget>
  850. <widget class="QLabel" name="label_25">
  851. <property name="geometry">
  852. <rect>
  853. <x>906</x>
  854. <y>400</y>
  855. <width>70</width>
  856. <height>32</height>
  857. </rect>
  858. </property>
  859. <property name="text">
  860. <string>(-30~30)</string>
  861. </property>
  862. </widget>
  863. <widget class="QLabel" name="label_26">
  864. <property name="geometry">
  865. <rect>
  866. <x>906</x>
  867. <y>544</y>
  868. <width>70</width>
  869. <height>32</height>
  870. </rect>
  871. </property>
  872. <property name="text">
  873. <string>(1~100)%</string>
  874. </property>
  875. </widget>
  876. </widget>
  877. </item>
  878. <item>
  879. <widget class="QWidget" name="widgetBottom" native="true">
  880. <property name="minimumSize">
  881. <size>
  882. <width>0</width>
  883. <height>64</height>
  884. </size>
  885. </property>
  886. <property name="maximumSize">
  887. <size>
  888. <width>16777215</width>
  889. <height>64</height>
  890. </size>
  891. </property>
  892. <layout class="QHBoxLayout" name="horizontalLayout">
  893. <property name="spacing">
  894. <number>16</number>
  895. </property>
  896. <property name="leftMargin">
  897. <number>0</number>
  898. </property>
  899. <property name="topMargin">
  900. <number>0</number>
  901. </property>
  902. <property name="rightMargin">
  903. <number>32</number>
  904. </property>
  905. <property name="bottomMargin">
  906. <number>32</number>
  907. </property>
  908. <item>
  909. <spacer name="horizontalSpacer">
  910. <property name="orientation">
  911. <enum>Qt::Horizontal</enum>
  912. </property>
  913. <property name="sizeHint" stdset="0">
  914. <size>
  915. <width>40</width>
  916. <height>20</height>
  917. </size>
  918. </property>
  919. </spacer>
  920. </item>
  921. <item>
  922. <widget class="QPushButton" name="btnCancel">
  923. <property name="minimumSize">
  924. <size>
  925. <width>60</width>
  926. <height>32</height>
  927. </size>
  928. </property>
  929. <property name="maximumSize">
  930. <size>
  931. <width>60</width>
  932. <height>32</height>
  933. </size>
  934. </property>
  935. <property name="text">
  936. <string>取消</string>
  937. </property>
  938. </widget>
  939. </item>
  940. <item>
  941. <widget class="QPushButton" name="btnOK">
  942. <property name="minimumSize">
  943. <size>
  944. <width>60</width>
  945. <height>32</height>
  946. </size>
  947. </property>
  948. <property name="maximumSize">
  949. <size>
  950. <width>60</width>
  951. <height>32</height>
  952. </size>
  953. </property>
  954. <property name="text">
  955. <string>确定</string>
  956. </property>
  957. </widget>
  958. </item>
  959. </layout>
  960. </widget>
  961. </item>
  962. </layout>
  963. </widget>
  964. </item>
  965. </layout>
  966. </widget>
  967. <resources/>
  968. <connections/>
  969. </ui>