settingswidget.ui 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  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>1114</width>
  10. <height>661</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="0">
  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="dateFormatLabel">
  176. <property name="text">
  177. <string>Date Format</string>
  178. </property>
  179. </widget>
  180. </item>
  181. <item row="0" column="2">
  182. <widget class="QComboBox" name="dateFormatComboBox"/>
  183. </item>
  184. <item row="1" column="1">
  185. <widget class="QLabel" name="aliasLabel">
  186. <property name="toolTip">
  187. <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>
  188. </property>
  189. <property name="text">
  190. <string>Show own name as</string>
  191. </property>
  192. </widget>
  193. </item>
  194. <item row="1" column="2">
  195. <widget class="QComboBox" name="aliasComboBox">
  196. <item>
  197. <property name="text">
  198. <string>self</string>
  199. </property>
  200. </item>
  201. <item>
  202. <property name="text">
  203. <string>SELF</string>
  204. </property>
  205. </item>
  206. <item>
  207. <property name="text">
  208. <string>Lastname, Firstname</string>
  209. </property>
  210. </item>
  211. </widget>
  212. </item>
  213. <item row="2" column="1">
  214. <widget class="QLabel" name="functionLabel">
  215. <property name="toolTip">
  216. <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>
  217. </property>
  218. <property name="text">
  219. <string>Function</string>
  220. </property>
  221. </widget>
  222. </item>
  223. <item row="2" column="2">
  224. <widget class="QComboBox" name="functionComboBox">
  225. <item>
  226. <property name="text">
  227. <string>PIC</string>
  228. </property>
  229. </item>
  230. <item>
  231. <property name="text">
  232. <string>SIC</string>
  233. </property>
  234. </item>
  235. <item>
  236. <property name="text">
  237. <string>DUAL</string>
  238. </property>
  239. </item>
  240. <item>
  241. <property name="text">
  242. <string>INSTRUCTOR</string>
  243. </property>
  244. </item>
  245. </widget>
  246. </item>
  247. <item row="3" column="1">
  248. <widget class="QLabel" name="rulesLabel">
  249. <property name="toolTip">
  250. <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>
  251. </property>
  252. <property name="text">
  253. <string>Flight Rules</string>
  254. </property>
  255. </widget>
  256. </item>
  257. <item row="3" column="2">
  258. <widget class="QComboBox" name="rulesComboBox">
  259. <item>
  260. <property name="text">
  261. <string>VFR</string>
  262. </property>
  263. </item>
  264. <item>
  265. <property name="text">
  266. <string>IFR</string>
  267. </property>
  268. </item>
  269. </widget>
  270. </item>
  271. <item row="4" column="0">
  272. <spacer name="horizontalSpacer_3">
  273. <property name="orientation">
  274. <enum>Qt::Horizontal</enum>
  275. </property>
  276. <property name="sizeHint" stdset="0">
  277. <size>
  278. <width>176</width>
  279. <height>20</height>
  280. </size>
  281. </property>
  282. </spacer>
  283. </item>
  284. <item row="4" column="1">
  285. <widget class="QLabel" name="approachLabel">
  286. <property name="toolTip">
  287. <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>
  288. </property>
  289. <property name="text">
  290. <string>Approach</string>
  291. </property>
  292. </widget>
  293. </item>
  294. <item row="4" column="2">
  295. <widget class="QComboBox" name="approachComboBox"/>
  296. </item>
  297. <item row="4" column="3">
  298. <spacer name="horizontalSpacer_4">
  299. <property name="orientation">
  300. <enum>Qt::Horizontal</enum>
  301. </property>
  302. <property name="sizeHint" stdset="0">
  303. <size>
  304. <width>175</width>
  305. <height>20</height>
  306. </size>
  307. </property>
  308. </spacer>
  309. </item>
  310. <item row="5" column="1">
  311. <widget class="QLabel" name="nightLabel">
  312. <property name="toolTip">
  313. <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>
  314. </property>
  315. <property name="whatsThis">
  316. <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>
  317. </property>
  318. <property name="text">
  319. <string>Night Time</string>
  320. </property>
  321. </widget>
  322. </item>
  323. <item row="5" column="2">
  324. <widget class="QComboBox" name="nightComboBox">
  325. <property name="toolTip">
  326. <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>
  327. </property>
  328. <property name="whatsThis">
  329. <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>
  330. </property>
  331. <item>
  332. <property name="text">
  333. <string>NO</string>
  334. </property>
  335. </item>
  336. <item>
  337. <property name="text">
  338. <string>YES (EASA)</string>
  339. </property>
  340. </item>
  341. <item>
  342. <property name="text">
  343. <string>YES (SR/SS)</string>
  344. </property>
  345. </item>
  346. </widget>
  347. </item>
  348. <item row="6" column="1">
  349. <widget class="QLabel" name="prefixLabel">
  350. <property name="toolTip">
  351. <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>
  352. </property>
  353. <property name="text">
  354. <string>Airline Prefix</string>
  355. </property>
  356. </widget>
  357. </item>
  358. <item row="6" column="2">
  359. <widget class="QLineEdit" name="prefixLineEdit">
  360. <property name="maxLength">
  361. <number>10</number>
  362. </property>
  363. <property name="placeholderText">
  364. <string>optional</string>
  365. </property>
  366. </widget>
  367. </item>
  368. </layout>
  369. </widget>
  370. <widget class="QWidget" name="currenciesTab">
  371. <attribute name="title">
  372. <string>Currencies</string>
  373. </attribute>
  374. <layout class="QGridLayout" name="gridLayout_6">
  375. <item row="3" column="3">
  376. <widget class="QCheckBox" name="currToLdgCheckBox">
  377. <property name="minimumSize">
  378. <size>
  379. <width>140</width>
  380. <height>0</height>
  381. </size>
  382. </property>
  383. <property name="layoutDirection">
  384. <enum>Qt::LeftToRight</enum>
  385. </property>
  386. <property name="text">
  387. <string/>
  388. </property>
  389. </widget>
  390. </item>
  391. <item row="8" column="0">
  392. <widget class="QLineEdit" name="currCustom1LineEdit">
  393. <property name="minimumSize">
  394. <size>
  395. <width>280</width>
  396. <height>0</height>
  397. </size>
  398. </property>
  399. <property name="text">
  400. <string/>
  401. </property>
  402. <property name="placeholderText">
  403. <string>custom currency</string>
  404. </property>
  405. </widget>
  406. </item>
  407. <item row="5" column="3">
  408. <widget class="QCheckBox" name="currTrCheckBox">
  409. <property name="minimumSize">
  410. <size>
  411. <width>140</width>
  412. <height>0</height>
  413. </size>
  414. </property>
  415. <property name="layoutDirection">
  416. <enum>Qt::LeftToRight</enum>
  417. </property>
  418. <property name="text">
  419. <string/>
  420. </property>
  421. </widget>
  422. </item>
  423. <item row="3" column="0">
  424. <widget class="QLabel" name="currToLdgLabel">
  425. <property name="minimumSize">
  426. <size>
  427. <width>280</width>
  428. <height>0</height>
  429. </size>
  430. </property>
  431. <property name="text">
  432. <string>Take-off / Landing (days)</string>
  433. </property>
  434. </widget>
  435. </item>
  436. <item row="1" column="1">
  437. <spacer name="verticalSpacer">
  438. <property name="orientation">
  439. <enum>Qt::Vertical</enum>
  440. </property>
  441. <property name="sizeHint" stdset="0">
  442. <size>
  443. <width>20</width>
  444. <height>168</height>
  445. </size>
  446. </property>
  447. </spacer>
  448. </item>
  449. <item row="4" column="2">
  450. <widget class="QDateEdit" name="currLicDateEdit">
  451. <property name="minimumSize">
  452. <size>
  453. <width>140</width>
  454. <height>0</height>
  455. </size>
  456. </property>
  457. <property name="currentSection">
  458. <enum>QDateTimeEdit::MonthSection</enum>
  459. </property>
  460. <property name="displayFormat">
  461. <string>MM/dd/yyyy</string>
  462. </property>
  463. <property name="calendarPopup">
  464. <bool>true</bool>
  465. </property>
  466. <property name="timeSpec">
  467. <enum>Qt::UTC</enum>
  468. </property>
  469. <property name="date">
  470. <date>
  471. <year>2020</year>
  472. <month>1</month>
  473. <day>1</day>
  474. </date>
  475. </property>
  476. </widget>
  477. </item>
  478. <item row="5" column="2">
  479. <widget class="QDateEdit" name="currTrDateEdit">
  480. <property name="minimumSize">
  481. <size>
  482. <width>140</width>
  483. <height>0</height>
  484. </size>
  485. </property>
  486. <property name="currentSection">
  487. <enum>QDateTimeEdit::MonthSection</enum>
  488. </property>
  489. <property name="displayFormat">
  490. <string>MM/dd/yyyy</string>
  491. </property>
  492. <property name="calendarPopup">
  493. <bool>true</bool>
  494. </property>
  495. <property name="timeSpec">
  496. <enum>Qt::UTC</enum>
  497. </property>
  498. <property name="date">
  499. <date>
  500. <year>2020</year>
  501. <month>1</month>
  502. <day>1</day>
  503. </date>
  504. </property>
  505. </widget>
  506. </item>
  507. <item row="9" column="3">
  508. <widget class="QCheckBox" name="currCustom2CheckBox">
  509. <property name="minimumSize">
  510. <size>
  511. <width>140</width>
  512. <height>0</height>
  513. </size>
  514. </property>
  515. <property name="layoutDirection">
  516. <enum>Qt::LeftToRight</enum>
  517. </property>
  518. <property name="text">
  519. <string/>
  520. </property>
  521. </widget>
  522. </item>
  523. <item row="7" column="2">
  524. <widget class="QDateEdit" name="currMedDateEdit">
  525. <property name="minimumSize">
  526. <size>
  527. <width>140</width>
  528. <height>0</height>
  529. </size>
  530. </property>
  531. <property name="currentSection">
  532. <enum>QDateTimeEdit::MonthSection</enum>
  533. </property>
  534. <property name="displayFormat">
  535. <string>MM/dd/yyyy</string>
  536. </property>
  537. <property name="calendarPopup">
  538. <bool>true</bool>
  539. </property>
  540. <property name="timeSpec">
  541. <enum>Qt::UTC</enum>
  542. </property>
  543. <property name="date">
  544. <date>
  545. <year>2020</year>
  546. <month>1</month>
  547. <day>1</day>
  548. </date>
  549. </property>
  550. </widget>
  551. </item>
  552. <item row="3" column="2">
  553. <widget class="QSpinBox" name="currToLdgSpinBox">
  554. <property name="toolTip">
  555. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Number of days for TO/LDG currency. Default 90&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  556. </property>
  557. <property name="value">
  558. <number>90</number>
  559. </property>
  560. </widget>
  561. </item>
  562. <item row="7" column="0">
  563. <widget class="QLabel" name="currMedLabel">
  564. <property name="minimumSize">
  565. <size>
  566. <width>280</width>
  567. <height>0</height>
  568. </size>
  569. </property>
  570. <property name="text">
  571. <string>Medical</string>
  572. </property>
  573. </widget>
  574. </item>
  575. <item row="8" column="3">
  576. <widget class="QCheckBox" name="currCustom1CheckBox">
  577. <property name="minimumSize">
  578. <size>
  579. <width>140</width>
  580. <height>0</height>
  581. </size>
  582. </property>
  583. <property name="layoutDirection">
  584. <enum>Qt::LeftToRight</enum>
  585. </property>
  586. <property name="text">
  587. <string/>
  588. </property>
  589. </widget>
  590. </item>
  591. <item row="9" column="0">
  592. <widget class="QLineEdit" name="currCustom2LineEdit">
  593. <property name="minimumSize">
  594. <size>
  595. <width>280</width>
  596. <height>0</height>
  597. </size>
  598. </property>
  599. <property name="placeholderText">
  600. <string>custom currency</string>
  601. </property>
  602. </widget>
  603. </item>
  604. <item row="6" column="2">
  605. <widget class="QDateEdit" name="currLckDateEdit">
  606. <property name="minimumSize">
  607. <size>
  608. <width>140</width>
  609. <height>0</height>
  610. </size>
  611. </property>
  612. <property name="currentSection">
  613. <enum>QDateTimeEdit::MonthSection</enum>
  614. </property>
  615. <property name="displayFormat">
  616. <string>MM/dd/yyyy</string>
  617. </property>
  618. <property name="calendarPopup">
  619. <bool>true</bool>
  620. </property>
  621. <property name="timeSpec">
  622. <enum>Qt::UTC</enum>
  623. </property>
  624. <property name="date">
  625. <date>
  626. <year>2020</year>
  627. <month>1</month>
  628. <day>1</day>
  629. </date>
  630. </property>
  631. </widget>
  632. </item>
  633. <item row="6" column="0">
  634. <widget class="QLabel" name="currLckLabel">
  635. <property name="minimumSize">
  636. <size>
  637. <width>280</width>
  638. <height>0</height>
  639. </size>
  640. </property>
  641. <property name="text">
  642. <string>Line Check</string>
  643. </property>
  644. </widget>
  645. </item>
  646. <item row="5" column="0">
  647. <widget class="QLabel" name="currTrLabel">
  648. <property name="minimumSize">
  649. <size>
  650. <width>280</width>
  651. <height>0</height>
  652. </size>
  653. </property>
  654. <property name="text">
  655. <string>Type Rating</string>
  656. </property>
  657. </widget>
  658. </item>
  659. <item row="4" column="0">
  660. <widget class="QLabel" name="currLicLabel">
  661. <property name="minimumSize">
  662. <size>
  663. <width>280</width>
  664. <height>0</height>
  665. </size>
  666. </property>
  667. <property name="text">
  668. <string>Licence</string>
  669. </property>
  670. </widget>
  671. </item>
  672. <item row="6" column="3">
  673. <widget class="QCheckBox" name="currLckCheckBox">
  674. <property name="minimumSize">
  675. <size>
  676. <width>140</width>
  677. <height>0</height>
  678. </size>
  679. </property>
  680. <property name="layoutDirection">
  681. <enum>Qt::LeftToRight</enum>
  682. </property>
  683. <property name="text">
  684. <string/>
  685. </property>
  686. </widget>
  687. </item>
  688. <item row="10" column="1">
  689. <spacer name="verticalSpacer_2">
  690. <property name="orientation">
  691. <enum>Qt::Vertical</enum>
  692. </property>
  693. <property name="sizeHint" stdset="0">
  694. <size>
  695. <width>20</width>
  696. <height>167</height>
  697. </size>
  698. </property>
  699. </spacer>
  700. </item>
  701. <item row="9" column="2">
  702. <widget class="QDateEdit" name="currCustom2DateEdit">
  703. <property name="minimumSize">
  704. <size>
  705. <width>140</width>
  706. <height>0</height>
  707. </size>
  708. </property>
  709. <property name="currentSection">
  710. <enum>QDateTimeEdit::MonthSection</enum>
  711. </property>
  712. <property name="displayFormat">
  713. <string>MM/dd/yyyy</string>
  714. </property>
  715. <property name="calendarPopup">
  716. <bool>true</bool>
  717. </property>
  718. <property name="timeSpec">
  719. <enum>Qt::UTC</enum>
  720. </property>
  721. <property name="date">
  722. <date>
  723. <year>2020</year>
  724. <month>1</month>
  725. <day>1</day>
  726. </date>
  727. </property>
  728. </widget>
  729. </item>
  730. <item row="4" column="3">
  731. <widget class="QCheckBox" name="currLicCheckBox">
  732. <property name="minimumSize">
  733. <size>
  734. <width>140</width>
  735. <height>0</height>
  736. </size>
  737. </property>
  738. <property name="layoutDirection">
  739. <enum>Qt::LeftToRight</enum>
  740. </property>
  741. <property name="text">
  742. <string/>
  743. </property>
  744. </widget>
  745. </item>
  746. <item row="8" column="2">
  747. <widget class="QDateEdit" name="currCustom1DateEdit">
  748. <property name="minimumSize">
  749. <size>
  750. <width>140</width>
  751. <height>0</height>
  752. </size>
  753. </property>
  754. <property name="currentSection">
  755. <enum>QDateTimeEdit::MonthSection</enum>
  756. </property>
  757. <property name="displayFormat">
  758. <string>MM/dd/yyyy</string>
  759. </property>
  760. <property name="calendarPopup">
  761. <bool>true</bool>
  762. </property>
  763. <property name="timeSpec">
  764. <enum>Qt::UTC</enum>
  765. </property>
  766. <property name="date">
  767. <date>
  768. <year>2020</year>
  769. <month>1</month>
  770. <day>1</day>
  771. </date>
  772. </property>
  773. </widget>
  774. </item>
  775. <item row="7" column="3">
  776. <widget class="QCheckBox" name="currMedCheckBox">
  777. <property name="minimumSize">
  778. <size>
  779. <width>140</width>
  780. <height>0</height>
  781. </size>
  782. </property>
  783. <property name="layoutDirection">
  784. <enum>Qt::LeftToRight</enum>
  785. </property>
  786. <property name="text">
  787. <string/>
  788. </property>
  789. </widget>
  790. </item>
  791. <item row="2" column="3">
  792. <widget class="QLabel" name="headerShowLabel">
  793. <property name="minimumSize">
  794. <size>
  795. <width>140</width>
  796. <height>0</height>
  797. </size>
  798. </property>
  799. <property name="text">
  800. <string>Show on Home Page</string>
  801. </property>
  802. <property name="alignment">
  803. <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
  804. </property>
  805. </widget>
  806. </item>
  807. </layout>
  808. </widget>
  809. <widget class="QWidget" name="appearanceTab">
  810. <attribute name="title">
  811. <string>Appearance</string>
  812. </attribute>
  813. <layout class="QGridLayout" name="gridLayout_5">
  814. <item row="0" column="2">
  815. <widget class="QComboBox" name="styleComboBox"/>
  816. </item>
  817. <item row="2" column="0">
  818. <widget class="QLabel" name="pilotSortLabel">
  819. <property name="sizePolicy">
  820. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  821. <horstretch>0</horstretch>
  822. <verstretch>0</verstretch>
  823. </sizepolicy>
  824. </property>
  825. <property name="toolTip">
  826. <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>
  827. </property>
  828. <property name="whatsThis">
  829. <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>
  830. </property>
  831. <property name="text">
  832. <string>Sort Pilots by</string>
  833. </property>
  834. </widget>
  835. </item>
  836. <item row="2" column="2">
  837. <widget class="QComboBox" name="pilotSortComboBox">
  838. <property name="toolTip">
  839. <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>
  840. </property>
  841. <item>
  842. <property name="text">
  843. <string>Last Name</string>
  844. </property>
  845. </item>
  846. <item>
  847. <property name="text">
  848. <string>First Name</string>
  849. </property>
  850. </item>
  851. <item>
  852. <property name="text">
  853. <string>Company</string>
  854. </property>
  855. </item>
  856. </widget>
  857. </item>
  858. <item row="1" column="3">
  859. <widget class="QSpinBox" name="fontSpinBox">
  860. <property name="enabled">
  861. <bool>false</bool>
  862. </property>
  863. <property name="maximumSize">
  864. <size>
  865. <width>80</width>
  866. <height>16777215</height>
  867. </size>
  868. </property>
  869. <property name="minimum">
  870. <number>8</number>
  871. </property>
  872. <property name="maximum">
  873. <number>18</number>
  874. </property>
  875. <property name="value">
  876. <number>10</number>
  877. </property>
  878. </widget>
  879. </item>
  880. <item row="4" column="0">
  881. <widget class="QLabel" name="acAllowIncompleteLabel">
  882. <property name="sizePolicy">
  883. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  884. <horstretch>0</horstretch>
  885. <verstretch>0</verstretch>
  886. </sizepolicy>
  887. </property>
  888. <property name="toolTip">
  889. <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>
  890. </property>
  891. <property name="text">
  892. <string>Allow incomplete Entries </string>
  893. </property>
  894. </widget>
  895. </item>
  896. <item row="1" column="1">
  897. <widget class="QCheckBox" name="fontCheckBox">
  898. <property name="text">
  899. <string>Use System Font</string>
  900. </property>
  901. <property name="checked">
  902. <bool>true</bool>
  903. </property>
  904. </widget>
  905. </item>
  906. <item row="1" column="0">
  907. <widget class="QLabel" name="fontLabel">
  908. <property name="text">
  909. <string>Font</string>
  910. </property>
  911. </widget>
  912. </item>
  913. <item row="3" column="2">
  914. <widget class="QComboBox" name="acftSortComboBox">
  915. <property name="toolTip">
  916. <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>
  917. </property>
  918. <item>
  919. <property name="text">
  920. <string>Registration</string>
  921. </property>
  922. </item>
  923. <item>
  924. <property name="text">
  925. <string>Type</string>
  926. </property>
  927. </item>
  928. <item>
  929. <property name="text">
  930. <string>Company</string>
  931. </property>
  932. </item>
  933. </widget>
  934. </item>
  935. <item row="3" column="0">
  936. <widget class="QLabel" name="acftSortLabel">
  937. <property name="sizePolicy">
  938. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  939. <horstretch>0</horstretch>
  940. <verstretch>0</verstretch>
  941. </sizepolicy>
  942. </property>
  943. <property name="toolTip">
  944. <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>
  945. </property>
  946. <property name="whatsThis">
  947. <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>
  948. </property>
  949. <property name="text">
  950. <string>Sort Aircraft by</string>
  951. </property>
  952. </widget>
  953. </item>
  954. <item row="4" column="2">
  955. <widget class="QComboBox" name="acAllowIncompleteComboBox">
  956. <property name="toolTip">
  957. <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>
  958. </property>
  959. <item>
  960. <property name="text">
  961. <string>No</string>
  962. </property>
  963. </item>
  964. <item>
  965. <property name="text">
  966. <string>Yes</string>
  967. </property>
  968. </item>
  969. </widget>
  970. </item>
  971. <item row="5" column="0">
  972. <widget class="QLabel" name="logbookViewLabel">
  973. <property name="sizePolicy">
  974. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  975. <horstretch>0</horstretch>
  976. <verstretch>0</verstretch>
  977. </sizepolicy>
  978. </property>
  979. <property name="toolTip">
  980. <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>
  981. </property>
  982. <property name="whatsThis">
  983. <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>
  984. </property>
  985. <property name="text">
  986. <string>Logbook Dispay</string>
  987. </property>
  988. </widget>
  989. </item>
  990. <item row="0" column="1">
  991. <widget class="QPushButton" name="resetStylePushButton">
  992. <property name="text">
  993. <string>Reset to Default</string>
  994. </property>
  995. </widget>
  996. </item>
  997. <item row="5" column="2">
  998. <widget class="QComboBox" name="logbookViewComboBox">
  999. <property name="toolTip">
  1000. <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>
  1001. </property>
  1002. <item>
  1003. <property name="text">
  1004. <string>Default</string>
  1005. </property>
  1006. </item>
  1007. <item>
  1008. <property name="text">
  1009. <string>EASA Part-FCL</string>
  1010. </property>
  1011. </item>
  1012. </widget>
  1013. </item>
  1014. <item row="0" column="0">
  1015. <widget class="QLabel" name="styleLabel">
  1016. <property name="sizePolicy">
  1017. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  1018. <horstretch>0</horstretch>
  1019. <verstretch>0</verstretch>
  1020. </sizepolicy>
  1021. </property>
  1022. <property name="text">
  1023. <string>Style</string>
  1024. </property>
  1025. </widget>
  1026. </item>
  1027. <item row="1" column="2">
  1028. <widget class="QFontComboBox" name="fontComboBox">
  1029. <property name="enabled">
  1030. <bool>false</bool>
  1031. </property>
  1032. </widget>
  1033. </item>
  1034. <item row="6" column="2">
  1035. <widget class="QComboBox" name="languageComboBox"/>
  1036. </item>
  1037. <item row="6" column="0">
  1038. <widget class="QLabel" name="languageLabel">
  1039. <property name="text">
  1040. <string>Language</string>
  1041. </property>
  1042. </widget>
  1043. </item>
  1044. </layout>
  1045. </widget>
  1046. <widget class="QWidget" name="aboutTab">
  1047. <attribute name="title">
  1048. <string>About</string>
  1049. </attribute>
  1050. <layout class="QGridLayout" name="gridLayout_3">
  1051. <item row="0" column="0">
  1052. <spacer name="horizontalSpacer_7">
  1053. <property name="orientation">
  1054. <enum>Qt::Horizontal</enum>
  1055. </property>
  1056. <property name="sizeHint" stdset="0">
  1057. <size>
  1058. <width>259</width>
  1059. <height>20</height>
  1060. </size>
  1061. </property>
  1062. </spacer>
  1063. </item>
  1064. <item row="0" column="1">
  1065. <widget class="QPushButton" name="aboutPushButton">
  1066. <property name="text">
  1067. <string>About openPilotLog</string>
  1068. </property>
  1069. </widget>
  1070. </item>
  1071. <item row="0" column="2">
  1072. <spacer name="horizontalSpacer_8">
  1073. <property name="orientation">
  1074. <enum>Qt::Horizontal</enum>
  1075. </property>
  1076. <property name="sizeHint" stdset="0">
  1077. <size>
  1078. <width>259</width>
  1079. <height>20</height>
  1080. </size>
  1081. </property>
  1082. </spacer>
  1083. </item>
  1084. </layout>
  1085. </widget>
  1086. </widget>
  1087. </item>
  1088. </layout>
  1089. </widget>
  1090. <resources/>
  1091. <connections/>
  1092. </ui>