QFDApp.ui 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>QFDApp</class>
  4. <widget class="QMainWindow" name="QFDApp">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1280</width>
  10. <height>720</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>MainWindow</string>
  15. </property>
  16. <widget class="QWidget" name="styleSheet">
  17. <property name="styleSheet">
  18. <string notr="true">/* /////////////////////////////////////////////////////////////////////////////////////////////////
  19. SET APP STYLESHEET - FULL STYLES HERE
  20. DARK THEME - DRACULA COLOR BASED
  21. ///////////////////////////////////////////////////////////////////////////////////////////////// */
  22. QWidget{
  23. color: rgb(221, 221, 221);
  24. font: 10pt &quot;Segoe UI&quot;;
  25. }
  26. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  27. Tooltip */
  28. QToolTip {
  29. color: #ffffff;
  30. background-color: rgba(33, 37, 43, 180);
  31. border: 1px solid rgb(44, 49, 58);
  32. background-image: none;
  33. background-position: left center;
  34. background-repeat: no-repeat;
  35. border: none;
  36. border-left: 2px solid rgb(255, 121, 198);
  37. text-align: left;
  38. padding-left: 8px;
  39. margin: 0px;
  40. }
  41. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  42. Bg App */
  43. #bgApp {
  44. background-color: rgb(40, 44, 52);
  45. border: 1px solid rgb(44, 49, 58);
  46. }
  47. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  48. Left Menu */
  49. #leftMenuBg {
  50. background-color: rgb(33, 37, 43);
  51. }
  52. #topLogo {
  53. background-color: rgb(33, 37, 43);
  54. background-image: url(:/res/logo32.png);
  55. background-position: centered;
  56. background-repeat: no-repeat;
  57. }
  58. #titleLeftApp { font: 63 12pt &quot;Segoe UI Semibold&quot;; }
  59. #titleLeftDescription { font: 8pt &quot;Segoe UI&quot;; color: rgb(189, 147, 249); }
  60. /* MENUS */
  61. #topMenu .QPushButton {
  62. background-position: left center;
  63. background-repeat: no-repeat;
  64. border: none;
  65. border-left: 22px solid transparent;
  66. background-color: transparent;
  67. text-align: left;
  68. padding-left: 44px;
  69. }
  70. #topMenu .QPushButton:hover {
  71. background-color: rgb(40, 44, 52);
  72. }
  73. #topMenu .QPushButton:pressed {
  74. background-color: rgb(189, 147, 249);
  75. color: rgb(255, 255, 255);
  76. }
  77. #bottomMenu .QPushButton {
  78. background-position: left center;
  79. background-repeat: no-repeat;
  80. border: none;
  81. border-left: 20px solid transparent;
  82. background-color:transparent;
  83. text-align: left;
  84. padding-left: 44px;
  85. }
  86. #bottomMenu .QPushButton:hover {
  87. background-color: rgb(40, 44, 52);
  88. }
  89. #bottomMenu .QPushButton:pressed {
  90. background-color: rgb(189, 147, 249);
  91. color: rgb(255, 255, 255);
  92. }
  93. #leftMenuFrame{
  94. border-top: 3px solid rgb(44, 49, 58);
  95. }
  96. /* Toggle Button */
  97. #toggleButton {
  98. background-position: left center;
  99. background-repeat: no-repeat;
  100. border: none;
  101. border-left: 20px solid transparent;
  102. background-color: rgb(37, 41, 48);
  103. text-align: left;
  104. padding-left: 44px;
  105. color: rgb(113, 126, 149);
  106. }
  107. #toggleButton:hover {
  108. background-color: rgb(40, 44, 52);
  109. }
  110. #toggleButton:pressed {
  111. background-color: rgb(189, 147, 249);
  112. }
  113. /* Title Menu */
  114. #titleRightInfo { padding-left: 10px; }
  115. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  116. Extra Tab */
  117. #extraLeftBox {
  118. background-color: rgb(44, 49, 58);
  119. }
  120. #extraTopBg{
  121. background-color: rgb(189, 147, 249)
  122. }
  123. /* Icon */
  124. #extraIcon {
  125. background-position: center;
  126. background-repeat: no-repeat;
  127. background-image: url(:/res/icons/icon_settings.png);
  128. }
  129. /* Label */
  130. #extraLabel { color: rgb(255, 255, 255); }
  131. /* Btn Close */
  132. #extraCloseColumnBtn { background-color: rgba(255, 255, 255, 0); border: none; border-radius: 5px; }
  133. #extraCloseColumnBtn:hover { background-color: rgb(196, 161, 249); border-style: solid; border-radius: 4px; }
  134. #extraCloseColumnBtn:pressed { background-color: rgb(180, 141, 238); border-style: solid; border-radius: 4px; }
  135. /* Extra Content */
  136. #extraContent{
  137. border-top: 3px solid rgb(40, 44, 52);
  138. }
  139. /* Extra Top Menus */
  140. #extraTopMenu .QPushButton {
  141. background-position: left center;
  142. background-repeat: no-repeat;
  143. border: none;
  144. border-left: 22px solid transparent;
  145. background-color:transparent;
  146. text-align: left;
  147. padding-left: 44px;
  148. }
  149. #extraTopMenu .QPushButton:hover {
  150. background-color: rgb(40, 44, 52);
  151. }
  152. #extraTopMenu .QPushButton:pressed {
  153. background-color: rgb(189, 147, 249);
  154. color: rgb(255, 255, 255);
  155. }
  156. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  157. Content App */
  158. #contentTopBg{
  159. background-color: rgb(33, 37, 43);
  160. }
  161. #contentBottom{
  162. border-top: 3px solid rgb(44, 49, 58);
  163. }
  164. /* Top Buttons */
  165. #rightButtons .QPushButton { background-color: rgba(255, 255, 255, 0); border: none; border-radius: 5px; }
  166. #rightButtons .QPushButton:hover { background-color: rgb(44, 49, 57); border-style: solid; border-radius: 4px; }
  167. #rightButtons .QPushButton:pressed { background-color: rgb(23, 26, 30); border-style: solid; border-radius: 4px; }
  168. /* Theme Settings */
  169. #extraRightBox { background-color: rgb(44, 49, 58); }
  170. #themeSettingsTopDetail { background-color: rgb(189, 147, 249); }
  171. /* Bottom Bar */
  172. #bottomBar { background-color: rgb(44, 49, 58); }
  173. #bottomBar QLabel { font-size: 11px; color: rgb(113, 126, 149); padding-left: 10px; padding-right: 10px; padding-bottom: 2px; }
  174. /* CONTENT SETTINGS */
  175. /* MENUS */
  176. #contentSettings .QPushButton {
  177. background-position: left center;
  178. background-repeat: no-repeat;
  179. border: none;
  180. border-left: 22px solid transparent;
  181. background-color:transparent;
  182. text-align: left;
  183. padding-left: 44px;
  184. }
  185. #contentSettings .QPushButton:hover {
  186. background-color: rgb(40, 44, 52);
  187. }
  188. #contentSettings .QPushButton:pressed {
  189. background-color: rgb(189, 147, 249);
  190. color: rgb(255, 255, 255);
  191. }
  192. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  193. QTableWidget */
  194. QTableWidget {
  195. background-color: transparent;
  196. padding: 10px;
  197. border-radius: 5px;
  198. gridline-color: rgb(44, 49, 58);
  199. border-bottom: 1px solid rgb(44, 49, 60);
  200. }
  201. QTableWidget::item{
  202. border-color: rgb(44, 49, 60);
  203. padding-left: 5px;
  204. padding-right: 5px;
  205. gridline-color: rgb(44, 49, 60);
  206. }
  207. QTableWidget::item:selected{
  208. background-color: rgb(189, 147, 249);
  209. }
  210. QHeaderView::section{
  211. background-color: rgb(33, 37, 43);
  212. max-width: 30px;
  213. border: 1px solid rgb(44, 49, 58);
  214. border-style: none;
  215. border-bottom: 1px solid rgb(44, 49, 60);
  216. border-right: 1px solid rgb(44, 49, 60);
  217. }
  218. QTableWidget::horizontalHeader {
  219. background-color: rgb(33, 37, 43);
  220. }
  221. QHeaderView::section:horizontal
  222. {
  223. border: 1px solid rgb(33, 37, 43);
  224. background-color: rgb(33, 37, 43);
  225. padding: 3px;
  226. border-top-left-radius: 7px;
  227. border-top-right-radius: 7px;
  228. }
  229. QHeaderView::section:vertical
  230. {
  231. border: 1px solid rgb(44, 49, 60);
  232. }
  233. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  234. LineEdit */
  235. QLineEdit {
  236. background-color: rgb(33, 37, 43);
  237. border-radius: 5px;
  238. border: 2px solid rgb(33, 37, 43);
  239. padding-left: 10px;
  240. selection-color: rgb(255, 255, 255);
  241. selection-background-color: rgb(255, 121, 198);
  242. }
  243. QLineEdit:hover {
  244. border: 2px solid rgb(64, 71, 88);
  245. }
  246. QLineEdit:focus {
  247. border: 2px solid rgb(91, 101, 124);
  248. }
  249. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  250. PlainTextEdit */
  251. QPlainTextEdit {
  252. background-color: rgb(27, 29, 35);
  253. border-radius: 5px;
  254. padding: 10px;
  255. selection-color: rgb(255, 255, 255);
  256. selection-background-color: rgb(255, 121, 198);
  257. }
  258. QPlainTextEdit QScrollBar:vertical {
  259. width: 8px;
  260. }
  261. QPlainTextEdit QScrollBar:horizontal {
  262. height: 8px;
  263. }
  264. QPlainTextEdit:hover {
  265. border: 2px solid rgb(64, 71, 88);
  266. }
  267. QPlainTextEdit:focus {
  268. border: 2px solid rgb(91, 101, 124);
  269. }
  270. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  271. ScrollBars */
  272. QScrollBar:horizontal {
  273. border: none;
  274. background: rgb(52, 59, 72);
  275. height: 8px;
  276. margin: 0px 21px 0 21px;
  277. border-radius: 0px;
  278. }
  279. QScrollBar::handle:horizontal {
  280. background: rgb(189, 147, 249);
  281. min-width: 25px;
  282. border-radius: 4px
  283. }
  284. QScrollBar::add-line:horizontal {
  285. border: none;
  286. background: rgb(55, 63, 77);
  287. width: 20px;
  288. border-top-right-radius: 4px;
  289. border-bottom-right-radius: 4px;
  290. subcontrol-position: right;
  291. subcontrol-origin: margin;
  292. }
  293. QScrollBar::sub-line:horizontal {
  294. border: none;
  295. background: rgb(55, 63, 77);
  296. width: 20px;
  297. border-top-left-radius: 4px;
  298. border-bottom-left-radius: 4px;
  299. subcontrol-position: left;
  300. subcontrol-origin: margin;
  301. }
  302. QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal
  303. {
  304. background: none;
  305. }
  306. QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
  307. {
  308. background: none;
  309. }
  310. QScrollBar:vertical {
  311. border: none;
  312. background: rgb(52, 59, 72);
  313. width: 8px;
  314. margin: 21px 0 21px 0;
  315. border-radius: 0px;
  316. }
  317. QScrollBar::handle:vertical {
  318. background: rgb(189, 147, 249);
  319. min-height: 25px;
  320. border-radius: 4px
  321. }
  322. QScrollBar::add-line:vertical {
  323. border: none;
  324. background: rgb(55, 63, 77);
  325. height: 20px;
  326. border-bottom-left-radius: 4px;
  327. border-bottom-right-radius: 4px;
  328. subcontrol-position: bottom;
  329. subcontrol-origin: margin;
  330. }
  331. QScrollBar::sub-line:vertical {
  332. border: none;
  333. background: rgb(55, 63, 77);
  334. height: 20px;
  335. border-top-left-radius: 4px;
  336. border-top-right-radius: 4px;
  337. subcontrol-position: top;
  338. subcontrol-origin: margin;
  339. }
  340. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
  341. background: none;
  342. }
  343. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
  344. background: none;
  345. }
  346. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  347. CheckBox */
  348. QCheckBox::indicator {
  349. border: 3px solid rgb(52, 59, 72);
  350. width: 15px;
  351. height: 15px;
  352. border-radius: 10px;
  353. background: rgb(44, 49, 60);
  354. }
  355. QCheckBox::indicator:hover {
  356. border: 3px solid rgb(58, 66, 81);
  357. }
  358. QCheckBox::indicator:checked {
  359. background: 3px solid rgb(52, 59, 72);
  360. border: 3px solid rgb(52, 59, 72);
  361. background-image: url(:/res/icons/cil-check-alt.png);
  362. }
  363. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  364. RadioButton */
  365. QRadioButton::indicator {
  366. border: 3px solid rgb(52, 59, 72);
  367. width: 15px;
  368. height: 15px;
  369. border-radius: 10px;
  370. background: rgb(44, 49, 60);
  371. }
  372. QRadioButton::indicator:hover {
  373. border: 3px solid rgb(58, 66, 81);
  374. }
  375. QRadioButton::indicator:checked {
  376. background: 3px solid rgb(94, 106, 130);
  377. border: 3px solid rgb(52, 59, 72);
  378. }
  379. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  380. ComboBox */
  381. QComboBox{
  382. background-color: rgb(27, 29, 35);
  383. border-radius: 5px;
  384. border: 2px solid rgb(33, 37, 43);
  385. padding: 5px;
  386. padding-left: 10px;
  387. }
  388. QComboBox:hover{
  389. border: 2px solid rgb(64, 71, 88);
  390. }
  391. QComboBox::drop-down {
  392. subcontrol-origin: padding;
  393. subcontrol-position: top right;
  394. width: 25px;
  395. border-left-width: 3px;
  396. border-left-color: rgba(39, 44, 54, 150);
  397. border-left-style: solid;
  398. border-top-right-radius: 3px;
  399. border-bottom-right-radius: 3px;
  400. background-image: url(:/res/icons/cil-arrow-bottom.png);
  401. background-position: center;
  402. background-repeat: no-reperat;
  403. }
  404. QComboBox QAbstractItemView {
  405. color: rgb(255, 121, 198);
  406. background-color: rgb(33, 37, 43);
  407. padding: 10px;
  408. selection-background-color: rgb(39, 44, 54);
  409. }
  410. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  411. Sliders */
  412. QSlider::groove:horizontal {
  413. border-radius: 5px;
  414. height: 10px;
  415. margin: 0px;
  416. background-color: rgb(52, 59, 72);
  417. }
  418. QSlider::groove:horizontal:hover {
  419. background-color: rgb(55, 62, 76);
  420. }
  421. QSlider::handle:horizontal {
  422. background-color: rgb(189, 147, 249);
  423. border: none;
  424. height: 10px;
  425. width: 10px;
  426. margin: 0px;
  427. border-radius: 5px;
  428. }
  429. QSlider::handle:horizontal:hover {
  430. background-color: rgb(195, 155, 255);
  431. }
  432. QSlider::handle:horizontal:pressed {
  433. background-color: rgb(255, 121, 198);
  434. }
  435. QSlider::groove:vertical {
  436. border-radius: 5px;
  437. width: 10px;
  438. margin: 0px;
  439. background-color: rgb(52, 59, 72);
  440. }
  441. QSlider::groove:vertical:hover {
  442. background-color: rgb(55, 62, 76);
  443. }
  444. QSlider::handle:vertical {
  445. background-color: rgb(189, 147, 249);
  446. border: none;
  447. height: 10px;
  448. width: 10px;
  449. margin: 0px;
  450. border-radius: 5px;
  451. }
  452. QSlider::handle:vertical:hover {
  453. background-color: rgb(195, 155, 255);
  454. }
  455. QSlider::handle:vertical:pressed {
  456. background-color: rgb(255, 121, 198);
  457. }
  458. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  459. CommandLinkButton */
  460. QCommandLinkButton {
  461. color: rgb(255, 121, 198);
  462. border-radius: 5px;
  463. padding: 5px;
  464. color: rgb(255, 170, 255);
  465. }
  466. QCommandLinkButton:hover {
  467. color: rgb(255, 170, 255);
  468. background-color: rgb(44, 49, 60);
  469. }
  470. QCommandLinkButton:pressed {
  471. color: rgb(189, 147, 249);
  472. background-color: rgb(52, 58, 71);
  473. }
  474. /* /////////////////////////////////////////////////////////////////////////////////////////////////
  475. Button */
  476. #pagesContainer QPushButton {
  477. border: 2px solid rgb(52, 59, 72);
  478. border-radius: 5px;
  479. background-color: rgb(52, 59, 72);
  480. }
  481. #pagesContainer QPushButton:hover {
  482. background-color: rgb(57, 65, 80);
  483. border: 2px solid rgb(61, 70, 86);
  484. }
  485. #pagesContainer QPushButton:pressed {
  486. background-color: rgb(35, 40, 49);
  487. border: 2px solid rgb(43, 50, 61);
  488. }
  489. </string>
  490. </property>
  491. <layout class="QVBoxLayout" name="appMargins">
  492. <property name="spacing">
  493. <number>0</number>
  494. </property>
  495. <property name="leftMargin">
  496. <number>10</number>
  497. </property>
  498. <property name="topMargin">
  499. <number>10</number>
  500. </property>
  501. <property name="rightMargin">
  502. <number>10</number>
  503. </property>
  504. <property name="bottomMargin">
  505. <number>10</number>
  506. </property>
  507. <item>
  508. <widget class="QFrame" name="bgApp">
  509. <property name="frameShape">
  510. <enum>QFrame::NoFrame</enum>
  511. </property>
  512. <property name="frameShadow">
  513. <enum>QFrame::Raised</enum>
  514. </property>
  515. <layout class="QHBoxLayout" name="appLayout">
  516. <property name="spacing">
  517. <number>0</number>
  518. </property>
  519. <property name="leftMargin">
  520. <number>0</number>
  521. </property>
  522. <property name="topMargin">
  523. <number>0</number>
  524. </property>
  525. <property name="rightMargin">
  526. <number>0</number>
  527. </property>
  528. <property name="bottomMargin">
  529. <number>0</number>
  530. </property>
  531. <item>
  532. <widget class="QFrame" name="leftMenuBg">
  533. <property name="minimumSize">
  534. <size>
  535. <width>60</width>
  536. <height>0</height>
  537. </size>
  538. </property>
  539. <property name="maximumSize">
  540. <size>
  541. <width>60</width>
  542. <height>16777215</height>
  543. </size>
  544. </property>
  545. <property name="frameShape">
  546. <enum>QFrame::NoFrame</enum>
  547. </property>
  548. <property name="frameShadow">
  549. <enum>QFrame::Raised</enum>
  550. </property>
  551. <layout class="QVBoxLayout" name="verticalLayout_2">
  552. <property name="spacing">
  553. <number>0</number>
  554. </property>
  555. <property name="leftMargin">
  556. <number>0</number>
  557. </property>
  558. <property name="topMargin">
  559. <number>0</number>
  560. </property>
  561. <property name="rightMargin">
  562. <number>0</number>
  563. </property>
  564. <property name="bottomMargin">
  565. <number>0</number>
  566. </property>
  567. <item>
  568. <widget class="QFrame" name="topLogoInfo">
  569. <property name="minimumSize">
  570. <size>
  571. <width>0</width>
  572. <height>50</height>
  573. </size>
  574. </property>
  575. <property name="maximumSize">
  576. <size>
  577. <width>16777215</width>
  578. <height>50</height>
  579. </size>
  580. </property>
  581. <property name="frameShape">
  582. <enum>QFrame::NoFrame</enum>
  583. </property>
  584. <property name="frameShadow">
  585. <enum>QFrame::Raised</enum>
  586. </property>
  587. <widget class="QFrame" name="topLogo">
  588. <property name="geometry">
  589. <rect>
  590. <x>10</x>
  591. <y>5</y>
  592. <width>42</width>
  593. <height>42</height>
  594. </rect>
  595. </property>
  596. <property name="minimumSize">
  597. <size>
  598. <width>42</width>
  599. <height>42</height>
  600. </size>
  601. </property>
  602. <property name="maximumSize">
  603. <size>
  604. <width>42</width>
  605. <height>42</height>
  606. </size>
  607. </property>
  608. <property name="layoutDirection">
  609. <enum>Qt::LeftToRight</enum>
  610. </property>
  611. <property name="autoFillBackground">
  612. <bool>false</bool>
  613. </property>
  614. <property name="frameShape">
  615. <enum>QFrame::NoFrame</enum>
  616. </property>
  617. <property name="frameShadow">
  618. <enum>QFrame::Raised</enum>
  619. </property>
  620. </widget>
  621. <widget class="QLabel" name="titleLeftApp">
  622. <property name="geometry">
  623. <rect>
  624. <x>70</x>
  625. <y>8</y>
  626. <width>160</width>
  627. <height>20</height>
  628. </rect>
  629. </property>
  630. <property name="font">
  631. <font>
  632. <family>Segoe UI Semibold</family>
  633. <pointsize>12</pointsize>
  634. <weight>7</weight>
  635. <italic>false</italic>
  636. <bold>false</bold>
  637. </font>
  638. </property>
  639. <property name="text">
  640. <string>TextLabel</string>
  641. </property>
  642. </widget>
  643. <widget class="QLabel" name="titleLeftDescription">
  644. <property name="geometry">
  645. <rect>
  646. <x>70</x>
  647. <y>27</y>
  648. <width>160</width>
  649. <height>16</height>
  650. </rect>
  651. </property>
  652. <property name="maximumSize">
  653. <size>
  654. <width>16777215</width>
  655. <height>16</height>
  656. </size>
  657. </property>
  658. <property name="font">
  659. <font>
  660. <family>Segoe UI</family>
  661. <pointsize>8</pointsize>
  662. <weight>50</weight>
  663. <italic>false</italic>
  664. <bold>false</bold>
  665. </font>
  666. </property>
  667. <property name="text">
  668. <string>TextLabel</string>
  669. </property>
  670. </widget>
  671. </widget>
  672. </item>
  673. <item>
  674. <widget class="QFrame" name="leftMenuFrame">
  675. <property name="frameShape">
  676. <enum>QFrame::NoFrame</enum>
  677. </property>
  678. <property name="frameShadow">
  679. <enum>QFrame::Raised</enum>
  680. </property>
  681. <layout class="QVBoxLayout" name="verticalLayout_3">
  682. <property name="spacing">
  683. <number>0</number>
  684. </property>
  685. <property name="leftMargin">
  686. <number>0</number>
  687. </property>
  688. <property name="topMargin">
  689. <number>0</number>
  690. </property>
  691. <property name="rightMargin">
  692. <number>0</number>
  693. </property>
  694. <property name="bottomMargin">
  695. <number>0</number>
  696. </property>
  697. <item>
  698. <widget class="QFrame" name="toggleBox">
  699. <property name="maximumSize">
  700. <size>
  701. <width>16777215</width>
  702. <height>45</height>
  703. </size>
  704. </property>
  705. <property name="frameShape">
  706. <enum>QFrame::NoFrame</enum>
  707. </property>
  708. <property name="frameShadow">
  709. <enum>QFrame::Raised</enum>
  710. </property>
  711. <layout class="QVBoxLayout" name="verticalLayout_5">
  712. <property name="spacing">
  713. <number>0</number>
  714. </property>
  715. <property name="leftMargin">
  716. <number>0</number>
  717. </property>
  718. <property name="topMargin">
  719. <number>0</number>
  720. </property>
  721. <property name="rightMargin">
  722. <number>0</number>
  723. </property>
  724. <property name="bottomMargin">
  725. <number>0</number>
  726. </property>
  727. <item>
  728. <widget class="QPushButton" name="toggleButton">
  729. <property name="minimumSize">
  730. <size>
  731. <width>0</width>
  732. <height>45</height>
  733. </size>
  734. </property>
  735. <property name="cursor">
  736. <cursorShape>PointingHandCursor</cursorShape>
  737. </property>
  738. <property name="styleSheet">
  739. <string notr="true">background-image: url(:/res/icons/icon_menu.png);</string>
  740. </property>
  741. <property name="text">
  742. <string>toggle</string>
  743. </property>
  744. <property name="checked">
  745. <bool>false</bool>
  746. </property>
  747. </widget>
  748. </item>
  749. </layout>
  750. </widget>
  751. </item>
  752. <item alignment="Qt::AlignTop">
  753. <widget class="QFrame" name="topMenu">
  754. <property name="frameShape">
  755. <enum>QFrame::NoFrame</enum>
  756. </property>
  757. <property name="frameShadow">
  758. <enum>QFrame::Raised</enum>
  759. </property>
  760. <layout class="QVBoxLayout" name="verticalLayout_6">
  761. <property name="spacing">
  762. <number>0</number>
  763. </property>
  764. <property name="leftMargin">
  765. <number>0</number>
  766. </property>
  767. <property name="topMargin">
  768. <number>0</number>
  769. </property>
  770. <property name="rightMargin">
  771. <number>0</number>
  772. </property>
  773. <property name="bottomMargin">
  774. <number>0</number>
  775. </property>
  776. <item>
  777. <widget class="QPushButton" name="btn_home">
  778. <property name="sizePolicy">
  779. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  780. <horstretch>0</horstretch>
  781. <verstretch>0</verstretch>
  782. </sizepolicy>
  783. </property>
  784. <property name="minimumSize">
  785. <size>
  786. <width>0</width>
  787. <height>45</height>
  788. </size>
  789. </property>
  790. <property name="cursor">
  791. <cursorShape>PointingHandCursor</cursorShape>
  792. </property>
  793. <property name="styleSheet">
  794. <string notr="true">background-image: url(:/res/icons/cil-home.png);</string>
  795. </property>
  796. <property name="text">
  797. <string>Home</string>
  798. </property>
  799. </widget>
  800. </item>
  801. <item>
  802. <widget class="QPushButton" name="btn_widgets">
  803. <property name="sizePolicy">
  804. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  805. <horstretch>0</horstretch>
  806. <verstretch>0</verstretch>
  807. </sizepolicy>
  808. </property>
  809. <property name="minimumSize">
  810. <size>
  811. <width>0</width>
  812. <height>45</height>
  813. </size>
  814. </property>
  815. <property name="cursor">
  816. <cursorShape>PointingHandCursor</cursorShape>
  817. </property>
  818. <property name="styleSheet">
  819. <string notr="true">background-image: url(:/res/icons/cil-gamepad.png);</string>
  820. </property>
  821. <property name="text">
  822. <string>Widgets</string>
  823. </property>
  824. </widget>
  825. </item>
  826. <item>
  827. <widget class="QPushButton" name="btn_new">
  828. <property name="sizePolicy">
  829. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  830. <horstretch>0</horstretch>
  831. <verstretch>0</verstretch>
  832. </sizepolicy>
  833. </property>
  834. <property name="minimumSize">
  835. <size>
  836. <width>0</width>
  837. <height>45</height>
  838. </size>
  839. </property>
  840. <property name="cursor">
  841. <cursorShape>PointingHandCursor</cursorShape>
  842. </property>
  843. <property name="styleSheet">
  844. <string notr="true">background-image: url(:/res/icons/cil-file.png);</string>
  845. </property>
  846. <property name="text">
  847. <string>New</string>
  848. </property>
  849. </widget>
  850. </item>
  851. <item>
  852. <widget class="QPushButton" name="btn_save">
  853. <property name="sizePolicy">
  854. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  855. <horstretch>0</horstretch>
  856. <verstretch>0</verstretch>
  857. </sizepolicy>
  858. </property>
  859. <property name="minimumSize">
  860. <size>
  861. <width>0</width>
  862. <height>45</height>
  863. </size>
  864. </property>
  865. <property name="cursor">
  866. <cursorShape>PointingHandCursor</cursorShape>
  867. </property>
  868. <property name="styleSheet">
  869. <string notr="true">background-image: url(:/res/icons/cil-save.png)</string>
  870. </property>
  871. <property name="text">
  872. <string>Save</string>
  873. </property>
  874. </widget>
  875. </item>
  876. <item>
  877. <widget class="QPushButton" name="btn_exit">
  878. <property name="sizePolicy">
  879. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  880. <horstretch>0</horstretch>
  881. <verstretch>0</verstretch>
  882. </sizepolicy>
  883. </property>
  884. <property name="minimumSize">
  885. <size>
  886. <width>0</width>
  887. <height>45</height>
  888. </size>
  889. </property>
  890. <property name="cursor">
  891. <cursorShape>PointingHandCursor</cursorShape>
  892. </property>
  893. <property name="styleSheet">
  894. <string notr="true">background-image: url(:/res/icons/cil-x.png);</string>
  895. </property>
  896. <property name="text">
  897. <string>Exit</string>
  898. </property>
  899. </widget>
  900. </item>
  901. </layout>
  902. </widget>
  903. </item>
  904. <item alignment="Qt::AlignBottom">
  905. <widget class="QFrame" name="bottomMenu">
  906. <property name="frameShape">
  907. <enum>QFrame::NoFrame</enum>
  908. </property>
  909. <property name="frameShadow">
  910. <enum>QFrame::Raised</enum>
  911. </property>
  912. <layout class="QVBoxLayout" name="verticalLayout_4">
  913. <property name="spacing">
  914. <number>0</number>
  915. </property>
  916. <property name="leftMargin">
  917. <number>0</number>
  918. </property>
  919. <property name="topMargin">
  920. <number>0</number>
  921. </property>
  922. <property name="rightMargin">
  923. <number>0</number>
  924. </property>
  925. <property name="bottomMargin">
  926. <number>0</number>
  927. </property>
  928. <item>
  929. <widget class="QPushButton" name="toggleLeftBox">
  930. <property name="sizePolicy">
  931. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  932. <horstretch>0</horstretch>
  933. <verstretch>0</verstretch>
  934. </sizepolicy>
  935. </property>
  936. <property name="minimumSize">
  937. <size>
  938. <width>0</width>
  939. <height>45</height>
  940. </size>
  941. </property>
  942. <property name="cursor">
  943. <cursorShape>PointingHandCursor</cursorShape>
  944. </property>
  945. <property name="styleSheet">
  946. <string notr="true">background-image: url(:/res/icons/icon_settings.png);</string>
  947. </property>
  948. <property name="text">
  949. <string>Left Box</string>
  950. </property>
  951. </widget>
  952. </item>
  953. </layout>
  954. </widget>
  955. </item>
  956. </layout>
  957. </widget>
  958. </item>
  959. </layout>
  960. </widget>
  961. </item>
  962. <item>
  963. <widget class="QFrame" name="extraLeftBox">
  964. <property name="minimumSize">
  965. <size>
  966. <width>0</width>
  967. <height>0</height>
  968. </size>
  969. </property>
  970. <property name="maximumSize">
  971. <size>
  972. <width>0</width>
  973. <height>16777215</height>
  974. </size>
  975. </property>
  976. <property name="frameShape">
  977. <enum>QFrame::NoFrame</enum>
  978. </property>
  979. <property name="frameShadow">
  980. <enum>QFrame::Raised</enum>
  981. </property>
  982. <layout class="QVBoxLayout" name="verticalLayout_7">
  983. <property name="spacing">
  984. <number>0</number>
  985. </property>
  986. <property name="leftMargin">
  987. <number>0</number>
  988. </property>
  989. <property name="topMargin">
  990. <number>0</number>
  991. </property>
  992. <property name="rightMargin">
  993. <number>0</number>
  994. </property>
  995. <property name="bottomMargin">
  996. <number>0</number>
  997. </property>
  998. <item>
  999. <widget class="QFrame" name="extraTopBg">
  1000. <property name="minimumSize">
  1001. <size>
  1002. <width>0</width>
  1003. <height>50</height>
  1004. </size>
  1005. </property>
  1006. <property name="maximumSize">
  1007. <size>
  1008. <width>16777215</width>
  1009. <height>50</height>
  1010. </size>
  1011. </property>
  1012. <property name="frameShape">
  1013. <enum>QFrame::NoFrame</enum>
  1014. </property>
  1015. <property name="frameShadow">
  1016. <enum>QFrame::Raised</enum>
  1017. </property>
  1018. <layout class="QVBoxLayout" name="verticalLayout_8">
  1019. <property name="spacing">
  1020. <number>0</number>
  1021. </property>
  1022. <property name="leftMargin">
  1023. <number>0</number>
  1024. </property>
  1025. <property name="topMargin">
  1026. <number>0</number>
  1027. </property>
  1028. <property name="rightMargin">
  1029. <number>0</number>
  1030. </property>
  1031. <property name="bottomMargin">
  1032. <number>0</number>
  1033. </property>
  1034. <item>
  1035. <layout class="QGridLayout" name="gridLayout">
  1036. <property name="leftMargin">
  1037. <number>10</number>
  1038. </property>
  1039. <property name="rightMargin">
  1040. <number>10</number>
  1041. </property>
  1042. <property name="horizontalSpacing">
  1043. <number>10</number>
  1044. </property>
  1045. <property name="verticalSpacing">
  1046. <number>0</number>
  1047. </property>
  1048. <item row="0" column="0">
  1049. <widget class="QFrame" name="extraIcon">
  1050. <property name="minimumSize">
  1051. <size>
  1052. <width>20</width>
  1053. <height>0</height>
  1054. </size>
  1055. </property>
  1056. <property name="maximumSize">
  1057. <size>
  1058. <width>20</width>
  1059. <height>20</height>
  1060. </size>
  1061. </property>
  1062. <property name="frameShape">
  1063. <enum>QFrame::NoFrame</enum>
  1064. </property>
  1065. <property name="frameShadow">
  1066. <enum>QFrame::Raised</enum>
  1067. </property>
  1068. </widget>
  1069. </item>
  1070. <item row="0" column="1">
  1071. <widget class="QLabel" name="extraLabel">
  1072. <property name="minimumSize">
  1073. <size>
  1074. <width>150</width>
  1075. <height>0</height>
  1076. </size>
  1077. </property>
  1078. <property name="text">
  1079. <string>Left Box</string>
  1080. </property>
  1081. </widget>
  1082. </item>
  1083. <item row="0" column="2">
  1084. <widget class="QPushButton" name="extraCloseColumnBtn">
  1085. <property name="minimumSize">
  1086. <size>
  1087. <width>28</width>
  1088. <height>28</height>
  1089. </size>
  1090. </property>
  1091. <property name="maximumSize">
  1092. <size>
  1093. <width>28</width>
  1094. <height>28</height>
  1095. </size>
  1096. </property>
  1097. <property name="cursor">
  1098. <cursorShape>PointingHandCursor</cursorShape>
  1099. </property>
  1100. <property name="text">
  1101. <string/>
  1102. </property>
  1103. <property name="icon">
  1104. <iconset resource="../app.qrc">
  1105. <normaloff>:/res/icons/icon_close.png</normaloff>:/res/icons/icon_close.png</iconset>
  1106. </property>
  1107. </widget>
  1108. </item>
  1109. </layout>
  1110. </item>
  1111. </layout>
  1112. </widget>
  1113. </item>
  1114. <item>
  1115. <widget class="QFrame" name="extraContent">
  1116. <property name="frameShape">
  1117. <enum>QFrame::NoFrame</enum>
  1118. </property>
  1119. <property name="frameShadow">
  1120. <enum>QFrame::Raised</enum>
  1121. </property>
  1122. <layout class="QVBoxLayout" name="verticalLayout_9">
  1123. <property name="spacing">
  1124. <number>0</number>
  1125. </property>
  1126. <property name="leftMargin">
  1127. <number>0</number>
  1128. </property>
  1129. <property name="topMargin">
  1130. <number>0</number>
  1131. </property>
  1132. <property name="rightMargin">
  1133. <number>0</number>
  1134. </property>
  1135. <property name="bottomMargin">
  1136. <number>0</number>
  1137. </property>
  1138. <item>
  1139. <widget class="QFrame" name="extraTopMenu">
  1140. <property name="frameShape">
  1141. <enum>QFrame::NoFrame</enum>
  1142. </property>
  1143. <property name="frameShadow">
  1144. <enum>QFrame::Raised</enum>
  1145. </property>
  1146. <layout class="QVBoxLayout" name="verticalLayout_10">
  1147. <property name="spacing">
  1148. <number>0</number>
  1149. </property>
  1150. <property name="leftMargin">
  1151. <number>0</number>
  1152. </property>
  1153. <property name="topMargin">
  1154. <number>0</number>
  1155. </property>
  1156. <property name="rightMargin">
  1157. <number>0</number>
  1158. </property>
  1159. <property name="bottomMargin">
  1160. <number>0</number>
  1161. </property>
  1162. <item>
  1163. <widget class="QPushButton" name="btn_share">
  1164. <property name="minimumSize">
  1165. <size>
  1166. <width>0</width>
  1167. <height>45</height>
  1168. </size>
  1169. </property>
  1170. <property name="styleSheet">
  1171. <string notr="true">background-image: url(:/res/icons/cil-share-boxed.png);</string>
  1172. </property>
  1173. <property name="text">
  1174. <string>Share</string>
  1175. </property>
  1176. </widget>
  1177. </item>
  1178. <item>
  1179. <widget class="QPushButton" name="btn_adjustments">
  1180. <property name="minimumSize">
  1181. <size>
  1182. <width>0</width>
  1183. <height>45</height>
  1184. </size>
  1185. </property>
  1186. <property name="styleSheet">
  1187. <string notr="true">background-image: url(:/res/icons/cil-equalizer.png);</string>
  1188. </property>
  1189. <property name="text">
  1190. <string>Adjustments</string>
  1191. </property>
  1192. </widget>
  1193. </item>
  1194. <item>
  1195. <widget class="QPushButton" name="btn_more">
  1196. <property name="minimumSize">
  1197. <size>
  1198. <width>0</width>
  1199. <height>45</height>
  1200. </size>
  1201. </property>
  1202. <property name="styleSheet">
  1203. <string notr="true">background-image: url(:/res/icons/cil-layers.png);</string>
  1204. </property>
  1205. <property name="text">
  1206. <string>More</string>
  1207. </property>
  1208. </widget>
  1209. </item>
  1210. </layout>
  1211. </widget>
  1212. </item>
  1213. <item>
  1214. <widget class="QFrame" name="extraCenter">
  1215. <property name="frameShape">
  1216. <enum>QFrame::NoFrame</enum>
  1217. </property>
  1218. <property name="frameShadow">
  1219. <enum>QFrame::Raised</enum>
  1220. </property>
  1221. <layout class="QVBoxLayout" name="verticalLayout_11">
  1222. <item>
  1223. <widget class="QTextEdit" name="textEdit">
  1224. <property name="minimumSize">
  1225. <size>
  1226. <width>222</width>
  1227. <height>0</height>
  1228. </size>
  1229. </property>
  1230. <property name="maximumSize">
  1231. <size>
  1232. <width>16777215</width>
  1233. <height>16777215</height>
  1234. </size>
  1235. </property>
  1236. <property name="styleSheet">
  1237. <string notr="true">background: transparent;</string>
  1238. </property>
  1239. <property name="frameShape">
  1240. <enum>QFrame::NoFrame</enum>
  1241. </property>
  1242. <property name="readOnly">
  1243. <bool>true</bool>
  1244. </property>
  1245. <property name="html">
  1246. <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;
  1247. &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;
  1248. p, li { white-space: pre-wrap; }
  1249. &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Segoe UI'; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
  1250. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:600; color:#ff79c6;&quot;&gt;PyDracula&lt;/span&gt;&lt;/p&gt;
  1251. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#ffffff;&quot;&gt;An interface created using Python and PySide (support for PyQt), and with colors based on the Dracula theme created by Zeno Rocha.&lt;/span&gt;&lt;/p&gt;
  1252. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#ffffff;&quot;&gt;MIT License&lt;/span&gt;&lt;/p&gt;
  1253. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#bd93f9;&quot;&gt;Created by: Wanderson M. Pimenta&lt;/span&gt;&lt;/p&gt;
  1254. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:600; color:#ff79c6;&quot;&gt;Convert UI&lt;/span&gt;&lt;/p&gt;
  1255. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; color:#ffffff;&quot;&gt;pyside6-uic main.ui &amp;gt; ui_main.py&lt;/span&gt;&lt;/p&gt;
  1256. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:12pt; font-weight:600; color:#ff79c6;&quot;&gt;Convert QRC&lt;/span&gt;&lt;/p&gt;
  1257. &lt;p align=&quot;center&quot; style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt; color:#ffffff;&quot;&gt;pyside6-rcc resources.qrc -o resources_rc.py&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1258. </property>
  1259. </widget>
  1260. </item>
  1261. </layout>
  1262. </widget>
  1263. </item>
  1264. <item>
  1265. <widget class="QFrame" name="extraBottom">
  1266. <property name="frameShape">
  1267. <enum>QFrame::NoFrame</enum>
  1268. </property>
  1269. <property name="frameShadow">
  1270. <enum>QFrame::Raised</enum>
  1271. </property>
  1272. </widget>
  1273. </item>
  1274. </layout>
  1275. </widget>
  1276. </item>
  1277. </layout>
  1278. </widget>
  1279. </item>
  1280. <item>
  1281. <widget class="QFrame" name="contentBox">
  1282. <property name="frameShape">
  1283. <enum>QFrame::NoFrame</enum>
  1284. </property>
  1285. <property name="frameShadow">
  1286. <enum>QFrame::Raised</enum>
  1287. </property>
  1288. <layout class="QVBoxLayout" name="verticalLayout_12">
  1289. <property name="spacing">
  1290. <number>0</number>
  1291. </property>
  1292. <property name="leftMargin">
  1293. <number>0</number>
  1294. </property>
  1295. <property name="topMargin">
  1296. <number>0</number>
  1297. </property>
  1298. <property name="rightMargin">
  1299. <number>0</number>
  1300. </property>
  1301. <property name="bottomMargin">
  1302. <number>0</number>
  1303. </property>
  1304. <item>
  1305. <widget class="QFrame" name="contentTopBg">
  1306. <property name="minimumSize">
  1307. <size>
  1308. <width>0</width>
  1309. <height>50</height>
  1310. </size>
  1311. </property>
  1312. <property name="maximumSize">
  1313. <size>
  1314. <width>16777215</width>
  1315. <height>50</height>
  1316. </size>
  1317. </property>
  1318. <property name="frameShape">
  1319. <enum>QFrame::NoFrame</enum>
  1320. </property>
  1321. <property name="frameShadow">
  1322. <enum>QFrame::Raised</enum>
  1323. </property>
  1324. <layout class="QHBoxLayout" name="horizontalLayout_4">
  1325. <property name="spacing">
  1326. <number>0</number>
  1327. </property>
  1328. <property name="leftMargin">
  1329. <number>0</number>
  1330. </property>
  1331. <property name="topMargin">
  1332. <number>0</number>
  1333. </property>
  1334. <property name="rightMargin">
  1335. <number>10</number>
  1336. </property>
  1337. <property name="bottomMargin">
  1338. <number>0</number>
  1339. </property>
  1340. <item>
  1341. <widget class="QFrame" name="leftBox">
  1342. <property name="sizePolicy">
  1343. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  1344. <horstretch>0</horstretch>
  1345. <verstretch>0</verstretch>
  1346. </sizepolicy>
  1347. </property>
  1348. <property name="frameShape">
  1349. <enum>QFrame::StyledPanel</enum>
  1350. </property>
  1351. <property name="frameShadow">
  1352. <enum>QFrame::Raised</enum>
  1353. </property>
  1354. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1355. <property name="spacing">
  1356. <number>0</number>
  1357. </property>
  1358. <property name="leftMargin">
  1359. <number>0</number>
  1360. </property>
  1361. <property name="topMargin">
  1362. <number>0</number>
  1363. </property>
  1364. <property name="rightMargin">
  1365. <number>0</number>
  1366. </property>
  1367. <property name="bottomMargin">
  1368. <number>0</number>
  1369. </property>
  1370. <item>
  1371. <widget class="QLabel" name="titleRightInfo">
  1372. <property name="sizePolicy">
  1373. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  1374. <horstretch>0</horstretch>
  1375. <verstretch>0</verstretch>
  1376. </sizepolicy>
  1377. </property>
  1378. <property name="maximumSize">
  1379. <size>
  1380. <width>16777215</width>
  1381. <height>45</height>
  1382. </size>
  1383. </property>
  1384. <property name="text">
  1385. <string>QFD APP - A Dracula theme working</string>
  1386. </property>
  1387. </widget>
  1388. </item>
  1389. </layout>
  1390. </widget>
  1391. </item>
  1392. <item alignment="Qt::AlignRight">
  1393. <widget class="QFrame" name="rightButtons">
  1394. <property name="minimumSize">
  1395. <size>
  1396. <width>0</width>
  1397. <height>28</height>
  1398. </size>
  1399. </property>
  1400. <property name="frameShape">
  1401. <enum>QFrame::NoFrame</enum>
  1402. </property>
  1403. <property name="frameShadow">
  1404. <enum>QFrame::Raised</enum>
  1405. </property>
  1406. <layout class="QHBoxLayout" name="horizontalLayout_2">
  1407. <property name="spacing">
  1408. <number>5</number>
  1409. </property>
  1410. <property name="leftMargin">
  1411. <number>0</number>
  1412. </property>
  1413. <property name="topMargin">
  1414. <number>0</number>
  1415. </property>
  1416. <property name="rightMargin">
  1417. <number>0</number>
  1418. </property>
  1419. <property name="bottomMargin">
  1420. <number>0</number>
  1421. </property>
  1422. <item>
  1423. <widget class="QPushButton" name="settingsTopBtn">
  1424. <property name="minimumSize">
  1425. <size>
  1426. <width>28</width>
  1427. <height>28</height>
  1428. </size>
  1429. </property>
  1430. <property name="maximumSize">
  1431. <size>
  1432. <width>28</width>
  1433. <height>28</height>
  1434. </size>
  1435. </property>
  1436. <property name="cursor">
  1437. <cursorShape>PointingHandCursor</cursorShape>
  1438. </property>
  1439. <property name="text">
  1440. <string/>
  1441. </property>
  1442. <property name="icon">
  1443. <iconset resource="../app.qrc">
  1444. <normaloff>:/res/icons/icon_settings.png</normaloff>:/res/icons/icon_settings.png</iconset>
  1445. </property>
  1446. </widget>
  1447. </item>
  1448. <item>
  1449. <widget class="QPushButton" name="minimizeAppBtn">
  1450. <property name="minimumSize">
  1451. <size>
  1452. <width>28</width>
  1453. <height>28</height>
  1454. </size>
  1455. </property>
  1456. <property name="maximumSize">
  1457. <size>
  1458. <width>28</width>
  1459. <height>28</height>
  1460. </size>
  1461. </property>
  1462. <property name="cursor">
  1463. <cursorShape>PointingHandCursor</cursorShape>
  1464. </property>
  1465. <property name="text">
  1466. <string/>
  1467. </property>
  1468. <property name="icon">
  1469. <iconset resource="../app.qrc">
  1470. <normaloff>:/res/icons/icon_minimize.png</normaloff>:/res/icons/icon_minimize.png</iconset>
  1471. </property>
  1472. </widget>
  1473. </item>
  1474. <item>
  1475. <widget class="QPushButton" name="maximizeRestoreAppBtn">
  1476. <property name="minimumSize">
  1477. <size>
  1478. <width>28</width>
  1479. <height>28</height>
  1480. </size>
  1481. </property>
  1482. <property name="maximumSize">
  1483. <size>
  1484. <width>28</width>
  1485. <height>28</height>
  1486. </size>
  1487. </property>
  1488. <property name="cursor">
  1489. <cursorShape>PointingHandCursor</cursorShape>
  1490. </property>
  1491. <property name="toolTip">
  1492. <string>MaximizeRestore</string>
  1493. </property>
  1494. <property name="text">
  1495. <string/>
  1496. </property>
  1497. <property name="icon">
  1498. <iconset resource="../app.qrc">
  1499. <normaloff>:/res/icons/icon_maximize.png</normaloff>:/res/icons/icon_maximize.png</iconset>
  1500. </property>
  1501. </widget>
  1502. </item>
  1503. <item>
  1504. <widget class="QPushButton" name="closeAppBtn">
  1505. <property name="minimumSize">
  1506. <size>
  1507. <width>28</width>
  1508. <height>28</height>
  1509. </size>
  1510. </property>
  1511. <property name="maximumSize">
  1512. <size>
  1513. <width>28</width>
  1514. <height>28</height>
  1515. </size>
  1516. </property>
  1517. <property name="cursor">
  1518. <cursorShape>PointingHandCursor</cursorShape>
  1519. </property>
  1520. <property name="toolTip">
  1521. <string>Close</string>
  1522. </property>
  1523. <property name="text">
  1524. <string/>
  1525. </property>
  1526. <property name="icon">
  1527. <iconset resource="../app.qrc">
  1528. <normaloff>:/res/icons/icon_close.png</normaloff>:/res/icons/icon_close.png</iconset>
  1529. </property>
  1530. </widget>
  1531. </item>
  1532. </layout>
  1533. </widget>
  1534. </item>
  1535. </layout>
  1536. </widget>
  1537. </item>
  1538. <item>
  1539. <widget class="QFrame" name="contentBottom">
  1540. <property name="frameShape">
  1541. <enum>QFrame::NoFrame</enum>
  1542. </property>
  1543. <property name="frameShadow">
  1544. <enum>QFrame::Raised</enum>
  1545. </property>
  1546. <layout class="QVBoxLayout" name="verticalLayout_13">
  1547. <property name="spacing">
  1548. <number>0</number>
  1549. </property>
  1550. <property name="leftMargin">
  1551. <number>0</number>
  1552. </property>
  1553. <property name="topMargin">
  1554. <number>0</number>
  1555. </property>
  1556. <property name="rightMargin">
  1557. <number>0</number>
  1558. </property>
  1559. <property name="bottomMargin">
  1560. <number>0</number>
  1561. </property>
  1562. <item>
  1563. <widget class="QFrame" name="content">
  1564. <property name="frameShape">
  1565. <enum>QFrame::NoFrame</enum>
  1566. </property>
  1567. <property name="frameShadow">
  1568. <enum>QFrame::Raised</enum>
  1569. </property>
  1570. <layout class="QHBoxLayout" name="horizontalLayout_6">
  1571. <property name="spacing">
  1572. <number>0</number>
  1573. </property>
  1574. <property name="leftMargin">
  1575. <number>0</number>
  1576. </property>
  1577. <property name="topMargin">
  1578. <number>0</number>
  1579. </property>
  1580. <property name="rightMargin">
  1581. <number>0</number>
  1582. </property>
  1583. <property name="bottomMargin">
  1584. <number>0</number>
  1585. </property>
  1586. <item>
  1587. <widget class="QFrame" name="pagesContainer">
  1588. <property name="frameShape">
  1589. <enum>QFrame::NoFrame</enum>
  1590. </property>
  1591. <property name="frameShadow">
  1592. <enum>QFrame::Raised</enum>
  1593. </property>
  1594. <layout class="QVBoxLayout" name="verticalLayout_17">
  1595. <property name="spacing">
  1596. <number>0</number>
  1597. </property>
  1598. <property name="leftMargin">
  1599. <number>10</number>
  1600. </property>
  1601. <property name="topMargin">
  1602. <number>10</number>
  1603. </property>
  1604. <property name="rightMargin">
  1605. <number>10</number>
  1606. </property>
  1607. <property name="bottomMargin">
  1608. <number>10</number>
  1609. </property>
  1610. <item>
  1611. <widget class="QStackedWidget" name="stackedWidget">
  1612. <property name="styleSheet">
  1613. <string notr="true">background: transparent;</string>
  1614. </property>
  1615. <property name="currentIndex">
  1616. <number>0</number>
  1617. </property>
  1618. <widget class="QWidget" name="home">
  1619. <property name="styleSheet">
  1620. <string notr="true">background-image: url(:/res/logo.png);
  1621. background-position: center;
  1622. background-repeat: no-repeat;</string>
  1623. </property>
  1624. </widget>
  1625. <widget class="QWidget" name="widgets">
  1626. <layout class="QVBoxLayout" name="verticalLayout_18">
  1627. <property name="spacing">
  1628. <number>10</number>
  1629. </property>
  1630. <property name="leftMargin">
  1631. <number>10</number>
  1632. </property>
  1633. <property name="topMargin">
  1634. <number>10</number>
  1635. </property>
  1636. <property name="rightMargin">
  1637. <number>10</number>
  1638. </property>
  1639. <property name="bottomMargin">
  1640. <number>10</number>
  1641. </property>
  1642. <item>
  1643. <widget class="QFrame" name="row_1">
  1644. <property name="frameShape">
  1645. <enum>QFrame::StyledPanel</enum>
  1646. </property>
  1647. <property name="frameShadow">
  1648. <enum>QFrame::Raised</enum>
  1649. </property>
  1650. <layout class="QVBoxLayout" name="verticalLayout_21">
  1651. <item>
  1652. <widget class="QFrame" name="frame_div_content_1">
  1653. <property name="minimumSize">
  1654. <size>
  1655. <width>0</width>
  1656. <height>110</height>
  1657. </size>
  1658. </property>
  1659. <property name="maximumSize">
  1660. <size>
  1661. <width>16777215</width>
  1662. <height>110</height>
  1663. </size>
  1664. </property>
  1665. <property name="frameShape">
  1666. <enum>QFrame::NoFrame</enum>
  1667. </property>
  1668. <property name="frameShadow">
  1669. <enum>QFrame::Raised</enum>
  1670. </property>
  1671. <layout class="QVBoxLayout" name="verticalLayout_20">
  1672. <property name="spacing">
  1673. <number>0</number>
  1674. </property>
  1675. <property name="leftMargin">
  1676. <number>0</number>
  1677. </property>
  1678. <property name="topMargin">
  1679. <number>0</number>
  1680. </property>
  1681. <property name="rightMargin">
  1682. <number>0</number>
  1683. </property>
  1684. <property name="bottomMargin">
  1685. <number>0</number>
  1686. </property>
  1687. <item>
  1688. <widget class="QFrame" name="frame_title_wid_1">
  1689. <property name="maximumSize">
  1690. <size>
  1691. <width>16777215</width>
  1692. <height>35</height>
  1693. </size>
  1694. </property>
  1695. <property name="frameShape">
  1696. <enum>QFrame::NoFrame</enum>
  1697. </property>
  1698. <property name="frameShadow">
  1699. <enum>QFrame::Raised</enum>
  1700. </property>
  1701. <layout class="QHBoxLayout" name="horizontalLayout_8">
  1702. <item>
  1703. <widget class="QLabel" name="labelBoxBlenderInstalation">
  1704. <property name="text">
  1705. <string>FILE BOX</string>
  1706. </property>
  1707. </widget>
  1708. </item>
  1709. </layout>
  1710. </widget>
  1711. </item>
  1712. <item>
  1713. <widget class="QFrame" name="frame_content_wid_1">
  1714. <property name="frameShape">
  1715. <enum>QFrame::NoFrame</enum>
  1716. </property>
  1717. <property name="frameShadow">
  1718. <enum>QFrame::Raised</enum>
  1719. </property>
  1720. <layout class="QHBoxLayout" name="horizontalLayout_7">
  1721. <item>
  1722. <layout class="QGridLayout" name="gridLayout_2">
  1723. <item row="0" column="1">
  1724. <widget class="QLineEdit" name="lineEdit">
  1725. <property name="minimumSize">
  1726. <size>
  1727. <width>0</width>
  1728. <height>30</height>
  1729. </size>
  1730. </property>
  1731. <property name="styleSheet">
  1732. <string notr="true">background-color: rgb(33, 37, 43);</string>
  1733. </property>
  1734. <property name="placeholderText">
  1735. <string>Type here</string>
  1736. </property>
  1737. </widget>
  1738. </item>
  1739. <item row="0" column="2">
  1740. <widget class="QPushButton" name="pushButton">
  1741. <property name="minimumSize">
  1742. <size>
  1743. <width>150</width>
  1744. <height>30</height>
  1745. </size>
  1746. </property>
  1747. <property name="cursor">
  1748. <cursorShape>PointingHandCursor</cursorShape>
  1749. </property>
  1750. <property name="styleSheet">
  1751. <string notr="true">background-color: rgb(52, 59, 72);</string>
  1752. </property>
  1753. <property name="text">
  1754. <string>Open</string>
  1755. </property>
  1756. <property name="icon">
  1757. <iconset resource="../app.qrc">
  1758. <normaloff>:/res/icons/cil-folder-open.png</normaloff>:/res/icons/cil-folder-open.png</iconset>
  1759. </property>
  1760. </widget>
  1761. </item>
  1762. <item row="2" column="0" colspan="3">
  1763. <widget class="QLabel" name="labelVersion_3">
  1764. <property name="styleSheet">
  1765. <string notr="true">color: rgb(113, 126, 149);</string>
  1766. </property>
  1767. <property name="text">
  1768. <string>Label description</string>
  1769. </property>
  1770. </widget>
  1771. </item>
  1772. </layout>
  1773. </item>
  1774. </layout>
  1775. </widget>
  1776. </item>
  1777. </layout>
  1778. </widget>
  1779. </item>
  1780. </layout>
  1781. </widget>
  1782. </item>
  1783. <item>
  1784. <widget class="QFrame" name="row_2">
  1785. <property name="frameShape">
  1786. <enum>QFrame::StyledPanel</enum>
  1787. </property>
  1788. <property name="frameShadow">
  1789. <enum>QFrame::Raised</enum>
  1790. </property>
  1791. <layout class="QVBoxLayout" name="verticalLayout_19">
  1792. <item>
  1793. <layout class="QGridLayout" name="gridLayout_3" columnstretch="0,0,0,0,0,0,0">
  1794. <item row="2" column="0" colspan="2">
  1795. <widget class="QSlider" name="horizontalSlider">
  1796. <property name="orientation">
  1797. <enum>Qt::Horizontal</enum>
  1798. </property>
  1799. </widget>
  1800. </item>
  1801. <item row="0" column="0">
  1802. <widget class="QCheckBox" name="checkBox">
  1803. <property name="text">
  1804. <string>CheckBox</string>
  1805. </property>
  1806. </widget>
  1807. </item>
  1808. <item row="0" column="1">
  1809. <widget class="QRadioButton" name="radioButton">
  1810. <property name="text">
  1811. <string>RadioButton</string>
  1812. </property>
  1813. </widget>
  1814. </item>
  1815. <item row="1" column="0" colspan="2">
  1816. <widget class="QComboBox" name="comboBox">
  1817. <property name="font">
  1818. <font>
  1819. <family>Segoe UI</family>
  1820. <pointsize>10</pointsize>
  1821. <weight>50</weight>
  1822. <italic>false</italic>
  1823. <bold>false</bold>
  1824. </font>
  1825. </property>
  1826. <property name="styleSheet">
  1827. <string notr="true">background-color: rgb(33, 37, 43);</string>
  1828. </property>
  1829. <item>
  1830. <property name="text">
  1831. <string>Test 1</string>
  1832. </property>
  1833. </item>
  1834. <item>
  1835. <property name="text">
  1836. <string>Test 2</string>
  1837. </property>
  1838. </item>
  1839. <item>
  1840. <property name="text">
  1841. <string>Test 3</string>
  1842. </property>
  1843. </item>
  1844. </widget>
  1845. </item>
  1846. <item row="0" column="5" rowspan="3">
  1847. <widget class="QScrollArea" name="scrollArea">
  1848. <property name="styleSheet">
  1849. <string notr="true"> QScrollBar:vertical {
  1850. background: rgb(52, 59, 72);
  1851. }
  1852. QScrollBar:horizontal {
  1853. background: rgb(52, 59, 72);
  1854. }</string>
  1855. </property>
  1856. <property name="frameShape">
  1857. <enum>QFrame::NoFrame</enum>
  1858. </property>
  1859. <property name="widgetResizable">
  1860. <bool>true</bool>
  1861. </property>
  1862. <widget class="QWidget" name="scrollAreaWidgetContents">
  1863. <property name="geometry">
  1864. <rect>
  1865. <x>0</x>
  1866. <y>0</y>
  1867. <width>97</width>
  1868. <height>103</height>
  1869. </rect>
  1870. </property>
  1871. <property name="styleSheet">
  1872. <string notr="true"> QScrollBar:vertical {
  1873. border: none;
  1874. background: rgb(52, 59, 72);
  1875. width: 14px;
  1876. margin: 21px 0 21px 0;
  1877. border-radius: 0px;
  1878. }</string>
  1879. </property>
  1880. <layout class="QHBoxLayout" name="horizontalLayout_9">
  1881. <item>
  1882. <widget class="QPlainTextEdit" name="plainTextEdit">
  1883. <property name="styleSheet">
  1884. <string notr="true">background-color: rgb(33, 37, 43);</string>
  1885. </property>
  1886. </widget>
  1887. </item>
  1888. </layout>
  1889. </widget>
  1890. </widget>
  1891. </item>
  1892. <item row="1" column="6">
  1893. <widget class="QCommandLinkButton" name="commandLinkButton">
  1894. <property name="text">
  1895. <string>Link Button</string>
  1896. </property>
  1897. <property name="icon">
  1898. <iconset resource="../app.qrc">
  1899. <normaloff>:/res/icons/cil-link.png</normaloff>:/res/icons/cil-link.png</iconset>
  1900. </property>
  1901. <property name="description">
  1902. <string>Link description</string>
  1903. </property>
  1904. </widget>
  1905. </item>
  1906. <item row="0" column="4" rowspan="3">
  1907. <widget class="QScrollBar" name="verticalScrollBar">
  1908. <property name="styleSheet">
  1909. <string notr="true"> QScrollBar:vertical { background: rgb(52, 59, 72); }
  1910. QScrollBar:horizontal { background: rgb(52, 59, 72); }</string>
  1911. </property>
  1912. <property name="orientation">
  1913. <enum>Qt::Vertical</enum>
  1914. </property>
  1915. </widget>
  1916. </item>
  1917. <item row="0" column="2" rowspan="3">
  1918. <widget class="QSlider" name="verticalSlider">
  1919. <property name="orientation">
  1920. <enum>Qt::Vertical</enum>
  1921. </property>
  1922. </widget>
  1923. </item>
  1924. <item row="1" column="3">
  1925. <widget class="QScrollBar" name="horizontalScrollBar">
  1926. <property name="sizePolicy">
  1927. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  1928. <horstretch>0</horstretch>
  1929. <verstretch>0</verstretch>
  1930. </sizepolicy>
  1931. </property>
  1932. <property name="styleSheet">
  1933. <string notr="true"> QScrollBar:vertical { background: rgb(52, 59, 72); }
  1934. QScrollBar:horizontal { background: rgb(52, 59, 72); }</string>
  1935. </property>
  1936. <property name="orientation">
  1937. <enum>Qt::Horizontal</enum>
  1938. </property>
  1939. </widget>
  1940. </item>
  1941. </layout>
  1942. </item>
  1943. </layout>
  1944. </widget>
  1945. </item>
  1946. <item>
  1947. <widget class="QFrame" name="row_3">
  1948. <property name="frameShape">
  1949. <enum>QFrame::StyledPanel</enum>
  1950. </property>
  1951. <property name="frameShadow">
  1952. <enum>QFrame::Raised</enum>
  1953. </property>
  1954. <layout class="QVBoxLayout" name="verticalLayout_22">
  1955. <item>
  1956. <widget class="QTableWidget" name="tableWidget">
  1957. <property name="frameShape">
  1958. <enum>QFrame::NoFrame</enum>
  1959. </property>
  1960. <property name="verticalScrollBarPolicy">
  1961. <enum>Qt::ScrollBarAlwaysOn</enum>
  1962. </property>
  1963. <property name="sizeAdjustPolicy">
  1964. <enum>QAbstractScrollArea::AdjustToContents</enum>
  1965. </property>
  1966. <property name="editTriggers">
  1967. <set>QAbstractItemView::NoEditTriggers</set>
  1968. </property>
  1969. <property name="selectionMode">
  1970. <enum>QAbstractItemView::SingleSelection</enum>
  1971. </property>
  1972. <property name="selectionBehavior">
  1973. <enum>QAbstractItemView::SelectRows</enum>
  1974. </property>
  1975. <property name="rowCount">
  1976. <number>16</number>
  1977. </property>
  1978. <property name="columnCount">
  1979. <number>4</number>
  1980. </property>
  1981. <attribute name="horizontalHeaderVisible">
  1982. <bool>false</bool>
  1983. </attribute>
  1984. <attribute name="horizontalHeaderCascadingSectionResizes">
  1985. <bool>true</bool>
  1986. </attribute>
  1987. <attribute name="horizontalHeaderDefaultSectionSize">
  1988. <number>200</number>
  1989. </attribute>
  1990. <attribute name="horizontalHeaderStretchLastSection">
  1991. <bool>true</bool>
  1992. </attribute>
  1993. <attribute name="verticalHeaderVisible">
  1994. <bool>false</bool>
  1995. </attribute>
  1996. <attribute name="verticalHeaderHighlightSections">
  1997. <bool>false</bool>
  1998. </attribute>
  1999. <attribute name="verticalHeaderStretchLastSection">
  2000. <bool>true</bool>
  2001. </attribute>
  2002. <row>
  2003. <property name="text">
  2004. <string>New one</string>
  2005. </property>
  2006. </row>
  2007. <row>
  2008. <property name="text">
  2009. <string>New one</string>
  2010. </property>
  2011. </row>
  2012. <row>
  2013. <property name="text">
  2014. <string>New one</string>
  2015. </property>
  2016. </row>
  2017. <row>
  2018. <property name="text">
  2019. <string>New one</string>
  2020. </property>
  2021. </row>
  2022. <row>
  2023. <property name="text">
  2024. <string>New one</string>
  2025. </property>
  2026. </row>
  2027. <row>
  2028. <property name="text">
  2029. <string>New one</string>
  2030. </property>
  2031. </row>
  2032. <row>
  2033. <property name="text">
  2034. <string>New one</string>
  2035. </property>
  2036. </row>
  2037. <row>
  2038. <property name="text">
  2039. <string>New one</string>
  2040. </property>
  2041. </row>
  2042. <row>
  2043. <property name="text">
  2044. <string>New one</string>
  2045. </property>
  2046. </row>
  2047. <row>
  2048. <property name="text">
  2049. <string>New one</string>
  2050. </property>
  2051. </row>
  2052. <row>
  2053. <property name="text">
  2054. <string>New one</string>
  2055. </property>
  2056. </row>
  2057. <row>
  2058. <property name="text">
  2059. <string>New one</string>
  2060. </property>
  2061. </row>
  2062. <row>
  2063. <property name="text">
  2064. <string>New one</string>
  2065. </property>
  2066. </row>
  2067. <row>
  2068. <property name="text">
  2069. <string>New one</string>
  2070. </property>
  2071. </row>
  2072. <row>
  2073. <property name="text">
  2074. <string>New one</string>
  2075. </property>
  2076. </row>
  2077. <row>
  2078. <property name="text">
  2079. <string>New one</string>
  2080. </property>
  2081. </row>
  2082. <column>
  2083. <property name="text">
  2084. <string>0</string>
  2085. </property>
  2086. </column>
  2087. <column>
  2088. <property name="text">
  2089. <string>1</string>
  2090. </property>
  2091. </column>
  2092. <column>
  2093. <property name="text">
  2094. <string>2</string>
  2095. </property>
  2096. </column>
  2097. <column>
  2098. <property name="text">
  2099. <string>3</string>
  2100. </property>
  2101. </column>
  2102. <item row="0" column="0">
  2103. <property name="text">
  2104. <string>Test</string>
  2105. </property>
  2106. </item>
  2107. <item row="0" column="1">
  2108. <property name="text">
  2109. <string>Text</string>
  2110. </property>
  2111. </item>
  2112. <item row="0" column="2">
  2113. <property name="text">
  2114. <string>Column</string>
  2115. </property>
  2116. </item>
  2117. <item row="0" column="3">
  2118. <property name="text">
  2119. <string>Line</string>
  2120. </property>
  2121. </item>
  2122. </widget>
  2123. </item>
  2124. </layout>
  2125. </widget>
  2126. </item>
  2127. </layout>
  2128. </widget>
  2129. <widget class="QWidget" name="new_page">
  2130. <layout class="QVBoxLayout" name="verticalLayout_23">
  2131. <item>
  2132. <widget class="QLabel" name="label">
  2133. <property name="text">
  2134. <string>NEW PAGE TEST</string>
  2135. </property>
  2136. <property name="alignment">
  2137. <set>Qt::AlignCenter</set>
  2138. </property>
  2139. </widget>
  2140. </item>
  2141. </layout>
  2142. </widget>
  2143. </widget>
  2144. </item>
  2145. </layout>
  2146. </widget>
  2147. </item>
  2148. <item>
  2149. <widget class="QFrame" name="extraRightBox">
  2150. <property name="maximumSize">
  2151. <size>
  2152. <width>0</width>
  2153. <height>16777215</height>
  2154. </size>
  2155. </property>
  2156. <property name="frameShape">
  2157. <enum>QFrame::NoFrame</enum>
  2158. </property>
  2159. <property name="frameShadow">
  2160. <enum>QFrame::Raised</enum>
  2161. </property>
  2162. <layout class="QVBoxLayout" name="verticalLayout_14">
  2163. <property name="spacing">
  2164. <number>0</number>
  2165. </property>
  2166. <property name="leftMargin">
  2167. <number>0</number>
  2168. </property>
  2169. <property name="topMargin">
  2170. <number>0</number>
  2171. </property>
  2172. <property name="rightMargin">
  2173. <number>0</number>
  2174. </property>
  2175. <property name="bottomMargin">
  2176. <number>0</number>
  2177. </property>
  2178. <item>
  2179. <widget class="QFrame" name="themeSettingsTopDetail">
  2180. <property name="maximumSize">
  2181. <size>
  2182. <width>16777215</width>
  2183. <height>3</height>
  2184. </size>
  2185. </property>
  2186. <property name="frameShape">
  2187. <enum>QFrame::NoFrame</enum>
  2188. </property>
  2189. <property name="frameShadow">
  2190. <enum>QFrame::Raised</enum>
  2191. </property>
  2192. </widget>
  2193. </item>
  2194. <item>
  2195. <widget class="QFrame" name="contentSettings">
  2196. <property name="frameShape">
  2197. <enum>QFrame::NoFrame</enum>
  2198. </property>
  2199. <property name="frameShadow">
  2200. <enum>QFrame::Raised</enum>
  2201. </property>
  2202. <layout class="QVBoxLayout" name="verticalLayout_15">
  2203. <property name="spacing">
  2204. <number>0</number>
  2205. </property>
  2206. <property name="leftMargin">
  2207. <number>0</number>
  2208. </property>
  2209. <property name="topMargin">
  2210. <number>0</number>
  2211. </property>
  2212. <property name="rightMargin">
  2213. <number>0</number>
  2214. </property>
  2215. <property name="bottomMargin">
  2216. <number>0</number>
  2217. </property>
  2218. <item alignment="Qt::AlignTop">
  2219. <widget class="QFrame" name="topMenus">
  2220. <property name="frameShape">
  2221. <enum>QFrame::NoFrame</enum>
  2222. </property>
  2223. <property name="frameShadow">
  2224. <enum>QFrame::Raised</enum>
  2225. </property>
  2226. <layout class="QVBoxLayout" name="verticalLayout_16">
  2227. <property name="spacing">
  2228. <number>0</number>
  2229. </property>
  2230. <property name="leftMargin">
  2231. <number>0</number>
  2232. </property>
  2233. <property name="topMargin">
  2234. <number>0</number>
  2235. </property>
  2236. <property name="rightMargin">
  2237. <number>0</number>
  2238. </property>
  2239. <property name="bottomMargin">
  2240. <number>0</number>
  2241. </property>
  2242. <item>
  2243. <widget class="QPushButton" name="btn_message">
  2244. <property name="sizePolicy">
  2245. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  2246. <horstretch>0</horstretch>
  2247. <verstretch>0</verstretch>
  2248. </sizepolicy>
  2249. </property>
  2250. <property name="minimumSize">
  2251. <size>
  2252. <width>0</width>
  2253. <height>45</height>
  2254. </size>
  2255. </property>
  2256. <property name="cursor">
  2257. <cursorShape>PointingHandCursor</cursorShape>
  2258. </property>
  2259. <property name="styleSheet">
  2260. <string notr="true">background-image: url(:/res/icons/cil-envelope-open.png);</string>
  2261. </property>
  2262. <property name="text">
  2263. <string>Message</string>
  2264. </property>
  2265. </widget>
  2266. </item>
  2267. <item>
  2268. <widget class="QPushButton" name="btn_print">
  2269. <property name="styleSheet">
  2270. <string notr="true">background-image: url(:/res/icons/cil-print.png);</string>
  2271. </property>
  2272. <property name="text">
  2273. <string>Print</string>
  2274. </property>
  2275. </widget>
  2276. </item>
  2277. <item>
  2278. <widget class="QPushButton" name="btn_logout">
  2279. <property name="sizePolicy">
  2280. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  2281. <horstretch>0</horstretch>
  2282. <verstretch>0</verstretch>
  2283. </sizepolicy>
  2284. </property>
  2285. <property name="minimumSize">
  2286. <size>
  2287. <width>0</width>
  2288. <height>45</height>
  2289. </size>
  2290. </property>
  2291. <property name="cursor">
  2292. <cursorShape>PointingHandCursor</cursorShape>
  2293. </property>
  2294. <property name="styleSheet">
  2295. <string notr="true">background-image: url(:/res/icons/cil-account-logout.png);</string>
  2296. </property>
  2297. <property name="text">
  2298. <string>Logout</string>
  2299. </property>
  2300. </widget>
  2301. </item>
  2302. </layout>
  2303. </widget>
  2304. </item>
  2305. </layout>
  2306. </widget>
  2307. </item>
  2308. </layout>
  2309. </widget>
  2310. </item>
  2311. </layout>
  2312. </widget>
  2313. </item>
  2314. <item>
  2315. <widget class="QFrame" name="bottomBar">
  2316. <property name="minimumSize">
  2317. <size>
  2318. <width>0</width>
  2319. <height>22</height>
  2320. </size>
  2321. </property>
  2322. <property name="maximumSize">
  2323. <size>
  2324. <width>16777215</width>
  2325. <height>22</height>
  2326. </size>
  2327. </property>
  2328. <property name="frameShape">
  2329. <enum>QFrame::NoFrame</enum>
  2330. </property>
  2331. <property name="frameShadow">
  2332. <enum>QFrame::Raised</enum>
  2333. </property>
  2334. <layout class="QHBoxLayout" name="horizontalLayout_5">
  2335. <property name="spacing">
  2336. <number>0</number>
  2337. </property>
  2338. <property name="leftMargin">
  2339. <number>0</number>
  2340. </property>
  2341. <property name="topMargin">
  2342. <number>0</number>
  2343. </property>
  2344. <property name="rightMargin">
  2345. <number>0</number>
  2346. </property>
  2347. <property name="bottomMargin">
  2348. <number>0</number>
  2349. </property>
  2350. <item>
  2351. <widget class="QLabel" name="creditsLabel">
  2352. <property name="maximumSize">
  2353. <size>
  2354. <width>16777215</width>
  2355. <height>16</height>
  2356. </size>
  2357. </property>
  2358. <property name="text">
  2359. <string>By: 赵孟收</string>
  2360. </property>
  2361. </widget>
  2362. </item>
  2363. <item>
  2364. <widget class="QLabel" name="version">
  2365. <property name="maximumSize">
  2366. <size>
  2367. <width>16777215</width>
  2368. <height>16</height>
  2369. </size>
  2370. </property>
  2371. <property name="text">
  2372. <string>v0.0.1</string>
  2373. </property>
  2374. <property name="alignment">
  2375. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2376. </property>
  2377. </widget>
  2378. </item>
  2379. <item>
  2380. <widget class="QFrame" name="frame_size_grip">
  2381. <property name="minimumSize">
  2382. <size>
  2383. <width>20</width>
  2384. <height>0</height>
  2385. </size>
  2386. </property>
  2387. <property name="maximumSize">
  2388. <size>
  2389. <width>20</width>
  2390. <height>16777215</height>
  2391. </size>
  2392. </property>
  2393. <property name="frameShape">
  2394. <enum>QFrame::NoFrame</enum>
  2395. </property>
  2396. <property name="frameShadow">
  2397. <enum>QFrame::Raised</enum>
  2398. </property>
  2399. </widget>
  2400. </item>
  2401. </layout>
  2402. </widget>
  2403. </item>
  2404. </layout>
  2405. </widget>
  2406. </item>
  2407. </layout>
  2408. </widget>
  2409. </item>
  2410. </layout>
  2411. </widget>
  2412. </item>
  2413. </layout>
  2414. </widget>
  2415. </widget>
  2416. <resources>
  2417. <include location="../app.qrc"/>
  2418. </resources>
  2419. <connections/>
  2420. </ui>