main.ui 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>mainWindow</class>
  4. <widget class="QMainWindow" name="mainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1029</width>
  10. <height>784</height>
  11. </rect>
  12. </property>
  13. <property name="minimumSize">
  14. <size>
  15. <width>1029</width>
  16. <height>784</height>
  17. </size>
  18. </property>
  19. <property name="font">
  20. <font>
  21. <family>Verdana</family>
  22. <pointsize>8</pointsize>
  23. </font>
  24. </property>
  25. <property name="windowTitle">
  26. <string>Mew~</string>
  27. </property>
  28. <property name="windowIcon">
  29. <iconset resource="rsc.qrc">
  30. <normaloff>:/img/rsc/constellations.svg</normaloff>:/img/rsc/constellations.svg</iconset>
  31. </property>
  32. <widget class="QWidget" name="centralwidget">
  33. <layout class="QVBoxLayout" name="verticalLayout">
  34. <property name="spacing">
  35. <number>3</number>
  36. </property>
  37. <property name="leftMargin">
  38. <number>3</number>
  39. </property>
  40. <property name="topMargin">
  41. <number>3</number>
  42. </property>
  43. <property name="rightMargin">
  44. <number>3</number>
  45. </property>
  46. <property name="bottomMargin">
  47. <number>3</number>
  48. </property>
  49. <item>
  50. <layout class="QHBoxLayout" name="mainLayout" stretch="0,5">
  51. <property name="spacing">
  52. <number>0</number>
  53. </property>
  54. <property name="rightMargin">
  55. <number>0</number>
  56. </property>
  57. <item>
  58. <widget class="QListWidget" name="menu">
  59. <property name="maximumSize">
  60. <size>
  61. <width>165</width>
  62. <height>16777215</height>
  63. </size>
  64. </property>
  65. <property name="font">
  66. <font>
  67. <family>Verdana</family>
  68. <pointsize>12</pointsize>
  69. </font>
  70. </property>
  71. <property name="styleSheet">
  72. <string notr="true">QListWidget::item {
  73. margin: 16px 0;
  74. }</string>
  75. </property>
  76. <property name="horizontalScrollBarPolicy">
  77. <enum>Qt::ScrollBarAlwaysOff</enum>
  78. </property>
  79. <property name="editTriggers">
  80. <set>QAbstractItemView::NoEditTriggers</set>
  81. </property>
  82. <property name="showDropIndicator" stdset="0">
  83. <bool>false</bool>
  84. </property>
  85. <property name="defaultDropAction">
  86. <enum>Qt::CopyAction</enum>
  87. </property>
  88. <property name="alternatingRowColors">
  89. <bool>true</bool>
  90. </property>
  91. <property name="iconSize">
  92. <size>
  93. <width>24</width>
  94. <height>24</height>
  95. </size>
  96. </property>
  97. <property name="currentRow">
  98. <number>-1</number>
  99. </property>
  100. </widget>
  101. </item>
  102. <item>
  103. <layout class="QVBoxLayout" name="verticalLayout_7">
  104. <property name="bottomMargin">
  105. <number>0</number>
  106. </property>
  107. <item>
  108. <widget class="QStackedWidget" name="stack">
  109. <property name="currentIndex">
  110. <number>1</number>
  111. </property>
  112. <widget class="QWidget" name="page_1">
  113. <layout class="QHBoxLayout" name="horizontalLayout_2">
  114. <item>
  115. <layout class="QVBoxLayout" name="verticalLayout_3">
  116. <property name="bottomMargin">
  117. <number>20</number>
  118. </property>
  119. <item>
  120. <layout class="QHBoxLayout" name="horizontalLayout_15">
  121. <property name="topMargin">
  122. <number>0</number>
  123. </property>
  124. <item>
  125. <widget class="QToolButton" name="sessionBtnChange">
  126. <property name="minimumSize">
  127. <size>
  128. <width>28</width>
  129. <height>28</height>
  130. </size>
  131. </property>
  132. <property name="toolTip">
  133. <string>Sélectionner une séance</string>
  134. </property>
  135. <property name="text">
  136. <string/>
  137. </property>
  138. <property name="icon">
  139. <iconset resource="rsc.qrc">
  140. <normaloff>:/img/rsc/folder.png</normaloff>:/img/rsc/folder.png</iconset>
  141. </property>
  142. </widget>
  143. </item>
  144. <item>
  145. <widget class="QLabel" name="sessionLblTitle">
  146. <property name="font">
  147. <font>
  148. <family>Verdana</family>
  149. <pointsize>8</pointsize>
  150. <weight>75</weight>
  151. <bold>true</bold>
  152. </font>
  153. </property>
  154. <property name="text">
  155. <string>(Séléctionnez une séance)</string>
  156. </property>
  157. </widget>
  158. </item>
  159. </layout>
  160. </item>
  161. <item>
  162. <layout class="QHBoxLayout" name="horizontalLayout_14" stretch="1,3">
  163. <item>
  164. <widget class="PlaylistTable" name="sessionPlaylist">
  165. <property name="enabled">
  166. <bool>false</bool>
  167. </property>
  168. <property name="minimumSize">
  169. <size>
  170. <width>160</width>
  171. <height>0</height>
  172. </size>
  173. </property>
  174. <property name="maximumSize">
  175. <size>
  176. <width>320</width>
  177. <height>16777215</height>
  178. </size>
  179. </property>
  180. <property name="editTriggers">
  181. <set>QAbstractItemView::NoEditTriggers</set>
  182. </property>
  183. <property name="selectionMode">
  184. <enum>QAbstractItemView::SingleSelection</enum>
  185. </property>
  186. <property name="selectionBehavior">
  187. <enum>QAbstractItemView::SelectRows</enum>
  188. </property>
  189. <property name="iconSize">
  190. <size>
  191. <width>8</width>
  192. <height>8</height>
  193. </size>
  194. </property>
  195. <attribute name="horizontalHeaderVisible">
  196. <bool>false</bool>
  197. </attribute>
  198. <attribute name="verticalHeaderVisible">
  199. <bool>false</bool>
  200. </attribute>
  201. <column>
  202. <property name="text">
  203. <string>id</string>
  204. </property>
  205. </column>
  206. <column>
  207. <property name="text">
  208. <string>track_id</string>
  209. </property>
  210. </column>
  211. <column>
  212. <property name="text">
  213. <string>Titre</string>
  214. </property>
  215. </column>
  216. <column>
  217. <property name="text">
  218. <string>duration</string>
  219. </property>
  220. <property name="textAlignment">
  221. <set>AlignCenter</set>
  222. </property>
  223. </column>
  224. <column>
  225. <property name="text">
  226. <string>order</string>
  227. </property>
  228. </column>
  229. </widget>
  230. </item>
  231. <item>
  232. <widget class="FrameNotes" name="frameNotes">
  233. <property name="frameShape">
  234. <enum>QFrame::StyledPanel</enum>
  235. </property>
  236. <property name="frameShadow">
  237. <enum>QFrame::Raised</enum>
  238. </property>
  239. </widget>
  240. </item>
  241. </layout>
  242. </item>
  243. <item>
  244. <layout class="QHBoxLayout" name="horizontalLayout_17">
  245. <item>
  246. <widget class="QPushButton" name="btnSessionStart">
  247. <property name="minimumSize">
  248. <size>
  249. <width>180</width>
  250. <height>28</height>
  251. </size>
  252. </property>
  253. <property name="maximumSize">
  254. <size>
  255. <width>16777215</width>
  256. <height>28</height>
  257. </size>
  258. </property>
  259. <property name="text">
  260. <string>Lancer la séance</string>
  261. </property>
  262. <property name="autoDefault">
  263. <bool>true</bool>
  264. </property>
  265. <property name="default">
  266. <bool>true</bool>
  267. </property>
  268. </widget>
  269. </item>
  270. <item>
  271. <spacer name="horizontalSpacer_2">
  272. <property name="orientation">
  273. <enum>Qt::Horizontal</enum>
  274. </property>
  275. <property name="sizeHint" stdset="0">
  276. <size>
  277. <width>40</width>
  278. <height>20</height>
  279. </size>
  280. </property>
  281. </spacer>
  282. </item>
  283. </layout>
  284. </item>
  285. </layout>
  286. </item>
  287. </layout>
  288. </widget>
  289. <widget class="QWidget" name="page_3">
  290. <layout class="QHBoxLayout" name="horizontalLayout_4">
  291. <item>
  292. <layout class="QHBoxLayout" name="horizontalLayout_6" stretch="1,1,1">
  293. <property name="leftMargin">
  294. <number>10</number>
  295. </property>
  296. <property name="topMargin">
  297. <number>10</number>
  298. </property>
  299. <property name="rightMargin">
  300. <number>10</number>
  301. </property>
  302. <property name="bottomMargin">
  303. <number>10</number>
  304. </property>
  305. <item>
  306. <layout class="QVBoxLayout" name="verticalLayout_8">
  307. <property name="bottomMargin">
  308. <number>0</number>
  309. </property>
  310. <item>
  311. <layout class="QHBoxLayout" name="horizontalLayout_12">
  312. <item>
  313. <widget class="QLabel" name="label_3">
  314. <property name="minimumSize">
  315. <size>
  316. <width>284</width>
  317. <height>0</height>
  318. </size>
  319. </property>
  320. <property name="font">
  321. <font>
  322. <family>Verdana</family>
  323. <pointsize>8</pointsize>
  324. <underline>true</underline>
  325. </font>
  326. </property>
  327. <property name="text">
  328. <string>Mes musiques</string>
  329. </property>
  330. </widget>
  331. </item>
  332. <item>
  333. <widget class="QPushButton" name="btnExplorerRefresh">
  334. <property name="minimumSize">
  335. <size>
  336. <width>28</width>
  337. <height>28</height>
  338. </size>
  339. </property>
  340. <property name="maximumSize">
  341. <size>
  342. <width>28</width>
  343. <height>28</height>
  344. </size>
  345. </property>
  346. <property name="toolTip">
  347. <string>Rafraichir la liste</string>
  348. </property>
  349. <property name="text">
  350. <string/>
  351. </property>
  352. <property name="icon">
  353. <iconset resource="rsc.qrc">
  354. <normaloff>:/img/rsc/refresh-page-option.png</normaloff>:/img/rsc/refresh-page-option.png</iconset>
  355. </property>
  356. </widget>
  357. </item>
  358. </layout>
  359. </item>
  360. <item>
  361. <layout class="QHBoxLayout" name="horizontalLayout_21">
  362. <item>
  363. <widget class="QToolButton" name="explorerBtnSearch">
  364. <property name="minimumSize">
  365. <size>
  366. <width>28</width>
  367. <height>28</height>
  368. </size>
  369. </property>
  370. <property name="maximumSize">
  371. <size>
  372. <width>28</width>
  373. <height>28</height>
  374. </size>
  375. </property>
  376. <property name="text">
  377. <string>...</string>
  378. </property>
  379. <property name="icon">
  380. <iconset resource="rsc.qrc">
  381. <normaloff>:/img/rsc/search.png</normaloff>:/img/rsc/search.png</iconset>
  382. </property>
  383. </widget>
  384. </item>
  385. <item>
  386. <widget class="QLineEdit" name="explorerLineSearch">
  387. <property name="minimumSize">
  388. <size>
  389. <width>0</width>
  390. <height>28</height>
  391. </size>
  392. </property>
  393. <property name="maximumSize">
  394. <size>
  395. <width>16777215</width>
  396. <height>28</height>
  397. </size>
  398. </property>
  399. <property name="placeholderText">
  400. <string>Rechercher un morceau...</string>
  401. </property>
  402. <property name="clearButtonEnabled">
  403. <bool>true</bool>
  404. </property>
  405. </widget>
  406. </item>
  407. </layout>
  408. </item>
  409. <item>
  410. <widget class="QComboBox" name="explorerFilterTags">
  411. <property name="minimumSize">
  412. <size>
  413. <width>0</width>
  414. <height>28</height>
  415. </size>
  416. </property>
  417. <property name="maximumSize">
  418. <size>
  419. <width>16777215</width>
  420. <height>28</height>
  421. </size>
  422. </property>
  423. <property name="currentIndex">
  424. <number>0</number>
  425. </property>
  426. <property name="placeholderText">
  427. <string>(Filtrer par étiquette)</string>
  428. </property>
  429. <item>
  430. <property name="text">
  431. <string>Toutes les étiquettes</string>
  432. </property>
  433. </item>
  434. </widget>
  435. </item>
  436. <item>
  437. <widget class="ExplorerTable" name="explorerTable">
  438. <property name="minimumSize">
  439. <size>
  440. <width>320</width>
  441. <height>0</height>
  442. </size>
  443. </property>
  444. <property name="editTriggers">
  445. <set>QAbstractItemView::NoEditTriggers</set>
  446. </property>
  447. <property name="dragDropMode">
  448. <enum>QAbstractItemView::DragOnly</enum>
  449. </property>
  450. <property name="alternatingRowColors">
  451. <bool>true</bool>
  452. </property>
  453. <property name="indentation">
  454. <number>10</number>
  455. </property>
  456. <property name="animated">
  457. <bool>true</bool>
  458. </property>
  459. <property name="wordWrap">
  460. <bool>true</bool>
  461. </property>
  462. <attribute name="headerVisible">
  463. <bool>false</bool>
  464. </attribute>
  465. <column>
  466. <property name="text">
  467. <string notr="true">1</string>
  468. </property>
  469. </column>
  470. <column>
  471. <property name="text">
  472. <string>2</string>
  473. </property>
  474. </column>
  475. </widget>
  476. </item>
  477. </layout>
  478. </item>
  479. <item>
  480. <layout class="QVBoxLayout" name="verticalLayout_5" stretch="0,0,0">
  481. <property name="leftMargin">
  482. <number>10</number>
  483. </property>
  484. <property name="topMargin">
  485. <number>10</number>
  486. </property>
  487. <property name="rightMargin">
  488. <number>10</number>
  489. </property>
  490. <property name="bottomMargin">
  491. <number>10</number>
  492. </property>
  493. <item>
  494. <widget class="QStackedWidget" name="explorerTrackMetaStack">
  495. <property name="minimumSize">
  496. <size>
  497. <width>220</width>
  498. <height>50</height>
  499. </size>
  500. </property>
  501. <property name="currentIndex">
  502. <number>1</number>
  503. </property>
  504. <widget class="QWidget" name="page">
  505. <layout class="QVBoxLayout" name="verticalLayout_11">
  506. <item>
  507. <widget class="QLabel" name="label_2">
  508. <property name="minimumSize">
  509. <size>
  510. <width>220</width>
  511. <height>0</height>
  512. </size>
  513. </property>
  514. <property name="text">
  515. <string>Sélectionnez une piste</string>
  516. </property>
  517. <property name="alignment">
  518. <set>Qt::AlignCenter</set>
  519. </property>
  520. </widget>
  521. </item>
  522. </layout>
  523. </widget>
  524. <widget class="QWidget" name="page_6">
  525. <layout class="QHBoxLayout" name="horizontalLayout_16">
  526. <property name="spacing">
  527. <number>0</number>
  528. </property>
  529. <property name="leftMargin">
  530. <number>0</number>
  531. </property>
  532. <property name="topMargin">
  533. <number>0</number>
  534. </property>
  535. <property name="rightMargin">
  536. <number>0</number>
  537. </property>
  538. <property name="bottomMargin">
  539. <number>0</number>
  540. </property>
  541. <item>
  542. <layout class="QVBoxLayout" name="verticalLayout_9">
  543. <property name="spacing">
  544. <number>4</number>
  545. </property>
  546. <property name="sizeConstraint">
  547. <enum>QLayout::SetMinimumSize</enum>
  548. </property>
  549. <item>
  550. <layout class="QHBoxLayout" name="horizontalLayout_13">
  551. <item>
  552. <widget class="QLabel" name="label_11">
  553. <property name="minimumSize">
  554. <size>
  555. <width>182</width>
  556. <height>0</height>
  557. </size>
  558. </property>
  559. <property name="font">
  560. <font>
  561. <family>Verdana</family>
  562. <pointsize>8</pointsize>
  563. <underline>true</underline>
  564. </font>
  565. </property>
  566. <property name="text">
  567. <string>Informations sur la piste</string>
  568. </property>
  569. </widget>
  570. </item>
  571. <item>
  572. <widget class="QToolButton" name="explorerTrackEdit">
  573. <property name="enabled">
  574. <bool>true</bool>
  575. </property>
  576. <property name="minimumSize">
  577. <size>
  578. <width>28</width>
  579. <height>28</height>
  580. </size>
  581. </property>
  582. <property name="maximumSize">
  583. <size>
  584. <width>28</width>
  585. <height>28</height>
  586. </size>
  587. </property>
  588. <property name="text">
  589. <string/>
  590. </property>
  591. <property name="icon">
  592. <iconset resource="rsc.qrc">
  593. <normaloff>:/img/rsc/edit.png</normaloff>:/img/rsc/edit.png</iconset>
  594. </property>
  595. </widget>
  596. </item>
  597. </layout>
  598. </item>
  599. <item>
  600. <layout class="QHBoxLayout" name="horizontalLayout_8">
  601. <property name="sizeConstraint">
  602. <enum>QLayout::SetMinimumSize</enum>
  603. </property>
  604. <item>
  605. <widget class="QLabel" name="label_4">
  606. <property name="minimumSize">
  607. <size>
  608. <width>80</width>
  609. <height>0</height>
  610. </size>
  611. </property>
  612. <property name="maximumSize">
  613. <size>
  614. <width>80</width>
  615. <height>16777215</height>
  616. </size>
  617. </property>
  618. <property name="text">
  619. <string>Titre</string>
  620. </property>
  621. </widget>
  622. </item>
  623. <item>
  624. <widget class="QLabel" name="explorerLblTrackTitle">
  625. <property name="minimumSize">
  626. <size>
  627. <width>130</width>
  628. <height>0</height>
  629. </size>
  630. </property>
  631. <property name="text">
  632. <string/>
  633. </property>
  634. <property name="wordWrap">
  635. <bool>true</bool>
  636. </property>
  637. </widget>
  638. </item>
  639. </layout>
  640. </item>
  641. <item>
  642. <layout class="QHBoxLayout" name="horizontalLayout_9">
  643. <item>
  644. <widget class="QLabel" name="label_6">
  645. <property name="minimumSize">
  646. <size>
  647. <width>80</width>
  648. <height>0</height>
  649. </size>
  650. </property>
  651. <property name="maximumSize">
  652. <size>
  653. <width>80</width>
  654. <height>16777215</height>
  655. </size>
  656. </property>
  657. <property name="text">
  658. <string>Artiste</string>
  659. </property>
  660. </widget>
  661. </item>
  662. <item>
  663. <widget class="QLabel" name="explorerLblTrackArtist">
  664. <property name="minimumSize">
  665. <size>
  666. <width>130</width>
  667. <height>0</height>
  668. </size>
  669. </property>
  670. <property name="text">
  671. <string/>
  672. </property>
  673. <property name="wordWrap">
  674. <bool>true</bool>
  675. </property>
  676. </widget>
  677. </item>
  678. </layout>
  679. </item>
  680. <item>
  681. <layout class="QHBoxLayout" name="horizontalLayout_10">
  682. <item>
  683. <widget class="QLabel" name="label_7">
  684. <property name="minimumSize">
  685. <size>
  686. <width>80</width>
  687. <height>0</height>
  688. </size>
  689. </property>
  690. <property name="maximumSize">
  691. <size>
  692. <width>80</width>
  693. <height>16777215</height>
  694. </size>
  695. </property>
  696. <property name="text">
  697. <string>Album</string>
  698. </property>
  699. </widget>
  700. </item>
  701. <item>
  702. <widget class="QLabel" name="explorerLblTrackAlbum">
  703. <property name="minimumSize">
  704. <size>
  705. <width>130</width>
  706. <height>0</height>
  707. </size>
  708. </property>
  709. <property name="text">
  710. <string/>
  711. </property>
  712. <property name="wordWrap">
  713. <bool>true</bool>
  714. </property>
  715. </widget>
  716. </item>
  717. </layout>
  718. </item>
  719. <item>
  720. <layout class="QHBoxLayout" name="horizontalLayout_11">
  721. <item>
  722. <widget class="QLabel" name="label_8">
  723. <property name="minimumSize">
  724. <size>
  725. <width>80</width>
  726. <height>0</height>
  727. </size>
  728. </property>
  729. <property name="maximumSize">
  730. <size>
  731. <width>80</width>
  732. <height>16777215</height>
  733. </size>
  734. </property>
  735. <property name="text">
  736. <string>N°</string>
  737. </property>
  738. </widget>
  739. </item>
  740. <item>
  741. <widget class="QLabel" name="explorerLblTrackNumber">
  742. <property name="minimumSize">
  743. <size>
  744. <width>130</width>
  745. <height>0</height>
  746. </size>
  747. </property>
  748. <property name="text">
  749. <string/>
  750. </property>
  751. <property name="wordWrap">
  752. <bool>true</bool>
  753. </property>
  754. </widget>
  755. </item>
  756. </layout>
  757. </item>
  758. <item>
  759. <widget class="QFrame" name="frameMissingFileWarning">
  760. <property name="minimumSize">
  761. <size>
  762. <width>0</width>
  763. <height>42</height>
  764. </size>
  765. </property>
  766. <property name="frameShape">
  767. <enum>QFrame::Box</enum>
  768. </property>
  769. <property name="frameShadow">
  770. <enum>QFrame::Raised</enum>
  771. </property>
  772. <layout class="QHBoxLayout" name="horizontalLayout_3">
  773. <property name="spacing">
  774. <number>0</number>
  775. </property>
  776. <property name="leftMargin">
  777. <number>0</number>
  778. </property>
  779. <property name="topMargin">
  780. <number>0</number>
  781. </property>
  782. <property name="rightMargin">
  783. <number>0</number>
  784. </property>
  785. <property name="bottomMargin">
  786. <number>0</number>
  787. </property>
  788. <item>
  789. <layout class="QHBoxLayout" name="hLayoutMissingFileWarning">
  790. <property name="leftMargin">
  791. <number>8</number>
  792. </property>
  793. <property name="topMargin">
  794. <number>8</number>
  795. </property>
  796. <property name="rightMargin">
  797. <number>8</number>
  798. </property>
  799. <property name="bottomMargin">
  800. <number>8</number>
  801. </property>
  802. <item>
  803. <spacer name="horizontalSpacer_4">
  804. <property name="orientation">
  805. <enum>Qt::Horizontal</enum>
  806. </property>
  807. <property name="sizeHint" stdset="0">
  808. <size>
  809. <width>40</width>
  810. <height>20</height>
  811. </size>
  812. </property>
  813. </spacer>
  814. </item>
  815. <item>
  816. <widget class="QLabel" name="label_15">
  817. <property name="minimumSize">
  818. <size>
  819. <width>24</width>
  820. <height>24</height>
  821. </size>
  822. </property>
  823. <property name="maximumSize">
  824. <size>
  825. <width>24</width>
  826. <height>23</height>
  827. </size>
  828. </property>
  829. <property name="text">
  830. <string/>
  831. </property>
  832. <property name="pixmap">
  833. <pixmap resource="rsc.qrc">:/img/rsc/invalid.png</pixmap>
  834. </property>
  835. <property name="scaledContents">
  836. <bool>true</bool>
  837. </property>
  838. </widget>
  839. </item>
  840. <item>
  841. <spacer name="horizontalSpacer_6">
  842. <property name="orientation">
  843. <enum>Qt::Horizontal</enum>
  844. </property>
  845. <property name="sizeType">
  846. <enum>QSizePolicy::Fixed</enum>
  847. </property>
  848. <property name="sizeHint" stdset="0">
  849. <size>
  850. <width>10</width>
  851. <height>20</height>
  852. </size>
  853. </property>
  854. </spacer>
  855. </item>
  856. <item>
  857. <widget class="QLabel" name="label_14">
  858. <property name="palette">
  859. <palette>
  860. <active>
  861. <colorrole role="WindowText">
  862. <brush brushstyle="SolidPattern">
  863. <color alpha="255">
  864. <red>204</red>
  865. <green>0</green>
  866. <blue>0</blue>
  867. </color>
  868. </brush>
  869. </colorrole>
  870. <colorrole role="Text">
  871. <brush brushstyle="SolidPattern">
  872. <color alpha="255">
  873. <red>204</red>
  874. <green>0</green>
  875. <blue>0</blue>
  876. </color>
  877. </brush>
  878. </colorrole>
  879. <colorrole role="ButtonText">
  880. <brush brushstyle="SolidPattern">
  881. <color alpha="255">
  882. <red>204</red>
  883. <green>0</green>
  884. <blue>0</blue>
  885. </color>
  886. </brush>
  887. </colorrole>
  888. <colorrole role="PlaceholderText">
  889. <brush brushstyle="SolidPattern">
  890. <color alpha="128">
  891. <red>204</red>
  892. <green>0</green>
  893. <blue>0</blue>
  894. </color>
  895. </brush>
  896. </colorrole>
  897. </active>
  898. <inactive>
  899. <colorrole role="WindowText">
  900. <brush brushstyle="SolidPattern">
  901. <color alpha="255">
  902. <red>204</red>
  903. <green>0</green>
  904. <blue>0</blue>
  905. </color>
  906. </brush>
  907. </colorrole>
  908. <colorrole role="Text">
  909. <brush brushstyle="SolidPattern">
  910. <color alpha="255">
  911. <red>204</red>
  912. <green>0</green>
  913. <blue>0</blue>
  914. </color>
  915. </brush>
  916. </colorrole>
  917. <colorrole role="ButtonText">
  918. <brush brushstyle="SolidPattern">
  919. <color alpha="255">
  920. <red>204</red>
  921. <green>0</green>
  922. <blue>0</blue>
  923. </color>
  924. </brush>
  925. </colorrole>
  926. <colorrole role="PlaceholderText">
  927. <brush brushstyle="SolidPattern">
  928. <color alpha="128">
  929. <red>204</red>
  930. <green>0</green>
  931. <blue>0</blue>
  932. </color>
  933. </brush>
  934. </colorrole>
  935. </inactive>
  936. <disabled>
  937. <colorrole role="WindowText">
  938. <brush brushstyle="SolidPattern">
  939. <color alpha="255">
  940. <red>190</red>
  941. <green>190</green>
  942. <blue>190</blue>
  943. </color>
  944. </brush>
  945. </colorrole>
  946. <colorrole role="Text">
  947. <brush brushstyle="SolidPattern">
  948. <color alpha="255">
  949. <red>190</red>
  950. <green>190</green>
  951. <blue>190</blue>
  952. </color>
  953. </brush>
  954. </colorrole>
  955. <colorrole role="ButtonText">
  956. <brush brushstyle="SolidPattern">
  957. <color alpha="255">
  958. <red>190</red>
  959. <green>190</green>
  960. <blue>190</blue>
  961. </color>
  962. </brush>
  963. </colorrole>
  964. <colorrole role="PlaceholderText">
  965. <brush brushstyle="SolidPattern">
  966. <color alpha="128">
  967. <red>0</red>
  968. <green>0</green>
  969. <blue>0</blue>
  970. </color>
  971. </brush>
  972. </colorrole>
  973. </disabled>
  974. </palette>
  975. </property>
  976. <property name="font">
  977. <font>
  978. <family>Verdana</family>
  979. <pointsize>8</pointsize>
  980. <weight>75</weight>
  981. <bold>true</bold>
  982. </font>
  983. </property>
  984. <property name="text">
  985. <string>Fichier introuvable</string>
  986. </property>
  987. <property name="scaledContents">
  988. <bool>true</bool>
  989. </property>
  990. </widget>
  991. </item>
  992. <item>
  993. <spacer name="horizontalSpacer_5">
  994. <property name="orientation">
  995. <enum>Qt::Horizontal</enum>
  996. </property>
  997. <property name="sizeHint" stdset="0">
  998. <size>
  999. <width>40</width>
  1000. <height>20</height>
  1001. </size>
  1002. </property>
  1003. </spacer>
  1004. </item>
  1005. </layout>
  1006. </item>
  1007. </layout>
  1008. </widget>
  1009. </item>
  1010. <item>
  1011. <layout class="QHBoxLayout" name="horizontalLayout_19">
  1012. <item>
  1013. <widget class="QLabel" name="label_12">
  1014. <property name="minimumSize">
  1015. <size>
  1016. <width>80</width>
  1017. <height>0</height>
  1018. </size>
  1019. </property>
  1020. <property name="font">
  1021. <font>
  1022. <family>Verdana</family>
  1023. <pointsize>8</pointsize>
  1024. <underline>true</underline>
  1025. </font>
  1026. </property>
  1027. <property name="text">
  1028. <string>Etiquettes</string>
  1029. </property>
  1030. </widget>
  1031. </item>
  1032. <item>
  1033. <widget class="QLineEdit" name="lineSearchTags">
  1034. <property name="enabled">
  1035. <bool>true</bool>
  1036. </property>
  1037. <property name="minimumSize">
  1038. <size>
  1039. <width>0</width>
  1040. <height>25</height>
  1041. </size>
  1042. </property>
  1043. <property name="maximumSize">
  1044. <size>
  1045. <width>200</width>
  1046. <height>16777215</height>
  1047. </size>
  1048. </property>
  1049. <property name="placeholderText">
  1050. <string>Rechercher...</string>
  1051. </property>
  1052. <property name="clearButtonEnabled">
  1053. <bool>true</bool>
  1054. </property>
  1055. </widget>
  1056. </item>
  1057. </layout>
  1058. </item>
  1059. <item>
  1060. <widget class="TagsTable" name="explorerTrackTagsTable">
  1061. <property name="minimumSize">
  1062. <size>
  1063. <width>0</width>
  1064. <height>160</height>
  1065. </size>
  1066. </property>
  1067. <property name="maximumSize">
  1068. <size>
  1069. <width>16777215</width>
  1070. <height>16777215</height>
  1071. </size>
  1072. </property>
  1073. <property name="horizontalScrollBarPolicy">
  1074. <enum>Qt::ScrollBarAlwaysOff</enum>
  1075. </property>
  1076. <property name="editTriggers">
  1077. <set>QAbstractItemView::NoEditTriggers</set>
  1078. </property>
  1079. <property name="alternatingRowColors">
  1080. <bool>true</bool>
  1081. </property>
  1082. <property name="selectionMode">
  1083. <enum>QAbstractItemView::NoSelection</enum>
  1084. </property>
  1085. <property name="gridStyle">
  1086. <enum>Qt::NoPen</enum>
  1087. </property>
  1088. <property name="cornerButtonEnabled">
  1089. <bool>false</bool>
  1090. </property>
  1091. <attribute name="horizontalHeaderVisible">
  1092. <bool>false</bool>
  1093. </attribute>
  1094. <attribute name="horizontalHeaderShowSortIndicator" stdset="0">
  1095. <bool>true</bool>
  1096. </attribute>
  1097. <attribute name="horizontalHeaderStretchLastSection">
  1098. <bool>true</bool>
  1099. </attribute>
  1100. <attribute name="verticalHeaderVisible">
  1101. <bool>false</bool>
  1102. </attribute>
  1103. <column>
  1104. <property name="text">
  1105. <string>id</string>
  1106. </property>
  1107. </column>
  1108. <column>
  1109. <property name="text">
  1110. <string>check</string>
  1111. </property>
  1112. <property name="textAlignment">
  1113. <set>AlignCenter</set>
  1114. </property>
  1115. </column>
  1116. <column>
  1117. <property name="text">
  1118. <string>label</string>
  1119. </property>
  1120. </column>
  1121. </widget>
  1122. </item>
  1123. <item>
  1124. <widget class="QLabel" name="label_10">
  1125. <property name="maximumSize">
  1126. <size>
  1127. <width>361</width>
  1128. <height>14</height>
  1129. </size>
  1130. </property>
  1131. <property name="font">
  1132. <font>
  1133. <family>Verdana</family>
  1134. <pointsize>8</pointsize>
  1135. <underline>true</underline>
  1136. </font>
  1137. </property>
  1138. <property name="text">
  1139. <string>Notes</string>
  1140. </property>
  1141. </widget>
  1142. </item>
  1143. <item>
  1144. <widget class="QTextEdit" name="explorerTrackNotepad">
  1145. <property name="minimumSize">
  1146. <size>
  1147. <width>218</width>
  1148. <height>120</height>
  1149. </size>
  1150. </property>
  1151. <property name="maximumSize">
  1152. <size>
  1153. <width>16777215</width>
  1154. <height>120</height>
  1155. </size>
  1156. </property>
  1157. <property name="cursor" stdset="0">
  1158. <cursorShape>IBeamCursor</cursorShape>
  1159. </property>
  1160. <property name="autoFormatting">
  1161. <set>QTextEdit::AutoAll</set>
  1162. </property>
  1163. <property name="undoRedoEnabled">
  1164. <bool>true</bool>
  1165. </property>
  1166. <property name="readOnly">
  1167. <bool>false</bool>
  1168. </property>
  1169. <property name="placeholderText">
  1170. <string>Mes notes sur ce morceau...</string>
  1171. </property>
  1172. </widget>
  1173. </item>
  1174. </layout>
  1175. </item>
  1176. </layout>
  1177. </widget>
  1178. </widget>
  1179. </item>
  1180. <item>
  1181. <widget class="QPushButton" name="btnPlaySelectedTrack">
  1182. <property name="enabled">
  1183. <bool>false</bool>
  1184. </property>
  1185. <property name="minimumSize">
  1186. <size>
  1187. <width>220</width>
  1188. <height>38</height>
  1189. </size>
  1190. </property>
  1191. <property name="maximumSize">
  1192. <size>
  1193. <width>16777215</width>
  1194. <height>38</height>
  1195. </size>
  1196. </property>
  1197. <property name="text">
  1198. <string> Lire le morceau sélectionné</string>
  1199. </property>
  1200. <property name="icon">
  1201. <iconset resource="rsc.qrc">
  1202. <normaloff>:/img/rsc/play.png</normaloff>:/img/rsc/play.png</iconset>
  1203. </property>
  1204. <property name="iconSize">
  1205. <size>
  1206. <width>12</width>
  1207. <height>12</height>
  1208. </size>
  1209. </property>
  1210. </widget>
  1211. </item>
  1212. <item>
  1213. <widget class="QPushButton" name="explorerAddToPlaylist">
  1214. <property name="enabled">
  1215. <bool>false</bool>
  1216. </property>
  1217. <property name="minimumSize">
  1218. <size>
  1219. <width>220</width>
  1220. <height>38</height>
  1221. </size>
  1222. </property>
  1223. <property name="maximumSize">
  1224. <size>
  1225. <width>16777215</width>
  1226. <height>38</height>
  1227. </size>
  1228. </property>
  1229. <property name="text">
  1230. <string> Ajouter à la playlist</string>
  1231. </property>
  1232. <property name="icon">
  1233. <iconset resource="rsc.qrc">
  1234. <normaloff>:/img/rsc/plus.png</normaloff>:/img/rsc/plus.png</iconset>
  1235. </property>
  1236. </widget>
  1237. </item>
  1238. </layout>
  1239. </item>
  1240. <item>
  1241. <layout class="QVBoxLayout" name="verticalLayout_12">
  1242. <item>
  1243. <widget class="QLabel" name="label_9">
  1244. <property name="font">
  1245. <font>
  1246. <family>Verdana</family>
  1247. <pointsize>8</pointsize>
  1248. <underline>true</underline>
  1249. </font>
  1250. </property>
  1251. <property name="text">
  1252. <string>Ma séance: </string>
  1253. </property>
  1254. </widget>
  1255. </item>
  1256. <item>
  1257. <layout class="QHBoxLayout" name="horizontalLayout_18">
  1258. <property name="leftMargin">
  1259. <number>6</number>
  1260. </property>
  1261. <property name="rightMargin">
  1262. <number>6</number>
  1263. </property>
  1264. <item>
  1265. <widget class="QLabel" name="explorerLblPlaylistTitle">
  1266. <property name="text">
  1267. <string>(pas de séance en cours)</string>
  1268. </property>
  1269. </widget>
  1270. </item>
  1271. <item>
  1272. <widget class="QToolButton" name="btnSelectPlaylist">
  1273. <property name="minimumSize">
  1274. <size>
  1275. <width>28</width>
  1276. <height>28</height>
  1277. </size>
  1278. </property>
  1279. <property name="maximumSize">
  1280. <size>
  1281. <width>28</width>
  1282. <height>28</height>
  1283. </size>
  1284. </property>
  1285. <property name="text">
  1286. <string>...</string>
  1287. </property>
  1288. <property name="icon">
  1289. <iconset resource="rsc.qrc">
  1290. <normaloff>:/img/rsc/folder.png</normaloff>:/img/rsc/folder.png</iconset>
  1291. </property>
  1292. </widget>
  1293. </item>
  1294. </layout>
  1295. </item>
  1296. <item>
  1297. <widget class="PlaylistTable" name="explorerPlaylist">
  1298. <property name="enabled">
  1299. <bool>false</bool>
  1300. </property>
  1301. <property name="minimumSize">
  1302. <size>
  1303. <width>240</width>
  1304. <height>0</height>
  1305. </size>
  1306. </property>
  1307. <property name="editTriggers">
  1308. <set>QAbstractItemView::NoEditTriggers</set>
  1309. </property>
  1310. <property name="showDropIndicator" stdset="0">
  1311. <bool>false</bool>
  1312. </property>
  1313. <property name="dragEnabled">
  1314. <bool>true</bool>
  1315. </property>
  1316. <property name="dragDropOverwriteMode">
  1317. <bool>false</bool>
  1318. </property>
  1319. <property name="dragDropMode">
  1320. <enum>QAbstractItemView::DropOnly</enum>
  1321. </property>
  1322. <property name="defaultDropAction">
  1323. <enum>Qt::IgnoreAction</enum>
  1324. </property>
  1325. <property name="alternatingRowColors">
  1326. <bool>true</bool>
  1327. </property>
  1328. <property name="selectionMode">
  1329. <enum>QAbstractItemView::SingleSelection</enum>
  1330. </property>
  1331. <property name="selectionBehavior">
  1332. <enum>QAbstractItemView::SelectRows</enum>
  1333. </property>
  1334. <property name="iconSize">
  1335. <size>
  1336. <width>8</width>
  1337. <height>8</height>
  1338. </size>
  1339. </property>
  1340. <attribute name="horizontalHeaderVisible">
  1341. <bool>false</bool>
  1342. </attribute>
  1343. <attribute name="verticalHeaderVisible">
  1344. <bool>true</bool>
  1345. </attribute>
  1346. <column>
  1347. <property name="text">
  1348. <string>id</string>
  1349. </property>
  1350. </column>
  1351. <column>
  1352. <property name="text">
  1353. <string>track_id</string>
  1354. </property>
  1355. </column>
  1356. <column>
  1357. <property name="text">
  1358. <string>Label</string>
  1359. </property>
  1360. </column>
  1361. <column>
  1362. <property name="text">
  1363. <string>duration</string>
  1364. </property>
  1365. <property name="textAlignment">
  1366. <set>AlignCenter</set>
  1367. </property>
  1368. </column>
  1369. <column>
  1370. <property name="text">
  1371. <string>order</string>
  1372. </property>
  1373. </column>
  1374. </widget>
  1375. </item>
  1376. <item>
  1377. <layout class="QHBoxLayout" name="horizontalLayout_22">
  1378. <item>
  1379. <widget class="QToolButton" name="btnPlaylistMoveToTop">
  1380. <property name="minimumSize">
  1381. <size>
  1382. <width>28</width>
  1383. <height>28</height>
  1384. </size>
  1385. </property>
  1386. <property name="maximumSize">
  1387. <size>
  1388. <width>28</width>
  1389. <height>28</height>
  1390. </size>
  1391. </property>
  1392. <property name="text">
  1393. <string>...</string>
  1394. </property>
  1395. <property name="icon">
  1396. <iconset resource="rsc.qrc">
  1397. <normaloff>:/img/rsc/double-up-arrow.png</normaloff>:/img/rsc/double-up-arrow.png</iconset>
  1398. </property>
  1399. </widget>
  1400. </item>
  1401. <item>
  1402. <widget class="QToolButton" name="btnPlaylistMoveUp">
  1403. <property name="minimumSize">
  1404. <size>
  1405. <width>28</width>
  1406. <height>28</height>
  1407. </size>
  1408. </property>
  1409. <property name="maximumSize">
  1410. <size>
  1411. <width>28</width>
  1412. <height>28</height>
  1413. </size>
  1414. </property>
  1415. <property name="text">
  1416. <string>...</string>
  1417. </property>
  1418. <property name="icon">
  1419. <iconset resource="rsc.qrc">
  1420. <normaloff>:/img/rsc/arrow-up.png</normaloff>:/img/rsc/arrow-up.png</iconset>
  1421. </property>
  1422. </widget>
  1423. </item>
  1424. <item>
  1425. <widget class="QToolButton" name="btnPlaylistMoveDown">
  1426. <property name="minimumSize">
  1427. <size>
  1428. <width>28</width>
  1429. <height>28</height>
  1430. </size>
  1431. </property>
  1432. <property name="maximumSize">
  1433. <size>
  1434. <width>28</width>
  1435. <height>288</height>
  1436. </size>
  1437. </property>
  1438. <property name="text">
  1439. <string>...</string>
  1440. </property>
  1441. <property name="icon">
  1442. <iconset resource="rsc.qrc">
  1443. <normaloff>:/img/rsc/arrow-down.png</normaloff>:/img/rsc/arrow-down.png</iconset>
  1444. </property>
  1445. </widget>
  1446. </item>
  1447. <item>
  1448. <widget class="QToolButton" name="btnPlaylistMoveToBottom">
  1449. <property name="minimumSize">
  1450. <size>
  1451. <width>28</width>
  1452. <height>28</height>
  1453. </size>
  1454. </property>
  1455. <property name="maximumSize">
  1456. <size>
  1457. <width>28</width>
  1458. <height>28</height>
  1459. </size>
  1460. </property>
  1461. <property name="text">
  1462. <string>...</string>
  1463. </property>
  1464. <property name="icon">
  1465. <iconset resource="rsc.qrc">
  1466. <normaloff>:/img/rsc/double-below-arrow.png</normaloff>:/img/rsc/double-below-arrow.png</iconset>
  1467. </property>
  1468. </widget>
  1469. </item>
  1470. <item>
  1471. <spacer name="horizontalSpacer_7">
  1472. <property name="orientation">
  1473. <enum>Qt::Horizontal</enum>
  1474. </property>
  1475. <property name="sizeHint" stdset="0">
  1476. <size>
  1477. <width>40</width>
  1478. <height>20</height>
  1479. </size>
  1480. </property>
  1481. </spacer>
  1482. </item>
  1483. <item>
  1484. <widget class="QToolButton" name="btnPlaylistRemove">
  1485. <property name="minimumSize">
  1486. <size>
  1487. <width>28</width>
  1488. <height>28</height>
  1489. </size>
  1490. </property>
  1491. <property name="maximumSize">
  1492. <size>
  1493. <width>28</width>
  1494. <height>28</height>
  1495. </size>
  1496. </property>
  1497. <property name="text">
  1498. <string>...</string>
  1499. </property>
  1500. <property name="icon">
  1501. <iconset resource="rsc.qrc">
  1502. <normaloff>:/img/rsc/trash.png</normaloff>:/img/rsc/trash.png</iconset>
  1503. </property>
  1504. </widget>
  1505. </item>
  1506. </layout>
  1507. </item>
  1508. </layout>
  1509. </item>
  1510. </layout>
  1511. </item>
  1512. </layout>
  1513. </widget>
  1514. <widget class="QWidget" name="page_4">
  1515. <layout class="QHBoxLayout" name="horizontalLayout">
  1516. <item>
  1517. <layout class="QVBoxLayout" name="verticalLayout_2">
  1518. <item>
  1519. <widget class="QLabel" name="label">
  1520. <property name="text">
  1521. <string>Page 4</string>
  1522. </property>
  1523. </widget>
  1524. </item>
  1525. </layout>
  1526. </item>
  1527. </layout>
  1528. </widget>
  1529. <widget class="QWidget" name="page_5">
  1530. <layout class="QHBoxLayout" name="horizontalLayout_5">
  1531. <item>
  1532. <layout class="QVBoxLayout" name="verticalLayout_6">
  1533. <property name="spacing">
  1534. <number>10</number>
  1535. </property>
  1536. <property name="leftMargin">
  1537. <number>20</number>
  1538. </property>
  1539. <property name="topMargin">
  1540. <number>20</number>
  1541. </property>
  1542. <property name="rightMargin">
  1543. <number>20</number>
  1544. </property>
  1545. <property name="bottomMargin">
  1546. <number>20</number>
  1547. </property>
  1548. <item>
  1549. <widget class="QLabel" name="label_5">
  1550. <property name="font">
  1551. <font>
  1552. <family>Verdana</family>
  1553. <pointsize>8</pointsize>
  1554. <weight>75</weight>
  1555. <bold>true</bold>
  1556. <underline>true</underline>
  1557. </font>
  1558. </property>
  1559. <property name="text">
  1560. <string>Mes dossiers de musique</string>
  1561. </property>
  1562. </widget>
  1563. </item>
  1564. <item>
  1565. <widget class="QTableWidget" name="settingsMusicFoldersTable">
  1566. <property name="minimumSize">
  1567. <size>
  1568. <width>0</width>
  1569. <height>192</height>
  1570. </size>
  1571. </property>
  1572. <property name="maximumSize">
  1573. <size>
  1574. <width>16777215</width>
  1575. <height>192</height>
  1576. </size>
  1577. </property>
  1578. <property name="editTriggers">
  1579. <set>QAbstractItemView::NoEditTriggers</set>
  1580. </property>
  1581. <property name="showDropIndicator" stdset="0">
  1582. <bool>false</bool>
  1583. </property>
  1584. <property name="dragDropOverwriteMode">
  1585. <bool>false</bool>
  1586. </property>
  1587. <property name="selectionMode">
  1588. <enum>QAbstractItemView::SingleSelection</enum>
  1589. </property>
  1590. <property name="selectionBehavior">
  1591. <enum>QAbstractItemView::SelectRows</enum>
  1592. </property>
  1593. <property name="showGrid">
  1594. <bool>false</bool>
  1595. </property>
  1596. <property name="cornerButtonEnabled">
  1597. <bool>false</bool>
  1598. </property>
  1599. <attribute name="horizontalHeaderCascadingSectionResizes">
  1600. <bool>true</bool>
  1601. </attribute>
  1602. <attribute name="horizontalHeaderDefaultSectionSize">
  1603. <number>70</number>
  1604. </attribute>
  1605. <attribute name="horizontalHeaderStretchLastSection">
  1606. <bool>true</bool>
  1607. </attribute>
  1608. <attribute name="verticalHeaderVisible">
  1609. <bool>false</bool>
  1610. </attribute>
  1611. <column>
  1612. <property name="text">
  1613. <string>id</string>
  1614. </property>
  1615. </column>
  1616. <column>
  1617. <property name="text">
  1618. <string>Statut</string>
  1619. </property>
  1620. </column>
  1621. <column>
  1622. <property name="text">
  1623. <string>Emplacement</string>
  1624. </property>
  1625. </column>
  1626. </widget>
  1627. </item>
  1628. <item>
  1629. <layout class="QHBoxLayout" name="horizontalLayout_7">
  1630. <property name="sizeConstraint">
  1631. <enum>QLayout::SetMinimumSize</enum>
  1632. </property>
  1633. <item>
  1634. <widget class="QPushButton" name="musicFoldersRemoveButton">
  1635. <property name="minimumSize">
  1636. <size>
  1637. <width>0</width>
  1638. <height>32</height>
  1639. </size>
  1640. </property>
  1641. <property name="text">
  1642. <string>Supprimer</string>
  1643. </property>
  1644. <property name="icon">
  1645. <iconset resource="rsc.qrc">
  1646. <normaloff>:/img/rsc/delete.png</normaloff>:/img/rsc/delete.png</iconset>
  1647. </property>
  1648. </widget>
  1649. </item>
  1650. <item>
  1651. <spacer name="horizontalSpacer">
  1652. <property name="orientation">
  1653. <enum>Qt::Horizontal</enum>
  1654. </property>
  1655. <property name="sizeHint" stdset="0">
  1656. <size>
  1657. <width>40</width>
  1658. <height>20</height>
  1659. </size>
  1660. </property>
  1661. </spacer>
  1662. </item>
  1663. <item>
  1664. <widget class="QPushButton" name="musicFoldersAddButton">
  1665. <property name="minimumSize">
  1666. <size>
  1667. <width>128</width>
  1668. <height>32</height>
  1669. </size>
  1670. </property>
  1671. <property name="text">
  1672. <string>Ajouter</string>
  1673. </property>
  1674. <property name="icon">
  1675. <iconset resource="rsc.qrc">
  1676. <normaloff>:/img/rsc/plus.png</normaloff>:/img/rsc/plus.png</iconset>
  1677. </property>
  1678. </widget>
  1679. </item>
  1680. </layout>
  1681. </item>
  1682. <item>
  1683. <widget class="Line" name="line">
  1684. <property name="orientation">
  1685. <enum>Qt::Horizontal</enum>
  1686. </property>
  1687. </widget>
  1688. </item>
  1689. <item>
  1690. <widget class="QLabel" name="label_13">
  1691. <property name="font">
  1692. <font>
  1693. <family>Verdana</family>
  1694. <pointsize>8</pointsize>
  1695. <weight>75</weight>
  1696. <bold>true</bold>
  1697. <underline>true</underline>
  1698. </font>
  1699. </property>
  1700. <property name="text">
  1701. <string>Mes étiquettes</string>
  1702. </property>
  1703. </widget>
  1704. </item>
  1705. <item>
  1706. <widget class="TagsTable" name="settingsTagsTableWidget">
  1707. <property name="minimumSize">
  1708. <size>
  1709. <width>0</width>
  1710. <height>192</height>
  1711. </size>
  1712. </property>
  1713. <property name="maximumSize">
  1714. <size>
  1715. <width>16777215</width>
  1716. <height>192</height>
  1717. </size>
  1718. </property>
  1719. <property name="selectionMode">
  1720. <enum>QAbstractItemView::SingleSelection</enum>
  1721. </property>
  1722. <property name="selectionBehavior">
  1723. <enum>QAbstractItemView::SelectRows</enum>
  1724. </property>
  1725. <attribute name="horizontalHeaderVisible">
  1726. <bool>false</bool>
  1727. </attribute>
  1728. <attribute name="horizontalHeaderStretchLastSection">
  1729. <bool>true</bool>
  1730. </attribute>
  1731. <attribute name="verticalHeaderVisible">
  1732. <bool>false</bool>
  1733. </attribute>
  1734. <column>
  1735. <property name="text">
  1736. <string>id</string>
  1737. </property>
  1738. </column>
  1739. <column>
  1740. <property name="text">
  1741. <string>checked</string>
  1742. </property>
  1743. <property name="textAlignment">
  1744. <set>AlignCenter</set>
  1745. </property>
  1746. </column>
  1747. <column>
  1748. <property name="text">
  1749. <string>label</string>
  1750. </property>
  1751. </column>
  1752. </widget>
  1753. </item>
  1754. <item>
  1755. <layout class="QHBoxLayout" name="horizontalLayout_20">
  1756. <property name="sizeConstraint">
  1757. <enum>QLayout::SetMinimumSize</enum>
  1758. </property>
  1759. <item>
  1760. <widget class="QPushButton" name="tableTagsRemoveButton">
  1761. <property name="minimumSize">
  1762. <size>
  1763. <width>100</width>
  1764. <height>32</height>
  1765. </size>
  1766. </property>
  1767. <property name="maximumSize">
  1768. <size>
  1769. <width>100</width>
  1770. <height>32</height>
  1771. </size>
  1772. </property>
  1773. <property name="text">
  1774. <string>Supprimer</string>
  1775. </property>
  1776. <property name="icon">
  1777. <iconset resource="rsc.qrc">
  1778. <normaloff>:/img/rsc/delete.png</normaloff>:/img/rsc/delete.png</iconset>
  1779. </property>
  1780. </widget>
  1781. </item>
  1782. <item>
  1783. <spacer name="horizontalSpacer_3">
  1784. <property name="orientation">
  1785. <enum>Qt::Horizontal</enum>
  1786. </property>
  1787. <property name="sizeHint" stdset="0">
  1788. <size>
  1789. <width>40</width>
  1790. <height>20</height>
  1791. </size>
  1792. </property>
  1793. </spacer>
  1794. </item>
  1795. <item>
  1796. <widget class="QPushButton" name="tagsTableAddButton">
  1797. <property name="minimumSize">
  1798. <size>
  1799. <width>128</width>
  1800. <height>32</height>
  1801. </size>
  1802. </property>
  1803. <property name="maximumSize">
  1804. <size>
  1805. <width>128</width>
  1806. <height>32</height>
  1807. </size>
  1808. </property>
  1809. <property name="text">
  1810. <string>Ajouter</string>
  1811. </property>
  1812. <property name="icon">
  1813. <iconset resource="rsc.qrc">
  1814. <normaloff>:/img/rsc/plus.png</normaloff>:/img/rsc/plus.png</iconset>
  1815. </property>
  1816. </widget>
  1817. </item>
  1818. </layout>
  1819. </item>
  1820. <item>
  1821. <spacer name="verticalSpacer">
  1822. <property name="orientation">
  1823. <enum>Qt::Vertical</enum>
  1824. </property>
  1825. <property name="sizeHint" stdset="0">
  1826. <size>
  1827. <width>20</width>
  1828. <height>40</height>
  1829. </size>
  1830. </property>
  1831. </spacer>
  1832. </item>
  1833. </layout>
  1834. </item>
  1835. </layout>
  1836. </widget>
  1837. </widget>
  1838. </item>
  1839. <item>
  1840. <widget class="VlcFrame" name="vlcFrame">
  1841. <property name="minimumSize">
  1842. <size>
  1843. <width>500</width>
  1844. <height>100</height>
  1845. </size>
  1846. </property>
  1847. <property name="maximumSize">
  1848. <size>
  1849. <width>16777215</width>
  1850. <height>100</height>
  1851. </size>
  1852. </property>
  1853. <property name="frameShape">
  1854. <enum>QFrame::StyledPanel</enum>
  1855. </property>
  1856. <property name="frameShadow">
  1857. <enum>QFrame::Raised</enum>
  1858. </property>
  1859. </widget>
  1860. </item>
  1861. </layout>
  1862. </item>
  1863. </layout>
  1864. </item>
  1865. </layout>
  1866. </widget>
  1867. <widget class="QStatusBar" name="statusbar"/>
  1868. </widget>
  1869. <customwidgets>
  1870. <customwidget>
  1871. <class>ExplorerTable</class>
  1872. <extends>QTreeWidget</extends>
  1873. <header location="global">.widgets.explorertable.h</header>
  1874. </customwidget>
  1875. <customwidget>
  1876. <class>VlcFrame</class>
  1877. <extends>QFrame</extends>
  1878. <header location="global">.widgets.vlcframe.h</header>
  1879. <container>1</container>
  1880. </customwidget>
  1881. <customwidget>
  1882. <class>PlaylistTable</class>
  1883. <extends>QTableWidget</extends>
  1884. <header location="global">.widgets.playlist_table.h</header>
  1885. </customwidget>
  1886. <customwidget>
  1887. <class>FrameNotes</class>
  1888. <extends>QFrame</extends>
  1889. <header location="global">.widgets.frame_notes.h</header>
  1890. <container>1</container>
  1891. </customwidget>
  1892. <customwidget>
  1893. <class>TagsTable</class>
  1894. <extends>QTableWidget</extends>
  1895. <header location="global">.widgets.tags_table.h</header>
  1896. </customwidget>
  1897. </customwidgets>
  1898. <resources>
  1899. <include location="rsc.qrc"/>
  1900. </resources>
  1901. <connections/>
  1902. </ui>