MainWindow.ui 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649
  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>800</width>
  10. <height>600</height>
  11. </rect>
  12. </property>
  13. <property name="minimumSize">
  14. <size>
  15. <width>800</width>
  16. <height>600</height>
  17. </size>
  18. </property>
  19. <property name="windowTitle">
  20. <string>O3DE Asset Processor</string>
  21. </property>
  22. <widget class="QWidget" name="centralWidget">
  23. <layout class="QVBoxLayout" name="verticalLayout_1" stretch="0,1">
  24. <property name="spacing">
  25. <number>0</number>
  26. </property>
  27. <property name="leftMargin">
  28. <number>0</number>
  29. </property>
  30. <property name="topMargin">
  31. <number>0</number>
  32. </property>
  33. <property name="rightMargin">
  34. <number>0</number>
  35. </property>
  36. <property name="bottomMargin">
  37. <number>0</number>
  38. </property>
  39. <item>
  40. <layout class="QHBoxLayout" name="header">
  41. <property name="spacing">
  42. <number>0</number>
  43. </property>
  44. <item>
  45. <layout class="QVBoxLayout" name="statusContainer">
  46. <property name="spacing">
  47. <number>0</number>
  48. </property>
  49. <item>
  50. <widget class="QLabel" name="APStatusValueLabel">
  51. <property name="sizePolicy">
  52. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  53. <horstretch>0</horstretch>
  54. <verstretch>0</verstretch>
  55. </sizepolicy>
  56. </property>
  57. <property name="text">
  58. <string>Status:</string>
  59. </property>
  60. <property name="class" stdset="0">
  61. <string>Title</string>
  62. </property>
  63. </widget>
  64. </item>
  65. <item>
  66. <widget class="QLabel" name="projectLabel">
  67. <property name="sizePolicy">
  68. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  69. <horstretch>0</horstretch>
  70. <verstretch>0</verstretch>
  71. </sizepolicy>
  72. </property>
  73. <property name="text">
  74. <string>Project:</string>
  75. </property>
  76. <property name="class" stdset="0">
  77. <string>secondaryText</string>
  78. </property>
  79. </widget>
  80. </item>
  81. <item>
  82. <widget class="QLabel" name="rootLabel">
  83. <property name="sizePolicy">
  84. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  85. <horstretch>0</horstretch>
  86. <verstretch>0</verstretch>
  87. </sizepolicy>
  88. </property>
  89. <property name="text">
  90. <string>Root:</string>
  91. </property>
  92. <property name="class" stdset="0">
  93. <string>secondaryText</string>
  94. </property>
  95. </widget>
  96. </item>
  97. <item>
  98. <widget class="QLabel" name="portLabel">
  99. <property name="sizePolicy">
  100. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  101. <horstretch>0</horstretch>
  102. <verstretch>0</verstretch>
  103. </sizepolicy>
  104. </property>
  105. <property name="text">
  106. <string>Processor port</string>
  107. </property>
  108. <property name="class" stdset="0">
  109. <string>secondaryText</string>
  110. </property>
  111. </widget>
  112. </item>
  113. </layout>
  114. </item>
  115. <item>
  116. <widget class="QWidget" name="timerContainerWidget" native="true">
  117. <property name="enabled">
  118. <bool>true</bool>
  119. </property>
  120. <layout class="QVBoxLayout" name="timerContainer">
  121. <item>
  122. <layout class="QHBoxLayout" name="timerLayout">
  123. <item>
  124. <widget class="QLabel" name="lastScanLabel">
  125. <property name="text">
  126. <string>Last Scan:</string>
  127. </property>
  128. <property name="class" stdset="0">
  129. <string>Title</string>
  130. </property>
  131. </widget>
  132. </item>
  133. <item>
  134. <widget class="QLabel" name="lastScanTimer">
  135. <property name="text">
  136. <string>00:00.0</string>
  137. </property>
  138. <property name="class" stdset="0">
  139. <string>APTimer</string>
  140. </property>
  141. </widget>
  142. </item>
  143. <item>
  144. <widget class="Line" name="lastScanSeparator">
  145. <property name="sizePolicy">
  146. <sizepolicy hsizetype="Fixed" vsizetype="Minimum">
  147. <horstretch>0</horstretch>
  148. <verstretch>0</verstretch>
  149. </sizepolicy>
  150. </property>
  151. <property name="frameShadow">
  152. <enum>QFrame::Plain</enum>
  153. </property>
  154. <property name="lineWidth">
  155. <number>2</number>
  156. </property>
  157. <property name="orientation">
  158. <enum>Qt::Vertical</enum>
  159. </property>
  160. <property name="class" stdset="0">
  161. <string>TimerLine</string>
  162. </property>
  163. </widget>
  164. </item>
  165. <item>
  166. <widget class="QLabel" name="analysisLabel">
  167. <property name="text">
  168. <string>Analysis:</string>
  169. </property>
  170. <property name="class" stdset="0">
  171. <string>Title</string>
  172. </property>
  173. </widget>
  174. </item>
  175. <item>
  176. <widget class="QLabel" name="analysisTimer">
  177. <property name="text">
  178. <string>00:00.0</string>
  179. </property>
  180. <property name="class" stdset="0">
  181. <string>APTimer</string>
  182. </property>
  183. </widget>
  184. </item>
  185. <item>
  186. <widget class="Line" name="analysisSeparator">
  187. <property name="sizePolicy">
  188. <sizepolicy hsizetype="Fixed" vsizetype="Minimum">
  189. <horstretch>0</horstretch>
  190. <verstretch>0</verstretch>
  191. </sizepolicy>
  192. </property>
  193. <property name="frameShadow">
  194. <enum>QFrame::Plain</enum>
  195. </property>
  196. <property name="lineWidth">
  197. <number>2</number>
  198. </property>
  199. <property name="orientation">
  200. <enum>Qt::Vertical</enum>
  201. </property>
  202. <property name="class" stdset="0">
  203. <string>TimerLine</string>
  204. </property>
  205. </widget>
  206. </item>
  207. <item>
  208. <widget class="QLabel" name="processingLabel">
  209. <property name="text">
  210. <string>Processing:</string>
  211. </property>
  212. <property name="class" stdset="0">
  213. <string>Title</string>
  214. </property>
  215. </widget>
  216. </item>
  217. <item>
  218. <widget class="QLabel" name="processingTimer">
  219. <property name="text">
  220. <string>00:00.0</string>
  221. </property>
  222. <property name="class" stdset="0">
  223. <string>APTimer</string>
  224. </property>
  225. </widget>
  226. </item>
  227. <item>
  228. <widget class="Line" name="processingSeparator">
  229. <property name="sizePolicy">
  230. <sizepolicy hsizetype="Fixed" vsizetype="Minimum">
  231. <horstretch>0</horstretch>
  232. <verstretch>0</verstretch>
  233. </sizepolicy>
  234. </property>
  235. <property name="frameShadow">
  236. <enum>QFrame::Plain</enum>
  237. </property>
  238. <property name="lineWidth">
  239. <number>2</number>
  240. </property>
  241. <property name="orientation">
  242. <enum>Qt::Vertical</enum>
  243. </property>
  244. <property name="class" stdset="0">
  245. <string>TimerLine</string>
  246. </property>
  247. </widget>
  248. </item>
  249. </layout>
  250. </item>
  251. <item>
  252. <spacer name="timersVerticalSpacer">
  253. <property name="orientation">
  254. <enum>Qt::Vertical</enum>
  255. </property>
  256. <property name="sizeType">
  257. <enum>QSizePolicy::Expanding</enum>
  258. </property>
  259. <property name="sizeHint" stdset="0">
  260. <size>
  261. <width>13</width>
  262. <height>13</height>
  263. </size>
  264. </property>
  265. </spacer>
  266. </item>
  267. </layout>
  268. </widget>
  269. </item>
  270. <item>
  271. <layout class="QVBoxLayout" name="supportContainer">
  272. <property name="spacing">
  273. <number>0</number>
  274. </property>
  275. <item>
  276. <widget class="QPushButton" name="supportButton">
  277. <property name="flat">
  278. <bool>true</bool>
  279. </property>
  280. </widget>
  281. </item>
  282. <item>
  283. <spacer name="verticalSpacer">
  284. <property name="orientation">
  285. <enum>Qt::Vertical</enum>
  286. </property>
  287. <property name="sizeHint" stdset="0">
  288. <size>
  289. <width>1</width>
  290. <height>1</height>
  291. </size>
  292. </property>
  293. </spacer>
  294. </item>
  295. </layout>
  296. </item>
  297. </layout>
  298. </item>
  299. <item>
  300. <layout class="QHBoxLayout" name="content">
  301. <property name="spacing">
  302. <number>8</number>
  303. </property>
  304. <property name="leftMargin">
  305. <number>8</number>
  306. </property>
  307. <property name="topMargin">
  308. <number>0</number>
  309. </property>
  310. <property name="rightMargin">
  311. <number>8</number>
  312. </property>
  313. <property name="bottomMargin">
  314. <number>8</number>
  315. </property>
  316. <item>
  317. <widget class="AzQtComponents::SegmentBar" name="buttonList" native="true">
  318. <property name="sizePolicy">
  319. <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
  320. <horstretch>0</horstretch>
  321. <verstretch>0</verstretch>
  322. </sizepolicy>
  323. </property>
  324. <property name="minimumSize">
  325. <size>
  326. <width>130</width>
  327. <height>0</height>
  328. </size>
  329. </property>
  330. <property name="orientation" stdset="0">
  331. <number>5</number>
  332. </property>
  333. </widget>
  334. </item>
  335. <item>
  336. <widget class="QStackedWidget" name="dialogStack">
  337. <property name="currentIndex">
  338. <number>0</number>
  339. </property>
  340. <widget class="QWidget" name="WelcomePage">
  341. <layout class="QVBoxLayout" name="WelcomeVerticalLayout">
  342. <item>
  343. <widget class="QLabel" name="welcomeScreenTitle">
  344. <property name="font">
  345. <font>
  346. <pointsize>10</pointsize>
  347. <weight>75</weight>
  348. <bold>true</bold>
  349. </font>
  350. </property>
  351. <property name="text">
  352. <string># Welcome to the O3DE Asset Processor</string>
  353. </property>
  354. <property name="textFormat">
  355. <enum>Qt::MarkdownText</enum>
  356. </property>
  357. </widget>
  358. </item>
  359. <item>
  360. <widget class="QLabel" name="WelcomeDescriptionLabel1">
  361. <property name="text">
  362. <string>This tool converts an O3DE project's source assets to runtime ready content.</string>
  363. </property>
  364. </widget>
  365. </item>
  366. <item>
  367. <widget class="QLabel" name="WelcomeDescriptionLabel2">
  368. <property name="text">
  369. <string>You can read more about the Asset Processor &lt;a href=&quot;https://www.o3de.org/docs/user-guide/assets/asset-processor/&quot;&gt;here.&lt;/a&gt;</string>
  370. </property>
  371. <property name="openExternalLinks">
  372. <bool>true</bool>
  373. </property>
  374. <property name="textInteractionFlags">
  375. <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
  376. </property>
  377. </widget>
  378. </item>
  379. <item>
  380. <spacer name="welcomeScreenVerticalSpacer">
  381. <property name="orientation">
  382. <enum>Qt::Vertical</enum>
  383. </property>
  384. <property name="sizeHint" stdset="0">
  385. <size>
  386. <width>16</width>
  387. <height>40</height>
  388. </size>
  389. </property>
  390. </spacer>
  391. </item>
  392. </layout>
  393. </widget>
  394. <widget class="QSplitter" name="jobDialogSplitter">
  395. <property name="orientation">
  396. <enum>Qt::Vertical</enum>
  397. </property>
  398. <property name="childrenCollapsible">
  399. <bool>false</bool>
  400. </property>
  401. <widget class="QWidget" name="assetStatusContainer" native="true">
  402. <layout class="QVBoxLayout" name="verticalLayout_4">
  403. <property name="spacing">
  404. <number>0</number>
  405. </property>
  406. <property name="leftMargin">
  407. <number>0</number>
  408. </property>
  409. <property name="topMargin">
  410. <number>0</number>
  411. </property>
  412. <property name="rightMargin">
  413. <number>0</number>
  414. </property>
  415. <property name="bottomMargin">
  416. <number>0</number>
  417. </property>
  418. <item>
  419. <widget class="QLabel" name="assetStatusLabel">
  420. <property name="text">
  421. <string>Asset Status</string>
  422. </property>
  423. </widget>
  424. </item>
  425. <item>
  426. <widget class="AzQtComponents::FilteredSearchWidget" name="jobFilteredSearchWidget" native="true">
  427. <property name="placeholderText" stdset="0">
  428. <string>Filter by keyword or regular expression</string>
  429. </property>
  430. </widget>
  431. </item>
  432. <item>
  433. <widget class="AzQtComponents::TableView" name="jobTreeView">
  434. <property name="minimumSize">
  435. <size>
  436. <width>0</width>
  437. <height>200</height>
  438. </size>
  439. </property>
  440. <property name="contextMenuPolicy">
  441. <enum>Qt::CustomContextMenu</enum>
  442. </property>
  443. <property name="lineWidth">
  444. <number>0</number>
  445. </property>
  446. </widget>
  447. </item>
  448. </layout>
  449. </widget>
  450. <widget class="QWidget" name="jobLogContainer" native="true">
  451. <layout class="QVBoxLayout" name="jobLogLayout">
  452. <property name="spacing">
  453. <number>0</number>
  454. </property>
  455. <property name="leftMargin">
  456. <number>0</number>
  457. </property>
  458. <property name="topMargin">
  459. <number>0</number>
  460. </property>
  461. <property name="rightMargin">
  462. <number>0</number>
  463. </property>
  464. <property name="bottomMargin">
  465. <number>0</number>
  466. </property>
  467. <item>
  468. <widget class="QLabel" name="jobLogLabel">
  469. <property name="text">
  470. <string>Event Log Details</string>
  471. </property>
  472. </widget>
  473. </item>
  474. <item>
  475. <widget class="AzQtComponents::FilteredSearchWidget" name="detailsFilterWidget" native="true">
  476. <property name="placeholderText" stdset="0">
  477. <string>Filter by keyword or regular expression</string>
  478. </property>
  479. </widget>
  480. </item>
  481. <item>
  482. <widget class="QStackedWidget" name="jobLogStackedWidget">
  483. <property name="sizePolicy">
  484. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  485. <horstretch>0</horstretch>
  486. <verstretch>0</verstretch>
  487. </sizepolicy>
  488. </property>
  489. <widget class="AzQtComponents::TableView" name="jobLogTableView">
  490. <property name="sizePolicy">
  491. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  492. <horstretch>0</horstretch>
  493. <verstretch>0</verstretch>
  494. </sizepolicy>
  495. </property>
  496. <property name="contextMenuPolicy">
  497. <enum>Qt::CustomContextMenu</enum>
  498. </property>
  499. </widget>
  500. <widget class="QLabel" name="jobLogPlaceholderLabel">
  501. <property name="sizePolicy">
  502. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  503. <horstretch>0</horstretch>
  504. <verstretch>0</verstretch>
  505. </sizepolicy>
  506. </property>
  507. <property name="text">
  508. <string>No event log details can be shown for unselected rows</string>
  509. </property>
  510. <property name="alignment">
  511. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
  512. </property>
  513. </widget>
  514. </widget>
  515. </item>
  516. </layout>
  517. </widget>
  518. <widget class="QWidget" name="jobContextContainer" native="true">
  519. <layout class="QVBoxLayout" name="jobContextLayout">
  520. <property name="spacing">
  521. <number>0</number>
  522. </property>
  523. <property name="leftMargin">
  524. <number>0</number>
  525. </property>
  526. <property name="topMargin">
  527. <number>0</number>
  528. </property>
  529. <property name="rightMargin">
  530. <number>0</number>
  531. </property>
  532. <property name="bottomMargin">
  533. <number>0</number>
  534. </property>
  535. <item>
  536. <widget class="QLabel" name="jobContextLogLabel">
  537. <property name="sizePolicy">
  538. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  539. <horstretch>0</horstretch>
  540. <verstretch>0</verstretch>
  541. </sizepolicy>
  542. </property>
  543. <property name="text">
  544. <string>Event Log Line Details</string>
  545. </property>
  546. </widget>
  547. </item>
  548. <item>
  549. <widget class="AzQtComponents::TableView" name="jobContextLogTableView">
  550. <property name="sizePolicy">
  551. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  552. <horstretch>0</horstretch>
  553. <verstretch>0</verstretch>
  554. </sizepolicy>
  555. </property>
  556. <property name="contextMenuPolicy">
  557. <enum>Qt::CustomContextMenu</enum>
  558. </property>
  559. <attribute name="headerVisible">
  560. <bool>false</bool>
  561. </attribute>
  562. </widget>
  563. </item>
  564. </layout>
  565. </widget>
  566. </widget>
  567. <widget class="QSplitter" name="assetDetailsDialogSplitter">
  568. <property name="orientation">
  569. <enum>Qt::Horizontal</enum>
  570. </property>
  571. <property name="childrenCollapsible">
  572. <bool>false</bool>
  573. </property>
  574. <widget class="QWidget" name="AssetDetailsLeftLayout">
  575. <layout class="QVBoxLayout" name="assetDetailsVerticalLayout1">
  576. <item>
  577. <widget class="AzQtComponents::FilteredSearchWidget" name="assetDataFilteredSearchWidget" native="true">
  578. <property name="sizePolicy">
  579. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  580. <horstretch>0</horstretch>
  581. <verstretch>0</verstretch>
  582. </sizepolicy>
  583. </property>
  584. <property name="minimumSize">
  585. <size>
  586. <width>0</width>
  587. <height>24</height>
  588. </size>
  589. </property>
  590. <property name="placeholderText" stdset="0">
  591. <string>Search for assets by name or ID</string>
  592. </property>
  593. </widget>
  594. </item>
  595. <item>
  596. <widget class="QTabWidget" name="assetsTabWidget">
  597. <property name="currentIndex">
  598. <number>0</number>
  599. </property>
  600. <widget class="QWidget" name="SourceAssetsTab">
  601. <attribute name="title">
  602. <string>Source Assets</string>
  603. </attribute>
  604. <layout class="QVBoxLayout" name="SourceAssetsVerticalLayout" stretch="0">
  605. <item>
  606. <widget class="QTreeView" name="SourceAssetsTreeView">
  607. <property name="editTriggers">
  608. <set>QAbstractItemView::NoEditTriggers</set>
  609. </property>
  610. <property name="sortingEnabled">
  611. <bool>true</bool>
  612. </property>
  613. <attribute name="headerDefaultSectionSize">
  614. <number>300</number>
  615. </attribute>
  616. </widget>
  617. </item>
  618. </layout>
  619. </widget>
  620. <widget class="QWidget" name="IntermediateAssetsTab">
  621. <attribute name="title">
  622. <string>Intermediate Assets</string>
  623. </attribute>
  624. <layout class="QVBoxLayout" name="IntermediateAssetsVerticalLayout" stretch="0">
  625. <item>
  626. <widget class="QTreeView" name="IntermediateAssetsTreeView">
  627. <property name="editTriggers">
  628. <set>QAbstractItemView::NoEditTriggers</set>
  629. </property>
  630. <property name="sortingEnabled">
  631. <bool>true</bool>
  632. </property>
  633. <attribute name="headerDefaultSectionSize">
  634. <number>300</number>
  635. </attribute>
  636. </widget>
  637. </item>
  638. </layout>
  639. </widget>
  640. <widget class="QWidget" name="ProductAssetsTab">
  641. <attribute name="title">
  642. <string>Product Assets</string>
  643. </attribute>
  644. <layout class="QVBoxLayout" name="ProductAssetsVerticalLayout" stretch="0">
  645. <item>
  646. <widget class="QTreeView" name="ProductAssetsTreeView">
  647. <property name="sortingEnabled">
  648. <bool>true</bool>
  649. </property>
  650. <attribute name="headerDefaultSectionSize">
  651. <number>300</number>
  652. </attribute>
  653. </widget>
  654. </item>
  655. </layout>
  656. </widget>
  657. </widget>
  658. </item>
  659. </layout>
  660. </widget>
  661. <widget class="QWidget" name="AssetDetailsRightLayout">
  662. <layout class="QVBoxLayout" name="assetDetailsVerticalLayout2">
  663. <item>
  664. <widget class="AssetProcessor::SourceAssetDetailsPanel" name="sourceAssetDetailsPanel"/>
  665. </item>
  666. <item>
  667. <widget class="AssetProcessor::SourceAssetDetailsPanel" name="intermediateAssetDetailsPanel">
  668. <property name="visible">
  669. <bool>false</bool>
  670. </property>
  671. </widget>
  672. </item>
  673. <item>
  674. <widget class="AssetProcessor::ProductAssetDetailsPanel" name="productAssetDetailsPanel">
  675. <property name="visible">
  676. <bool>false</bool>
  677. </property>
  678. </widget>
  679. </item>
  680. <item>
  681. <widget class="QListWidget" name="missingDependencyScanResults">
  682. <property name="sizePolicy">
  683. <sizepolicy hsizetype="Expanding" vsizetype="Maximum">
  684. <horstretch>0</horstretch>
  685. <verstretch>0</verstretch>
  686. </sizepolicy>
  687. </property>
  688. <property name="minimumSize">
  689. <size>
  690. <width>0</width>
  691. <height>0</height>
  692. </size>
  693. </property>
  694. <property name="maximumSize">
  695. <size>
  696. <width>16777215</width>
  697. <height>72</height>
  698. </size>
  699. </property>
  700. <property name="editTriggers">
  701. <set>QAbstractItemView::NoEditTriggers</set>
  702. </property>
  703. <property name="tabKeyNavigation">
  704. <bool>true</bool>
  705. </property>
  706. <property name="showDropIndicator" stdset="0">
  707. <bool>false</bool>
  708. </property>
  709. <property name="defaultDropAction">
  710. <enum>Qt::IgnoreAction</enum>
  711. </property>
  712. <property name="alternatingRowColors">
  713. <bool>true</bool>
  714. </property>
  715. </widget>
  716. </item>
  717. </layout>
  718. </widget>
  719. </widget>
  720. <widget class="QWidget" name="LogDialog">
  721. <layout class="QVBoxLayout" name="verticalLayout_6">
  722. <property name="spacing">
  723. <number>0</number>
  724. </property>
  725. <property name="leftMargin">
  726. <number>0</number>
  727. </property>
  728. <property name="topMargin">
  729. <number>0</number>
  730. </property>
  731. <property name="rightMargin">
  732. <number>0</number>
  733. </property>
  734. <property name="bottomMargin">
  735. <number>0</number>
  736. </property>
  737. <item>
  738. <widget class="QLabel" name="logTitleLabel">
  739. <property name="text">
  740. <string>Logs</string>
  741. </property>
  742. </widget>
  743. </item>
  744. <item>
  745. <widget class="AssetProcessor::LogPanel" name="LoggingPanel" native="true">
  746. <property name="sizePolicy">
  747. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  748. <horstretch>0</horstretch>
  749. <verstretch>0</verstretch>
  750. </sizepolicy>
  751. </property>
  752. </widget>
  753. </item>
  754. <item>
  755. <widget class="QFrame" name="logButtonWrapper">
  756. <layout class="QVBoxLayout" name="logButtonWrapperLayout">
  757. <property name="spacing">
  758. <number>0</number>
  759. </property>
  760. <property name="leftMargin">
  761. <number>0</number>
  762. </property>
  763. <property name="topMargin">
  764. <number>0</number>
  765. </property>
  766. <property name="rightMargin">
  767. <number>0</number>
  768. </property>
  769. <property name="bottomMargin">
  770. <number>0</number>
  771. </property>
  772. <item>
  773. <widget class="QPushButton" name="logButton">
  774. <property name="sizePolicy">
  775. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  776. <horstretch>0</horstretch>
  777. <verstretch>0</verstretch>
  778. </sizepolicy>
  779. </property>
  780. <property name="text">
  781. <string>Open log files</string>
  782. </property>
  783. </widget>
  784. </item>
  785. </layout>
  786. </widget>
  787. </item>
  788. </layout>
  789. </widget>
  790. <widget class="QWidget" name="connectionsDialog">
  791. <layout class="QVBoxLayout" name="verticalLayout_5">
  792. <property name="spacing">
  793. <number>6</number>
  794. </property>
  795. <property name="leftMargin">
  796. <number>0</number>
  797. </property>
  798. <property name="topMargin">
  799. <number>0</number>
  800. </property>
  801. <property name="rightMargin">
  802. <number>0</number>
  803. </property>
  804. <property name="bottomMargin">
  805. <number>0</number>
  806. </property>
  807. <item>
  808. <widget class="QWidget" name="connectHeader" native="true">
  809. <property name="sizePolicy">
  810. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  811. <horstretch>0</horstretch>
  812. <verstretch>0</verstretch>
  813. </sizepolicy>
  814. </property>
  815. <property name="minimumSize">
  816. <size>
  817. <width>0</width>
  818. <height>0</height>
  819. </size>
  820. </property>
  821. <property name="maximumSize">
  822. <size>
  823. <width>16777215</width>
  824. <height>75</height>
  825. </size>
  826. </property>
  827. <property name="styleSheet">
  828. <string notr="true"/>
  829. </property>
  830. <layout class="QHBoxLayout" name="horizontalLayout_5">
  831. <property name="leftMargin">
  832. <number>0</number>
  833. </property>
  834. <property name="topMargin">
  835. <number>0</number>
  836. </property>
  837. <property name="rightMargin">
  838. <number>0</number>
  839. </property>
  840. <property name="bottomMargin">
  841. <number>0</number>
  842. </property>
  843. <item>
  844. <widget class="QLabel" name="activeConnectionsLabel">
  845. <property name="text">
  846. <string>Active Connections</string>
  847. </property>
  848. </widget>
  849. </item>
  850. <item>
  851. <spacer name="horizontalSpacer">
  852. <property name="orientation">
  853. <enum>Qt::Horizontal</enum>
  854. </property>
  855. <property name="sizeHint" stdset="0">
  856. <size>
  857. <width>479</width>
  858. <height>20</height>
  859. </size>
  860. </property>
  861. </spacer>
  862. </item>
  863. <item>
  864. <widget class="QPushButton" name="editConnectionButton">
  865. <property name="text">
  866. <string>Edit Connection</string>
  867. </property>
  868. </widget>
  869. </item>
  870. <item>
  871. <widget class="QPushButton" name="addConnectionButton">
  872. <property name="text">
  873. <string>Add Connection</string>
  874. </property>
  875. </widget>
  876. </item>
  877. <item>
  878. <widget class="QPushButton" name="removeConnectionButton">
  879. <property name="text">
  880. <string>Remove Connection</string>
  881. </property>
  882. </widget>
  883. </item>
  884. </layout>
  885. </widget>
  886. </item>
  887. <item>
  888. <widget class="AzQtComponents::TableView" name="connectionTreeView"/>
  889. </item>
  890. <item>
  891. <widget class="QFrame" name="allowedListOuterFrame">
  892. <property name="frameShape">
  893. <enum>QFrame::StyledPanel</enum>
  894. </property>
  895. <layout class="QVBoxLayout" name="allowedListVerticalLayout">
  896. <property name="spacing">
  897. <number>0</number>
  898. </property>
  899. <property name="leftMargin">
  900. <number>0</number>
  901. </property>
  902. <property name="topMargin">
  903. <number>0</number>
  904. </property>
  905. <property name="rightMargin">
  906. <number>0</number>
  907. </property>
  908. <property name="bottomMargin">
  909. <number>0</number>
  910. </property>
  911. <item>
  912. <widget class="QWidget" name="allowedListTopBarWidget" native="true">
  913. <layout class="QHBoxLayout" name="allowedListHorizontalBar">
  914. <property name="spacing">
  915. <number>6</number>
  916. </property>
  917. <property name="leftMargin">
  918. <number>4</number>
  919. </property>
  920. <property name="topMargin">
  921. <number>4</number>
  922. </property>
  923. <property name="rightMargin">
  924. <number>4</number>
  925. </property>
  926. <property name="bottomMargin">
  927. <number>4</number>
  928. </property>
  929. <item>
  930. <widget class="QCheckBox" name="allowedListEnableCheckBox">
  931. <property name="toolTip">
  932. <string>Enable or Disable allowed listing. Allowed listing is a security feature which limits what can connect to the asset processor.</string>
  933. </property>
  934. <property name="text">
  935. <string>Enable allowed listing</string>
  936. </property>
  937. <property name="checked">
  938. <bool>true</bool>
  939. </property>
  940. </widget>
  941. </item>
  942. <item>
  943. <spacer name="allowedListBarSpacer">
  944. <property name="orientation">
  945. <enum>Qt::Horizontal</enum>
  946. </property>
  947. <property name="sizeHint" stdset="0">
  948. <size>
  949. <width>40</width>
  950. <height>20</height>
  951. </size>
  952. </property>
  953. </spacer>
  954. </item>
  955. <item>
  956. <widget class="Line" name="allowedListSeparatorLine">
  957. <property name="orientation">
  958. <enum>Qt::Horizontal</enum>
  959. </property>
  960. </widget>
  961. </item>
  962. </layout>
  963. </widget>
  964. </item>
  965. <item>
  966. <widget class="QWidget" name="allowedListBottomBarWidget" native="true">
  967. <layout class="QHBoxLayout" name="allowedListHorizontalBar2">
  968. <property name="leftMargin">
  969. <number>4</number>
  970. </property>
  971. <property name="topMargin">
  972. <number>4</number>
  973. </property>
  974. <property name="rightMargin">
  975. <number>4</number>
  976. </property>
  977. <property name="bottomMargin">
  978. <number>4</number>
  979. </property>
  980. <item>
  981. <widget class="QLabel" name="allowedListAddHostNameLabel">
  982. <property name="toolTip">
  983. <string>Allowed list a hostname. EX. MyComputer321</string>
  984. </property>
  985. <property name="text">
  986. <string>Add Host Name</string>
  987. </property>
  988. </widget>
  989. </item>
  990. <item>
  991. <widget class="QLineEdit" name="allowedListAddHostNameLineEdit"/>
  992. </item>
  993. <item>
  994. <widget class="QToolButton" name="allowedListAddHostNameToolButton">
  995. <property name="toolTip">
  996. <string>Add the hostname to the allowed list.</string>
  997. </property>
  998. <property name="text">
  999. <string/>
  1000. </property>
  1001. <property name="icon">
  1002. <iconset resource="style/AssetProcessor.qrc">
  1003. <normaloff>:/AssetProcessor_plus.svg</normaloff>:/AssetProcessor_plus.svg</iconset>
  1004. </property>
  1005. <property name="autoRaise">
  1006. <bool>true</bool>
  1007. </property>
  1008. </widget>
  1009. </item>
  1010. <item>
  1011. <spacer name="allowedListHorizontalBar2Spacer">
  1012. <property name="orientation">
  1013. <enum>Qt::Horizontal</enum>
  1014. </property>
  1015. <property name="sizeHint" stdset="0">
  1016. <size>
  1017. <width>40</width>
  1018. <height>20</height>
  1019. </size>
  1020. </property>
  1021. </spacer>
  1022. </item>
  1023. <item>
  1024. <widget class="QLabel" name="allowedListAddIPLabel">
  1025. <property name="toolTip">
  1026. <string>Allowed list an ipv4 or ipv6 address with or without a CIDR range. EX. 192.168.0.20 or 192.168.0.0/24 or 2001:db8:85a3:8d3:1319:8a2e:370:7348 or 2001:db8:85a3:8d3:1319:8a2e:370:7348/32</string>
  1027. </property>
  1028. <property name="text">
  1029. <string>Add IP Address</string>
  1030. </property>
  1031. </widget>
  1032. </item>
  1033. <item>
  1034. <widget class="QLineEdit" name="allowedListAddIPLineEdit"/>
  1035. </item>
  1036. <item>
  1037. <widget class="QToolButton" name="allowedListAddIPToolButton">
  1038. <property name="toolTip">
  1039. <string>Add the ip address to the allowed list.</string>
  1040. </property>
  1041. <property name="text">
  1042. <string/>
  1043. </property>
  1044. <property name="icon">
  1045. <iconset resource="style/AssetProcessor.qrc">
  1046. <normaloff>:/AssetProcessor_plus.svg</normaloff>:/AssetProcessor_plus.svg</iconset>
  1047. </property>
  1048. <property name="autoRaise">
  1049. <bool>true</bool>
  1050. </property>
  1051. </widget>
  1052. </item>
  1053. </layout>
  1054. </widget>
  1055. </item>
  1056. <item>
  1057. <layout class="QHBoxLayout" name="allowedListHorizontalBar3">
  1058. <item>
  1059. <widget class="Line" name="allowedListLine">
  1060. <property name="orientation">
  1061. <enum>Qt::Horizontal</enum>
  1062. </property>
  1063. </widget>
  1064. </item>
  1065. </layout>
  1066. </item>
  1067. <item>
  1068. <layout class="QHBoxLayout" name="allowedListHorizontalLabelsLayout">
  1069. <property name="leftMargin">
  1070. <number>4</number>
  1071. </property>
  1072. <item>
  1073. <widget class="QLabel" name="allowedListAllowedListedConnnectionListLabel">
  1074. <property name="toolTip">
  1075. <string>Allowed listed connection are addresses, ranges and name that will be allowed to connect to the asset processor.</string>
  1076. </property>
  1077. <property name="text">
  1078. <string>Allowed Listed Connections</string>
  1079. </property>
  1080. </widget>
  1081. </item>
  1082. <item>
  1083. <spacer name="allowedListHorizontalLabelSpacer1">
  1084. <property name="orientation">
  1085. <enum>Qt::Horizontal</enum>
  1086. </property>
  1087. <property name="sizeHint" stdset="0">
  1088. <size>
  1089. <width>0</width>
  1090. <height>0</height>
  1091. </size>
  1092. </property>
  1093. </spacer>
  1094. </item>
  1095. <item>
  1096. <widget class="QLabel" name="allowedListRejectedConnectionListLabel">
  1097. <property name="toolTip">
  1098. <string>Rejected connections are addresses that failed to connect to the asset processor.</string>
  1099. </property>
  1100. <property name="text">
  1101. <string> Rejected Connections</string>
  1102. </property>
  1103. </widget>
  1104. </item>
  1105. <item>
  1106. <spacer name="allowedListHorizontalLabelSpacer2">
  1107. <property name="orientation">
  1108. <enum>Qt::Horizontal</enum>
  1109. </property>
  1110. <property name="sizeHint" stdset="0">
  1111. <size>
  1112. <width>40</width>
  1113. <height>20</height>
  1114. </size>
  1115. </property>
  1116. </spacer>
  1117. </item>
  1118. </layout>
  1119. </item>
  1120. <item>
  1121. <layout class="QHBoxLayout" name="allowedListHorizontalViewsLayout">
  1122. <property name="spacing">
  1123. <number>9</number>
  1124. </property>
  1125. <property name="leftMargin">
  1126. <number>4</number>
  1127. </property>
  1128. <property name="topMargin">
  1129. <number>2</number>
  1130. </property>
  1131. <property name="rightMargin">
  1132. <number>4</number>
  1133. </property>
  1134. <property name="bottomMargin">
  1135. <number>4</number>
  1136. </property>
  1137. <item>
  1138. <widget class="QListView" name="allowListAllowedListConnectionsListView">
  1139. <property name="showDropIndicator" stdset="0">
  1140. <bool>false</bool>
  1141. </property>
  1142. </widget>
  1143. </item>
  1144. <item>
  1145. <layout class="QVBoxLayout" name="allowedListButtonVerticalLayout">
  1146. <item>
  1147. <spacer name="allowedListVerticalSpacer1">
  1148. <property name="orientation">
  1149. <enum>Qt::Vertical</enum>
  1150. </property>
  1151. <property name="sizeHint" stdset="0">
  1152. <size>
  1153. <width>20</width>
  1154. <height>40</height>
  1155. </size>
  1156. </property>
  1157. </spacer>
  1158. </item>
  1159. <item>
  1160. <widget class="QToolButton" name="allowedListToAllowedListToolButton">
  1161. <property name="toolTip">
  1162. <string>Move a entry from rejected to the allowed list.</string>
  1163. </property>
  1164. <property name="text">
  1165. <string/>
  1166. </property>
  1167. <property name="icon">
  1168. <iconset resource="style/AssetProcessor.qrc">
  1169. <normaloff>:/AssetProcessor_arrow_left.svg</normaloff>:/AssetProcessor_arrow_left.svg</iconset>
  1170. </property>
  1171. <property name="autoRaise">
  1172. <bool>true</bool>
  1173. </property>
  1174. </widget>
  1175. </item>
  1176. <item>
  1177. <widget class="QToolButton" name="allowedListToRejectedListToolButton">
  1178. <property name="toolTip">
  1179. <string>Remove an entry from the whtie list.</string>
  1180. </property>
  1181. <property name="text">
  1182. <string/>
  1183. </property>
  1184. <property name="icon">
  1185. <iconset resource="style/AssetProcessor.qrc">
  1186. <normaloff>:/AssetProcessor_arrow_right.svg</normaloff>:/AssetProcessor_arrow_right.svg</iconset>
  1187. </property>
  1188. <property name="autoRaise">
  1189. <bool>true</bool>
  1190. </property>
  1191. </widget>
  1192. </item>
  1193. <item>
  1194. <spacer name="allowedListVerticalSpacer2">
  1195. <property name="orientation">
  1196. <enum>Qt::Vertical</enum>
  1197. </property>
  1198. <property name="sizeHint" stdset="0">
  1199. <size>
  1200. <width>20</width>
  1201. <height>40</height>
  1202. </size>
  1203. </property>
  1204. </spacer>
  1205. </item>
  1206. </layout>
  1207. </item>
  1208. <item>
  1209. <widget class="QListView" name="allowedListRejectedConnectionsListView">
  1210. <property name="showDropIndicator" stdset="0">
  1211. <bool>false</bool>
  1212. </property>
  1213. </widget>
  1214. </item>
  1215. </layout>
  1216. </item>
  1217. </layout>
  1218. </widget>
  1219. </item>
  1220. </layout>
  1221. </widget>
  1222. <widget class="QWidget" name="BuildersPage">
  1223. <layout class="QVBoxLayout" name="BuildersPageVerticalLayout">
  1224. <property name="spacing">
  1225. <number>6</number>
  1226. </property>
  1227. <property name="leftMargin">
  1228. <number>0</number>
  1229. </property>
  1230. <property name="topMargin">
  1231. <number>0</number>
  1232. </property>
  1233. <property name="rightMargin">
  1234. <number>0</number>
  1235. </property>
  1236. <property name="bottomMargin">
  1237. <number>0</number>
  1238. </property>
  1239. <item>
  1240. <widget class="QLabel" name="buildersPageDescription">
  1241. <property name="sizePolicy">
  1242. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  1243. <horstretch>0</horstretch>
  1244. <verstretch>0</verstretch>
  1245. </sizepolicy>
  1246. </property>
  1247. <property name="maximumSize">
  1248. <size>
  1249. <width>16777215</width>
  1250. <height>50</height>
  1251. </size>
  1252. </property>
  1253. <property name="text">
  1254. <string>Below is a list of all builders loaded by Asset Processor. Builders are used by the asset processor to transform source assets into product assets. Builders are mostly defined in C++, and the source for them can be in Gems, the engine, or your project. If a builder is missing from the list, make sure the owning gem is enabled and the component is activated. &lt;a href=&quot;https://www.o3de.org/docs/user-guide/assets/pipeline/asset-builders/&quot;&gt;Click here&lt;/a&gt; for documentation on creating a builder.</string>
  1255. </property>
  1256. <property name="alignment">
  1257. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1258. </property>
  1259. <property name="wordWrap">
  1260. <bool>true</bool>
  1261. </property>
  1262. <property name="openExternalLinks">
  1263. <bool>true</bool>
  1264. </property>
  1265. <property name="textInteractionFlags">
  1266. <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
  1267. </property>
  1268. </widget>
  1269. </item>
  1270. <item>
  1271. <widget class="QSplitter" name="buildersPageSplitter">
  1272. <property name="sizePolicy">
  1273. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  1274. <horstretch>0</horstretch>
  1275. <verstretch>0</verstretch>
  1276. </sizepolicy>
  1277. </property>
  1278. <property name="orientation">
  1279. <enum>Qt::Horizontal</enum>
  1280. </property>
  1281. <widget class="QListView" name="builderList">
  1282. <property name="sizePolicy">
  1283. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  1284. <horstretch>2</horstretch>
  1285. <verstretch>0</verstretch>
  1286. </sizepolicy>
  1287. </property>
  1288. <property name="alternatingRowColors">
  1289. <bool>true</bool>
  1290. </property>
  1291. </widget>
  1292. <widget class="QWidget" name="builderInfo" native="true">
  1293. <property name="sizePolicy">
  1294. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  1295. <horstretch>3</horstretch>
  1296. <verstretch>0</verstretch>
  1297. </sizepolicy>
  1298. </property>
  1299. <layout class="QVBoxLayout" name="builderInfoLayout" stretch="0,0">
  1300. <property name="leftMargin">
  1301. <number>0</number>
  1302. </property>
  1303. <property name="topMargin">
  1304. <number>0</number>
  1305. </property>
  1306. <property name="rightMargin">
  1307. <number>0</number>
  1308. </property>
  1309. <property name="bottomMargin">
  1310. <number>0</number>
  1311. </property>
  1312. <item>
  1313. <layout class="QGridLayout" name="builderInfoHeader" columnstretch="1,4">
  1314. <item row="0" column="1">
  1315. <widget class="QLabel" name="builderInfoHeaderValueName">
  1316. <property name="text">
  1317. <string/>
  1318. </property>
  1319. <property name="wordWrap">
  1320. <bool>true</bool>
  1321. </property>
  1322. </widget>
  1323. </item>
  1324. <item row="0" column="0">
  1325. <widget class="QLabel" name="builderInfoHeaderTitleName">
  1326. <property name="font">
  1327. <font>
  1328. <weight>75</weight>
  1329. <italic>false</italic>
  1330. <bold>true</bold>
  1331. </font>
  1332. </property>
  1333. <property name="styleSheet">
  1334. <string notr="true">font: bold;</string>
  1335. </property>
  1336. <property name="text">
  1337. <string>Name</string>
  1338. </property>
  1339. <property name="wordWrap">
  1340. <bool>true</bool>
  1341. </property>
  1342. </widget>
  1343. </item>
  1344. </layout>
  1345. </item>
  1346. <item>
  1347. <widget class="QTabWidget" name="builderInfoTabWidget">
  1348. <property name="currentIndex">
  1349. <number>0</number>
  1350. </property>
  1351. <widget class="QWidget" name="builderInfoPatternsTab">
  1352. <attribute name="title">
  1353. <string>Patterns</string>
  1354. </attribute>
  1355. <layout class="QVBoxLayout" name="verticalLayout_2">
  1356. <item>
  1357. <widget class="AzQtComponents::TableView" name="builderInfoPatternsTableView">
  1358. <property name="indentation">
  1359. <number>0</number>
  1360. </property>
  1361. <property name="itemsExpandable">
  1362. <bool>false</bool>
  1363. </property>
  1364. <property name="sortingEnabled">
  1365. <bool>true</bool>
  1366. </property>
  1367. <property name="expandsOnDoubleClick">
  1368. <bool>false</bool>
  1369. </property>
  1370. <attribute name="headerShowSortIndicator" stdset="0">
  1371. <bool>false</bool>
  1372. </attribute>
  1373. </widget>
  1374. </item>
  1375. </layout>
  1376. </widget>
  1377. <widget class="QWidget" name="builderInfoDetailsTab">
  1378. <attribute name="title">
  1379. <string>Details</string>
  1380. </attribute>
  1381. <layout class="QGridLayout" name="builderInfoDetails" columnstretch="1,3">
  1382. <item row="2" column="0">
  1383. <widget class="QLabel" name="builderInfoDetailsTitleVersionNumber">
  1384. <property name="font">
  1385. <font>
  1386. <weight>75</weight>
  1387. <italic>false</italic>
  1388. <bold>true</bold>
  1389. </font>
  1390. </property>
  1391. <property name="styleSheet">
  1392. <string notr="true">font: bold;</string>
  1393. </property>
  1394. <property name="text">
  1395. <string>Version Number</string>
  1396. </property>
  1397. <property name="wordWrap">
  1398. <bool>true</bool>
  1399. </property>
  1400. </widget>
  1401. </item>
  1402. <item row="0" column="1">
  1403. <widget class="QLabel" name="builderInfoDetailsValueType">
  1404. <property name="text">
  1405. <string/>
  1406. </property>
  1407. <property name="wordWrap">
  1408. <bool>true</bool>
  1409. </property>
  1410. </widget>
  1411. </item>
  1412. <item row="1" column="0">
  1413. <widget class="QLabel" name="builderInfoDetailsTitleFingerprint">
  1414. <property name="font">
  1415. <font>
  1416. <weight>75</weight>
  1417. <italic>false</italic>
  1418. <bold>true</bold>
  1419. </font>
  1420. </property>
  1421. <property name="styleSheet">
  1422. <string notr="true">font: bold;</string>
  1423. </property>
  1424. <property name="text">
  1425. <string>Fingerprint</string>
  1426. </property>
  1427. <property name="wordWrap">
  1428. <bool>true</bool>
  1429. </property>
  1430. </widget>
  1431. </item>
  1432. <item row="0" column="0">
  1433. <widget class="QLabel" name="builderInfoDetailsTitleType">
  1434. <property name="font">
  1435. <font>
  1436. <weight>75</weight>
  1437. <italic>false</italic>
  1438. <bold>true</bold>
  1439. </font>
  1440. </property>
  1441. <property name="styleSheet">
  1442. <string notr="true">font: bold;</string>
  1443. </property>
  1444. <property name="text">
  1445. <string>Type</string>
  1446. </property>
  1447. <property name="wordWrap">
  1448. <bool>true</bool>
  1449. </property>
  1450. </widget>
  1451. </item>
  1452. <item row="3" column="0">
  1453. <widget class="QLabel" name="builderInfoDetailsTitleBusId">
  1454. <property name="font">
  1455. <font>
  1456. <weight>75</weight>
  1457. <italic>false</italic>
  1458. <bold>true</bold>
  1459. </font>
  1460. </property>
  1461. <property name="styleSheet">
  1462. <string notr="true">font: bold;</string>
  1463. </property>
  1464. <property name="text">
  1465. <string>BusID</string>
  1466. </property>
  1467. <property name="wordWrap">
  1468. <bool>true</bool>
  1469. </property>
  1470. </widget>
  1471. </item>
  1472. <item row="1" column="1">
  1473. <widget class="QLabel" name="builderInfoDetailsValueFingerprint">
  1474. <property name="text">
  1475. <string/>
  1476. </property>
  1477. <property name="wordWrap">
  1478. <bool>true</bool>
  1479. </property>
  1480. </widget>
  1481. </item>
  1482. <item row="2" column="1">
  1483. <widget class="QLabel" name="builderInfoDetailsValueVersionNumber">
  1484. <property name="text">
  1485. <string/>
  1486. </property>
  1487. <property name="wordWrap">
  1488. <bool>true</bool>
  1489. </property>
  1490. </widget>
  1491. </item>
  1492. <item row="3" column="1">
  1493. <widget class="QLabel" name="builderInfoDetailsValueBusId">
  1494. <property name="text">
  1495. <string/>
  1496. </property>
  1497. <property name="wordWrap">
  1498. <bool>true</bool>
  1499. </property>
  1500. </widget>
  1501. </item>
  1502. <item row="4" column="0">
  1503. <spacer name="builderInfoDetailsSpacer">
  1504. <property name="orientation">
  1505. <enum>Qt::Vertical</enum>
  1506. </property>
  1507. <property name="sizeHint" stdset="0">
  1508. <size>
  1509. <width>16</width>
  1510. <height>40</height>
  1511. </size>
  1512. </property>
  1513. </spacer>
  1514. </item>
  1515. </layout>
  1516. </widget>
  1517. <widget class="QWidget" name="builderInfoMetricsTab">
  1518. <attribute name="title">
  1519. <string>Metrics</string>
  1520. </attribute>
  1521. <layout class="QVBoxLayout" name="verticalLayout_7">
  1522. <item>
  1523. <widget class="AzQtComponents::TableView" name="builderInfoMetricsTreeView">
  1524. <property name="sortingEnabled">
  1525. <bool>true</bool>
  1526. </property>
  1527. </widget>
  1528. </item>
  1529. </layout>
  1530. </widget>
  1531. </widget>
  1532. </item>
  1533. </layout>
  1534. </widget>
  1535. </widget>
  1536. </item>
  1537. </layout>
  1538. </widget>
  1539. <widget class="QWidget" name="SettingsPage">
  1540. <layout class="QVBoxLayout" name="verticalLayout">
  1541. <item>
  1542. <layout class="QVBoxLayout" name="fullScanLayout">
  1543. <item>
  1544. <layout class="QHBoxLayout" name="fullScanHeaderLayout">
  1545. <item>
  1546. <widget class="QLabel" name="fullScanHeader">
  1547. <property name="minimumSize">
  1548. <size>
  1549. <width>170</width>
  1550. <height>0</height>
  1551. </size>
  1552. </property>
  1553. <property name="font">
  1554. <font>
  1555. <pointsize>12</pointsize>
  1556. </font>
  1557. </property>
  1558. <property name="text">
  1559. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Full Scan&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1560. </property>
  1561. <property name="wordWrap">
  1562. <bool>true</bool>
  1563. </property>
  1564. </widget>
  1565. </item>
  1566. <item>
  1567. <spacer name="horizontalSpacer_3">
  1568. <property name="orientation">
  1569. <enum>Qt::Horizontal</enum>
  1570. </property>
  1571. <property name="sizeType">
  1572. <enum>QSizePolicy::Fixed</enum>
  1573. </property>
  1574. <property name="sizeHint" stdset="0">
  1575. <size>
  1576. <width>20</width>
  1577. <height>20</height>
  1578. </size>
  1579. </property>
  1580. </spacer>
  1581. </item>
  1582. <item>
  1583. <widget class="QPushButton" name="fullScanButton">
  1584. <property name="sizePolicy">
  1585. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  1586. <horstretch>0</horstretch>
  1587. <verstretch>0</verstretch>
  1588. </sizepolicy>
  1589. </property>
  1590. <property name="minimumSize">
  1591. <size>
  1592. <width>100</width>
  1593. <height>0</height>
  1594. </size>
  1595. </property>
  1596. <property name="text">
  1597. <string>Start Scan</string>
  1598. </property>
  1599. </widget>
  1600. </item>
  1601. <item>
  1602. <spacer name="horizontalSpacer_4">
  1603. <property name="orientation">
  1604. <enum>Qt::Horizontal</enum>
  1605. </property>
  1606. <property name="sizeHint" stdset="0">
  1607. <size>
  1608. <width>40</width>
  1609. <height>20</height>
  1610. </size>
  1611. </property>
  1612. </spacer>
  1613. </item>
  1614. </layout>
  1615. </item>
  1616. <item>
  1617. <widget class="Line" name="line_2">
  1618. <property name="styleSheet">
  1619. <string notr="true">background-color: #616161;</string>
  1620. </property>
  1621. <property name="frameShadow">
  1622. <enum>QFrame::Sunken</enum>
  1623. </property>
  1624. <property name="orientation">
  1625. <enum>Qt::Horizontal</enum>
  1626. </property>
  1627. </widget>
  1628. </item>
  1629. <item>
  1630. <layout class="QHBoxLayout" name="horizontalLayout_12">
  1631. <item>
  1632. <widget class="QLabel" name="fullScanDescriptionText">
  1633. <property name="text">
  1634. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;If you have deleted or modified any assets in the cache folder, you'll need to restore your asset cache by performing a full scan.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1635. </property>
  1636. <property name="scaledContents">
  1637. <bool>false</bool>
  1638. </property>
  1639. <property name="wordWrap">
  1640. <bool>true</bool>
  1641. </property>
  1642. </widget>
  1643. </item>
  1644. <item>
  1645. <spacer name="indentSpacer2">
  1646. <property name="orientation">
  1647. <enum>Qt::Horizontal</enum>
  1648. </property>
  1649. <property name="sizeType">
  1650. <enum>QSizePolicy::Fixed</enum>
  1651. </property>
  1652. <property name="sizeHint" stdset="0">
  1653. <size>
  1654. <width>20</width>
  1655. <height>20</height>
  1656. </size>
  1657. </property>
  1658. </spacer>
  1659. </item>
  1660. </layout>
  1661. </item>
  1662. </layout>
  1663. </item>
  1664. <item>
  1665. <spacer name="gapSpacer1">
  1666. <property name="orientation">
  1667. <enum>Qt::Vertical</enum>
  1668. </property>
  1669. <property name="sizeType">
  1670. <enum>QSizePolicy::Fixed</enum>
  1671. </property>
  1672. <property name="sizeHint" stdset="0">
  1673. <size>
  1674. <width>16</width>
  1675. <height>16</height>
  1676. </size>
  1677. </property>
  1678. </spacer>
  1679. </item>
  1680. <item>
  1681. <layout class="QVBoxLayout" name="fastScanLayout">
  1682. <item>
  1683. <layout class="QHBoxLayout" name="fastScanHeaderLayout">
  1684. <item>
  1685. <widget class="QLabel" name="fastScanHeader">
  1686. <property name="minimumSize">
  1687. <size>
  1688. <width>170</width>
  1689. <height>0</height>
  1690. </size>
  1691. </property>
  1692. <property name="maximumSize">
  1693. <size>
  1694. <width>16777215</width>
  1695. <height>16777215</height>
  1696. </size>
  1697. </property>
  1698. <property name="font">
  1699. <font>
  1700. <pointsize>12</pointsize>
  1701. </font>
  1702. </property>
  1703. <property name="mouseTracking">
  1704. <bool>true</bool>
  1705. </property>
  1706. <property name="text">
  1707. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Fast Scan&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1708. </property>
  1709. </widget>
  1710. </item>
  1711. <item>
  1712. <spacer name="horizontalSpacer_1">
  1713. <property name="orientation">
  1714. <enum>Qt::Horizontal</enum>
  1715. </property>
  1716. <property name="sizeType">
  1717. <enum>QSizePolicy::Fixed</enum>
  1718. </property>
  1719. <property name="sizeHint" stdset="0">
  1720. <size>
  1721. <width>20</width>
  1722. <height>20</height>
  1723. </size>
  1724. </property>
  1725. </spacer>
  1726. </item>
  1727. <item>
  1728. <widget class="QCheckBox" name="modtimeSkippingCheckBox">
  1729. <property name="sizePolicy">
  1730. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  1731. <horstretch>0</horstretch>
  1732. <verstretch>0</verstretch>
  1733. </sizepolicy>
  1734. </property>
  1735. <property name="minimumSize">
  1736. <size>
  1737. <width>100</width>
  1738. <height>0</height>
  1739. </size>
  1740. </property>
  1741. <property name="text">
  1742. <string/>
  1743. </property>
  1744. </widget>
  1745. </item>
  1746. <item>
  1747. <spacer name="horizontalSpacer_2">
  1748. <property name="orientation">
  1749. <enum>Qt::Horizontal</enum>
  1750. </property>
  1751. <property name="sizeType">
  1752. <enum>QSizePolicy::Expanding</enum>
  1753. </property>
  1754. <property name="sizeHint" stdset="0">
  1755. <size>
  1756. <width>40</width>
  1757. <height>20</height>
  1758. </size>
  1759. </property>
  1760. </spacer>
  1761. </item>
  1762. </layout>
  1763. </item>
  1764. <item>
  1765. <widget class="Line" name="line">
  1766. <property name="styleSheet">
  1767. <string notr="true">background-color: #616161;</string>
  1768. </property>
  1769. <property name="orientation">
  1770. <enum>Qt::Horizontal</enum>
  1771. </property>
  1772. </widget>
  1773. </item>
  1774. <item>
  1775. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1776. <item>
  1777. <widget class="QLabel" name="modtimeSkippingDescription">
  1778. <property name="text">
  1779. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This mode completes the startup scan faster by skipping some steps to check if your assets have been modified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1780. </property>
  1781. <property name="scaledContents">
  1782. <bool>false</bool>
  1783. </property>
  1784. <property name="wordWrap">
  1785. <bool>true</bool>
  1786. </property>
  1787. </widget>
  1788. </item>
  1789. <item>
  1790. <spacer name="indentSpacer1">
  1791. <property name="orientation">
  1792. <enum>Qt::Horizontal</enum>
  1793. </property>
  1794. <property name="sizeType">
  1795. <enum>QSizePolicy::Fixed</enum>
  1796. </property>
  1797. <property name="sizeHint" stdset="0">
  1798. <size>
  1799. <width>20</width>
  1800. <height>20</height>
  1801. </size>
  1802. </property>
  1803. </spacer>
  1804. </item>
  1805. </layout>
  1806. </item>
  1807. </layout>
  1808. </item>
  1809. <item>
  1810. <spacer name="gapSpacer2">
  1811. <property name="orientation">
  1812. <enum>Qt::Vertical</enum>
  1813. </property>
  1814. <property name="sizeType">
  1815. <enum>QSizePolicy::Fixed</enum>
  1816. </property>
  1817. <property name="sizeHint" stdset="0">
  1818. <size>
  1819. <width>16</width>
  1820. <height>16</height>
  1821. </size>
  1822. </property>
  1823. </spacer>
  1824. </item>
  1825. <item>
  1826. <layout class="QVBoxLayout" name="disableStartupScanLayout">
  1827. <item>
  1828. <layout class="QHBoxLayout" name="disableStartupScanHeaderLayout">
  1829. <item>
  1830. <widget class="QLabel" name="disableStartupScanHeader">
  1831. <property name="minimumSize">
  1832. <size>
  1833. <width>170</width>
  1834. <height>0</height>
  1835. </size>
  1836. </property>
  1837. <property name="font">
  1838. <font>
  1839. <pointsize>12</pointsize>
  1840. </font>
  1841. </property>
  1842. <property name="text">
  1843. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Skip Startup Scan&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1844. </property>
  1845. </widget>
  1846. </item>
  1847. <item>
  1848. <spacer name="horizontalSpacer_5">
  1849. <property name="orientation">
  1850. <enum>Qt::Horizontal</enum>
  1851. </property>
  1852. <property name="sizeType">
  1853. <enum>QSizePolicy::Fixed</enum>
  1854. </property>
  1855. <property name="sizeHint" stdset="0">
  1856. <size>
  1857. <width>20</width>
  1858. <height>20</height>
  1859. </size>
  1860. </property>
  1861. </spacer>
  1862. </item>
  1863. <item>
  1864. <widget class="QCheckBox" name="disableStartupScanCheckBox">
  1865. <property name="sizePolicy">
  1866. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  1867. <horstretch>0</horstretch>
  1868. <verstretch>0</verstretch>
  1869. </sizepolicy>
  1870. </property>
  1871. <property name="minimumSize">
  1872. <size>
  1873. <width>100</width>
  1874. <height>0</height>
  1875. </size>
  1876. </property>
  1877. <property name="text">
  1878. <string/>
  1879. </property>
  1880. </widget>
  1881. </item>
  1882. <item>
  1883. <spacer name="horizontalSpacer_6">
  1884. <property name="orientation">
  1885. <enum>Qt::Horizontal</enum>
  1886. </property>
  1887. <property name="sizeHint" stdset="0">
  1888. <size>
  1889. <width>40</width>
  1890. <height>20</height>
  1891. </size>
  1892. </property>
  1893. </spacer>
  1894. </item>
  1895. </layout>
  1896. </item>
  1897. <item>
  1898. <widget class="Line" name="line_3">
  1899. <property name="styleSheet">
  1900. <string notr="true">background-color: #616161;</string>
  1901. </property>
  1902. <property name="orientation">
  1903. <enum>Qt::Horizontal</enum>
  1904. </property>
  1905. </widget>
  1906. </item>
  1907. <item>
  1908. <layout class="QHBoxLayout" name="skipinitialcheck_horizontalLayout">
  1909. <item>
  1910. <widget class="QLabel" name="skipinitialdatabaseDescription">
  1911. <property name="text">
  1912. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This mode skips startup checks for assets modified while AssetProcessor was closed. (Use this mode to improve Editor launch times when assets are not changing. Skipping these startup checks may result in unexpected behavior if assets are modified while Asset Processor is not running).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1913. </property>
  1914. <property name="scaledContents">
  1915. <bool>false</bool>
  1916. </property>
  1917. <property name="wordWrap">
  1918. <bool>true</bool>
  1919. </property>
  1920. </widget>
  1921. </item>
  1922. <item>
  1923. <spacer name="indentSpacer3">
  1924. <property name="orientation">
  1925. <enum>Qt::Horizontal</enum>
  1926. </property>
  1927. <property name="sizeType">
  1928. <enum>QSizePolicy::Fixed</enum>
  1929. </property>
  1930. <property name="sizeHint" stdset="0">
  1931. <size>
  1932. <width>20</width>
  1933. <height>20</height>
  1934. </size>
  1935. </property>
  1936. </spacer>
  1937. </item>
  1938. </layout>
  1939. </item>
  1940. </layout>
  1941. </item>
  1942. <item>
  1943. <spacer name="gapSpacer3">
  1944. <property name="orientation">
  1945. <enum>Qt::Vertical</enum>
  1946. </property>
  1947. <property name="sizeType">
  1948. <enum>QSizePolicy::Fixed</enum>
  1949. </property>
  1950. <property name="sizeHint" stdset="0">
  1951. <size>
  1952. <width>16</width>
  1953. <height>16</height>
  1954. </size>
  1955. </property>
  1956. </spacer>
  1957. </item>
  1958. <item>
  1959. <layout class="QVBoxLayout" name="debugOutputLayout">
  1960. <item>
  1961. <layout class="QHBoxLayout" name="debugOutputHeaderLayout">
  1962. <item>
  1963. <widget class="QLabel" name="debugOutputHeader">
  1964. <property name="minimumSize">
  1965. <size>
  1966. <width>170</width>
  1967. <height>0</height>
  1968. </size>
  1969. </property>
  1970. <property name="baseSize">
  1971. <size>
  1972. <width>0</width>
  1973. <height>0</height>
  1974. </size>
  1975. </property>
  1976. <property name="font">
  1977. <font>
  1978. <pointsize>12</pointsize>
  1979. </font>
  1980. </property>
  1981. <property name="text">
  1982. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Debug Output&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1983. </property>
  1984. </widget>
  1985. </item>
  1986. <item>
  1987. <spacer name="horizontalSpacer_7">
  1988. <property name="orientation">
  1989. <enum>Qt::Horizontal</enum>
  1990. </property>
  1991. <property name="sizeType">
  1992. <enum>QSizePolicy::Fixed</enum>
  1993. </property>
  1994. <property name="sizeHint" stdset="0">
  1995. <size>
  1996. <width>20</width>
  1997. <height>20</height>
  1998. </size>
  1999. </property>
  2000. </spacer>
  2001. </item>
  2002. <item>
  2003. <widget class="QCheckBox" name="debugOutputCheckBox">
  2004. <property name="sizePolicy">
  2005. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  2006. <horstretch>0</horstretch>
  2007. <verstretch>0</verstretch>
  2008. </sizepolicy>
  2009. </property>
  2010. <property name="minimumSize">
  2011. <size>
  2012. <width>100</width>
  2013. <height>0</height>
  2014. </size>
  2015. </property>
  2016. <property name="text">
  2017. <string/>
  2018. </property>
  2019. </widget>
  2020. </item>
  2021. <item>
  2022. <spacer name="horizontalSpacer_8">
  2023. <property name="orientation">
  2024. <enum>Qt::Horizontal</enum>
  2025. </property>
  2026. <property name="sizeHint" stdset="0">
  2027. <size>
  2028. <width>40</width>
  2029. <height>20</height>
  2030. </size>
  2031. </property>
  2032. </spacer>
  2033. </item>
  2034. </layout>
  2035. </item>
  2036. <item>
  2037. <widget class="Line" name="line_4">
  2038. <property name="minimumSize">
  2039. <size>
  2040. <width>0</width>
  2041. <height>0</height>
  2042. </size>
  2043. </property>
  2044. <property name="baseSize">
  2045. <size>
  2046. <width>0</width>
  2047. <height>0</height>
  2048. </size>
  2049. </property>
  2050. <property name="styleSheet">
  2051. <string notr="true">background-color: #616161;</string>
  2052. </property>
  2053. <property name="orientation">
  2054. <enum>Qt::Horizontal</enum>
  2055. </property>
  2056. </widget>
  2057. </item>
  2058. <item>
  2059. <layout class="QHBoxLayout" name="horizontalLayout_6">
  2060. <item>
  2061. <widget class="QLabel" name="debugOutputCheckBoxDescription">
  2062. <property name="text">
  2063. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When enabled, builders that support it will output debug information as product assets.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  2064. </property>
  2065. <property name="scaledContents">
  2066. <bool>false</bool>
  2067. </property>
  2068. <property name="wordWrap">
  2069. <bool>true</bool>
  2070. </property>
  2071. </widget>
  2072. </item>
  2073. <item>
  2074. <spacer name="indentSpacer4">
  2075. <property name="orientation">
  2076. <enum>Qt::Horizontal</enum>
  2077. </property>
  2078. <property name="sizeType">
  2079. <enum>QSizePolicy::Fixed</enum>
  2080. </property>
  2081. <property name="sizeHint" stdset="0">
  2082. <size>
  2083. <width>20</width>
  2084. <height>20</height>
  2085. </size>
  2086. </property>
  2087. </spacer>
  2088. </item>
  2089. </layout>
  2090. </item>
  2091. </layout>
  2092. </item>
  2093. <item>
  2094. <spacer name="gapSpacer4">
  2095. <property name="orientation">
  2096. <enum>Qt::Vertical</enum>
  2097. </property>
  2098. <property name="sizeType">
  2099. <enum>QSizePolicy::Fixed</enum>
  2100. </property>
  2101. <property name="sizeHint" stdset="0">
  2102. <size>
  2103. <width>16</width>
  2104. <height>16</height>
  2105. </size>
  2106. </property>
  2107. </spacer>
  2108. </item>
  2109. <item>
  2110. <layout class="QVBoxLayout" name="logFileLevelLayout">
  2111. <item>
  2112. <layout class="QHBoxLayout" name="logFileLevelLayoutLine">
  2113. <item>
  2114. <widget class="QLabel" name="logfileLevelHeader">
  2115. <property name="minimumSize">
  2116. <size>
  2117. <width>170</width>
  2118. <height>0</height>
  2119. </size>
  2120. </property>
  2121. <property name="baseSize">
  2122. <size>
  2123. <width>0</width>
  2124. <height>0</height>
  2125. </size>
  2126. </property>
  2127. <property name="font">
  2128. <font>
  2129. <pointsize>12</pointsize>
  2130. </font>
  2131. </property>
  2132. <property name="text">
  2133. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Verbose Logging Output&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  2134. </property>
  2135. </widget>
  2136. </item>
  2137. <item>
  2138. <spacer name="horizontalSpacer_9">
  2139. <property name="orientation">
  2140. <enum>Qt::Horizontal</enum>
  2141. </property>
  2142. <property name="sizeType">
  2143. <enum>QSizePolicy::Fixed</enum>
  2144. </property>
  2145. <property name="sizeHint" stdset="0">
  2146. <size>
  2147. <width>20</width>
  2148. <height>20</height>
  2149. </size>
  2150. </property>
  2151. </spacer>
  2152. </item>
  2153. <item>
  2154. <widget class="QCheckBox" name="verboseLoggingCheckbox">
  2155. <property name="sizePolicy">
  2156. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  2157. <horstretch>0</horstretch>
  2158. <verstretch>0</verstretch>
  2159. </sizepolicy>
  2160. </property>
  2161. <property name="minimumSize">
  2162. <size>
  2163. <width>100</width>
  2164. <height>0</height>
  2165. </size>
  2166. </property>
  2167. <property name="text">
  2168. <string/>
  2169. </property>
  2170. </widget>
  2171. </item>
  2172. <item>
  2173. <spacer name="horizontalSpacer_10">
  2174. <property name="orientation">
  2175. <enum>Qt::Horizontal</enum>
  2176. </property>
  2177. <property name="sizeHint" stdset="0">
  2178. <size>
  2179. <width>40</width>
  2180. <height>20</height>
  2181. </size>
  2182. </property>
  2183. </spacer>
  2184. </item>
  2185. </layout>
  2186. </item>
  2187. <item>
  2188. <widget class="Line" name="line_5">
  2189. <property name="minimumSize">
  2190. <size>
  2191. <width>0</width>
  2192. <height>0</height>
  2193. </size>
  2194. </property>
  2195. <property name="baseSize">
  2196. <size>
  2197. <width>0</width>
  2198. <height>0</height>
  2199. </size>
  2200. </property>
  2201. <property name="styleSheet">
  2202. <string notr="true">background-color: #616161;</string>
  2203. </property>
  2204. <property name="orientation">
  2205. <enum>Qt::Horizontal</enum>
  2206. </property>
  2207. </widget>
  2208. </item>
  2209. <item>
  2210. <layout class="QHBoxLayout" name="logFileLevelLayoutDescription">
  2211. <item>
  2212. <widget class="QLabel" name="logFileLevelDescription">
  2213. <property name="text">
  2214. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When enables, outputs debugging data to the Asset Processor log files. Slows down processing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  2215. </property>
  2216. <property name="scaledContents">
  2217. <bool>false</bool>
  2218. </property>
  2219. <property name="wordWrap">
  2220. <bool>true</bool>
  2221. </property>
  2222. </widget>
  2223. </item>
  2224. <item>
  2225. <spacer name="indentSpacer4_2">
  2226. <property name="orientation">
  2227. <enum>Qt::Horizontal</enum>
  2228. </property>
  2229. <property name="sizeType">
  2230. <enum>QSizePolicy::Fixed</enum>
  2231. </property>
  2232. <property name="sizeHint" stdset="0">
  2233. <size>
  2234. <width>20</width>
  2235. <height>20</height>
  2236. </size>
  2237. </property>
  2238. </spacer>
  2239. </item>
  2240. </layout>
  2241. </item>
  2242. </layout>
  2243. </item>
  2244. <item>
  2245. <spacer name="gapSpacer5">
  2246. <property name="orientation">
  2247. <enum>Qt::Vertical</enum>
  2248. </property>
  2249. <property name="sizeHint" stdset="0">
  2250. <size>
  2251. <width>16</width>
  2252. <height>77</height>
  2253. </size>
  2254. </property>
  2255. </spacer>
  2256. </item>
  2257. </layout>
  2258. </widget>
  2259. <widget class="QWidget" name="SharedCachePage">
  2260. <layout class="QGridLayout" name="gridLayout_2">
  2261. <property name="leftMargin">
  2262. <number>0</number>
  2263. </property>
  2264. <property name="topMargin">
  2265. <number>0</number>
  2266. </property>
  2267. <property name="rightMargin">
  2268. <number>0</number>
  2269. </property>
  2270. <property name="bottomMargin">
  2271. <number>0</number>
  2272. </property>
  2273. <item row="0" column="0">
  2274. <widget class="QWidget" name="widget_sharedCache" native="true">
  2275. <property name="sizePolicy">
  2276. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  2277. <horstretch>0</horstretch>
  2278. <verstretch>0</verstretch>
  2279. </sizepolicy>
  2280. </property>
  2281. <layout class="QGridLayout" name="gridLayout" columnstretch="0,0,0,0,0">
  2282. <property name="sizeConstraint">
  2283. <enum>QLayout::SetDefaultConstraint</enum>
  2284. </property>
  2285. <property name="leftMargin">
  2286. <number>10</number>
  2287. </property>
  2288. <property name="rightMargin">
  2289. <number>10</number>
  2290. </property>
  2291. <property name="bottomMargin">
  2292. <number>10</number>
  2293. </property>
  2294. <item row="0" column="0" colspan="2">
  2295. <widget class="QLabel" name="sharedCacheTitle">
  2296. <property name="font">
  2297. <font>
  2298. <pointsize>10</pointsize>
  2299. <weight>75</weight>
  2300. <bold>true</bold>
  2301. </font>
  2302. </property>
  2303. <property name="text">
  2304. <string># Shared Cache Settings</string>
  2305. </property>
  2306. <property name="textFormat">
  2307. <enum>Qt::MarkdownText</enum>
  2308. </property>
  2309. </widget>
  2310. </item>
  2311. <item row="9" column="3">
  2312. <widget class="QPushButton" name="sharedCacheSubmitButton">
  2313. <property name="text">
  2314. <string>Save Changes</string>
  2315. </property>
  2316. <property name="autoDefault">
  2317. <bool>true</bool>
  2318. </property>
  2319. <property name="default">
  2320. <bool>true</bool>
  2321. </property>
  2322. </widget>
  2323. </item>
  2324. <item row="5" column="0" colspan="4">
  2325. <widget class="QLineEdit" name="serverAddressLineEdit">
  2326. <property name="toolTip">
  2327. <string>Set the remote folder location for the shared cache</string>
  2328. </property>
  2329. </widget>
  2330. </item>
  2331. <item row="9" column="4">
  2332. <widget class="QPushButton" name="sharedCacheDiscardButton">
  2333. <property name="text">
  2334. <string>Discard</string>
  2335. </property>
  2336. </widget>
  2337. </item>
  2338. <item row="8" column="0" colspan="5">
  2339. <widget class="QTableWidget" name="sharedCacheTable">
  2340. <property name="wordWrap">
  2341. <bool>false</bool>
  2342. </property>
  2343. <property name="rowCount">
  2344. <number>3</number>
  2345. </property>
  2346. <property name="columnCount">
  2347. <number>5</number>
  2348. </property>
  2349. <attribute name="horizontalHeaderCascadingSectionResizes">
  2350. <bool>false</bool>
  2351. </attribute>
  2352. <attribute name="horizontalHeaderStretchLastSection">
  2353. <bool>false</bool>
  2354. </attribute>
  2355. <attribute name="verticalHeaderVisible">
  2356. <bool>false</bool>
  2357. </attribute>
  2358. <row>
  2359. <property name="text">
  2360. <string>New Row</string>
  2361. </property>
  2362. </row>
  2363. <row/>
  2364. <row/>
  2365. <column>
  2366. <property name="text">
  2367. <string/>
  2368. </property>
  2369. <property name="toolTip">
  2370. <string>Toggle pattern activity.</string>
  2371. </property>
  2372. </column>
  2373. <column>
  2374. <property name="text">
  2375. <string>Name</string>
  2376. </property>
  2377. </column>
  2378. <column>
  2379. <property name="text">
  2380. <string>Type</string>
  2381. </property>
  2382. <property name="toolTip">
  2383. <string extracomment="Choose how the pattern text will be used. Wildcard or regular expression supported. "/>
  2384. </property>
  2385. </column>
  2386. <column>
  2387. <property name="text">
  2388. <string>Pattern</string>
  2389. </property>
  2390. </column>
  2391. <column>
  2392. <property name="text">
  2393. <string/>
  2394. </property>
  2395. <property name="toolTip">
  2396. <string>Remove the pattern.</string>
  2397. </property>
  2398. </column>
  2399. </widget>
  2400. </item>
  2401. <item row="4" column="0">
  2402. <widget class="QLabel" name="label_3">
  2403. <property name="text">
  2404. <string>Step 2: Select a remote folder</string>
  2405. </property>
  2406. </widget>
  2407. </item>
  2408. <item row="6" column="0">
  2409. <widget class="QLabel" name="label_4">
  2410. <property name="text">
  2411. <string>Step 3: Manage shared cache asset patterns</string>
  2412. </property>
  2413. </widget>
  2414. </item>
  2415. <item row="7" column="0">
  2416. <widget class="QPushButton" name="sharedCacheAddPattern">
  2417. <property name="toolTip">
  2418. <string>Add an asset pattern to cache to the remote folder.</string>
  2419. </property>
  2420. <property name="text">
  2421. <string>+ Add Pattern</string>
  2422. </property>
  2423. </widget>
  2424. </item>
  2425. <item row="3" column="0" colspan="4">
  2426. <widget class="QComboBox" name="serverCacheModeOptions">
  2427. <property name="toolTip">
  2428. <string>Select the mode the project should use to cache asset products.</string>
  2429. </property>
  2430. <property name="currentText">
  2431. <string>Placeholder</string>
  2432. </property>
  2433. <property name="placeholderText">
  2434. <string>Placeholder</string>
  2435. </property>
  2436. </widget>
  2437. </item>
  2438. <item row="2" column="0">
  2439. <widget class="QLabel" name="label_2">
  2440. <property name="text">
  2441. <string>Step 1: Set shared cache mode</string>
  2442. </property>
  2443. </widget>
  2444. </item>
  2445. <item row="5" column="4">
  2446. <widget class="QToolButton" name="serverAddressToolButton">
  2447. <property name="text">
  2448. <string>Choose a remote folder.</string>
  2449. </property>
  2450. </widget>
  2451. </item>
  2452. <item row="1" column="0" colspan="4">
  2453. <widget class="QLabel" name="sharedCacheStatus">
  2454. <property name="font">
  2455. <font>
  2456. <pointsize>10</pointsize>
  2457. </font>
  2458. </property>
  2459. <property name="frameShape">
  2460. <enum>QFrame::StyledPanel</enum>
  2461. </property>
  2462. <property name="frameShadow">
  2463. <enum>QFrame::Sunken</enum>
  2464. </property>
  2465. <property name="text">
  2466. <string/>
  2467. </property>
  2468. <property name="textFormat">
  2469. <enum>Qt::MarkdownText</enum>
  2470. </property>
  2471. <property name="margin">
  2472. <number>5</number>
  2473. </property>
  2474. </widget>
  2475. </item>
  2476. <item row="0" column="4">
  2477. <widget class="QPushButton" name="sharedCacheSupport">
  2478. <property name="text">
  2479. <string/>
  2480. </property>
  2481. <property name="flat">
  2482. <bool>true</bool>
  2483. </property>
  2484. </widget>
  2485. </item>
  2486. </layout>
  2487. </widget>
  2488. </item>
  2489. </layout>
  2490. </widget>
  2491. <widget class="QWidget" name="AssetRelocationPage">
  2492. <layout class="QVBoxLayout" name="AssetRelocationVerticalLayout">
  2493. <item>
  2494. <widget class="QLabel" name="AssetRelocationScreenTitle">
  2495. <property name="font">
  2496. <font>
  2497. <pointsize>10</pointsize>
  2498. <weight>75</weight>
  2499. <bold>true</bold>
  2500. </font>
  2501. </property>
  2502. <property name="text">
  2503. <string># Asset Relocation</string>
  2504. </property>
  2505. <property name="textFormat">
  2506. <enum>Qt::MarkdownText</enum>
  2507. </property>
  2508. </widget>
  2509. </item>
  2510. <item>
  2511. <layout class="QHBoxLayout" name="MetaCreationDelayLayout">
  2512. <item>
  2513. <widget class="QLabel" name="MetaCreationDelayTitle">
  2514. <property name="text">
  2515. <string>Meta File Creation Delay:</string>
  2516. </property>
  2517. </widget>
  2518. </item>
  2519. <item>
  2520. <widget class="QLabel" name="MetaCreationDelayValue">
  2521. <property name="text">
  2522. <string>Delay value could not be loaded</string>
  2523. </property>
  2524. </widget>
  2525. </item>
  2526. <item>
  2527. <spacer name="MetaCreationDelaySpacer">
  2528. <property name="orientation">
  2529. <enum>Qt::Horizontal</enum>
  2530. </property>
  2531. <property name="sizeHint" stdset="0">
  2532. <size>
  2533. <width>40</width>
  2534. <height>20</height>
  2535. </size>
  2536. </property>
  2537. </spacer>
  2538. </item>
  2539. </layout>
  2540. </item>
  2541. <item>
  2542. <widget class="QLabel" name="AssetRelocationDescriptionLabel">
  2543. <property name="text">
  2544. <string>This is the list of currently enabled extensions for asset relocation. You can read more about relocating assets &lt;a href=&quot;https://www.o3de.org/docs/user-guide/assets/pipeline/metadata&quot;&gt;here.&lt;/a&gt;</string>
  2545. </property>
  2546. <property name="openExternalLinks">
  2547. <bool>true</bool>
  2548. </property>
  2549. <property name="textInteractionFlags">
  2550. <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
  2551. </property>
  2552. </widget>
  2553. </item>
  2554. <item>
  2555. <widget class="QListView" name="AssetRelocationExtensionListView">
  2556. <property name="showDropIndicator" stdset="0">
  2557. <bool>false</bool>
  2558. </property>
  2559. </widget>
  2560. </item>
  2561. </layout>
  2562. </widget>
  2563. </widget>
  2564. </item>
  2565. </layout>
  2566. </item>
  2567. </layout>
  2568. </widget>
  2569. </widget>
  2570. <layoutdefault spacing="6" margin="11"/>
  2571. <customwidgets>
  2572. <customwidget>
  2573. <class>AzQtComponents::FilteredSearchWidget</class>
  2574. <extends>QWidget</extends>
  2575. <header>AzQtComponents/Components/FilteredSearchWidget.h</header>
  2576. <container>1</container>
  2577. </customwidget>
  2578. <customwidget>
  2579. <class>AzQtComponents::TableView</class>
  2580. <extends>QTreeView</extends>
  2581. <header>AzQtComponents/Components/Widgets/TableView.h</header>
  2582. <container>1</container>
  2583. </customwidget>
  2584. <customwidget>
  2585. <class>AssetProcessor::LogPanel</class>
  2586. <extends>QWidget</extends>
  2587. <header>native/utilities/LogPanel.h</header>
  2588. <container>1</container>
  2589. </customwidget>
  2590. <customwidget>
  2591. <class>AssetProcessor::SourceAssetDetailsPanel</class>
  2592. <extends>QFrame</extends>
  2593. <header>native/ui/SourceAssetDetailsPanel.h</header>
  2594. <container>1</container>
  2595. </customwidget>
  2596. <customwidget>
  2597. <class>AssetProcessor::ProductAssetDetailsPanel</class>
  2598. <extends>QFrame</extends>
  2599. <header>native/ui/ProductAssetDetailsPanel.h</header>
  2600. <container>1</container>
  2601. </customwidget>
  2602. <customwidget>
  2603. <class>AzQtComponents::SegmentBar</class>
  2604. <extends>QWidget</extends>
  2605. <header>AzQtComponents/Components/Widgets/SegmentBar.h</header>
  2606. </customwidget>
  2607. </customwidgets>
  2608. <tabstops>
  2609. <tabstop>supportButton</tabstop>
  2610. <tabstop>sharedCacheSupport</tabstop>
  2611. <tabstop>serverCacheModeOptions</tabstop>
  2612. <tabstop>serverAddressLineEdit</tabstop>
  2613. <tabstop>serverAddressToolButton</tabstop>
  2614. <tabstop>sharedCacheAddPattern</tabstop>
  2615. <tabstop>sharedCacheTable</tabstop>
  2616. <tabstop>sharedCacheSubmitButton</tabstop>
  2617. <tabstop>sharedCacheDiscardButton</tabstop>
  2618. <tabstop>editConnectionButton</tabstop>
  2619. <tabstop>addConnectionButton</tabstop>
  2620. <tabstop>removeConnectionButton</tabstop>
  2621. <tabstop>connectionTreeView</tabstop>
  2622. <tabstop>allowedListEnableCheckBox</tabstop>
  2623. <tabstop>allowedListAddHostNameLineEdit</tabstop>
  2624. <tabstop>allowedListAddHostNameToolButton</tabstop>
  2625. <tabstop>allowedListAddIPLineEdit</tabstop>
  2626. <tabstop>allowedListAddIPToolButton</tabstop>
  2627. <tabstop>allowListAllowedListConnectionsListView</tabstop>
  2628. <tabstop>allowedListToAllowedListToolButton</tabstop>
  2629. <tabstop>allowedListToRejectedListToolButton</tabstop>
  2630. <tabstop>allowedListRejectedConnectionsListView</tabstop>
  2631. <tabstop>builderList</tabstop>
  2632. <tabstop>builderInfoTabWidget</tabstop>
  2633. <tabstop>builderInfoPatternsTableView</tabstop>
  2634. <tabstop>builderInfoMetricsTreeView</tabstop>
  2635. <tabstop>fullScanButton</tabstop>
  2636. <tabstop>missingDependencyScanResults</tabstop>
  2637. <tabstop>assetsTabWidget</tabstop>
  2638. <tabstop>logButton</tabstop>
  2639. <tabstop>ProductAssetsTreeView</tabstop>
  2640. <tabstop>IntermediateAssetsTreeView</tabstop>
  2641. <tabstop>jobContextLogTableView</tabstop>
  2642. <tabstop>SourceAssetsTreeView</tabstop>
  2643. <tabstop>jobTreeView</tabstop>
  2644. </tabstops>
  2645. <resources>
  2646. <include location="style/AssetProcessor.qrc"/>
  2647. </resources>
  2648. <connections/>
  2649. </ui>