2
0

settingswidget.ui 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>SettingsWidget</class>
  4. <widget class="QWidget" name="SettingsWidget">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>731</width>
  10. <height>411</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Form</string>
  15. </property>
  16. <layout class="QGridLayout" name="gridLayout_2">
  17. <item row="0" column="1">
  18. <widget class="QTabWidget" name="tabWidget">
  19. <property name="currentIndex">
  20. <number>2</number>
  21. </property>
  22. <widget class="QWidget" name="personalTab">
  23. <attribute name="title">
  24. <string>Personal</string>
  25. </attribute>
  26. <layout class="QGridLayout" name="gridLayout">
  27. <item row="0" column="1">
  28. <widget class="QLabel" name="lastNameLabel">
  29. <property name="text">
  30. <string>Last Name</string>
  31. </property>
  32. </widget>
  33. </item>
  34. <item row="0" column="2">
  35. <widget class="QLineEdit" name="lastnameLineEdit">
  36. <property name="maxLength">
  37. <number>40</number>
  38. </property>
  39. <property name="placeholderText">
  40. <string>required</string>
  41. </property>
  42. </widget>
  43. </item>
  44. <item row="1" column="1">
  45. <widget class="QLabel" name="firstNameLabel">
  46. <property name="text">
  47. <string>First Name</string>
  48. </property>
  49. </widget>
  50. </item>
  51. <item row="1" column="2">
  52. <widget class="QLineEdit" name="firstnameLineEdit">
  53. <property name="maxLength">
  54. <number>40</number>
  55. </property>
  56. <property name="placeholderText">
  57. <string>required</string>
  58. </property>
  59. </widget>
  60. </item>
  61. <item row="2" column="1">
  62. <widget class="QLabel" name="companyLabel">
  63. <property name="text">
  64. <string>Company</string>
  65. </property>
  66. </widget>
  67. </item>
  68. <item row="2" column="2">
  69. <widget class="QLineEdit" name="companyLineEdit">
  70. <property name="focusPolicy">
  71. <enum>Qt::StrongFocus</enum>
  72. </property>
  73. <property name="text">
  74. <string/>
  75. </property>
  76. <property name="maxLength">
  77. <number>40</number>
  78. </property>
  79. <property name="placeholderText">
  80. <string>optional</string>
  81. </property>
  82. </widget>
  83. </item>
  84. <item row="3" column="1">
  85. <widget class="QLabel" name="employeeLabel">
  86. <property name="text">
  87. <string>Employee ID</string>
  88. </property>
  89. </widget>
  90. </item>
  91. <item row="3" column="2">
  92. <widget class="QLineEdit" name="employeeidLineEdit">
  93. <property name="focusPolicy">
  94. <enum>Qt::StrongFocus</enum>
  95. </property>
  96. <property name="text">
  97. <string/>
  98. </property>
  99. <property name="maxLength">
  100. <number>40</number>
  101. </property>
  102. <property name="placeholderText">
  103. <string>optional</string>
  104. </property>
  105. </widget>
  106. </item>
  107. <item row="4" column="1">
  108. <widget class="QLabel" name="emailLabel">
  109. <property name="text">
  110. <string>eMail</string>
  111. </property>
  112. </widget>
  113. </item>
  114. <item row="4" column="2">
  115. <widget class="QLineEdit" name="emailLineEdit">
  116. <property name="maxLength">
  117. <number>40</number>
  118. </property>
  119. <property name="placeholderText">
  120. <string>optional</string>
  121. </property>
  122. </widget>
  123. </item>
  124. <item row="5" column="0">
  125. <spacer name="horizontalSpacer_5">
  126. <property name="orientation">
  127. <enum>Qt::Horizontal</enum>
  128. </property>
  129. <property name="sizeHint" stdset="0">
  130. <size>
  131. <width>191</width>
  132. <height>20</height>
  133. </size>
  134. </property>
  135. </spacer>
  136. </item>
  137. <item row="5" column="1">
  138. <widget class="QLabel" name="phoneLabel">
  139. <property name="text">
  140. <string>Phone</string>
  141. </property>
  142. </widget>
  143. </item>
  144. <item row="5" column="2">
  145. <widget class="QLineEdit" name="phoneLineEdit">
  146. <property name="maxLength">
  147. <number>40</number>
  148. </property>
  149. <property name="placeholderText">
  150. <string>optional</string>
  151. </property>
  152. </widget>
  153. </item>
  154. <item row="5" column="3">
  155. <spacer name="horizontalSpacer_6">
  156. <property name="orientation">
  157. <enum>Qt::Horizontal</enum>
  158. </property>
  159. <property name="sizeHint" stdset="0">
  160. <size>
  161. <width>191</width>
  162. <height>20</height>
  163. </size>
  164. </property>
  165. </spacer>
  166. </item>
  167. </layout>
  168. </widget>
  169. <widget class="QWidget" name="flightLoggingTab">
  170. <attribute name="title">
  171. <string>Flight Logging</string>
  172. </attribute>
  173. <layout class="QGridLayout" name="gridLayout_4">
  174. <item row="0" column="1">
  175. <widget class="QLabel" name="aliasLabel">
  176. <property name="toolTip">
  177. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;How your own name is displayed in your logbook&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  178. </property>
  179. <property name="text">
  180. <string>Show own name as</string>
  181. </property>
  182. </widget>
  183. </item>
  184. <item row="0" column="2">
  185. <widget class="QComboBox" name="aliasComboBox">
  186. <item>
  187. <property name="text">
  188. <string>self</string>
  189. </property>
  190. </item>
  191. <item>
  192. <property name="text">
  193. <string>SELF</string>
  194. </property>
  195. </item>
  196. <item>
  197. <property name="text">
  198. <string>Lastname, Firstname</string>
  199. </property>
  200. </item>
  201. </widget>
  202. </item>
  203. <item row="1" column="1">
  204. <widget class="QLabel" name="functionLabel">
  205. <property name="toolTip">
  206. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Default function for auto-logging&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  207. </property>
  208. <property name="text">
  209. <string>Function</string>
  210. </property>
  211. </widget>
  212. </item>
  213. <item row="1" column="2">
  214. <widget class="QComboBox" name="functionComboBox">
  215. <item>
  216. <property name="text">
  217. <string>PIC</string>
  218. </property>
  219. </item>
  220. <item>
  221. <property name="text">
  222. <string>SIC</string>
  223. </property>
  224. </item>
  225. <item>
  226. <property name="text">
  227. <string>DUAL</string>
  228. </property>
  229. </item>
  230. <item>
  231. <property name="text">
  232. <string>INSTRUCTOR</string>
  233. </property>
  234. </item>
  235. </widget>
  236. </item>
  237. <item row="2" column="1">
  238. <widget class="QLabel" name="rulesLabel">
  239. <property name="toolTip">
  240. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Default Flight Rules for auto-logging&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  241. </property>
  242. <property name="text">
  243. <string>Flight Rules</string>
  244. </property>
  245. </widget>
  246. </item>
  247. <item row="2" column="2">
  248. <widget class="QComboBox" name="rulesComboBox">
  249. <item>
  250. <property name="text">
  251. <string>VFR</string>
  252. </property>
  253. </item>
  254. <item>
  255. <property name="text">
  256. <string>IFR</string>
  257. </property>
  258. </item>
  259. </widget>
  260. </item>
  261. <item row="3" column="0">
  262. <spacer name="horizontalSpacer_3">
  263. <property name="orientation">
  264. <enum>Qt::Horizontal</enum>
  265. </property>
  266. <property name="sizeHint" stdset="0">
  267. <size>
  268. <width>176</width>
  269. <height>20</height>
  270. </size>
  271. </property>
  272. </spacer>
  273. </item>
  274. <item row="3" column="1">
  275. <widget class="QLabel" name="approachLabel">
  276. <property name="toolTip">
  277. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The default approach for auto-logging&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  278. </property>
  279. <property name="text">
  280. <string>Approach</string>
  281. </property>
  282. </widget>
  283. </item>
  284. <item row="3" column="2">
  285. <widget class="QComboBox" name="approachComboBox">
  286. <item>
  287. <property name="text">
  288. <string>VISUAL</string>
  289. </property>
  290. </item>
  291. <item>
  292. <property name="text">
  293. <string>ILS CAT I</string>
  294. </property>
  295. </item>
  296. <item>
  297. <property name="text">
  298. <string>ILS CAT II</string>
  299. </property>
  300. </item>
  301. <item>
  302. <property name="text">
  303. <string>ILS CAT III</string>
  304. </property>
  305. </item>
  306. <item>
  307. <property name="text">
  308. <string>GLS</string>
  309. </property>
  310. </item>
  311. <item>
  312. <property name="text">
  313. <string>MLS</string>
  314. </property>
  315. </item>
  316. <item>
  317. <property name="text">
  318. <string>LOC</string>
  319. </property>
  320. </item>
  321. <item>
  322. <property name="text">
  323. <string>LOC/DME</string>
  324. </property>
  325. </item>
  326. <item>
  327. <property name="text">
  328. <string>RNAV</string>
  329. </property>
  330. </item>
  331. <item>
  332. <property name="text">
  333. <string>RNAV (LNAV)</string>
  334. </property>
  335. </item>
  336. <item>
  337. <property name="text">
  338. <string>RNAV (LNAV/VNAV)</string>
  339. </property>
  340. </item>
  341. <item>
  342. <property name="text">
  343. <string>RNAV (LPV)</string>
  344. </property>
  345. </item>
  346. <item>
  347. <property name="text">
  348. <string>RNAV (RNP)</string>
  349. </property>
  350. </item>
  351. <item>
  352. <property name="text">
  353. <string>RNAV (RNP-AR)</string>
  354. </property>
  355. </item>
  356. <item>
  357. <property name="text">
  358. <string>VOR</string>
  359. </property>
  360. </item>
  361. <item>
  362. <property name="text">
  363. <string>VOR/DME</string>
  364. </property>
  365. </item>
  366. <item>
  367. <property name="text">
  368. <string>NDB</string>
  369. </property>
  370. </item>
  371. <item>
  372. <property name="text">
  373. <string>NDB/DME</string>
  374. </property>
  375. </item>
  376. <item>
  377. <property name="text">
  378. <string>TACAN</string>
  379. </property>
  380. </item>
  381. <item>
  382. <property name="text">
  383. <string>SRA</string>
  384. </property>
  385. </item>
  386. <item>
  387. <property name="text">
  388. <string>PAR</string>
  389. </property>
  390. </item>
  391. </widget>
  392. </item>
  393. <item row="3" column="3">
  394. <spacer name="horizontalSpacer_4">
  395. <property name="orientation">
  396. <enum>Qt::Horizontal</enum>
  397. </property>
  398. <property name="sizeHint" stdset="0">
  399. <size>
  400. <width>175</width>
  401. <height>20</height>
  402. </size>
  403. </property>
  404. </spacer>
  405. </item>
  406. <item row="4" column="1">
  407. <widget class="QLabel" name="nightLabel">
  408. <property name="toolTip">
  409. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines how (if) night time is automatically calculated. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  410. </property>
  411. <property name="whatsThis">
  412. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  413. </property>
  414. <property name="text">
  415. <string>Night Time</string>
  416. </property>
  417. </widget>
  418. </item>
  419. <item row="4" column="2">
  420. <widget class="QComboBox" name="nightComboBox">
  421. <property name="toolTip">
  422. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EASA: End of civil evening twilight until beginning of civil morning twilight&lt;/p&gt;&lt;p&gt;SR/SS: From sunrise to sunset.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  423. </property>
  424. <property name="whatsThis">
  425. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EASA: End of civil evening twilight until beginning of civil morning twilight&lt;/p&gt;&lt;p&gt;SR/SS: From sunrise to sunset.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  426. </property>
  427. <item>
  428. <property name="text">
  429. <string>NO</string>
  430. </property>
  431. </item>
  432. <item>
  433. <property name="text">
  434. <string>YES (EASA)</string>
  435. </property>
  436. </item>
  437. <item>
  438. <property name="text">
  439. <string>YES (SR/SS)</string>
  440. </property>
  441. </item>
  442. </widget>
  443. </item>
  444. <item row="5" column="1">
  445. <widget class="QLabel" name="prefixLabel">
  446. <property name="toolTip">
  447. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Enter you airline Prefix to speed up logging of flight numbers&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  448. </property>
  449. <property name="text">
  450. <string>Airline Prefix</string>
  451. </property>
  452. </widget>
  453. </item>
  454. <item row="5" column="2">
  455. <widget class="QLineEdit" name="prefixLineEdit">
  456. <property name="maxLength">
  457. <number>10</number>
  458. </property>
  459. <property name="placeholderText">
  460. <string>optional</string>
  461. </property>
  462. </widget>
  463. </item>
  464. </layout>
  465. </widget>
  466. <widget class="QWidget" name="miscTab">
  467. <attribute name="title">
  468. <string>Misc</string>
  469. </attribute>
  470. <layout class="QGridLayout" name="gridLayout_5">
  471. <item row="3" column="1">
  472. <widget class="QLabel" name="pilotSortLabel">
  473. <property name="sizePolicy">
  474. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  475. <horstretch>0</horstretch>
  476. <verstretch>0</verstretch>
  477. </sizepolicy>
  478. </property>
  479. <property name="toolTip">
  480. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Pilots in the Pilots Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  481. </property>
  482. <property name="whatsThis">
  483. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Pilots in the Pilots Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  484. </property>
  485. <property name="text">
  486. <string>Sort Pilots by</string>
  487. </property>
  488. </widget>
  489. </item>
  490. <item row="5" column="1">
  491. <widget class="QLabel" name="acAllowIncompleteLabel">
  492. <property name="sizePolicy">
  493. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  494. <horstretch>0</horstretch>
  495. <verstretch>0</verstretch>
  496. </sizepolicy>
  497. </property>
  498. <property name="toolTip">
  499. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines whether incomplete database entries are permitted. It is highly recommended to keep this option off.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  500. </property>
  501. <property name="text">
  502. <string>Allow incomplete Entries </string>
  503. </property>
  504. </widget>
  505. </item>
  506. <item row="6" column="1">
  507. <widget class="QLabel" name="logbookViewLabel">
  508. <property name="sizePolicy">
  509. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  510. <horstretch>0</horstretch>
  511. <verstretch>0</verstretch>
  512. </sizepolicy>
  513. </property>
  514. <property name="toolTip">
  515. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines how your logbook is displayed in the logbook tab. This has no influence on what details are logged, just on what is displayed by default.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  516. </property>
  517. <property name="whatsThis">
  518. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines how your logbook is displayed in the logbook tab. This has no influence on what details are logged, just on what is displayed by default.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  519. </property>
  520. <property name="text">
  521. <string>Logbook Dispay</string>
  522. </property>
  523. </widget>
  524. </item>
  525. <item row="4" column="1">
  526. <widget class="QLabel" name="acSortLabel">
  527. <property name="sizePolicy">
  528. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  529. <horstretch>0</horstretch>
  530. <verstretch>0</verstretch>
  531. </sizepolicy>
  532. </property>
  533. <property name="toolTip">
  534. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Aircaft in the Aircraft Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  535. </property>
  536. <property name="whatsThis">
  537. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Aircaft in the Aircraft Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  538. </property>
  539. <property name="text">
  540. <string>Sort Aircraft by</string>
  541. </property>
  542. </widget>
  543. </item>
  544. <item row="0" column="1">
  545. <widget class="QLabel" name="themeLabel">
  546. <property name="sizePolicy">
  547. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  548. <horstretch>0</horstretch>
  549. <verstretch>0</verstretch>
  550. </sizepolicy>
  551. </property>
  552. <property name="toolTip">
  553. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Changes the theme of the application.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  554. </property>
  555. <property name="text">
  556. <string>Theme</string>
  557. </property>
  558. </widget>
  559. </item>
  560. <item row="0" column="2">
  561. <widget class="QCheckBox" name="systemThemeCheckBox">
  562. <property name="toolTip">
  563. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uses your default system theme.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  564. </property>
  565. <property name="text">
  566. <string>System</string>
  567. </property>
  568. </widget>
  569. </item>
  570. <item row="0" column="3">
  571. <widget class="QCheckBox" name="lightThemeCheckBox">
  572. <property name="toolTip">
  573. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uses the Breeze light theme.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  574. </property>
  575. <property name="text">
  576. <string>Light</string>
  577. </property>
  578. </widget>
  579. </item>
  580. <item row="0" column="4">
  581. <widget class="QCheckBox" name="darkThemeCheckBox">
  582. <property name="toolTip">
  583. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uses the breeze dark theme (night mode)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  584. </property>
  585. <property name="text">
  586. <string>Dark</string>
  587. </property>
  588. </widget>
  589. </item>
  590. <item row="1" column="1">
  591. <widget class="QLabel" name="styleLabel">
  592. <property name="sizePolicy">
  593. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  594. <horstretch>0</horstretch>
  595. <verstretch>0</verstretch>
  596. </sizepolicy>
  597. </property>
  598. <property name="text">
  599. <string>Style</string>
  600. </property>
  601. </widget>
  602. </item>
  603. <item row="1" column="2">
  604. <widget class="QComboBox" name="styleComboBox"/>
  605. </item>
  606. <item row="3" column="2">
  607. <widget class="QComboBox" name="pilotSortComboBox">
  608. <property name="toolTip">
  609. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Pilots in the Pilots Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  610. </property>
  611. <item>
  612. <property name="text">
  613. <string>Last Name</string>
  614. </property>
  615. </item>
  616. <item>
  617. <property name="text">
  618. <string>First Name</string>
  619. </property>
  620. </item>
  621. <item>
  622. <property name="text">
  623. <string>Company</string>
  624. </property>
  625. </item>
  626. </widget>
  627. </item>
  628. <item row="4" column="2">
  629. <widget class="QComboBox" name="acSortComboBox">
  630. <property name="toolTip">
  631. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines by which column to sort the display of Aircaft in the Aircraft Tab.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  632. </property>
  633. <item>
  634. <property name="text">
  635. <string>Registration</string>
  636. </property>
  637. </item>
  638. <item>
  639. <property name="text">
  640. <string>Type</string>
  641. </property>
  642. </item>
  643. <item>
  644. <property name="text">
  645. <string>Company</string>
  646. </property>
  647. </item>
  648. </widget>
  649. </item>
  650. <item row="5" column="2">
  651. <widget class="QComboBox" name="acAllowIncompleteComboBox">
  652. <property name="toolTip">
  653. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines whether incomplete database entries are permitted. It is highly recommended to keep this option off.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  654. </property>
  655. <item>
  656. <property name="text">
  657. <string>No</string>
  658. </property>
  659. </item>
  660. <item>
  661. <property name="text">
  662. <string>Yes</string>
  663. </property>
  664. </item>
  665. </widget>
  666. </item>
  667. <item row="6" column="2">
  668. <widget class="QComboBox" name="logbookViewComboBox">
  669. <property name="toolTip">
  670. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Determines how your logbook is displayed in the logbook tab. This has no influence on what details are logged, just on what is displayed by default.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  671. </property>
  672. <item>
  673. <property name="text">
  674. <string>Default</string>
  675. </property>
  676. </item>
  677. <item>
  678. <property name="text">
  679. <string>EASA Part-FCL</string>
  680. </property>
  681. </item>
  682. </widget>
  683. </item>
  684. </layout>
  685. </widget>
  686. <widget class="QWidget" name="aboutTab">
  687. <attribute name="title">
  688. <string>About</string>
  689. </attribute>
  690. <layout class="QGridLayout" name="gridLayout_3">
  691. <item row="0" column="0">
  692. <spacer name="horizontalSpacer_7">
  693. <property name="orientation">
  694. <enum>Qt::Horizontal</enum>
  695. </property>
  696. <property name="sizeHint" stdset="0">
  697. <size>
  698. <width>259</width>
  699. <height>20</height>
  700. </size>
  701. </property>
  702. </spacer>
  703. </item>
  704. <item row="0" column="1">
  705. <widget class="QPushButton" name="aboutPushButton">
  706. <property name="text">
  707. <string>About openPilotLog</string>
  708. </property>
  709. </widget>
  710. </item>
  711. <item row="0" column="2">
  712. <spacer name="horizontalSpacer_8">
  713. <property name="orientation">
  714. <enum>Qt::Horizontal</enum>
  715. </property>
  716. <property name="sizeHint" stdset="0">
  717. <size>
  718. <width>259</width>
  719. <height>20</height>
  720. </size>
  721. </property>
  722. </spacer>
  723. </item>
  724. </layout>
  725. </widget>
  726. </widget>
  727. </item>
  728. </layout>
  729. </widget>
  730. <resources/>
  731. <connections/>
  732. </ui>