ADCIntelligentVehicle.ui 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>ADCIntelligentVehicle</class>
  4. <widget class="QMainWindow" name="ADCIntelligentVehicle">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1900</width>
  10. <height>1060</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>ADCIntelligentVehicle</string>
  15. </property>
  16. <property name="windowIcon">
  17. <iconset resource="ADCIntelligentVehicle.qrc">
  18. <normaloff>:/adsuiicon.png</normaloff>:/adsuiicon.png</iconset>
  19. </property>
  20. <widget class="QWidget" name="centralWidget">
  21. <property name="styleSheet">
  22. <string notr="true">background-color: rgb(60, 60, 60);</string>
  23. </property>
  24. <widget class="QListWidget" name="listWidget">
  25. <property name="geometry">
  26. <rect>
  27. <x>10</x>
  28. <y>30</y>
  29. <width>51</width>
  30. <height>651</height>
  31. </rect>
  32. </property>
  33. <property name="styleSheet">
  34. <string notr="true">selection-background-color: rgb(59, 59, 59);</string>
  35. </property>
  36. <item>
  37. <property name="text">
  38. <string/>
  39. </property>
  40. <property name="font">
  41. <font>
  42. <family>AR PL UKai CN</family>
  43. <pointsize>20</pointsize>
  44. </font>
  45. </property>
  46. <property name="textAlignment">
  47. <set>AlignCenter</set>
  48. </property>
  49. <property name="icon">
  50. <iconset resource="ADCIntelligentVehicle.qrc">
  51. <normaloff>:/ADCIntelligentVehicle/start.jpg</normaloff>:/ADCIntelligentVehicle/start.jpg</iconset>
  52. </property>
  53. </item>
  54. <item>
  55. <property name="text">
  56. <string/>
  57. </property>
  58. <property name="font">
  59. <font>
  60. <family>AR PL UKai CN</family>
  61. <pointsize>20</pointsize>
  62. </font>
  63. </property>
  64. <property name="textAlignment">
  65. <set>AlignCenter</set>
  66. </property>
  67. <property name="icon">
  68. <iconset resource="ADCIntelligentVehicle.qrc">
  69. <normaloff>:/ADCIntelligentVehicle/run.jpg</normaloff>:/ADCIntelligentVehicle/run.jpg</iconset>
  70. </property>
  71. </item>
  72. <item>
  73. <property name="text">
  74. <string/>
  75. </property>
  76. <property name="font">
  77. <font>
  78. <family>AR PL UKai CN</family>
  79. <pointsize>20</pointsize>
  80. </font>
  81. </property>
  82. <property name="textAlignment">
  83. <set>AlignCenter</set>
  84. </property>
  85. <property name="icon">
  86. <iconset resource="ADCIntelligentVehicle.qrc">
  87. <normaloff>:/ADCIntelligentVehicle/test.jpg</normaloff>:/ADCIntelligentVehicle/test.jpg</iconset>
  88. </property>
  89. </item>
  90. </widget>
  91. <widget class="QStackedWidget" name="stackedWidget">
  92. <property name="geometry">
  93. <rect>
  94. <x>90</x>
  95. <y>60</y>
  96. <width>1500</width>
  97. <height>871</height>
  98. </rect>
  99. </property>
  100. <property name="currentIndex">
  101. <number>1</number>
  102. </property>
  103. <widget class="QWidget" name="page_0">
  104. <widget class="QGroupBox" name="groupBox_2">
  105. <property name="geometry">
  106. <rect>
  107. <x>110</x>
  108. <y>310</y>
  109. <width>261</width>
  110. <height>191</height>
  111. </rect>
  112. </property>
  113. <property name="font">
  114. <font>
  115. <family>AR PL UKai CN</family>
  116. </font>
  117. </property>
  118. <property name="styleSheet">
  119. <string notr="true">color: rgb(238, 238, 236);</string>
  120. </property>
  121. <property name="title">
  122. <string>基本操作</string>
  123. </property>
  124. <layout class="QVBoxLayout" name="verticalLayout">
  125. <item>
  126. <widget class="QPushButton" name="pb_start_all">
  127. <property name="font">
  128. <font>
  129. <family>AR PL UKai CN</family>
  130. </font>
  131. </property>
  132. <property name="text">
  133. <string>启动自动驾驶</string>
  134. </property>
  135. </widget>
  136. </item>
  137. <item>
  138. <widget class="QPushButton" name="pb_stop_all">
  139. <property name="enabled">
  140. <bool>true</bool>
  141. </property>
  142. <property name="font">
  143. <font>
  144. <family>AR PL UKai CN</family>
  145. </font>
  146. </property>
  147. <property name="text">
  148. <string>暂停自动驾驶</string>
  149. </property>
  150. </widget>
  151. </item>
  152. <item>
  153. <widget class="QPushButton" name="pb_quit_all">
  154. <property name="font">
  155. <font>
  156. <family>AR PL UKai CN</family>
  157. </font>
  158. </property>
  159. <property name="text">
  160. <string>退出自动驾驶</string>
  161. </property>
  162. </widget>
  163. </item>
  164. <item>
  165. <widget class="QPushButton" name="pb_v2xEn">
  166. <property name="font">
  167. <font>
  168. <family>AR PL UKai CN</family>
  169. </font>
  170. </property>
  171. <property name="text">
  172. <string>使能云平台控制</string>
  173. </property>
  174. </widget>
  175. </item>
  176. </layout>
  177. </widget>
  178. <widget class="QGroupBox" name="groupBox_3">
  179. <property name="geometry">
  180. <rect>
  181. <x>470</x>
  182. <y>310</y>
  183. <width>221</width>
  184. <height>191</height>
  185. </rect>
  186. </property>
  187. <property name="font">
  188. <font>
  189. <family>AR PL UKai CN</family>
  190. </font>
  191. </property>
  192. <property name="styleSheet">
  193. <string notr="true">color: rgb(238, 238, 236);</string>
  194. </property>
  195. <property name="title">
  196. <string>实时状态</string>
  197. </property>
  198. <widget class="QLineEdit" name="lineEdit">
  199. <property name="geometry">
  200. <rect>
  201. <x>99</x>
  202. <y>40</y>
  203. <width>101</width>
  204. <height>20</height>
  205. </rect>
  206. </property>
  207. <property name="styleSheet">
  208. <string notr="true">color: rgb(238, 238, 236);</string>
  209. </property>
  210. </widget>
  211. <widget class="QLineEdit" name="lineEdit_2">
  212. <property name="geometry">
  213. <rect>
  214. <x>99</x>
  215. <y>70</y>
  216. <width>101</width>
  217. <height>20</height>
  218. </rect>
  219. </property>
  220. <property name="styleSheet">
  221. <string notr="true">color: rgb(238, 238, 236);</string>
  222. </property>
  223. </widget>
  224. <widget class="QLineEdit" name="lineEdit_3">
  225. <property name="geometry">
  226. <rect>
  227. <x>99</x>
  228. <y>100</y>
  229. <width>101</width>
  230. <height>20</height>
  231. </rect>
  232. </property>
  233. <property name="styleSheet">
  234. <string notr="true">color: rgb(238, 238, 236);</string>
  235. </property>
  236. </widget>
  237. <widget class="QLineEdit" name="lineEdit_4">
  238. <property name="geometry">
  239. <rect>
  240. <x>99</x>
  241. <y>130</y>
  242. <width>101</width>
  243. <height>21</height>
  244. </rect>
  245. </property>
  246. <property name="styleSheet">
  247. <string notr="true">color: rgb(238, 238, 236);</string>
  248. </property>
  249. </widget>
  250. <widget class="QLineEdit" name="lineEdit_5">
  251. <property name="geometry">
  252. <rect>
  253. <x>99</x>
  254. <y>160</y>
  255. <width>101</width>
  256. <height>21</height>
  257. </rect>
  258. </property>
  259. <property name="styleSheet">
  260. <string notr="true">color: rgb(238, 238, 236);</string>
  261. </property>
  262. </widget>
  263. <widget class="QPushButton" name="pushButton_10">
  264. <property name="geometry">
  265. <rect>
  266. <x>10</x>
  267. <y>40</y>
  268. <width>81</width>
  269. <height>20</height>
  270. </rect>
  271. </property>
  272. <property name="font">
  273. <font>
  274. <family>AR PL UKai CN</family>
  275. </font>
  276. </property>
  277. <property name="text">
  278. <string>RTK</string>
  279. </property>
  280. </widget>
  281. <widget class="QPushButton" name="pushButton_11">
  282. <property name="geometry">
  283. <rect>
  284. <x>10</x>
  285. <y>70</y>
  286. <width>81</width>
  287. <height>21</height>
  288. </rect>
  289. </property>
  290. <property name="font">
  291. <font>
  292. <family>AR PL UKai CN</family>
  293. </font>
  294. </property>
  295. <property name="text">
  296. <string>INS</string>
  297. </property>
  298. </widget>
  299. <widget class="QPushButton" name="pushButton_12">
  300. <property name="geometry">
  301. <rect>
  302. <x>10</x>
  303. <y>100</y>
  304. <width>81</width>
  305. <height>21</height>
  306. </rect>
  307. </property>
  308. <property name="font">
  309. <font>
  310. <family>AR PL UKai CN</family>
  311. </font>
  312. </property>
  313. <property name="text">
  314. <string>毫米波雷达</string>
  315. </property>
  316. </widget>
  317. <widget class="QPushButton" name="pushButton_13">
  318. <property name="geometry">
  319. <rect>
  320. <x>10</x>
  321. <y>130</y>
  322. <width>81</width>
  323. <height>21</height>
  324. </rect>
  325. </property>
  326. <property name="font">
  327. <font>
  328. <family>AR PL UKai CN</family>
  329. </font>
  330. </property>
  331. <property name="text">
  332. <string>激光雷达</string>
  333. </property>
  334. </widget>
  335. <widget class="QPushButton" name="pushButton_14">
  336. <property name="geometry">
  337. <rect>
  338. <x>10</x>
  339. <y>160</y>
  340. <width>81</width>
  341. <height>21</height>
  342. </rect>
  343. </property>
  344. <property name="font">
  345. <font>
  346. <family>AR PL UKai CN</family>
  347. </font>
  348. </property>
  349. <property name="text">
  350. <string>决策周期</string>
  351. </property>
  352. </widget>
  353. </widget>
  354. <widget class="QLabel" name="label_5">
  355. <property name="geometry">
  356. <rect>
  357. <x>150</x>
  358. <y>90</y>
  359. <width>541</width>
  360. <height>81</height>
  361. </rect>
  362. </property>
  363. <property name="font">
  364. <font>
  365. <family>AR PL UKai CN</family>
  366. <pointsize>50</pointsize>
  367. </font>
  368. </property>
  369. <property name="styleSheet">
  370. <string notr="true">color: rgb(238, 238, 236);</string>
  371. </property>
  372. <property name="text">
  373. <string>开启自动驾驶之旅</string>
  374. </property>
  375. </widget>
  376. <widget class="QLabel" name="label_9">
  377. <property name="geometry">
  378. <rect>
  379. <x>280</x>
  380. <y>220</y>
  381. <width>281</width>
  382. <height>21</height>
  383. </rect>
  384. </property>
  385. <property name="font">
  386. <font>
  387. <family>AR PL UKai CN</family>
  388. <pointsize>15</pointsize>
  389. </font>
  390. </property>
  391. <property name="layoutDirection">
  392. <enum>Qt::LeftToRight</enum>
  393. </property>
  394. <property name="styleSheet">
  395. <string notr="true">color: rgb(255, 255, 255);</string>
  396. </property>
  397. <property name="text">
  398. <string>Start A Journey Of Autopilot</string>
  399. </property>
  400. </widget>
  401. </widget>
  402. <widget class="QWidget" name="page_1">
  403. <widget class="QLabel" name="lb_current_speed_big">
  404. <property name="geometry">
  405. <rect>
  406. <x>355</x>
  407. <y>10</y>
  408. <width>181</width>
  409. <height>61</height>
  410. </rect>
  411. </property>
  412. <property name="font">
  413. <font>
  414. <family>Agency FB</family>
  415. <pointsize>48</pointsize>
  416. <weight>75</weight>
  417. <bold>true</bold>
  418. </font>
  419. </property>
  420. <property name="styleSheet">
  421. <string notr="true">color: rgb(238, 238, 236);</string>
  422. </property>
  423. <property name="text">
  424. <string>0</string>
  425. </property>
  426. </widget>
  427. <widget class="QLabel" name="label_10">
  428. <property name="geometry">
  429. <rect>
  430. <x>430</x>
  431. <y>70</y>
  432. <width>41</width>
  433. <height>20</height>
  434. </rect>
  435. </property>
  436. <property name="font">
  437. <font>
  438. <family>AR PL UKai CN</family>
  439. <pointsize>15</pointsize>
  440. </font>
  441. </property>
  442. <property name="layoutDirection">
  443. <enum>Qt::LeftToRight</enum>
  444. </property>
  445. <property name="styleSheet">
  446. <string notr="true">color: rgb(238, 238, 236);</string>
  447. </property>
  448. <property name="text">
  449. <string>速度</string>
  450. </property>
  451. </widget>
  452. <widget class="QLabel" name="label_13">
  453. <property name="geometry">
  454. <rect>
  455. <x>-30</x>
  456. <y>10</y>
  457. <width>301</width>
  458. <height>21</height>
  459. </rect>
  460. </property>
  461. <property name="font">
  462. <font>
  463. <family>AR PL UKai CN</family>
  464. </font>
  465. </property>
  466. <property name="styleSheet">
  467. <string notr="true">color: rgb(255, 255, 255);</string>
  468. </property>
  469. <property name="text">
  470. <string/>
  471. </property>
  472. <property name="alignment">
  473. <set>Qt::AlignCenter</set>
  474. </property>
  475. </widget>
  476. <widget class="QLabel" name="label_State">
  477. <property name="geometry">
  478. <rect>
  479. <x>570</x>
  480. <y>20</y>
  481. <width>331</width>
  482. <height>16</height>
  483. </rect>
  484. </property>
  485. <property name="styleSheet">
  486. <string notr="true">color: rgb(238, 238, 236);</string>
  487. </property>
  488. <property name="text">
  489. <string/>
  490. </property>
  491. </widget>
  492. <widget class="QLabel" name="label_decition">
  493. <property name="geometry">
  494. <rect>
  495. <x>570</x>
  496. <y>51</y>
  497. <width>341</width>
  498. <height>20</height>
  499. </rect>
  500. </property>
  501. <property name="styleSheet">
  502. <string notr="true">color: rgb(238, 238, 236);</string>
  503. </property>
  504. <property name="text">
  505. <string/>
  506. </property>
  507. </widget>
  508. <widget class="QLabel" name="label_26">
  509. <property name="geometry">
  510. <rect>
  511. <x>-30</x>
  512. <y>50</y>
  513. <width>301</width>
  514. <height>21</height>
  515. </rect>
  516. </property>
  517. <property name="font">
  518. <font>
  519. <family>AR PL UKai CN</family>
  520. </font>
  521. </property>
  522. <property name="styleSheet">
  523. <string notr="true">color: rgb(255, 255, 255);</string>
  524. </property>
  525. <property name="text">
  526. <string/>
  527. </property>
  528. <property name="alignment">
  529. <set>Qt::AlignCenter</set>
  530. </property>
  531. </widget>
  532. <widget class="QGroupBox" name="groupBox_11">
  533. <property name="geometry">
  534. <rect>
  535. <x>1020</x>
  536. <y>660</y>
  537. <width>471</width>
  538. <height>201</height>
  539. </rect>
  540. </property>
  541. <property name="font">
  542. <font>
  543. <family>AR PL UKai CN</family>
  544. </font>
  545. </property>
  546. <property name="styleSheet">
  547. <string notr="true">color: rgb(238, 238, 236);</string>
  548. </property>
  549. <property name="title">
  550. <string>V2X红绿灯</string>
  551. </property>
  552. <widget class="QLabel" name="label_37">
  553. <property name="geometry">
  554. <rect>
  555. <x>370</x>
  556. <y>160</y>
  557. <width>54</width>
  558. <height>26</height>
  559. </rect>
  560. </property>
  561. <property name="styleSheet">
  562. <string notr="true">color: rgb(238, 238, 236);</string>
  563. </property>
  564. <property name="text">
  565. <string>右转</string>
  566. </property>
  567. </widget>
  568. <widget class="QLCDNumber" name="lcdNumber_4">
  569. <property name="geometry">
  570. <rect>
  571. <x>360</x>
  572. <y>110</y>
  573. <width>64</width>
  574. <height>33</height>
  575. </rect>
  576. </property>
  577. <property name="styleSheet">
  578. <string notr="true"/>
  579. </property>
  580. <property name="digitCount">
  581. <number>3</number>
  582. </property>
  583. <property name="segmentStyle">
  584. <enum>QLCDNumber::Flat</enum>
  585. </property>
  586. </widget>
  587. <widget class="QLCDNumber" name="lcdNumber_3">
  588. <property name="geometry">
  589. <rect>
  590. <x>250</x>
  591. <y>110</y>
  592. <width>64</width>
  593. <height>33</height>
  594. </rect>
  595. </property>
  596. <property name="styleSheet">
  597. <string notr="true"/>
  598. </property>
  599. <property name="digitCount">
  600. <number>3</number>
  601. </property>
  602. <property name="segmentStyle">
  603. <enum>QLCDNumber::Flat</enum>
  604. </property>
  605. </widget>
  606. <widget class="QLCDNumber" name="lcdNumber">
  607. <property name="geometry">
  608. <rect>
  609. <x>20</x>
  610. <y>110</y>
  611. <width>64</width>
  612. <height>33</height>
  613. </rect>
  614. </property>
  615. <property name="styleSheet">
  616. <string notr="true"/>
  617. </property>
  618. <property name="digitCount">
  619. <number>3</number>
  620. </property>
  621. <property name="segmentStyle">
  622. <enum>QLCDNumber::Flat</enum>
  623. </property>
  624. </widget>
  625. <widget class="QLabel" name="label_38">
  626. <property name="geometry">
  627. <rect>
  628. <x>20</x>
  629. <y>30</y>
  630. <width>66</width>
  631. <height>66</height>
  632. </rect>
  633. </property>
  634. <property name="text">
  635. <string>TextLabel</string>
  636. </property>
  637. </widget>
  638. <widget class="QLabel" name="label_31">
  639. <property name="geometry">
  640. <rect>
  641. <x>260</x>
  642. <y>160</y>
  643. <width>54</width>
  644. <height>26</height>
  645. </rect>
  646. </property>
  647. <property name="styleSheet">
  648. <string notr="true">color: rgb(238, 238, 236);</string>
  649. </property>
  650. <property name="text">
  651. <string>直行</string>
  652. </property>
  653. </widget>
  654. <widget class="QLCDNumber" name="lcdNumber_2">
  655. <property name="geometry">
  656. <rect>
  657. <x>130</x>
  658. <y>110</y>
  659. <width>64</width>
  660. <height>33</height>
  661. </rect>
  662. </property>
  663. <property name="styleSheet">
  664. <string notr="true"/>
  665. </property>
  666. <property name="digitCount">
  667. <number>3</number>
  668. </property>
  669. <property name="segmentStyle">
  670. <enum>QLCDNumber::Flat</enum>
  671. </property>
  672. </widget>
  673. <widget class="QLabel" name="label_34">
  674. <property name="geometry">
  675. <rect>
  676. <x>30</x>
  677. <y>160</y>
  678. <width>54</width>
  679. <height>26</height>
  680. </rect>
  681. </property>
  682. <property name="styleSheet">
  683. <string notr="true">color: rgb(238, 238, 236);</string>
  684. </property>
  685. <property name="text">
  686. <string>掉头</string>
  687. </property>
  688. </widget>
  689. <widget class="QLabel" name="label_32">
  690. <property name="geometry">
  691. <rect>
  692. <x>360</x>
  693. <y>30</y>
  694. <width>66</width>
  695. <height>66</height>
  696. </rect>
  697. </property>
  698. <property name="text">
  699. <string>TextLabel</string>
  700. </property>
  701. </widget>
  702. <widget class="QLabel" name="label_33">
  703. <property name="geometry">
  704. <rect>
  705. <x>130</x>
  706. <y>30</y>
  707. <width>66</width>
  708. <height>66</height>
  709. </rect>
  710. </property>
  711. <property name="text">
  712. <string>TextLabel</string>
  713. </property>
  714. </widget>
  715. <widget class="QLabel" name="label_35">
  716. <property name="geometry">
  717. <rect>
  718. <x>250</x>
  719. <y>30</y>
  720. <width>66</width>
  721. <height>66</height>
  722. </rect>
  723. </property>
  724. <property name="text">
  725. <string>TextLabel</string>
  726. </property>
  727. </widget>
  728. <widget class="QLabel" name="label_36">
  729. <property name="geometry">
  730. <rect>
  731. <x>140</x>
  732. <y>160</y>
  733. <width>54</width>
  734. <height>26</height>
  735. </rect>
  736. </property>
  737. <property name="styleSheet">
  738. <string notr="true">color: rgb(238, 238, 236);</string>
  739. </property>
  740. <property name="text">
  741. <string>左转</string>
  742. </property>
  743. </widget>
  744. </widget>
  745. <widget class="QGroupBox" name="groupBox_12">
  746. <property name="geometry">
  747. <rect>
  748. <x>930</x>
  749. <y>0</y>
  750. <width>521</width>
  751. <height>81</height>
  752. </rect>
  753. </property>
  754. <property name="font">
  755. <font>
  756. <family>AR PL UKai CN</family>
  757. </font>
  758. </property>
  759. <property name="styleSheet">
  760. <string notr="true">color: rgb(238, 238, 236);</string>
  761. </property>
  762. <property name="title">
  763. <string>实时状态</string>
  764. </property>
  765. <widget class="QLineEdit" name="lineEdit_12">
  766. <property name="geometry">
  767. <rect>
  768. <x>99</x>
  769. <y>30</y>
  770. <width>101</width>
  771. <height>20</height>
  772. </rect>
  773. </property>
  774. <property name="styleSheet">
  775. <string notr="true">color: rgb(238, 238, 236);</string>
  776. </property>
  777. </widget>
  778. <widget class="QLineEdit" name="lineEdit_17">
  779. <property name="geometry">
  780. <rect>
  781. <x>100</x>
  782. <y>60</y>
  783. <width>101</width>
  784. <height>21</height>
  785. </rect>
  786. </property>
  787. <property name="styleSheet">
  788. <string notr="true">color: rgb(238, 238, 236);</string>
  789. </property>
  790. </widget>
  791. <widget class="QPushButton" name="pushButton_23">
  792. <property name="geometry">
  793. <rect>
  794. <x>10</x>
  795. <y>30</y>
  796. <width>81</width>
  797. <height>20</height>
  798. </rect>
  799. </property>
  800. <property name="font">
  801. <font>
  802. <family>AR PL UKai CN</family>
  803. </font>
  804. </property>
  805. <property name="text">
  806. <string>RTK</string>
  807. </property>
  808. </widget>
  809. <widget class="QPushButton" name="pushButton_25">
  810. <property name="geometry">
  811. <rect>
  812. <x>221</x>
  813. <y>30</y>
  814. <width>81</width>
  815. <height>21</height>
  816. </rect>
  817. </property>
  818. <property name="font">
  819. <font>
  820. <family>AR PL UKai CN</family>
  821. </font>
  822. </property>
  823. <property name="text">
  824. <string>毫米波雷达</string>
  825. </property>
  826. </widget>
  827. <widget class="QPushButton" name="pushButton_26">
  828. <property name="geometry">
  829. <rect>
  830. <x>220</x>
  831. <y>60</y>
  832. <width>81</width>
  833. <height>21</height>
  834. </rect>
  835. </property>
  836. <property name="font">
  837. <font>
  838. <family>AR PL UKai CN</family>
  839. </font>
  840. </property>
  841. <property name="text">
  842. <string>激光雷达</string>
  843. </property>
  844. </widget>
  845. <widget class="QPushButton" name="pushButton_27">
  846. <property name="geometry">
  847. <rect>
  848. <x>10</x>
  849. <y>60</y>
  850. <width>81</width>
  851. <height>21</height>
  852. </rect>
  853. </property>
  854. <property name="font">
  855. <font>
  856. <family>AR PL UKai CN</family>
  857. </font>
  858. </property>
  859. <property name="text">
  860. <string>决策周期</string>
  861. </property>
  862. </widget>
  863. <widget class="QPushButton" name="Mobileye_st">
  864. <property name="geometry">
  865. <rect>
  866. <x>320</x>
  867. <y>30</y>
  868. <width>81</width>
  869. <height>21</height>
  870. </rect>
  871. </property>
  872. <property name="font">
  873. <font>
  874. <family>AR PL UKai CN</family>
  875. </font>
  876. </property>
  877. <property name="text">
  878. <string>Mobileye</string>
  879. </property>
  880. </widget>
  881. </widget>
  882. </widget>
  883. <widget class="QWidget" name="page_2">
  884. <widget class="QGroupBox" name="groupBox_4">
  885. <property name="geometry">
  886. <rect>
  887. <x>10</x>
  888. <y>40</y>
  889. <width>151</width>
  890. <height>231</height>
  891. </rect>
  892. </property>
  893. <property name="styleSheet">
  894. <string notr="true">color: rgb(238, 238, 236);
  895. background-color: rgb(85, 87, 83);</string>
  896. </property>
  897. <property name="title">
  898. <string>速度控制</string>
  899. </property>
  900. <widget class="QPushButton" name="pushButton_5">
  901. <property name="geometry">
  902. <rect>
  903. <x>10</x>
  904. <y>30</y>
  905. <width>71</width>
  906. <height>31</height>
  907. </rect>
  908. </property>
  909. <property name="text">
  910. <string>常规速度</string>
  911. </property>
  912. </widget>
  913. <widget class="QPushButton" name="pushButton_6">
  914. <property name="geometry">
  915. <rect>
  916. <x>10</x>
  917. <y>70</y>
  918. <width>71</width>
  919. <height>31</height>
  920. </rect>
  921. </property>
  922. <property name="text">
  923. <string>转弯速度</string>
  924. </property>
  925. </widget>
  926. <widget class="QPushButton" name="pushButton_7">
  927. <property name="geometry">
  928. <rect>
  929. <x>10</x>
  930. <y>110</y>
  931. <width>71</width>
  932. <height>31</height>
  933. </rect>
  934. </property>
  935. <property name="text">
  936. <string>快速</string>
  937. </property>
  938. </widget>
  939. <widget class="QPushButton" name="pushButton_8">
  940. <property name="geometry">
  941. <rect>
  942. <x>10</x>
  943. <y>150</y>
  944. <width>71</width>
  945. <height>31</height>
  946. </rect>
  947. </property>
  948. <property name="text">
  949. <string>中速</string>
  950. </property>
  951. </widget>
  952. <widget class="QPushButton" name="pushButton_9">
  953. <property name="geometry">
  954. <rect>
  955. <x>10</x>
  956. <y>190</y>
  957. <width>71</width>
  958. <height>31</height>
  959. </rect>
  960. </property>
  961. <property name="text">
  962. <string>慢速</string>
  963. </property>
  964. </widget>
  965. <widget class="QTextEdit" name="textEdit">
  966. <property name="geometry">
  967. <rect>
  968. <x>90</x>
  969. <y>30</y>
  970. <width>51</width>
  971. <height>31</height>
  972. </rect>
  973. </property>
  974. </widget>
  975. <widget class="QTextEdit" name="textEdit_2">
  976. <property name="geometry">
  977. <rect>
  978. <x>90</x>
  979. <y>70</y>
  980. <width>51</width>
  981. <height>31</height>
  982. </rect>
  983. </property>
  984. </widget>
  985. <widget class="QTextEdit" name="textEdit_3">
  986. <property name="geometry">
  987. <rect>
  988. <x>90</x>
  989. <y>110</y>
  990. <width>51</width>
  991. <height>31</height>
  992. </rect>
  993. </property>
  994. </widget>
  995. <widget class="QTextEdit" name="textEdit_4">
  996. <property name="geometry">
  997. <rect>
  998. <x>90</x>
  999. <y>150</y>
  1000. <width>51</width>
  1001. <height>31</height>
  1002. </rect>
  1003. </property>
  1004. </widget>
  1005. <widget class="QTextEdit" name="textEdit_5">
  1006. <property name="geometry">
  1007. <rect>
  1008. <x>90</x>
  1009. <y>190</y>
  1010. <width>51</width>
  1011. <height>31</height>
  1012. </rect>
  1013. </property>
  1014. </widget>
  1015. </widget>
  1016. <widget class="QGroupBox" name="groupBox_5">
  1017. <property name="enabled">
  1018. <bool>true</bool>
  1019. </property>
  1020. <property name="geometry">
  1021. <rect>
  1022. <x>10</x>
  1023. <y>280</y>
  1024. <width>151</width>
  1025. <height>181</height>
  1026. </rect>
  1027. </property>
  1028. <property name="styleSheet">
  1029. <string notr="true">color: rgb(238, 238, 236);
  1030. background-color: rgb(85, 87, 83);</string>
  1031. </property>
  1032. <property name="title">
  1033. <string>模式选择</string>
  1034. </property>
  1035. <widget class="QCheckBox" name="checkBox">
  1036. <property name="geometry">
  1037. <rect>
  1038. <x>10</x>
  1039. <y>30</y>
  1040. <width>61</width>
  1041. <height>23</height>
  1042. </rect>
  1043. </property>
  1044. <property name="text">
  1045. <string>换道</string>
  1046. </property>
  1047. </widget>
  1048. <widget class="QCheckBox" name="checkBox_2">
  1049. <property name="geometry">
  1050. <rect>
  1051. <x>10</x>
  1052. <y>60</y>
  1053. <width>92</width>
  1054. <height>23</height>
  1055. </rect>
  1056. </property>
  1057. <property name="text">
  1058. <string>停障</string>
  1059. </property>
  1060. </widget>
  1061. <widget class="QCheckBox" name="checkBox_3">
  1062. <property name="geometry">
  1063. <rect>
  1064. <x>10</x>
  1065. <y>90</y>
  1066. <width>92</width>
  1067. <height>23</height>
  1068. </rect>
  1069. </property>
  1070. <property name="text">
  1071. <string>避障</string>
  1072. </property>
  1073. </widget>
  1074. <widget class="QCheckBox" name="checkBox_4">
  1075. <property name="geometry">
  1076. <rect>
  1077. <x>10</x>
  1078. <y>120</y>
  1079. <width>92</width>
  1080. <height>23</height>
  1081. </rect>
  1082. </property>
  1083. <property name="text">
  1084. <string>特殊信号</string>
  1085. </property>
  1086. </widget>
  1087. <widget class="QCheckBox" name="checkBox_5">
  1088. <property name="geometry">
  1089. <rect>
  1090. <x>10</x>
  1091. <y>150</y>
  1092. <width>92</width>
  1093. <height>23</height>
  1094. </rect>
  1095. </property>
  1096. <property name="text">
  1097. <string>路边停车</string>
  1098. </property>
  1099. </widget>
  1100. </widget>
  1101. <widget class="QPushButton" name="pushButton_3">
  1102. <property name="geometry">
  1103. <rect>
  1104. <x>10</x>
  1105. <y>520</y>
  1106. <width>151</width>
  1107. <height>31</height>
  1108. </rect>
  1109. </property>
  1110. <property name="font">
  1111. <font>
  1112. <family>AR PL UKai CN</family>
  1113. </font>
  1114. </property>
  1115. <property name="styleSheet">
  1116. <string notr="true">color: rgb(238, 238, 236);</string>
  1117. </property>
  1118. <property name="text">
  1119. <string>查看决策信息</string>
  1120. </property>
  1121. </widget>
  1122. <widget class="QPushButton" name="pushButton_4">
  1123. <property name="geometry">
  1124. <rect>
  1125. <x>10</x>
  1126. <y>550</y>
  1127. <width>151</width>
  1128. <height>31</height>
  1129. </rect>
  1130. </property>
  1131. <property name="font">
  1132. <font>
  1133. <family>AR PL UKai CN</family>
  1134. </font>
  1135. </property>
  1136. <property name="styleSheet">
  1137. <string notr="true">color: rgb(238, 238, 236);</string>
  1138. </property>
  1139. <property name="text">
  1140. <string>mobileye信息</string>
  1141. </property>
  1142. </widget>
  1143. <widget class="QGroupBox" name="groupBox_7">
  1144. <property name="geometry">
  1145. <rect>
  1146. <x>200</x>
  1147. <y>220</y>
  1148. <width>261</width>
  1149. <height>211</height>
  1150. </rect>
  1151. </property>
  1152. <property name="styleSheet">
  1153. <string notr="true">color: rgb(238, 238, 236);
  1154. background-color: rgb(85, 87, 83);</string>
  1155. </property>
  1156. <property name="title">
  1157. <string>交通灯调试</string>
  1158. </property>
  1159. <widget class="QLabel" name="label_ID">
  1160. <property name="geometry">
  1161. <rect>
  1162. <x>90</x>
  1163. <y>38</y>
  1164. <width>67</width>
  1165. <height>20</height>
  1166. </rect>
  1167. </property>
  1168. <property name="text">
  1169. <string>TextLabel</string>
  1170. </property>
  1171. </widget>
  1172. <widget class="QPushButton" name="pushButton_color">
  1173. <property name="geometry">
  1174. <rect>
  1175. <x>100</x>
  1176. <y>64</y>
  1177. <width>41</width>
  1178. <height>41</height>
  1179. </rect>
  1180. </property>
  1181. <property name="text">
  1182. <string/>
  1183. </property>
  1184. </widget>
  1185. <widget class="QLabel" name="label_time">
  1186. <property name="geometry">
  1187. <rect>
  1188. <x>90</x>
  1189. <y>110</y>
  1190. <width>67</width>
  1191. <height>20</height>
  1192. </rect>
  1193. </property>
  1194. <property name="text">
  1195. <string>TextLabel</string>
  1196. </property>
  1197. </widget>
  1198. <widget class="QWidget" name="layoutWidget">
  1199. <property name="geometry">
  1200. <rect>
  1201. <x>20</x>
  1202. <y>31</y>
  1203. <width>32</width>
  1204. <height>101</height>
  1205. </rect>
  1206. </property>
  1207. <layout class="QVBoxLayout" name="verticalLayout_2">
  1208. <item>
  1209. <widget class="QLabel" name="label_27">
  1210. <property name="text">
  1211. <string>编号</string>
  1212. </property>
  1213. </widget>
  1214. </item>
  1215. <item>
  1216. <widget class="QLabel" name="label_28">
  1217. <property name="text">
  1218. <string>颜色</string>
  1219. </property>
  1220. </widget>
  1221. </item>
  1222. <item>
  1223. <widget class="QLabel" name="label_29">
  1224. <property name="text">
  1225. <string>时长</string>
  1226. </property>
  1227. </widget>
  1228. </item>
  1229. </layout>
  1230. </widget>
  1231. <widget class="QWidget" name="layoutWidget">
  1232. <property name="geometry">
  1233. <rect>
  1234. <x>0</x>
  1235. <y>170</y>
  1236. <width>230</width>
  1237. <height>33</height>
  1238. </rect>
  1239. </property>
  1240. <layout class="QHBoxLayout" name="horizontalLayout">
  1241. <item>
  1242. <widget class="QPushButton" name="pushButton_16">
  1243. <property name="text">
  1244. <string>设置纬度</string>
  1245. </property>
  1246. </widget>
  1247. </item>
  1248. <item>
  1249. <widget class="QLineEdit" name="lineEdit_7"/>
  1250. </item>
  1251. </layout>
  1252. </widget>
  1253. <widget class="QWidget" name="layoutWidget">
  1254. <property name="geometry">
  1255. <rect>
  1256. <x>0</x>
  1257. <y>140</y>
  1258. <width>230</width>
  1259. <height>33</height>
  1260. </rect>
  1261. </property>
  1262. <layout class="QHBoxLayout" name="horizontalLayout_2">
  1263. <item>
  1264. <widget class="QPushButton" name="pushButton_15">
  1265. <property name="text">
  1266. <string>设置经度</string>
  1267. </property>
  1268. </widget>
  1269. </item>
  1270. <item>
  1271. <widget class="QLineEdit" name="lineEdit_6"/>
  1272. </item>
  1273. </layout>
  1274. </widget>
  1275. </widget>
  1276. <widget class="QGroupBox" name="groupBox_6">
  1277. <property name="geometry">
  1278. <rect>
  1279. <x>200</x>
  1280. <y>40</y>
  1281. <width>261</width>
  1282. <height>161</height>
  1283. </rect>
  1284. </property>
  1285. <property name="styleSheet">
  1286. <string notr="true">color: rgb(238, 238, 236);
  1287. background-color: rgb(85, 87, 83);</string>
  1288. </property>
  1289. <property name="title">
  1290. <string>车辆信息</string>
  1291. </property>
  1292. <widget class="QLabel" name="label_SOC">
  1293. <property name="geometry">
  1294. <rect>
  1295. <x>90</x>
  1296. <y>30</y>
  1297. <width>71</width>
  1298. <height>21</height>
  1299. </rect>
  1300. </property>
  1301. <property name="styleSheet">
  1302. <string notr="true">color: rgb(238, 238, 236);</string>
  1303. </property>
  1304. <property name="frameShape">
  1305. <enum>QFrame::Panel</enum>
  1306. </property>
  1307. <property name="text">
  1308. <string/>
  1309. </property>
  1310. </widget>
  1311. <widget class="QLabel" name="label_11">
  1312. <property name="geometry">
  1313. <rect>
  1314. <x>90</x>
  1315. <y>90</y>
  1316. <width>71</width>
  1317. <height>21</height>
  1318. </rect>
  1319. </property>
  1320. <property name="styleSheet">
  1321. <string notr="true">color: rgb(238, 238, 236);</string>
  1322. </property>
  1323. <property name="frameShape">
  1324. <enum>QFrame::Panel</enum>
  1325. </property>
  1326. <property name="text">
  1327. <string/>
  1328. </property>
  1329. </widget>
  1330. <widget class="QLabel" name="label_14">
  1331. <property name="geometry">
  1332. <rect>
  1333. <x>10</x>
  1334. <y>30</y>
  1335. <width>51</width>
  1336. <height>17</height>
  1337. </rect>
  1338. </property>
  1339. <property name="text">
  1340. <string>车型</string>
  1341. </property>
  1342. </widget>
  1343. <widget class="QLabel" name="label_15">
  1344. <property name="geometry">
  1345. <rect>
  1346. <x>10</x>
  1347. <y>90</y>
  1348. <width>61</width>
  1349. <height>17</height>
  1350. </rect>
  1351. </property>
  1352. <property name="text">
  1353. <string>剩余电量</string>
  1354. </property>
  1355. </widget>
  1356. <widget class="QLabel" name="label_16">
  1357. <property name="geometry">
  1358. <rect>
  1359. <x>10</x>
  1360. <y>60</y>
  1361. <width>71</width>
  1362. <height>17</height>
  1363. </rect>
  1364. </property>
  1365. <property name="text">
  1366. <string>车长*车宽</string>
  1367. </property>
  1368. </widget>
  1369. <widget class="QLabel" name="label_SOC_2">
  1370. <property name="geometry">
  1371. <rect>
  1372. <x>90</x>
  1373. <y>60</y>
  1374. <width>71</width>
  1375. <height>21</height>
  1376. </rect>
  1377. </property>
  1378. <property name="styleSheet">
  1379. <string notr="true">color: rgb(238, 238, 236);</string>
  1380. </property>
  1381. <property name="frameShape">
  1382. <enum>QFrame::Panel</enum>
  1383. </property>
  1384. <property name="text">
  1385. <string/>
  1386. </property>
  1387. </widget>
  1388. <widget class="QLabel" name="label_17">
  1389. <property name="geometry">
  1390. <rect>
  1391. <x>10</x>
  1392. <y>120</y>
  1393. <width>31</width>
  1394. <height>17</height>
  1395. </rect>
  1396. </property>
  1397. <property name="text">
  1398. <string>VIN</string>
  1399. </property>
  1400. </widget>
  1401. <widget class="QLineEdit" name="lineEdit_11">
  1402. <property name="geometry">
  1403. <rect>
  1404. <x>40</x>
  1405. <y>120</y>
  1406. <width>221</width>
  1407. <height>25</height>
  1408. </rect>
  1409. </property>
  1410. </widget>
  1411. </widget>
  1412. <widget class="QGroupBox" name="groupBox_8">
  1413. <property name="enabled">
  1414. <bool>true</bool>
  1415. </property>
  1416. <property name="geometry">
  1417. <rect>
  1418. <x>200</x>
  1419. <y>450</y>
  1420. <width>261</width>
  1421. <height>191</height>
  1422. </rect>
  1423. </property>
  1424. <property name="styleSheet">
  1425. <string notr="true">color: rgb(238, 238, 236);
  1426. background-color: rgb(85, 87, 83);</string>
  1427. </property>
  1428. <property name="title">
  1429. <string>泊车调试</string>
  1430. </property>
  1431. <widget class="QCheckBox" name="checkBox_6">
  1432. <property name="geometry">
  1433. <rect>
  1434. <x>10</x>
  1435. <y>30</y>
  1436. <width>91</width>
  1437. <height>23</height>
  1438. </rect>
  1439. </property>
  1440. <property name="text">
  1441. <string>侧方停车</string>
  1442. </property>
  1443. </widget>
  1444. <widget class="QCheckBox" name="checkBox_7">
  1445. <property name="geometry">
  1446. <rect>
  1447. <x>10</x>
  1448. <y>60</y>
  1449. <width>92</width>
  1450. <height>23</height>
  1451. </rect>
  1452. </property>
  1453. <property name="text">
  1454. <string>倒车入库</string>
  1455. </property>
  1456. </widget>
  1457. <widget class="QWidget" name="layoutWidget_2">
  1458. <property name="geometry">
  1459. <rect>
  1460. <x>0</x>
  1461. <y>90</y>
  1462. <width>230</width>
  1463. <height>33</height>
  1464. </rect>
  1465. </property>
  1466. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1467. <item>
  1468. <widget class="QPushButton" name="pushButton_17">
  1469. <property name="text">
  1470. <string>设置经度</string>
  1471. </property>
  1472. </widget>
  1473. </item>
  1474. <item>
  1475. <widget class="QLineEdit" name="lineEdit_8"/>
  1476. </item>
  1477. </layout>
  1478. </widget>
  1479. <widget class="QWidget" name="layoutWidget_3">
  1480. <property name="geometry">
  1481. <rect>
  1482. <x>0</x>
  1483. <y>120</y>
  1484. <width>230</width>
  1485. <height>33</height>
  1486. </rect>
  1487. </property>
  1488. <layout class="QHBoxLayout" name="horizontalLayout_4">
  1489. <item>
  1490. <widget class="QPushButton" name="pushButton_18">
  1491. <property name="text">
  1492. <string>设置纬度</string>
  1493. </property>
  1494. </widget>
  1495. </item>
  1496. <item>
  1497. <widget class="QLineEdit" name="lineEdit_9"/>
  1498. </item>
  1499. </layout>
  1500. </widget>
  1501. <widget class="QWidget" name="layoutWidget_4">
  1502. <property name="geometry">
  1503. <rect>
  1504. <x>0</x>
  1505. <y>150</y>
  1506. <width>230</width>
  1507. <height>33</height>
  1508. </rect>
  1509. </property>
  1510. <layout class="QHBoxLayout" name="horizontalLayout_5">
  1511. <item>
  1512. <widget class="QPushButton" name="pushButton_19">
  1513. <property name="text">
  1514. <string>设置航向角</string>
  1515. </property>
  1516. </widget>
  1517. </item>
  1518. <item>
  1519. <widget class="QLineEdit" name="lineEdit_10"/>
  1520. </item>
  1521. </layout>
  1522. </widget>
  1523. </widget>
  1524. <widget class="QGroupBox" name="groupBox">
  1525. <property name="geometry">
  1526. <rect>
  1527. <x>500</x>
  1528. <y>40</y>
  1529. <width>381</width>
  1530. <height>181</height>
  1531. </rect>
  1532. </property>
  1533. <property name="font">
  1534. <font>
  1535. <family>AR PL UKai CN</family>
  1536. </font>
  1537. </property>
  1538. <property name="autoFillBackground">
  1539. <bool>false</bool>
  1540. </property>
  1541. <property name="styleSheet">
  1542. <string notr="true">color: rgb(238, 238, 236);
  1543. background-color: rgb(85, 87, 83);</string>
  1544. </property>
  1545. <property name="title">
  1546. <string>控制板调试</string>
  1547. </property>
  1548. <widget class="QPushButton" name="pb_auto_drive_mode">
  1549. <property name="enabled">
  1550. <bool>true</bool>
  1551. </property>
  1552. <property name="geometry">
  1553. <rect>
  1554. <x>10</x>
  1555. <y>30</y>
  1556. <width>181</width>
  1557. <height>21</height>
  1558. </rect>
  1559. </property>
  1560. <property name="font">
  1561. <font>
  1562. <family>AR PL UKai CN</family>
  1563. </font>
  1564. </property>
  1565. <property name="text">
  1566. <string>决策控制使能:关</string>
  1567. </property>
  1568. </widget>
  1569. <widget class="QPushButton" name="pb_auto_braking_mode">
  1570. <property name="geometry">
  1571. <rect>
  1572. <x>10</x>
  1573. <y>78</y>
  1574. <width>181</width>
  1575. <height>21</height>
  1576. </rect>
  1577. </property>
  1578. <property name="font">
  1579. <font>
  1580. <family>AR PL UKai CN</family>
  1581. </font>
  1582. </property>
  1583. <property name="text">
  1584. <string>左转向灯:关</string>
  1585. </property>
  1586. </widget>
  1587. <widget class="QPushButton" name="pb_auto_accelerate_mode">
  1588. <property name="geometry">
  1589. <rect>
  1590. <x>10</x>
  1591. <y>102</y>
  1592. <width>181</width>
  1593. <height>21</height>
  1594. </rect>
  1595. </property>
  1596. <property name="font">
  1597. <font>
  1598. <family>AR PL UKai CN</family>
  1599. </font>
  1600. </property>
  1601. <property name="text">
  1602. <string>右转向灯:关</string>
  1603. </property>
  1604. </widget>
  1605. <widget class="QPushButton" name="pb_auto_wheel_mode">
  1606. <property name="geometry">
  1607. <rect>
  1608. <x>10</x>
  1609. <y>126</y>
  1610. <width>181</width>
  1611. <height>21</height>
  1612. </rect>
  1613. </property>
  1614. <property name="font">
  1615. <font>
  1616. <family>AR PL UKai CN</family>
  1617. </font>
  1618. </property>
  1619. <property name="text">
  1620. <string>喇叭</string>
  1621. </property>
  1622. </widget>
  1623. <widget class="QLabel" name="label">
  1624. <property name="geometry">
  1625. <rect>
  1626. <x>200</x>
  1627. <y>50</y>
  1628. <width>31</width>
  1629. <height>16</height>
  1630. </rect>
  1631. </property>
  1632. <property name="font">
  1633. <font>
  1634. <family>AR PL UKai CN</family>
  1635. </font>
  1636. </property>
  1637. <property name="text">
  1638. <string>刹车</string>
  1639. </property>
  1640. </widget>
  1641. <widget class="QLabel" name="label_2">
  1642. <property name="geometry">
  1643. <rect>
  1644. <x>200</x>
  1645. <y>80</y>
  1646. <width>31</width>
  1647. <height>16</height>
  1648. </rect>
  1649. </property>
  1650. <property name="font">
  1651. <font>
  1652. <family>AR PL UKai CN</family>
  1653. </font>
  1654. </property>
  1655. <property name="text">
  1656. <string>油门</string>
  1657. </property>
  1658. </widget>
  1659. <widget class="QLabel" name="label_3">
  1660. <property name="geometry">
  1661. <rect>
  1662. <x>200</x>
  1663. <y>110</y>
  1664. <width>31</width>
  1665. <height>16</height>
  1666. </rect>
  1667. </property>
  1668. <property name="font">
  1669. <font>
  1670. <family>AR PL UKai CN</family>
  1671. </font>
  1672. </property>
  1673. <property name="text">
  1674. <string>转向</string>
  1675. </property>
  1676. </widget>
  1677. <widget class="QLineEdit" name="le_speed_control">
  1678. <property name="geometry">
  1679. <rect>
  1680. <x>280</x>
  1681. <y>140</y>
  1682. <width>71</width>
  1683. <height>20</height>
  1684. </rect>
  1685. </property>
  1686. <property name="font">
  1687. <font>
  1688. <family>AR PL UKai CN</family>
  1689. </font>
  1690. </property>
  1691. <property name="text">
  1692. <string>无法使用</string>
  1693. </property>
  1694. </widget>
  1695. <widget class="QLabel" name="label_4">
  1696. <property name="geometry">
  1697. <rect>
  1698. <x>210</x>
  1699. <y>140</y>
  1700. <width>61</width>
  1701. <height>20</height>
  1702. </rect>
  1703. </property>
  1704. <property name="font">
  1705. <font>
  1706. <family>AR PL UKai CN</family>
  1707. </font>
  1708. </property>
  1709. <property name="text">
  1710. <string>速度控制</string>
  1711. </property>
  1712. </widget>
  1713. <widget class="QSlider" name="hs_braking_percent">
  1714. <property name="geometry">
  1715. <rect>
  1716. <x>240</x>
  1717. <y>50</y>
  1718. <width>51</width>
  1719. <height>20</height>
  1720. </rect>
  1721. </property>
  1722. <property name="maximum">
  1723. <number>255</number>
  1724. </property>
  1725. <property name="orientation">
  1726. <enum>Qt::Horizontal</enum>
  1727. </property>
  1728. </widget>
  1729. <widget class="QSlider" name="hs_accelerate_percent">
  1730. <property name="geometry">
  1731. <rect>
  1732. <x>240</x>
  1733. <y>80</y>
  1734. <width>51</width>
  1735. <height>20</height>
  1736. </rect>
  1737. </property>
  1738. <property name="minimum">
  1739. <number>-7</number>
  1740. </property>
  1741. <property name="maximum">
  1742. <number>5</number>
  1743. </property>
  1744. <property name="singleStep">
  1745. <number>1</number>
  1746. </property>
  1747. <property name="pageStep">
  1748. <number>1</number>
  1749. </property>
  1750. <property name="value">
  1751. <number>0</number>
  1752. </property>
  1753. <property name="orientation">
  1754. <enum>Qt::Horizontal</enum>
  1755. </property>
  1756. <property name="invertedControls">
  1757. <bool>false</bool>
  1758. </property>
  1759. <property name="tickPosition">
  1760. <enum>QSlider::NoTicks</enum>
  1761. </property>
  1762. <property name="tickInterval">
  1763. <number>0</number>
  1764. </property>
  1765. </widget>
  1766. <widget class="QSlider" name="hs_wheel_angle">
  1767. <property name="geometry">
  1768. <rect>
  1769. <x>240</x>
  1770. <y>110</y>
  1771. <width>51</width>
  1772. <height>20</height>
  1773. </rect>
  1774. </property>
  1775. <property name="minimum">
  1776. <number>-540</number>
  1777. </property>
  1778. <property name="maximum">
  1779. <number>540</number>
  1780. </property>
  1781. <property name="pageStep">
  1782. <number>1</number>
  1783. </property>
  1784. <property name="value">
  1785. <number>0</number>
  1786. </property>
  1787. <property name="orientation">
  1788. <enum>Qt::Horizontal</enum>
  1789. </property>
  1790. </widget>
  1791. <widget class="QSpinBox" name="sb_braking_percent">
  1792. <property name="geometry">
  1793. <rect>
  1794. <x>300</x>
  1795. <y>50</y>
  1796. <width>60</width>
  1797. <height>20</height>
  1798. </rect>
  1799. </property>
  1800. <property name="font">
  1801. <font>
  1802. <family>AR PL UKai CN</family>
  1803. </font>
  1804. </property>
  1805. <property name="maximum">
  1806. <number>255</number>
  1807. </property>
  1808. </widget>
  1809. <widget class="QSpinBox" name="sb_accelerate_percent">
  1810. <property name="geometry">
  1811. <rect>
  1812. <x>300</x>
  1813. <y>80</y>
  1814. <width>60</width>
  1815. <height>20</height>
  1816. </rect>
  1817. </property>
  1818. <property name="font">
  1819. <font>
  1820. <family>AR PL UKai CN</family>
  1821. </font>
  1822. </property>
  1823. <property name="minimum">
  1824. <number>-7</number>
  1825. </property>
  1826. <property name="maximum">
  1827. <number>5</number>
  1828. </property>
  1829. </widget>
  1830. <widget class="QSpinBox" name="sb_wheel_percent">
  1831. <property name="geometry">
  1832. <rect>
  1833. <x>300</x>
  1834. <y>110</y>
  1835. <width>60</width>
  1836. <height>20</height>
  1837. </rect>
  1838. </property>
  1839. <property name="font">
  1840. <font>
  1841. <family>AR PL UKai CN</family>
  1842. </font>
  1843. </property>
  1844. <property name="minimum">
  1845. <number>-540</number>
  1846. </property>
  1847. <property name="maximum">
  1848. <number>540</number>
  1849. </property>
  1850. </widget>
  1851. <widget class="QPushButton" name="pushButton">
  1852. <property name="geometry">
  1853. <rect>
  1854. <x>10</x>
  1855. <y>150</y>
  1856. <width>181</width>
  1857. <height>21</height>
  1858. </rect>
  1859. </property>
  1860. <property name="font">
  1861. <font>
  1862. <family>AR PL UKai CN</family>
  1863. </font>
  1864. </property>
  1865. <property name="text">
  1866. <string>近光灯:关</string>
  1867. </property>
  1868. </widget>
  1869. <widget class="QPushButton" name="pb_speed_control_mode">
  1870. <property name="geometry">
  1871. <rect>
  1872. <x>10</x>
  1873. <y>54</y>
  1874. <width>181</width>
  1875. <height>21</height>
  1876. </rect>
  1877. </property>
  1878. <property name="font">
  1879. <font>
  1880. <family>AR PL UKai HK</family>
  1881. </font>
  1882. </property>
  1883. <property name="text">
  1884. <string>点火:关</string>
  1885. </property>
  1886. </widget>
  1887. </widget>
  1888. <widget class="QGroupBox" name="groupBox_9">
  1889. <property name="enabled">
  1890. <bool>true</bool>
  1891. </property>
  1892. <property name="geometry">
  1893. <rect>
  1894. <x>500</x>
  1895. <y>240</y>
  1896. <width>381</width>
  1897. <height>71</height>
  1898. </rect>
  1899. </property>
  1900. <property name="styleSheet">
  1901. <string notr="true">color: rgb(238, 238, 236);
  1902. background-color: rgb(85, 87, 83);</string>
  1903. </property>
  1904. <property name="title">
  1905. <string>驻车调试</string>
  1906. </property>
  1907. <widget class="QWidget" name="layoutWidget">
  1908. <property name="geometry">
  1909. <rect>
  1910. <x>10</x>
  1911. <y>30</y>
  1912. <width>248</width>
  1913. <height>33</height>
  1914. </rect>
  1915. </property>
  1916. <layout class="QHBoxLayout" name="horizontalLayout_6">
  1917. <item>
  1918. <widget class="QPushButton" name="pushButton_22">
  1919. <property name="text">
  1920. <string>设置驻车时间</string>
  1921. </property>
  1922. </widget>
  1923. </item>
  1924. <item>
  1925. <widget class="QLineEdit" name="lineEdit_13"/>
  1926. </item>
  1927. </layout>
  1928. </widget>
  1929. </widget>
  1930. <widget class="QGroupBox" name="groupBox_10">
  1931. <property name="geometry">
  1932. <rect>
  1933. <x>500</x>
  1934. <y>330</y>
  1935. <width>381</width>
  1936. <height>301</height>
  1937. </rect>
  1938. </property>
  1939. <property name="styleSheet">
  1940. <string notr="true">color: rgb(238, 238, 236);
  1941. background-color: rgb(85, 87, 83);</string>
  1942. </property>
  1943. <property name="title">
  1944. <string>控制参数设置</string>
  1945. </property>
  1946. <widget class="QTextEdit" name="textEdit_socfdis">
  1947. <property name="enabled">
  1948. <bool>false</bool>
  1949. </property>
  1950. <property name="geometry">
  1951. <rect>
  1952. <x>120</x>
  1953. <y>50</y>
  1954. <width>81</width>
  1955. <height>31</height>
  1956. </rect>
  1957. </property>
  1958. <property name="styleSheet">
  1959. <string notr="true">background-color: rgb(186, 189, 182);</string>
  1960. </property>
  1961. <property name="lineWidth">
  1962. <number>1</number>
  1963. </property>
  1964. <property name="html">
  1965. <string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
  1966. &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
  1967. p, li { white-space: pre-wrap; }
  1968. &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
  1969. &lt;p style=&quot;-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:'Ubuntu';&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1970. </property>
  1971. </widget>
  1972. <widget class="QLabel" name="label_12">
  1973. <property name="geometry">
  1974. <rect>
  1975. <x>20</x>
  1976. <y>50</y>
  1977. <width>91</width>
  1978. <height>21</height>
  1979. </rect>
  1980. </property>
  1981. <property name="text">
  1982. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; color:#eeeeec;&quot;&gt;停障触发距离&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1983. </property>
  1984. </widget>
  1985. <widget class="QPushButton" name="pushButton_20">
  1986. <property name="geometry">
  1987. <rect>
  1988. <x>330</x>
  1989. <y>0</y>
  1990. <width>51</width>
  1991. <height>25</height>
  1992. </rect>
  1993. </property>
  1994. <property name="text">
  1995. <string>保存</string>
  1996. </property>
  1997. </widget>
  1998. <widget class="QTextEdit" name="textEdit_aobzdis">
  1999. <property name="geometry">
  2000. <rect>
  2001. <x>120</x>
  2002. <y>200</y>
  2003. <width>81</width>
  2004. <height>31</height>
  2005. </rect>
  2006. </property>
  2007. <property name="styleSheet">
  2008. <string notr="true">background-color: rgb(186, 189, 182);</string>
  2009. </property>
  2010. </widget>
  2011. <widget class="QLabel" name="label_18">
  2012. <property name="geometry">
  2013. <rect>
  2014. <x>20</x>
  2015. <y>150</y>
  2016. <width>91</width>
  2017. <height>17</height>
  2018. </rect>
  2019. </property>
  2020. <property name="text">
  2021. <string>避障触发次数</string>
  2022. </property>
  2023. </widget>
  2024. <widget class="QLabel" name="label_22">
  2025. <property name="geometry">
  2026. <rect>
  2027. <x>20</x>
  2028. <y>100</y>
  2029. <width>91</width>
  2030. <height>17</height>
  2031. </rect>
  2032. </property>
  2033. <property name="text">
  2034. <string>避障触发距离</string>
  2035. </property>
  2036. </widget>
  2037. <widget class="QLabel" name="label_23">
  2038. <property name="geometry">
  2039. <rect>
  2040. <x>20</x>
  2041. <y>200</y>
  2042. <width>91</width>
  2043. <height>17</height>
  2044. </rect>
  2045. </property>
  2046. <property name="text">
  2047. <string>避障保障距离</string>
  2048. </property>
  2049. </widget>
  2050. <widget class="QTextEdit" name="textEdit_aocfdis">
  2051. <property name="enabled">
  2052. <bool>false</bool>
  2053. </property>
  2054. <property name="geometry">
  2055. <rect>
  2056. <x>120</x>
  2057. <y>100</y>
  2058. <width>81</width>
  2059. <height>31</height>
  2060. </rect>
  2061. </property>
  2062. <property name="styleSheet">
  2063. <string notr="true">background-color: rgb(186, 189, 182);</string>
  2064. </property>
  2065. </widget>
  2066. <widget class="QTextEdit" name="textEdit_socfdis_tj">
  2067. <property name="geometry">
  2068. <rect>
  2069. <x>0</x>
  2070. <y>70</y>
  2071. <width>141</width>
  2072. <height>31</height>
  2073. </rect>
  2074. </property>
  2075. <property name="styleSheet">
  2076. <string notr="true">border-color: rgb(238, 238, 236);
  2077. gridline-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(255, 255, 255, 255));</string>
  2078. </property>
  2079. <property name="frameShape">
  2080. <enum>QFrame::Panel</enum>
  2081. </property>
  2082. <property name="lineWidth">
  2083. <number>0</number>
  2084. </property>
  2085. <property name="html">
  2086. <string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
  2087. &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
  2088. p, li { white-space: pre-wrap; }
  2089. &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
  2090. &lt;p style=&quot;-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:'Ubuntu';&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  2091. </property>
  2092. </widget>
  2093. <widget class="QTextEdit" name="textEdit_aobzdis_tj">
  2094. <property name="geometry">
  2095. <rect>
  2096. <x>0</x>
  2097. <y>220</y>
  2098. <width>151</width>
  2099. <height>31</height>
  2100. </rect>
  2101. </property>
  2102. <property name="frameShape">
  2103. <enum>QFrame::Panel</enum>
  2104. </property>
  2105. <property name="lineWidth">
  2106. <number>-1</number>
  2107. </property>
  2108. </widget>
  2109. <widget class="QTextEdit" name="textEdit_paraspeed_tj">
  2110. <property name="geometry">
  2111. <rect>
  2112. <x>0</x>
  2113. <y>270</y>
  2114. <width>151</width>
  2115. <height>31</height>
  2116. </rect>
  2117. </property>
  2118. <property name="frameShape">
  2119. <enum>QFrame::Panel</enum>
  2120. </property>
  2121. <property name="lineWidth">
  2122. <number>0</number>
  2123. </property>
  2124. </widget>
  2125. <widget class="QTextEdit" name="textEdit_aocftime">
  2126. <property name="enabled">
  2127. <bool>false</bool>
  2128. </property>
  2129. <property name="geometry">
  2130. <rect>
  2131. <x>120</x>
  2132. <y>150</y>
  2133. <width>81</width>
  2134. <height>31</height>
  2135. </rect>
  2136. </property>
  2137. <property name="styleSheet">
  2138. <string notr="true">background-color: rgb(186, 189, 182);</string>
  2139. </property>
  2140. <property name="html">
  2141. <string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
  2142. &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
  2143. p, li { white-space: pre-wrap; }
  2144. &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
  2145. &lt;p style=&quot;-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:'Ubuntu';&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  2146. </property>
  2147. </widget>
  2148. <widget class="QTextEdit" name="textEdit_aocftime_tj">
  2149. <property name="geometry">
  2150. <rect>
  2151. <x>0</x>
  2152. <y>170</y>
  2153. <width>141</width>
  2154. <height>31</height>
  2155. </rect>
  2156. </property>
  2157. <property name="frameShape">
  2158. <enum>QFrame::Panel</enum>
  2159. </property>
  2160. <property name="lineWidth">
  2161. <number>0</number>
  2162. </property>
  2163. </widget>
  2164. <widget class="QTextEdit" name="textEdit_aocfdis_tj">
  2165. <property name="geometry">
  2166. <rect>
  2167. <x>0</x>
  2168. <y>120</y>
  2169. <width>141</width>
  2170. <height>31</height>
  2171. </rect>
  2172. </property>
  2173. <property name="frameShape">
  2174. <enum>QFrame::Panel</enum>
  2175. </property>
  2176. <property name="lineWidth">
  2177. <number>0</number>
  2178. </property>
  2179. </widget>
  2180. <widget class="QTextEdit" name="textEdit_lidarang">
  2181. <property name="geometry">
  2182. <rect>
  2183. <x>120</x>
  2184. <y>250</y>
  2185. <width>81</width>
  2186. <height>31</height>
  2187. </rect>
  2188. </property>
  2189. <property name="toolTip">
  2190. <string>激光雷达可应用于车辆对周围360度环境感知,内参标定对感知的准确性有重要作用。</string>
  2191. </property>
  2192. <property name="styleSheet">
  2193. <string notr="true">background-color: rgb(186, 189, 182);</string>
  2194. </property>
  2195. </widget>
  2196. <widget class="QLabel" name="label_24">
  2197. <property name="geometry">
  2198. <rect>
  2199. <x>20</x>
  2200. <y>250</y>
  2201. <width>91</width>
  2202. <height>17</height>
  2203. </rect>
  2204. </property>
  2205. <property name="text">
  2206. <string>激光雷达角度</string>
  2207. </property>
  2208. </widget>
  2209. <widget class="QTextEdit" name="textEdit_lidarang_tj">
  2210. <property name="geometry">
  2211. <rect>
  2212. <x>0</x>
  2213. <y>320</y>
  2214. <width>131</width>
  2215. <height>31</height>
  2216. </rect>
  2217. </property>
  2218. <property name="frameShape">
  2219. <enum>QFrame::Panel</enum>
  2220. </property>
  2221. <property name="lineWidth">
  2222. <number>0</number>
  2223. </property>
  2224. </widget>
  2225. <widget class="QLabel" name="label_19">
  2226. <property name="geometry">
  2227. <rect>
  2228. <x>210</x>
  2229. <y>50</y>
  2230. <width>171</width>
  2231. <height>17</height>
  2232. </rect>
  2233. </property>
  2234. <property name="text">
  2235. <string>单位:m 范围:10~40</string>
  2236. </property>
  2237. </widget>
  2238. <widget class="QLabel" name="label_20">
  2239. <property name="geometry">
  2240. <rect>
  2241. <x>210</x>
  2242. <y>100</y>
  2243. <width>161</width>
  2244. <height>17</height>
  2245. </rect>
  2246. </property>
  2247. <property name="text">
  2248. <string>单位:m 范围:15~40</string>
  2249. </property>
  2250. </widget>
  2251. <widget class="QLabel" name="label_21">
  2252. <property name="geometry">
  2253. <rect>
  2254. <x>210</x>
  2255. <y>150</y>
  2256. <width>161</width>
  2257. <height>17</height>
  2258. </rect>
  2259. </property>
  2260. <property name="text">
  2261. <string>单位:次 范围:1 ~ 40</string>
  2262. </property>
  2263. </widget>
  2264. <widget class="QLabel" name="label_25">
  2265. <property name="geometry">
  2266. <rect>
  2267. <x>210</x>
  2268. <y>200</y>
  2269. <width>161</width>
  2270. <height>17</height>
  2271. </rect>
  2272. </property>
  2273. <property name="text">
  2274. <string>单位:m 范围:5 ~ 30</string>
  2275. </property>
  2276. </widget>
  2277. <widget class="QLabel" name="label_30">
  2278. <property name="geometry">
  2279. <rect>
  2280. <x>210</x>
  2281. <y>250</y>
  2282. <width>171</width>
  2283. <height>17</height>
  2284. </rect>
  2285. </property>
  2286. <property name="text">
  2287. <string>单位: ° 范围:0~360</string>
  2288. </property>
  2289. </widget>
  2290. <widget class="QPushButton" name="pushButton_21">
  2291. <property name="geometry">
  2292. <rect>
  2293. <x>240</x>
  2294. <y>0</y>
  2295. <width>89</width>
  2296. <height>25</height>
  2297. </rect>
  2298. </property>
  2299. <property name="text">
  2300. <string>恢复默认值</string>
  2301. </property>
  2302. </widget>
  2303. <zorder>pushButton_20</zorder>
  2304. <zorder>label_30</zorder>
  2305. <zorder>pushButton_21</zorder>
  2306. <zorder>textEdit_socfdis_tj</zorder>
  2307. <zorder>textEdit_aobzdis_tj</zorder>
  2308. <zorder>textEdit_paraspeed_tj</zorder>
  2309. <zorder>textEdit_aocftime_tj</zorder>
  2310. <zorder>textEdit_aocfdis_tj</zorder>
  2311. <zorder>textEdit_socfdis</zorder>
  2312. <zorder>textEdit_aocfdis</zorder>
  2313. <zorder>textEdit_aocftime</zorder>
  2314. <zorder>textEdit_aobzdis</zorder>
  2315. <zorder>label_12</zorder>
  2316. <zorder>label_22</zorder>
  2317. <zorder>label_18</zorder>
  2318. <zorder>label_23</zorder>
  2319. <zorder>label_24</zorder>
  2320. <zorder>textEdit_lidarang_tj</zorder>
  2321. <zorder>textEdit_lidarang</zorder>
  2322. <zorder>label_19</zorder>
  2323. <zorder>label_20</zorder>
  2324. <zorder>label_21</zorder>
  2325. <zorder>label_25</zorder>
  2326. </widget>
  2327. <widget class="QGroupBox" name="groupBox_13">
  2328. <property name="enabled">
  2329. <bool>true</bool>
  2330. </property>
  2331. <property name="geometry">
  2332. <rect>
  2333. <x>10</x>
  2334. <y>650</y>
  2335. <width>211</width>
  2336. <height>151</height>
  2337. </rect>
  2338. </property>
  2339. <property name="styleSheet">
  2340. <string notr="true">color: rgb(238, 238, 236);
  2341. background-color: rgb(85, 87, 83);</string>
  2342. </property>
  2343. <property name="title">
  2344. <string>小巴调试</string>
  2345. </property>
  2346. <widget class="QWidget" name="layoutWidget">
  2347. <property name="geometry">
  2348. <rect>
  2349. <x>21</x>
  2350. <y>26</y>
  2351. <width>168</width>
  2352. <height>107</height>
  2353. </rect>
  2354. </property>
  2355. <layout class="QGridLayout" name="gridLayout">
  2356. <item row="0" column="0">
  2357. <widget class="QPushButton" name="pBtn_door_open">
  2358. <property name="text">
  2359. <string>车门开</string>
  2360. </property>
  2361. </widget>
  2362. </item>
  2363. <item row="0" column="1">
  2364. <widget class="QPushButton" name="pBtn_door_close">
  2365. <property name="text">
  2366. <string>车门关</string>
  2367. </property>
  2368. </widget>
  2369. </item>
  2370. <item row="1" column="0">
  2371. <widget class="QPushButton" name="pBtn_low_beam_open">
  2372. <property name="text">
  2373. <string>近光灯开</string>
  2374. </property>
  2375. </widget>
  2376. </item>
  2377. <item row="1" column="1">
  2378. <widget class="QPushButton" name="pBtn_low_beam_close">
  2379. <property name="text">
  2380. <string>近光灯关</string>
  2381. </property>
  2382. </widget>
  2383. </item>
  2384. <item row="2" column="0">
  2385. <widget class="QPushButton" name="pBtn_high_beam_open">
  2386. <property name="text">
  2387. <string>远光灯开</string>
  2388. </property>
  2389. </widget>
  2390. </item>
  2391. <item row="2" column="1">
  2392. <widget class="QPushButton" name="pBtn_high_beam_close">
  2393. <property name="text">
  2394. <string>远光灯关</string>
  2395. </property>
  2396. </widget>
  2397. </item>
  2398. </layout>
  2399. </widget>
  2400. </widget>
  2401. </widget>
  2402. </widget>
  2403. <widget class="QWidget" name="widget" native="true">
  2404. <property name="geometry">
  2405. <rect>
  2406. <x>-1</x>
  2407. <y>0</y>
  2408. <width>1200</width>
  2409. <height>31</height>
  2410. </rect>
  2411. </property>
  2412. <property name="styleSheet">
  2413. <string notr="true">background-color: rgb(0, 0, 0);</string>
  2414. </property>
  2415. <widget class="QLabel" name="label_6">
  2416. <property name="geometry">
  2417. <rect>
  2418. <x>20</x>
  2419. <y>0</y>
  2420. <width>251</width>
  2421. <height>31</height>
  2422. </rect>
  2423. </property>
  2424. <property name="styleSheet">
  2425. <string notr="true">color: rgb(238, 238, 236);</string>
  2426. </property>
  2427. <property name="text">
  2428. <string>中国汽车技术研究中心-数据资源中心</string>
  2429. </property>
  2430. </widget>
  2431. <widget class="QLabel" name="label_7">
  2432. <property name="geometry">
  2433. <rect>
  2434. <x>740</x>
  2435. <y>0</y>
  2436. <width>71</width>
  2437. <height>31</height>
  2438. </rect>
  2439. </property>
  2440. <property name="styleSheet">
  2441. <string notr="true">color: rgb(238, 238, 236);</string>
  2442. </property>
  2443. <property name="text">
  2444. <string>商务合作</string>
  2445. </property>
  2446. </widget>
  2447. <widget class="QLabel" name="label_8">
  2448. <property name="geometry">
  2449. <rect>
  2450. <x>830</x>
  2451. <y>0</y>
  2452. <width>71</width>
  2453. <height>31</height>
  2454. </rect>
  2455. </property>
  2456. <property name="styleSheet">
  2457. <string notr="true">color: rgb(238, 238, 236);</string>
  2458. </property>
  2459. <property name="text">
  2460. <string>技术支持</string>
  2461. </property>
  2462. </widget>
  2463. </widget>
  2464. <widget class="QCheckBox" name="checkBox_8">
  2465. <property name="geometry">
  2466. <rect>
  2467. <x>1620</x>
  2468. <y>730</y>
  2469. <width>101</width>
  2470. <height>23</height>
  2471. </rect>
  2472. </property>
  2473. <property name="styleSheet">
  2474. <string notr="true">color: rgb(238, 238, 236);</string>
  2475. </property>
  2476. <property name="text">
  2477. <string>毫米波显示</string>
  2478. </property>
  2479. <property name="checked">
  2480. <bool>true</bool>
  2481. </property>
  2482. </widget>
  2483. <widget class="QCheckBox" name="checkBox_9">
  2484. <property name="geometry">
  2485. <rect>
  2486. <x>1620</x>
  2487. <y>780</y>
  2488. <width>101</width>
  2489. <height>23</height>
  2490. </rect>
  2491. </property>
  2492. <property name="styleSheet">
  2493. <string notr="true">color: rgb(238, 238, 236);</string>
  2494. </property>
  2495. <property name="text">
  2496. <string>激光显示</string>
  2497. </property>
  2498. <property name="checked">
  2499. <bool>true</bool>
  2500. </property>
  2501. </widget>
  2502. <widget class="QCheckBox" name="checkBox_10">
  2503. <property name="geometry">
  2504. <rect>
  2505. <x>1620</x>
  2506. <y>830</y>
  2507. <width>101</width>
  2508. <height>23</height>
  2509. </rect>
  2510. </property>
  2511. <property name="styleSheet">
  2512. <string notr="true">color: rgb(238, 238, 236);</string>
  2513. </property>
  2514. <property name="text">
  2515. <string>融合显示</string>
  2516. </property>
  2517. <property name="checked">
  2518. <bool>true</bool>
  2519. </property>
  2520. </widget>
  2521. </widget>
  2522. <widget class="QMenuBar" name="menuBar">
  2523. <property name="geometry">
  2524. <rect>
  2525. <x>0</x>
  2526. <y>0</y>
  2527. <width>1900</width>
  2528. <height>28</height>
  2529. </rect>
  2530. </property>
  2531. </widget>
  2532. <widget class="QToolBar" name="mainToolBar">
  2533. <attribute name="toolBarArea">
  2534. <enum>TopToolBarArea</enum>
  2535. </attribute>
  2536. <attribute name="toolBarBreak">
  2537. <bool>false</bool>
  2538. </attribute>
  2539. </widget>
  2540. <widget class="QStatusBar" name="statusBar"/>
  2541. </widget>
  2542. <layoutdefault spacing="6" margin="11"/>
  2543. <resources>
  2544. <include location="ADCIntelligentVehicle.qrc"/>
  2545. <include location="ADCIntelligentVehicle.qrc"/>
  2546. <include location="ADCIntelligentVehicle.qrc"/>
  2547. </resources>
  2548. <connections>
  2549. <connection>
  2550. <sender>sb_wheel_percent</sender>
  2551. <signal>valueChanged(int)</signal>
  2552. <receiver>hs_wheel_angle</receiver>
  2553. <slot>setValue(int)</slot>
  2554. <hints>
  2555. <hint type="sourcelabel">
  2556. <x>919</x>
  2557. <y>264</y>
  2558. </hint>
  2559. <hint type="destinationlabel">
  2560. <x>855</x>
  2561. <y>264</y>
  2562. </hint>
  2563. </hints>
  2564. </connection>
  2565. <connection>
  2566. <sender>sb_braking_percent</sender>
  2567. <signal>valueChanged(int)</signal>
  2568. <receiver>hs_braking_percent</receiver>
  2569. <slot>setValue(int)</slot>
  2570. <hints>
  2571. <hint type="sourcelabel">
  2572. <x>919</x>
  2573. <y>204</y>
  2574. </hint>
  2575. <hint type="destinationlabel">
  2576. <x>855</x>
  2577. <y>204</y>
  2578. </hint>
  2579. </hints>
  2580. </connection>
  2581. <connection>
  2582. <sender>sb_accelerate_percent</sender>
  2583. <signal>valueChanged(int)</signal>
  2584. <receiver>hs_accelerate_percent</receiver>
  2585. <slot>setValue(int)</slot>
  2586. <hints>
  2587. <hint type="sourcelabel">
  2588. <x>919</x>
  2589. <y>234</y>
  2590. </hint>
  2591. <hint type="destinationlabel">
  2592. <x>855</x>
  2593. <y>234</y>
  2594. </hint>
  2595. </hints>
  2596. </connection>
  2597. <connection>
  2598. <sender>hs_wheel_angle</sender>
  2599. <signal>valueChanged(int)</signal>
  2600. <receiver>sb_wheel_percent</receiver>
  2601. <slot>setValue(int)</slot>
  2602. <hints>
  2603. <hint type="sourcelabel">
  2604. <x>855</x>
  2605. <y>264</y>
  2606. </hint>
  2607. <hint type="destinationlabel">
  2608. <x>919</x>
  2609. <y>264</y>
  2610. </hint>
  2611. </hints>
  2612. </connection>
  2613. <connection>
  2614. <sender>hs_braking_percent</sender>
  2615. <signal>valueChanged(int)</signal>
  2616. <receiver>sb_braking_percent</receiver>
  2617. <slot>setValue(int)</slot>
  2618. <hints>
  2619. <hint type="sourcelabel">
  2620. <x>855</x>
  2621. <y>204</y>
  2622. </hint>
  2623. <hint type="destinationlabel">
  2624. <x>919</x>
  2625. <y>204</y>
  2626. </hint>
  2627. </hints>
  2628. </connection>
  2629. <connection>
  2630. <sender>hs_accelerate_percent</sender>
  2631. <signal>valueChanged(int)</signal>
  2632. <receiver>sb_accelerate_percent</receiver>
  2633. <slot>setValue(int)</slot>
  2634. <hints>
  2635. <hint type="sourcelabel">
  2636. <x>855</x>
  2637. <y>234</y>
  2638. </hint>
  2639. <hint type="destinationlabel">
  2640. <x>919</x>
  2641. <y>234</y>
  2642. </hint>
  2643. </hints>
  2644. </connection>
  2645. </connections>
  2646. </ui>